email-builder-online 3.5.3 → 3.6.0
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/dist/editor-sample/src/App/InspectorDrawer/ConfigurationPanel/input-panels/ColumnsContainerSidebarPanel.d.ts.map +1 -1
- package/dist/editor-sample/src/App/InspectorDrawer/ConfigurationPanel/input-panels/helpers/containers/Wrapper.d.ts +3 -2
- package/dist/editor-sample/src/App/InspectorDrawer/ConfigurationPanel/input-panels/helpers/containers/Wrapper.d.ts.map +1 -1
- package/dist/editor-sample/src/App/InspectorDrawer/ConfigurationPanel/input-panels/helpers/inputs/InspectorPillToggleGroup.d.ts +14 -0
- package/dist/editor-sample/src/App/InspectorDrawer/ConfigurationPanel/input-panels/helpers/inputs/InspectorPillToggleGroup.d.ts.map +1 -0
- package/dist/editor-sample/src/App/InspectorDrawer/ConfigurationPanel/input-panels/helpers/inputs/PropertyLabelWithWarning.d.ts +9 -0
- package/dist/editor-sample/src/App/InspectorDrawer/ConfigurationPanel/input-panels/helpers/inputs/PropertyLabelWithWarning.d.ts.map +1 -0
- package/dist/editor-sample/src/App/InspectorDrawer/ConfigurationPanel/input-panels/helpers/inputs/RadioGroupInput.d.ts +1 -1
- package/dist/editor-sample/src/App/InspectorDrawer/ConfigurationPanel/input-panels/helpers/inputs/RadioGroupInput.d.ts.map +1 -1
- package/dist/editor-sample/src/App/InspectorDrawer/ConfigurationPanel/input-panels/helpers/inputs/SelectScreen.d.ts.map +1 -1
- package/dist/editor-sample/src/App/InspectorDrawer/ConfigurationPanel/input-panels/helpers/inputs/SliderInput.d.ts +2 -1
- package/dist/editor-sample/src/App/InspectorDrawer/ConfigurationPanel/input-panels/helpers/inputs/SliderInput.d.ts.map +1 -1
- package/dist/editor-sample/src/App/InspectorDrawer/ConfigurationPanel/input-panels/helpers/inputs/TextInput.d.ts +2 -1
- package/dist/editor-sample/src/App/InspectorDrawer/ConfigurationPanel/input-panels/helpers/inputs/TextInput.d.ts.map +1 -1
- package/dist/editor-sample/src/App/SamplesDrawer/SidebarButton.d.ts +2 -1
- package/dist/editor-sample/src/App/SamplesDrawer/SidebarButton.d.ts.map +1 -1
- package/dist/editor-sample/src/App/TemplatePanel/MainTabsGroup.d.ts.map +1 -1
- package/dist/editor-sample/src/App/TemplatePanel/helper/cleanDocument.d.ts.map +1 -1
- package/dist/editor-sample/src/documents/blocks/ColumnsContainer/ColumnsContainerPropsSchema.d.ts +15 -6
- package/dist/editor-sample/src/documents/blocks/ColumnsContainer/ColumnsContainerPropsSchema.d.ts.map +1 -1
- package/dist/editor-sample/src/documents/blocks/EmailLayout/EmailLayoutEditor.d.ts.map +1 -1
- package/dist/editor-sample/src/documents/blocks/EmailLayout/EmailLayoutPropsSchema.d.ts +4 -4
- package/dist/editor-sample/src/documents/blocks/helpers/EditorChildrenIds/AddBlockMenu/PlaceholderButton.d.ts +3 -1
- package/dist/editor-sample/src/documents/blocks/helpers/EditorChildrenIds/AddBlockMenu/PlaceholderButton.d.ts.map +1 -1
- package/dist/editor-sample/src/documents/blocks/helpers/EditorChildrenIds/AddBlockMenu/buttons.d.ts +2 -1
- package/dist/editor-sample/src/documents/blocks/helpers/EditorChildrenIds/AddBlockMenu/buttons.d.ts.map +1 -1
- package/dist/editor-sample/src/documents/blocks/helpers/EditorChildrenIds/AddBlockMenu/index.d.ts +3 -1
- package/dist/editor-sample/src/documents/blocks/helpers/EditorChildrenIds/AddBlockMenu/index.d.ts.map +1 -1
- package/dist/editor-sample/src/documents/blocks/helpers/EditorChildrenIds/index.d.ts +3 -1
- package/dist/editor-sample/src/documents/blocks/helpers/EditorChildrenIds/index.d.ts.map +1 -1
- package/dist/editor-sample/src/documents/blocks/helpers/block-wrappers/EditorBlockWrapper.d.ts +7 -1
- package/dist/editor-sample/src/documents/blocks/helpers/block-wrappers/EditorBlockWrapper.d.ts.map +1 -1
- package/dist/editor-sample/src/documents/blocks/helpers/block-wrappers/ReaderBlockWrapper.d.ts +2 -1
- package/dist/editor-sample/src/documents/blocks/helpers/block-wrappers/ReaderBlockWrapper.d.ts.map +1 -1
- package/dist/editor-sample/src/documents/blocks/helpers/block-wrappers/TuneMenu.d.ts.map +1 -1
- package/dist/editor-sample/src/documents/editor/EditorContext.d.ts +35 -21
- package/dist/editor-sample/src/documents/editor/EditorContext.d.ts.map +1 -1
- package/dist/editor-sample/src/documents/editor/core.d.ts +75 -57
- package/dist/editor-sample/src/documents/editor/core.d.ts.map +1 -1
- package/dist/editor-sample/src/locales/en-US/common.json.d.ts +1 -0
- package/dist/editor-sample/src/locales/en-US/inspector.json.d.ts +5 -1
- package/dist/editor-sample/src/locales/es-419/common.json.d.ts +2 -1
- package/dist/editor-sample/src/locales/es-419/inspector.json.d.ts +5 -1
- package/dist/editor-sample/src/locales/it-IT/common.json.d.ts +1 -0
- package/dist/editor-sample/src/locales/it-IT/inspector.json.d.ts +5 -1
- package/dist/index.cjs +274 -233
- package/dist/index.mjs +16821 -16306
- package/package.json +1 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { default as React } from 'react';
|
|
2
2
|
import { StoreApi } from 'zustand';
|
|
3
|
-
import {
|
|
3
|
+
import { TEditorBlock, TEditorConfiguration } from './core';
|
|
4
4
|
export declare const lateralPanel = 385;
|
|
5
5
|
export declare const DEFAULT_IMAGE_PLACEHOLDER = "https://ddc4vowthkjlv.cloudfront.net/uploads/gallery/1/69cc1b1083b90.jpg";
|
|
6
6
|
export declare function triggerAutoSave(): void;
|
|
@@ -106,6 +106,10 @@ export declare function useImageUploading(): {
|
|
|
106
106
|
id: string;
|
|
107
107
|
};
|
|
108
108
|
export declare function useDisableEdition(): boolean;
|
|
109
|
+
/**
|
|
110
|
+
* Slot “add at end” solo en la lista raíz del canvas (`EmailLayout` + `listEndPolicy="root"`).
|
|
111
|
+
*/
|
|
112
|
+
export declare function useShowListEndAddControls(childrenIds: string[] | null | undefined, listEndPolicy?: 'root'): boolean;
|
|
109
113
|
export declare function setSelectedBlockId(selectedBlockId: TValue['selectedBlockId']): void;
|
|
110
114
|
export declare function setSidebarTab(selectedSidebarTab: TValue['selectedSidebarTab']): void;
|
|
111
115
|
export declare function resetDocument(document: TValue['document']): void;
|
|
@@ -145,8 +149,8 @@ export declare function getRootSnapshot(): {
|
|
|
145
149
|
textColor?: string;
|
|
146
150
|
childrenIds?: string[];
|
|
147
151
|
linkGlobal?: {
|
|
148
|
-
linkColor?: string;
|
|
149
152
|
underline?: boolean;
|
|
153
|
+
linkColor?: string;
|
|
150
154
|
};
|
|
151
155
|
showVersion?: boolean;
|
|
152
156
|
fontFamily?: any;
|
|
@@ -293,22 +297,22 @@ export declare function getRootSnapshot(): {
|
|
|
293
297
|
url: import('zod').ZodString;
|
|
294
298
|
href: import('zod').ZodNullable<import('zod').ZodOptional<import('zod').ZodString>>;
|
|
295
299
|
}, "strip", import('zod').ZodTypeAny, {
|
|
300
|
+
size?: string;
|
|
296
301
|
theme?: string;
|
|
297
302
|
id?: string;
|
|
298
303
|
key?: string;
|
|
299
304
|
label?: string;
|
|
300
305
|
iconName?: string;
|
|
301
|
-
size?: string;
|
|
302
306
|
sizePx?: string;
|
|
303
307
|
url?: string;
|
|
304
308
|
href?: string;
|
|
305
309
|
}, {
|
|
310
|
+
size?: string;
|
|
306
311
|
theme?: string;
|
|
307
312
|
id?: string;
|
|
308
313
|
key?: string;
|
|
309
314
|
label?: string;
|
|
310
315
|
iconName?: string;
|
|
311
|
-
size?: string;
|
|
312
316
|
sizePx?: string;
|
|
313
317
|
url?: string;
|
|
314
318
|
href?: string;
|
|
@@ -535,6 +539,7 @@ export declare function getRootSnapshot(): {
|
|
|
535
539
|
text: import('zod').ZodNullable<import('zod').ZodOptional<import('zod').ZodString>>;
|
|
536
540
|
url: import('zod').ZodNullable<import('zod').ZodOptional<import('zod').ZodString>>;
|
|
537
541
|
}, "strip", import('zod').ZodTypeAny, {
|
|
542
|
+
text?: string;
|
|
538
543
|
size?: "medium" | "small" | "x-small" | {
|
|
539
544
|
left?: number;
|
|
540
545
|
right?: number;
|
|
@@ -554,8 +559,8 @@ export declare function getRootSnapshot(): {
|
|
|
554
559
|
};
|
|
555
560
|
sizePaddingSidesLinked?: boolean;
|
|
556
561
|
sizeMobilePaddingSidesLinked?: boolean;
|
|
557
|
-
text?: string;
|
|
558
562
|
}, {
|
|
563
|
+
text?: string;
|
|
559
564
|
size?: "medium" | "small" | "x-small" | {
|
|
560
565
|
left?: number;
|
|
561
566
|
right?: number;
|
|
@@ -575,7 +580,6 @@ export declare function getRootSnapshot(): {
|
|
|
575
580
|
};
|
|
576
581
|
sizePaddingSidesLinked?: boolean;
|
|
577
582
|
sizeMobilePaddingSidesLinked?: boolean;
|
|
578
|
-
text?: string;
|
|
579
583
|
}>>>;
|
|
580
584
|
}, import('zod').ZodTypeAny, "passthrough"> | import('zod').objectOutputType<{
|
|
581
585
|
style: import('zod').ZodNullable<import('zod').ZodOptional<import('zod').ZodObject<{
|
|
@@ -903,12 +907,14 @@ export declare function getRootSnapshot(): {
|
|
|
903
907
|
layout: import('zod').ZodNullable<import('zod').ZodOptional<import('zod').ZodString>>;
|
|
904
908
|
contentAlignment: import('zod').ZodNullable<import('zod').ZodOptional<import('zod').ZodEnum<["top", "middle", "bottom"]>>>;
|
|
905
909
|
contentAlignmentMobile: import('zod').ZodNullable<import('zod').ZodOptional<import('zod').ZodEnum<["top", "middle", "bottom"]>>>;
|
|
910
|
+
stackColumnsOnMobile: import('zod').ZodNullable<import('zod').ZodOptional<import('zod').ZodBoolean>>;
|
|
906
911
|
}, "strip", import('zod').ZodTypeAny, {
|
|
912
|
+
layout?: string;
|
|
907
913
|
fixedWidths?: [number, number, number, ...unknown[]];
|
|
908
914
|
columnsCount?: 2 | 3;
|
|
909
|
-
layout?: string;
|
|
910
915
|
contentAlignment?: "top" | "bottom" | "middle";
|
|
911
916
|
contentAlignmentMobile?: "top" | "bottom" | "middle";
|
|
917
|
+
stackColumnsOnMobile?: boolean;
|
|
912
918
|
columns?: [{
|
|
913
919
|
childrenIds?: string[];
|
|
914
920
|
}, {
|
|
@@ -917,11 +923,12 @@ export declare function getRootSnapshot(): {
|
|
|
917
923
|
childrenIds?: string[];
|
|
918
924
|
}, ...unknown[]];
|
|
919
925
|
}, {
|
|
926
|
+
layout?: string;
|
|
920
927
|
fixedWidths?: [number, number, number, ...unknown[]];
|
|
921
928
|
columnsCount?: 2 | 3;
|
|
922
|
-
layout?: string;
|
|
923
929
|
contentAlignment?: "top" | "bottom" | "middle";
|
|
924
930
|
contentAlignmentMobile?: "top" | "bottom" | "middle";
|
|
931
|
+
stackColumnsOnMobile?: boolean;
|
|
925
932
|
columns?: [{
|
|
926
933
|
childrenIds?: string[];
|
|
927
934
|
}, {
|
|
@@ -941,8 +948,8 @@ export declare function getRootSnapshot(): {
|
|
|
941
948
|
top?: number;
|
|
942
949
|
bottom?: number;
|
|
943
950
|
};
|
|
944
|
-
fontFamily?: "MODERN_SANS" | "LATO" | "MERRIWEATHER" | "MONTSERRAT" | "OPEN_SANS" | "OSWALD" | "PACIFICO" | "PLAYFAIR" | "ROBOTO" | "INHERIT";
|
|
945
951
|
color?: string;
|
|
952
|
+
fontFamily?: "MODERN_SANS" | "LATO" | "MERRIWEATHER" | "MONTSERRAT" | "OPEN_SANS" | "OSWALD" | "PACIFICO" | "PLAYFAIR" | "ROBOTO" | "INHERIT";
|
|
946
953
|
fontWeight?: "bold" | "normal";
|
|
947
954
|
textAlign?: "left" | "center" | "right";
|
|
948
955
|
} & {
|
|
@@ -961,8 +968,8 @@ export declare function getRootSnapshot(): {
|
|
|
961
968
|
top?: number;
|
|
962
969
|
bottom?: number;
|
|
963
970
|
};
|
|
964
|
-
fontFamily?: any;
|
|
965
971
|
color?: string;
|
|
972
|
+
fontFamily?: any;
|
|
966
973
|
fontSize?: number;
|
|
967
974
|
textAlign?: "left" | "center" | "right";
|
|
968
975
|
} & {
|
|
@@ -1187,9 +1194,9 @@ export declare function getRootSnapshot(): {
|
|
|
1187
1194
|
top?: number;
|
|
1188
1195
|
bottom?: number;
|
|
1189
1196
|
};
|
|
1197
|
+
color?: string;
|
|
1190
1198
|
borderColor?: string;
|
|
1191
1199
|
fontFamily?: any;
|
|
1192
|
-
color?: string;
|
|
1193
1200
|
fontSize?: number;
|
|
1194
1201
|
fontWeight?: "bold" | "normal";
|
|
1195
1202
|
textAlign?: "left" | "center" | "right" | "justify";
|
|
@@ -1355,8 +1362,8 @@ export declare function useRoot(): {
|
|
|
1355
1362
|
textColor?: string;
|
|
1356
1363
|
childrenIds?: string[];
|
|
1357
1364
|
linkGlobal?: {
|
|
1358
|
-
linkColor?: string;
|
|
1359
1365
|
underline?: boolean;
|
|
1366
|
+
linkColor?: string;
|
|
1360
1367
|
};
|
|
1361
1368
|
showVersion?: boolean;
|
|
1362
1369
|
fontFamily?: any;
|
|
@@ -1503,22 +1510,22 @@ export declare function useRoot(): {
|
|
|
1503
1510
|
url: import('zod').ZodString;
|
|
1504
1511
|
href: import('zod').ZodNullable<import('zod').ZodOptional<import('zod').ZodString>>;
|
|
1505
1512
|
}, "strip", import('zod').ZodTypeAny, {
|
|
1513
|
+
size?: string;
|
|
1506
1514
|
theme?: string;
|
|
1507
1515
|
id?: string;
|
|
1508
1516
|
key?: string;
|
|
1509
1517
|
label?: string;
|
|
1510
1518
|
iconName?: string;
|
|
1511
|
-
size?: string;
|
|
1512
1519
|
sizePx?: string;
|
|
1513
1520
|
url?: string;
|
|
1514
1521
|
href?: string;
|
|
1515
1522
|
}, {
|
|
1523
|
+
size?: string;
|
|
1516
1524
|
theme?: string;
|
|
1517
1525
|
id?: string;
|
|
1518
1526
|
key?: string;
|
|
1519
1527
|
label?: string;
|
|
1520
1528
|
iconName?: string;
|
|
1521
|
-
size?: string;
|
|
1522
1529
|
sizePx?: string;
|
|
1523
1530
|
url?: string;
|
|
1524
1531
|
href?: string;
|
|
@@ -1745,6 +1752,7 @@ export declare function useRoot(): {
|
|
|
1745
1752
|
text: import('zod').ZodNullable<import('zod').ZodOptional<import('zod').ZodString>>;
|
|
1746
1753
|
url: import('zod').ZodNullable<import('zod').ZodOptional<import('zod').ZodString>>;
|
|
1747
1754
|
}, "strip", import('zod').ZodTypeAny, {
|
|
1755
|
+
text?: string;
|
|
1748
1756
|
size?: "medium" | "small" | "x-small" | {
|
|
1749
1757
|
left?: number;
|
|
1750
1758
|
right?: number;
|
|
@@ -1764,8 +1772,8 @@ export declare function useRoot(): {
|
|
|
1764
1772
|
};
|
|
1765
1773
|
sizePaddingSidesLinked?: boolean;
|
|
1766
1774
|
sizeMobilePaddingSidesLinked?: boolean;
|
|
1767
|
-
text?: string;
|
|
1768
1775
|
}, {
|
|
1776
|
+
text?: string;
|
|
1769
1777
|
size?: "medium" | "small" | "x-small" | {
|
|
1770
1778
|
left?: number;
|
|
1771
1779
|
right?: number;
|
|
@@ -1785,7 +1793,6 @@ export declare function useRoot(): {
|
|
|
1785
1793
|
};
|
|
1786
1794
|
sizePaddingSidesLinked?: boolean;
|
|
1787
1795
|
sizeMobilePaddingSidesLinked?: boolean;
|
|
1788
|
-
text?: string;
|
|
1789
1796
|
}>>>;
|
|
1790
1797
|
}, import('zod').ZodTypeAny, "passthrough"> | import('zod').objectOutputType<{
|
|
1791
1798
|
style: import('zod').ZodNullable<import('zod').ZodOptional<import('zod').ZodObject<{
|
|
@@ -2113,12 +2120,14 @@ export declare function useRoot(): {
|
|
|
2113
2120
|
layout: import('zod').ZodNullable<import('zod').ZodOptional<import('zod').ZodString>>;
|
|
2114
2121
|
contentAlignment: import('zod').ZodNullable<import('zod').ZodOptional<import('zod').ZodEnum<["top", "middle", "bottom"]>>>;
|
|
2115
2122
|
contentAlignmentMobile: import('zod').ZodNullable<import('zod').ZodOptional<import('zod').ZodEnum<["top", "middle", "bottom"]>>>;
|
|
2123
|
+
stackColumnsOnMobile: import('zod').ZodNullable<import('zod').ZodOptional<import('zod').ZodBoolean>>;
|
|
2116
2124
|
}, "strip", import('zod').ZodTypeAny, {
|
|
2125
|
+
layout?: string;
|
|
2117
2126
|
fixedWidths?: [number, number, number, ...unknown[]];
|
|
2118
2127
|
columnsCount?: 2 | 3;
|
|
2119
|
-
layout?: string;
|
|
2120
2128
|
contentAlignment?: "top" | "bottom" | "middle";
|
|
2121
2129
|
contentAlignmentMobile?: "top" | "bottom" | "middle";
|
|
2130
|
+
stackColumnsOnMobile?: boolean;
|
|
2122
2131
|
columns?: [{
|
|
2123
2132
|
childrenIds?: string[];
|
|
2124
2133
|
}, {
|
|
@@ -2127,11 +2136,12 @@ export declare function useRoot(): {
|
|
|
2127
2136
|
childrenIds?: string[];
|
|
2128
2137
|
}, ...unknown[]];
|
|
2129
2138
|
}, {
|
|
2139
|
+
layout?: string;
|
|
2130
2140
|
fixedWidths?: [number, number, number, ...unknown[]];
|
|
2131
2141
|
columnsCount?: 2 | 3;
|
|
2132
|
-
layout?: string;
|
|
2133
2142
|
contentAlignment?: "top" | "bottom" | "middle";
|
|
2134
2143
|
contentAlignmentMobile?: "top" | "bottom" | "middle";
|
|
2144
|
+
stackColumnsOnMobile?: boolean;
|
|
2135
2145
|
columns?: [{
|
|
2136
2146
|
childrenIds?: string[];
|
|
2137
2147
|
}, {
|
|
@@ -2151,8 +2161,8 @@ export declare function useRoot(): {
|
|
|
2151
2161
|
top?: number;
|
|
2152
2162
|
bottom?: number;
|
|
2153
2163
|
};
|
|
2154
|
-
fontFamily?: "MODERN_SANS" | "LATO" | "MERRIWEATHER" | "MONTSERRAT" | "OPEN_SANS" | "OSWALD" | "PACIFICO" | "PLAYFAIR" | "ROBOTO" | "INHERIT";
|
|
2155
2164
|
color?: string;
|
|
2165
|
+
fontFamily?: "MODERN_SANS" | "LATO" | "MERRIWEATHER" | "MONTSERRAT" | "OPEN_SANS" | "OSWALD" | "PACIFICO" | "PLAYFAIR" | "ROBOTO" | "INHERIT";
|
|
2156
2166
|
fontWeight?: "bold" | "normal";
|
|
2157
2167
|
textAlign?: "left" | "center" | "right";
|
|
2158
2168
|
} & {
|
|
@@ -2171,8 +2181,8 @@ export declare function useRoot(): {
|
|
|
2171
2181
|
top?: number;
|
|
2172
2182
|
bottom?: number;
|
|
2173
2183
|
};
|
|
2174
|
-
fontFamily?: any;
|
|
2175
2184
|
color?: string;
|
|
2185
|
+
fontFamily?: any;
|
|
2176
2186
|
fontSize?: number;
|
|
2177
2187
|
textAlign?: "left" | "center" | "right";
|
|
2178
2188
|
} & {
|
|
@@ -2397,9 +2407,9 @@ export declare function useRoot(): {
|
|
|
2397
2407
|
top?: number;
|
|
2398
2408
|
bottom?: number;
|
|
2399
2409
|
};
|
|
2410
|
+
color?: string;
|
|
2400
2411
|
borderColor?: string;
|
|
2401
2412
|
fontFamily?: any;
|
|
2402
|
-
color?: string;
|
|
2403
2413
|
fontSize?: number;
|
|
2404
2414
|
fontWeight?: "bold" | "normal";
|
|
2405
2415
|
textAlign?: "left" | "center" | "right" | "justify";
|
|
@@ -2644,6 +2654,10 @@ export declare function duplicateBlock(blockId: string): void;
|
|
|
2644
2654
|
* Inserta un bloque nuevo justo después del bloque indicado (mismo padre: EmailLayout, Container o celda de columnas).
|
|
2645
2655
|
*/
|
|
2646
2656
|
export declare function insertBlockAfterSibling(siblingBlockId: string, newBlock: TEditorBlock): string | null;
|
|
2657
|
+
/**
|
|
2658
|
+
* Inserta un bloque nuevo justo antes del bloque indicado (mismo padre: EmailLayout, Container o celda de columnas).
|
|
2659
|
+
*/
|
|
2660
|
+
export declare function insertBlockBeforeSibling(siblingBlockId: string, newBlock: TEditorBlock): string | null;
|
|
2647
2661
|
/**
|
|
2648
2662
|
* Aplica varias actualizaciones de bloques al documento en una sola escritura.
|
|
2649
2663
|
* Para callbacks que construyen el nuevo estado con getState() (ej. ColumnsContainer).
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"EditorContext.d.ts","sourceRoot":"","sources":["../../../../../src/documents/editor/EditorContext.tsx"],"names":[],"mappings":"AAAA,OAAO,
|
|
1
|
+
{"version":3,"file":"EditorContext.d.ts","sourceRoot":"","sources":["../../../../../src/documents/editor/EditorContext.tsx"],"names":[],"mappings":"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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4CAE9B;AAGD,wBAAgB,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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"}
|