@excalidraw/excalidraw 0.15.2-6546-a6b389c → 0.15.2-6546-3398d86
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +19 -0
- package/dist/excalidraw-assets/locales/{es-ES-json-f2467c6a875a9e288756.js → es-ES-json-4f3da97feff33cb00e6d.js} +1 -1
- package/dist/excalidraw-assets/locales/{hi-IN-json-e22f4ad73126c2971850.js → hi-IN-json-3898c9c1216b44476529.js} +1 -1
- package/dist/excalidraw-assets/locales/{id-ID-json-0e69caf5d919807ed234.js → id-ID-json-43d505d7071a0e359681.js} +1 -1
- package/dist/excalidraw-assets/locales/{kk-KZ-json-106d2a41c68f69765668.js → kk-KZ-json-f648362328b839e9313f.js} +1 -1
- package/dist/excalidraw-assets/locales/{pa-IN-json-0fd029451b07248c5194.js → pa-IN-json-d9ee09801ed220840b2b.js} +1 -1
- package/dist/excalidraw-assets/{vendor-53d1c69ef585b6dd219b.js → vendor-ef3c5d81a00ef582b871.js} +2 -2
- package/dist/excalidraw-assets-dev/{vendor-e6df8519da951026ff69.js → vendor-a14cd58fa2db417e42b2.js} +6 -6
- package/dist/excalidraw.development.js +2163 -2119
- package/dist/excalidraw.production.min.js +1 -1
- package/dist/excalidraw.production.min.js.LICENSE.txt +15 -0
- package/package.json +7 -2
- package/types/actions/actionAddToLibrary.d.ts +21 -10
- package/types/actions/actionAlign.d.ts +0 -1
- package/types/actions/actionBoundText.d.ts +14 -7
- package/types/actions/actionCanvas.d.ts +76 -39
- package/types/actions/actionClipboard.d.ts +32 -16
- package/types/actions/actionDeleteSelected.d.ts +18 -10
- package/types/actions/actionDistribute.d.ts +0 -1
- package/types/actions/actionDuplicateSelection.d.ts +0 -1
- package/types/actions/actionElementLock.d.ts +14 -7
- package/types/actions/actionExport.d.ts +71 -35
- package/types/actions/actionFinalize.d.ts +11 -7
- package/types/actions/actionFlip.d.ts +0 -1
- package/types/actions/actionFrame.d.ts +21 -10
- package/types/actions/actionGroup.d.ts +0 -1
- package/types/actions/actionLinearEditor.d.ts +7 -4
- package/types/actions/actionMenu.d.ts +21 -10
- package/types/actions/actionProperties.d.ts +91 -40
- package/types/actions/actionSelectAll.d.ts +0 -1
- package/types/actions/actionStyles.d.ts +7 -4
- package/types/actions/actionToggleGridMode.d.ts +7 -4
- package/types/actions/actionToggleStats.d.ts +7 -4
- package/types/actions/actionToggleViewMode.d.ts +7 -4
- package/types/actions/actionToggleZenMode.d.ts +7 -4
- package/types/actions/types.d.ts +1 -1
- package/types/appState.d.ts +3 -3
- package/types/colors.d.ts +9 -9
- package/types/components/App.d.ts +10 -0
- package/types/components/Button.d.ts +0 -1
- package/types/components/Card.d.ts +0 -1
- package/types/components/ColorPicker/keyboardNavHandlers.d.ts +0 -1
- package/types/components/DefaultSidebar.d.ts +0 -1
- package/types/components/EyeDropper.d.ts +0 -1
- package/types/components/LibraryMenuHeaderContent.d.ts +0 -1
- package/types/components/LibraryUnit.d.ts +0 -1
- package/types/components/LoadingMessage.d.ts +0 -1
- package/types/components/Section.d.ts +1 -1
- package/types/components/Sidebar/SidebarTab.d.ts +0 -1
- package/types/components/Sidebar/SidebarTabTrigger.d.ts +0 -1
- package/types/components/Sidebar/SidebarTabTriggers.d.ts +0 -1
- package/types/components/Sidebar/SidebarTabs.d.ts +0 -1
- package/types/components/Stack.d.ts +2 -2
- package/types/components/Trans.d.ts +2 -1
- package/types/components/dropdownMenu/DropdownMenuTrigger.d.ts +0 -1
- package/types/components/icons.d.ts +1 -0
- package/types/components/live-collaboration/LiveCollaborationTrigger.d.ts +0 -1
- package/types/components/welcome-screen/WelcomeScreen.Center.d.ts +0 -1
- package/types/components/welcome-screen/WelcomeScreen.d.ts +0 -1
- package/types/constants.d.ts +16 -3
- package/types/data/transform.d.ts +8 -11
- package/types/data/url.d.ts +5 -0
- package/types/element/Hyperlink.d.ts +16 -7
- package/types/element/collision.d.ts +2 -2
- package/types/element/embeddable.d.ts +153 -0
- package/types/element/linearElementEditor.d.ts +8 -5
- package/types/element/newElement.d.ts +5 -2
- package/types/element/textElement.d.ts +4 -7
- package/types/element/transformHandles.d.ts +1 -1
- package/types/element/typeChecks.d.ts +2 -1
- package/types/element/types.d.ts +13 -2
- package/types/hooks/useOutsideClick.d.ts +0 -1
- package/types/hooks/useScrollPosition.d.ts +0 -1
- package/types/i18n.d.ts +5 -2
- package/types/keys.d.ts +1 -0
- package/types/packages/excalidraw/example/initialData.d.ts +2 -1
- package/types/packages/excalidraw/index.d.ts +1 -0
- package/types/packages/excalidraw/webpack.dev.config.d.ts +5 -2
- package/types/packages/excalidraw/webpack.prod.config.d.ts +3 -0
- package/types/packages/utils.d.ts +2 -1
- package/types/renderer/renderElement.d.ts +1 -1
- package/types/renderer/renderScene.d.ts +2 -1
- package/types/scene/export.d.ts +1 -0
- package/types/types.d.ts +9 -3
- package/types/utility-types.d.ts +1 -1
- package/types/utils.d.ts +2 -1
- /package/dist/excalidraw-assets/{vendor-53d1c69ef585b6dd219b.js.LICENSE.txt → vendor-ef3c5d81a00ef582b871.js.LICENSE.txt} +0 -0
- /package/types/packages/excalidraw/dist/excalidraw-assets/locales/{es-ES-json-f2467c6a875a9e288756.d.ts → es-ES-json-4f3da97feff33cb00e6d.d.ts} +0 -0
- /package/types/packages/excalidraw/dist/excalidraw-assets/locales/{hi-IN-json-e22f4ad73126c2971850.d.ts → hi-IN-json-3898c9c1216b44476529.d.ts} +0 -0
- /package/types/packages/excalidraw/dist/excalidraw-assets/locales/{id-ID-json-0e69caf5d919807ed234.d.ts → id-ID-json-43d505d7071a0e359681.d.ts} +0 -0
- /package/types/packages/excalidraw/dist/excalidraw-assets/locales/{kk-KZ-json-106d2a41c68f69765668.d.ts → kk-KZ-json-f648362328b839e9313f.d.ts} +0 -0
- /package/types/packages/excalidraw/dist/excalidraw-assets/locales/{pa-IN-json-0fd029451b07248c5194.d.ts → pa-IN-json-d9ee09801ed220840b2b.d.ts} +0 -0
- /package/types/packages/excalidraw/dist/excalidraw-assets/{vendor-53d1c69ef585b6dd219b.d.ts → vendor-ef3c5d81a00ef582b871.d.ts} +0 -0
- /package/types/packages/excalidraw/dist/excalidraw-assets-dev/{vendor-e6df8519da951026ff69.d.ts → vendor-a14cd58fa2db417e42b2.d.ts} +0 -0
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
/*
|
|
2
|
+
object-assign
|
|
3
|
+
(c) Sindre Sorhus
|
|
4
|
+
@license MIT
|
|
5
|
+
*/
|
|
6
|
+
|
|
1
7
|
/*! regenerator-runtime -- Copyright (c) 2014-present, Facebook, Inc. -- license (MIT): https://github.com/facebook/regenerator/blob/main/LICENSE */
|
|
2
8
|
|
|
3
9
|
/**
|
|
@@ -29,3 +35,12 @@
|
|
|
29
35
|
* This source code is licensed under the MIT license found in the
|
|
30
36
|
* LICENSE file in the root directory of this source tree.
|
|
31
37
|
*/
|
|
38
|
+
|
|
39
|
+
/** @license React v17.0.2
|
|
40
|
+
* react-jsx-runtime.production.min.js
|
|
41
|
+
*
|
|
42
|
+
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
43
|
+
*
|
|
44
|
+
* This source code is licensed under the MIT license found in the
|
|
45
|
+
* LICENSE file in the root directory of this source tree.
|
|
46
|
+
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@excalidraw/excalidraw",
|
|
3
|
-
"version": "0.15.2-6546-
|
|
3
|
+
"version": "0.15.2-6546-3398d86",
|
|
4
4
|
"main": "main.js",
|
|
5
5
|
"types": "types/packages/excalidraw/index.d.ts",
|
|
6
6
|
"files": [
|
|
@@ -52,15 +52,19 @@
|
|
|
52
52
|
"@babel/preset-env": "7.18.6",
|
|
53
53
|
"@babel/preset-react": "7.18.6",
|
|
54
54
|
"@babel/preset-typescript": "7.18.6",
|
|
55
|
+
"@size-limit/preset-big-lib": "8.2.6",
|
|
55
56
|
"autoprefixer": "10.4.7",
|
|
56
57
|
"babel-loader": "8.2.5",
|
|
57
58
|
"babel-plugin-transform-class-properties": "6.24.1",
|
|
58
59
|
"cross-env": "7.0.3",
|
|
59
60
|
"css-loader": "6.7.1",
|
|
60
61
|
"dotenv": "16.0.1",
|
|
62
|
+
"import-meta-loader": "1.1.0",
|
|
61
63
|
"mini-css-extract-plugin": "2.6.1",
|
|
62
64
|
"postcss-loader": "7.0.1",
|
|
63
65
|
"sass-loader": "13.0.2",
|
|
66
|
+
"size-limit": "8.2.4",
|
|
67
|
+
"style-loader": "3.3.3",
|
|
64
68
|
"terser-webpack-plugin": "5.3.3",
|
|
65
69
|
"ts-loader": "9.3.1",
|
|
66
70
|
"typescript": "4.9.4",
|
|
@@ -79,6 +83,7 @@
|
|
|
79
83
|
"pack": "yarn build:umd && yarn pack",
|
|
80
84
|
"start": "webpack serve --config webpack.dev-server.config.js",
|
|
81
85
|
"install:deps": "yarn install --frozen-lockfile && yarn --cwd ../../../",
|
|
82
|
-
"build:example": "EXAMPLE=true webpack --config webpack.dev-server.config.js && yarn gen:types"
|
|
86
|
+
"build:example": "EXAMPLE=true webpack --config webpack.dev-server.config.js && yarn gen:types",
|
|
87
|
+
"size": "yarn build:umd && size-limit"
|
|
83
88
|
}
|
|
84
89
|
}
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
1
|
export declare const actionAddToLibrary: {
|
|
3
2
|
name: "addToLibrary";
|
|
4
3
|
trackEvent: {
|
|
@@ -18,6 +17,10 @@ export declare const actionAddToLibrary: {
|
|
|
18
17
|
showWelcomeScreen: boolean;
|
|
19
18
|
isLoading: boolean;
|
|
20
19
|
errorMessage: import("react").ReactNode;
|
|
20
|
+
activeEmbeddable: {
|
|
21
|
+
element: import("../element/types").NonDeletedExcalidrawElement;
|
|
22
|
+
state: "active" | "hover";
|
|
23
|
+
} | null;
|
|
21
24
|
draggingElement: import("../element/types").NonDeletedExcalidrawElement | null;
|
|
22
25
|
resizingElement: import("../element/types").NonDeletedExcalidrawElement | null;
|
|
23
26
|
multiElement: import("../element/types").NonDeleted<import("../element/types").ExcalidrawLinearElement> | null;
|
|
@@ -40,7 +43,7 @@ export declare const actionAddToLibrary: {
|
|
|
40
43
|
lastActiveTool: import("../types").LastActiveTool;
|
|
41
44
|
locked: boolean;
|
|
42
45
|
} & ({
|
|
43
|
-
type: "line" | "arrow" | "text" | "selection" | "rectangle" | "diamond" | "ellipse" | "image" | "frame" | "freedraw" | "eraser" | "hand";
|
|
46
|
+
type: "line" | "arrow" | "text" | "selection" | "rectangle" | "diamond" | "ellipse" | "embeddable" | "image" | "frame" | "freedraw" | "eraser" | "hand";
|
|
44
47
|
customType: null;
|
|
45
48
|
} | {
|
|
46
49
|
type: "custom";
|
|
@@ -94,7 +97,7 @@ export declare const actionAddToLibrary: {
|
|
|
94
97
|
selectedElementsAreBeingDragged: boolean;
|
|
95
98
|
shouldCacheIgnoreZoom: boolean;
|
|
96
99
|
zenModeEnabled: boolean;
|
|
97
|
-
theme:
|
|
100
|
+
theme: import("../element/types").Theme;
|
|
98
101
|
gridSize: number | null;
|
|
99
102
|
viewModeEnabled: boolean;
|
|
100
103
|
selectedGroupIds: {
|
|
@@ -117,7 +120,7 @@ export declare const actionAddToLibrary: {
|
|
|
117
120
|
data: import("../charts").Spreadsheet;
|
|
118
121
|
};
|
|
119
122
|
pendingImageElementId: string | null;
|
|
120
|
-
showHyperlinkPopup: false | "
|
|
123
|
+
showHyperlinkPopup: false | "editor" | "info";
|
|
121
124
|
selectedLinearElement: import("../element/linearElementEditor").LinearElementEditor | null;
|
|
122
125
|
};
|
|
123
126
|
} | {
|
|
@@ -131,6 +134,10 @@ export declare const actionAddToLibrary: {
|
|
|
131
134
|
} | null;
|
|
132
135
|
showWelcomeScreen: boolean;
|
|
133
136
|
isLoading: boolean;
|
|
137
|
+
activeEmbeddable: {
|
|
138
|
+
element: import("../element/types").NonDeletedExcalidrawElement;
|
|
139
|
+
state: "active" | "hover";
|
|
140
|
+
} | null;
|
|
134
141
|
draggingElement: import("../element/types").NonDeletedExcalidrawElement | null;
|
|
135
142
|
resizingElement: import("../element/types").NonDeletedExcalidrawElement | null;
|
|
136
143
|
multiElement: import("../element/types").NonDeleted<import("../element/types").ExcalidrawLinearElement> | null;
|
|
@@ -153,7 +160,7 @@ export declare const actionAddToLibrary: {
|
|
|
153
160
|
lastActiveTool: import("../types").LastActiveTool;
|
|
154
161
|
locked: boolean;
|
|
155
162
|
} & ({
|
|
156
|
-
type: "line" | "arrow" | "text" | "selection" | "rectangle" | "diamond" | "ellipse" | "image" | "frame" | "freedraw" | "eraser" | "hand";
|
|
163
|
+
type: "line" | "arrow" | "text" | "selection" | "rectangle" | "diamond" | "ellipse" | "embeddable" | "image" | "frame" | "freedraw" | "eraser" | "hand";
|
|
157
164
|
customType: null;
|
|
158
165
|
} | {
|
|
159
166
|
type: "custom";
|
|
@@ -212,7 +219,7 @@ export declare const actionAddToLibrary: {
|
|
|
212
219
|
duration?: number | undefined;
|
|
213
220
|
} | null;
|
|
214
221
|
zenModeEnabled: boolean;
|
|
215
|
-
theme:
|
|
222
|
+
theme: import("../element/types").Theme;
|
|
216
223
|
gridSize: number | null;
|
|
217
224
|
viewModeEnabled: boolean;
|
|
218
225
|
selectedGroupIds: {
|
|
@@ -235,7 +242,7 @@ export declare const actionAddToLibrary: {
|
|
|
235
242
|
data: import("../charts").Spreadsheet;
|
|
236
243
|
};
|
|
237
244
|
pendingImageElementId: string | null;
|
|
238
|
-
showHyperlinkPopup: false | "
|
|
245
|
+
showHyperlinkPopup: false | "editor" | "info";
|
|
239
246
|
selectedLinearElement: import("../element/linearElementEditor").LinearElementEditor | null;
|
|
240
247
|
};
|
|
241
248
|
}> | {
|
|
@@ -249,6 +256,10 @@ export declare const actionAddToLibrary: {
|
|
|
249
256
|
} | null;
|
|
250
257
|
showWelcomeScreen: boolean;
|
|
251
258
|
isLoading: boolean;
|
|
259
|
+
activeEmbeddable: {
|
|
260
|
+
element: import("../element/types").NonDeletedExcalidrawElement;
|
|
261
|
+
state: "active" | "hover";
|
|
262
|
+
} | null;
|
|
252
263
|
draggingElement: import("../element/types").NonDeletedExcalidrawElement | null;
|
|
253
264
|
resizingElement: import("../element/types").NonDeletedExcalidrawElement | null;
|
|
254
265
|
multiElement: import("../element/types").NonDeleted<import("../element/types").ExcalidrawLinearElement> | null;
|
|
@@ -271,7 +282,7 @@ export declare const actionAddToLibrary: {
|
|
|
271
282
|
lastActiveTool: import("../types").LastActiveTool;
|
|
272
283
|
locked: boolean;
|
|
273
284
|
} & ({
|
|
274
|
-
type: "line" | "arrow" | "text" | "selection" | "rectangle" | "diamond" | "ellipse" | "image" | "frame" | "freedraw" | "eraser" | "hand";
|
|
285
|
+
type: "line" | "arrow" | "text" | "selection" | "rectangle" | "diamond" | "ellipse" | "embeddable" | "image" | "frame" | "freedraw" | "eraser" | "hand";
|
|
275
286
|
customType: null;
|
|
276
287
|
} | {
|
|
277
288
|
type: "custom";
|
|
@@ -330,7 +341,7 @@ export declare const actionAddToLibrary: {
|
|
|
330
341
|
duration?: number | undefined;
|
|
331
342
|
} | null;
|
|
332
343
|
zenModeEnabled: boolean;
|
|
333
|
-
theme:
|
|
344
|
+
theme: import("../element/types").Theme;
|
|
334
345
|
gridSize: number | null;
|
|
335
346
|
viewModeEnabled: boolean;
|
|
336
347
|
selectedGroupIds: {
|
|
@@ -353,7 +364,7 @@ export declare const actionAddToLibrary: {
|
|
|
353
364
|
data: import("../charts").Spreadsheet;
|
|
354
365
|
};
|
|
355
366
|
pendingImageElementId: string | null;
|
|
356
|
-
showHyperlinkPopup: false | "
|
|
367
|
+
showHyperlinkPopup: false | "editor" | "info";
|
|
357
368
|
selectedLinearElement: import("../element/linearElementEditor").LinearElementEditor | null;
|
|
358
369
|
};
|
|
359
370
|
};
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
1
|
import { ExcalidrawElement, ExcalidrawLinearElement } from "../element/types";
|
|
3
2
|
import { AppState } from "../types";
|
|
4
3
|
import { Mutable } from "../utility-types";
|
|
@@ -38,6 +37,10 @@ export declare const actionBindText: {
|
|
|
38
37
|
showWelcomeScreen: boolean;
|
|
39
38
|
isLoading: boolean;
|
|
40
39
|
errorMessage: import("react").ReactNode;
|
|
40
|
+
activeEmbeddable: {
|
|
41
|
+
element: import("../element/types").NonDeletedExcalidrawElement;
|
|
42
|
+
state: "active" | "hover";
|
|
43
|
+
} | null;
|
|
41
44
|
draggingElement: import("../element/types").NonDeletedExcalidrawElement | null;
|
|
42
45
|
resizingElement: import("../element/types").NonDeletedExcalidrawElement | null;
|
|
43
46
|
multiElement: import("../element/types").NonDeleted<ExcalidrawLinearElement> | null;
|
|
@@ -60,7 +63,7 @@ export declare const actionBindText: {
|
|
|
60
63
|
lastActiveTool: import("../types").LastActiveTool;
|
|
61
64
|
locked: boolean;
|
|
62
65
|
} & ({
|
|
63
|
-
type: "line" | "arrow" | "text" | "selection" | "rectangle" | "diamond" | "ellipse" | "image" | "frame" | "freedraw" | "eraser" | "hand";
|
|
66
|
+
type: "line" | "arrow" | "text" | "selection" | "rectangle" | "diamond" | "ellipse" | "embeddable" | "image" | "frame" | "freedraw" | "eraser" | "hand";
|
|
64
67
|
customType: null;
|
|
65
68
|
} | {
|
|
66
69
|
type: "custom";
|
|
@@ -116,7 +119,7 @@ export declare const actionBindText: {
|
|
|
116
119
|
duration?: number | undefined;
|
|
117
120
|
} | null;
|
|
118
121
|
zenModeEnabled: boolean;
|
|
119
|
-
theme:
|
|
122
|
+
theme: import("../element/types").Theme;
|
|
120
123
|
gridSize: number | null;
|
|
121
124
|
viewModeEnabled: boolean;
|
|
122
125
|
selectedGroupIds: {
|
|
@@ -139,7 +142,7 @@ export declare const actionBindText: {
|
|
|
139
142
|
data: import("../charts").Spreadsheet;
|
|
140
143
|
};
|
|
141
144
|
pendingImageElementId: string | null;
|
|
142
|
-
showHyperlinkPopup: false | "
|
|
145
|
+
showHyperlinkPopup: false | "editor" | "info";
|
|
143
146
|
selectedLinearElement: import("../element/linearElementEditor").LinearElementEditor | null;
|
|
144
147
|
};
|
|
145
148
|
commitToHistory: true;
|
|
@@ -168,6 +171,10 @@ export declare const actionWrapTextInContainer: {
|
|
|
168
171
|
showWelcomeScreen: boolean;
|
|
169
172
|
isLoading: boolean;
|
|
170
173
|
errorMessage: import("react").ReactNode;
|
|
174
|
+
activeEmbeddable: {
|
|
175
|
+
element: import("../element/types").NonDeletedExcalidrawElement;
|
|
176
|
+
state: "active" | "hover";
|
|
177
|
+
} | null;
|
|
171
178
|
draggingElement: import("../element/types").NonDeletedExcalidrawElement | null;
|
|
172
179
|
resizingElement: import("../element/types").NonDeletedExcalidrawElement | null;
|
|
173
180
|
multiElement: import("../element/types").NonDeleted<ExcalidrawLinearElement> | null;
|
|
@@ -190,7 +197,7 @@ export declare const actionWrapTextInContainer: {
|
|
|
190
197
|
lastActiveTool: import("../types").LastActiveTool;
|
|
191
198
|
locked: boolean;
|
|
192
199
|
} & ({
|
|
193
|
-
type: "line" | "arrow" | "text" | "selection" | "rectangle" | "diamond" | "ellipse" | "image" | "frame" | "freedraw" | "eraser" | "hand";
|
|
200
|
+
type: "line" | "arrow" | "text" | "selection" | "rectangle" | "diamond" | "ellipse" | "embeddable" | "image" | "frame" | "freedraw" | "eraser" | "hand";
|
|
194
201
|
customType: null;
|
|
195
202
|
} | {
|
|
196
203
|
type: "custom";
|
|
@@ -246,7 +253,7 @@ export declare const actionWrapTextInContainer: {
|
|
|
246
253
|
duration?: number | undefined;
|
|
247
254
|
} | null;
|
|
248
255
|
zenModeEnabled: boolean;
|
|
249
|
-
theme:
|
|
256
|
+
theme: import("../element/types").Theme;
|
|
250
257
|
gridSize: number | null;
|
|
251
258
|
viewModeEnabled: boolean;
|
|
252
259
|
selectedGroupIds: {
|
|
@@ -269,7 +276,7 @@ export declare const actionWrapTextInContainer: {
|
|
|
269
276
|
data: import("../charts").Spreadsheet;
|
|
270
277
|
};
|
|
271
278
|
pendingImageElementId: string | null;
|
|
272
|
-
showHyperlinkPopup: false | "
|
|
279
|
+
showHyperlinkPopup: false | "editor" | "info";
|
|
273
280
|
selectedLinearElement: import("../element/linearElementEditor").LinearElementEditor | null;
|
|
274
281
|
};
|
|
275
282
|
commitToHistory: true;
|