(core) Add info and hover tooltips

Summary:
Adds tooltip buttons to various parts of the UI that either open a popup with
information when clicked, or show a label on hover.

Test Plan: Project tests.

Reviewers: jarek

Reviewed By: jarek

Differential Revision: https://phab.getgrist.com/D3657
This commit is contained in:
George Gevoian
2022-10-19 16:06:05 -07:00
parent acc218398d
commit 4c662253a9
16 changed files with 435 additions and 134 deletions

View File

@@ -113,7 +113,9 @@ declare module "app/client/components/commands" {
public desc: string;
public humanKeys: string[];
public keys: string[];
public run: () => any;
public getDesc(): string;
public getKeysDesc(): string;
public run(): any;
}
export type CommandsGroup = any;