@myoc/excalidraw 0.19.505 → 0.19.506
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 +54 -0
- package/dist/dev/{chunk-D5OSJVKD.js → chunk-CUCA2WKB.js} +7 -6
- package/dist/dev/{chunk-D5OSJVKD.js.map → chunk-CUCA2WKB.js.map} +2 -2
- package/dist/dev/data/{image-KFKBCMAI.js → image-KG7C5ZXU.js} +2 -2
- package/dist/dev/index.css +12 -0
- package/dist/dev/index.css.map +2 -2
- package/dist/dev/index.js +182 -229
- package/dist/dev/index.js.map +3 -3
- package/dist/prod/{chunk-USXDRZTP.js → chunk-DAHBMDEO.js} +3 -3
- package/dist/prod/data/{image-ZMS3YSG4.js → image-OZR7E4WV.js} +1 -1
- package/dist/prod/index.css +1 -1
- package/dist/prod/index.js +17 -17
- package/dist/types/excalidraw/actions/actionStyles.d.ts +2 -4
- package/dist/types/excalidraw/actions/actionToggleZenMode.d.ts +1 -2
- package/dist/types/excalidraw/scene/types.d.ts +2 -0
- package/package.json +4 -4
- /package/dist/dev/data/{image-KFKBCMAI.js.map → image-KG7C5ZXU.js.map} +0 -0
|
@@ -174,9 +174,8 @@ export declare const actionCopyStyles: {
|
|
|
174
174
|
};
|
|
175
175
|
captureUpdate: "EVENTUALLY";
|
|
176
176
|
};
|
|
177
|
-
keyTest: (event: import("react").KeyboardEvent<Element> | KeyboardEvent) => boolean;
|
|
178
177
|
} & {
|
|
179
|
-
keyTest?:
|
|
178
|
+
keyTest?: undefined;
|
|
180
179
|
};
|
|
181
180
|
export declare const actionPasteStyles: {
|
|
182
181
|
name: "pasteStyles";
|
|
@@ -192,7 +191,6 @@ export declare const actionPasteStyles: {
|
|
|
192
191
|
elements: import("@excalidraw/element/types").OrderedExcalidrawElement[];
|
|
193
192
|
captureUpdate: "IMMEDIATELY";
|
|
194
193
|
};
|
|
195
|
-
keyTest: (event: import("react").KeyboardEvent<Element> | KeyboardEvent) => boolean;
|
|
196
194
|
} & {
|
|
197
|
-
keyTest?:
|
|
195
|
+
keyTest?: undefined;
|
|
198
196
|
};
|
|
@@ -178,7 +178,6 @@ export declare const actionToggleZenMode: {
|
|
|
178
178
|
};
|
|
179
179
|
checked: (appState: Readonly<import("../types").AppState>) => boolean;
|
|
180
180
|
predicate: (elements: readonly import("@excalidraw/element/types").ExcalidrawElement[], appState: import("../types").AppState, appProps: import("../types").ExcalidrawProps, app: import("../types").AppClassProperties) => boolean;
|
|
181
|
-
keyTest: (event: import("react").KeyboardEvent<Element> | KeyboardEvent) => boolean;
|
|
182
181
|
} & {
|
|
183
|
-
keyTest?:
|
|
182
|
+
keyTest?: undefined;
|
|
184
183
|
};
|
|
@@ -16,6 +16,8 @@ export type StaticCanvasRenderConfig = {
|
|
|
16
16
|
elementsPendingErasure: ElementsPendingErasure;
|
|
17
17
|
pendingFlowchartNodes: PendingExcalidrawElements | null;
|
|
18
18
|
theme: AppState["theme"];
|
|
19
|
+
gridColorBold?: string;
|
|
20
|
+
gridColorRegular?: string;
|
|
19
21
|
};
|
|
20
22
|
export type SVGRenderConfig = {
|
|
21
23
|
offsetX: number;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@myoc/excalidraw",
|
|
3
|
-
"version": "0.19.
|
|
3
|
+
"version": "0.19.506",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"types": "./dist/types/excalidraw/index.d.ts",
|
|
6
6
|
"main": "./dist/prod/index.js",
|
|
@@ -110,9 +110,9 @@
|
|
|
110
110
|
"roughjs": "4.6.4",
|
|
111
111
|
"sass": "1.51.0",
|
|
112
112
|
"tunnel-rat": "0.1.2",
|
|
113
|
-
"@excalidraw/common": "npm:@myoc/common@0.19.
|
|
114
|
-
"@excalidraw/math": "npm:@myoc/math@0.19.
|
|
115
|
-
"@excalidraw/element": "npm:@myoc/element@0.19.
|
|
113
|
+
"@excalidraw/common": "npm:@myoc/common@0.19.506",
|
|
114
|
+
"@excalidraw/math": "npm:@myoc/math@0.19.506",
|
|
115
|
+
"@excalidraw/element": "npm:@myoc/element@0.19.506"
|
|
116
116
|
},
|
|
117
117
|
"devDependencies": {
|
|
118
118
|
"@size-limit/preset-big-lib": "9.0.0",
|
|
File without changes
|