mirror of
https://github.com/excalidraw/excalidraw.git
synced 2025-05-03 10:00:07 -04:00
feat: editable element stats (#6382)
Co-authored-by: dwelle <5153846+dwelle@users.noreply.github.com>
This commit is contained in:
parent
22b39277f5
commit
d2f67e619f
40 changed files with 3596 additions and 413 deletions
|
@ -336,7 +336,11 @@ export interface AppState {
|
|||
|
||||
fileHandle: FileSystemHandle | null;
|
||||
collaborators: Map<SocketId, Collaborator>;
|
||||
showStats: boolean;
|
||||
stats: {
|
||||
open: boolean;
|
||||
/** bitmap. Use `STATS_PANELS` bit values */
|
||||
panels: number;
|
||||
};
|
||||
currentChartType: ChartType;
|
||||
pasteDialog:
|
||||
| {
|
||||
|
@ -593,6 +597,7 @@ export type AppClassProperties = {
|
|||
files: BinaryFiles;
|
||||
device: App["device"];
|
||||
scene: App["scene"];
|
||||
syncActionResult: App["syncActionResult"];
|
||||
pasteFromClipboard: App["pasteFromClipboard"];
|
||||
id: App["id"];
|
||||
onInsertElements: App["onInsertElements"];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue