monto-email-builder 1.2.5 → 1.3.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/App/InspectorDrawer/ConfigurationPanel/input-panels/ColumnsContainerSidebarPanel.d.ts.map +1 -1
- package/dist/App/InspectorDrawer/ConfigurationPanel/input-panels/DividerSidebarPanel.d.ts.map +1 -1
- package/dist/App/InspectorDrawer/ConfigurationPanel/input-panels/EmailLayoutSidebarPanel.d.ts.map +1 -1
- package/dist/App/InspectorDrawer/ConfigurationPanel/input-panels/ImageSidebarPanel.d.ts.map +1 -1
- package/dist/App/InspectorDrawer/ConfigurationPanel/input-panels/SocialsSidebarPanel.d.ts.map +1 -1
- package/dist/App/InspectorDrawer/ConfigurationPanel/input-panels/SpacerSidebarPanel.d.ts.map +1 -1
- package/dist/App/InspectorDrawer/ConfigurationPanel/input-panels/TextSidebarPanel.d.ts.map +1 -1
- package/dist/App/InspectorDrawer/ConfigurationPanel/input-panels/VideoSidebarPanel.d.ts.map +1 -1
- package/dist/App/InspectorDrawer/ConfigurationPanel/input-panels/helpers/inputs/ColorInput/BaseColorInput.d.ts.map +1 -1
- package/dist/App/InspectorDrawer/ConfigurationPanel/input-panels/helpers/inputs/ColumnWidthsInput.d.ts.map +1 -1
- package/dist/App/InspectorDrawer/ConfigurationPanel/input-panels/helpers/inputs/FontSizeInput.d.ts.map +1 -1
- package/dist/App/InspectorDrawer/ConfigurationPanel/input-panels/helpers/inputs/LetterSpacingInput.d.ts.map +1 -1
- package/dist/App/InspectorDrawer/ConfigurationPanel/input-panels/helpers/inputs/PaddingInput.d.ts.map +1 -1
- package/dist/App/InspectorDrawer/ConfigurationPanel/input-panels/helpers/inputs/RadioGroupInput.d.ts.map +1 -1
- package/dist/App/InspectorDrawer/ConfigurationPanel/input-panels/helpers/inputs/TextAlignInput.d.ts.map +1 -1
- package/dist/App/InspectorDrawer/ConfigurationPanel/input-panels/helpers/inputs/TextFormatGroup.d.ts.map +1 -1
- package/dist/App/InspectorDrawer/ConfigurationPanel/input-panels/helpers/style-inputs/SingleStylePropertyPanel.d.ts.map +1 -1
- package/dist/App/InspectorDrawer/ToggleInspectorPanelButton.d.ts.map +1 -1
- package/dist/App/LanguageSwitcher/index.d.ts.map +1 -1
- package/dist/App/SamplesDrawer/ToggleSamplesPanelButton.d.ts.map +1 -1
- package/dist/App/SamplesDrawer/index.d.ts.map +1 -1
- package/dist/App/TemplatePanel/DownloadJson/index.d.ts.map +1 -1
- package/dist/App/TemplatePanel/ImportJson/index.d.ts.map +1 -1
- package/dist/App/TemplatePanel/MainTabsGroup.d.ts.map +1 -1
- package/dist/App/TemplatePanel/RedoButton/index.d.ts.map +1 -1
- package/dist/App/TemplatePanel/SaveAndExitButton.d.ts.map +1 -1
- package/dist/App/TemplatePanel/SaveButton.d.ts.map +1 -1
- package/dist/App/TemplatePanel/ShareButton.d.ts.map +1 -1
- package/dist/App/TemplatePanel/UndoButton/index.d.ts.map +1 -1
- package/dist/App/TemplatePanel/index.d.ts.map +1 -1
- package/dist/HtmlEditor/index.d.ts.map +1 -1
- package/dist/chunks/{chunk-_7XTjFEi.js → chunk-kYwVqyDL.js} +77 -55
- package/dist/documents/blocks/ColumnsContainer/ColumnsContainerPropsSchema.d.ts +10 -10
- package/dist/documents/blocks/Container/ContainerPropsSchema.d.ts +4 -4
- package/dist/documents/blocks/Image/ImageEditor.d.ts.map +1 -1
- package/dist/documents/blocks/Socials/SocialsPropsSchema.d.ts +14 -14
- package/dist/documents/blocks/Text/TextEditor.d.ts.map +1 -1
- package/dist/documents/blocks/Text/variableCatalog.d.ts +7 -1
- package/dist/documents/blocks/Text/variableCatalog.d.ts.map +1 -1
- package/dist/documents/blocks/Video/VideoEditor.d.ts.map +1 -1
- package/dist/documents/blocks/Video/VideoPropsSchema.d.ts +14 -14
- package/dist/documents/blocks/helpers/EditorChildrenIds/AddBlockMenu/DividerButton.d.ts.map +1 -1
- package/dist/documents/blocks/helpers/EditorChildrenIds/AddBlockMenu/PlaceholderButton.d.ts.map +1 -1
- package/dist/documents/blocks/helpers/EditorChildrenIds/AddBlockMenu/buttons.d.ts.map +1 -1
- package/dist/documents/blocks/helpers/block-wrappers/EditorBlockWrapper.d.ts.map +1 -1
- package/dist/documents/blocks/helpers/block-wrappers/TuneMenu.d.ts.map +1 -1
- package/dist/documents/editor/EditorContext.d.ts +1 -1
- package/dist/documents/editor/core.d.ts +126 -126
- package/dist/html-editor.js +114 -112
- package/dist/index.js +3259 -3036
- package/dist/utils/resolveMuiIcon.d.ts +3 -0
- package/dist/utils/resolveMuiIcon.d.ts.map +1 -0
- package/package.json +1 -1
|
@@ -56,7 +56,7 @@ declare const SocialsPropsSchema: z.ZodObject<{
|
|
|
56
56
|
textAlign: z.ZodNullable<z.ZodOptional<z.ZodEnum<["left", "center", "right"]>>>;
|
|
57
57
|
}, "strip", z.ZodTypeAny, {
|
|
58
58
|
backgroundColor?: string | null | undefined;
|
|
59
|
-
textAlign?: "
|
|
59
|
+
textAlign?: "center" | "left" | "right" | null | undefined;
|
|
60
60
|
padding?: {
|
|
61
61
|
bottom: number;
|
|
62
62
|
left: number;
|
|
@@ -65,7 +65,7 @@ declare const SocialsPropsSchema: z.ZodObject<{
|
|
|
65
65
|
} | null | undefined;
|
|
66
66
|
}, {
|
|
67
67
|
backgroundColor?: string | null | undefined;
|
|
68
|
-
textAlign?: "
|
|
68
|
+
textAlign?: "center" | "left" | "right" | null | undefined;
|
|
69
69
|
padding?: {
|
|
70
70
|
bottom: number;
|
|
71
71
|
left: number;
|
|
@@ -74,18 +74,9 @@ declare const SocialsPropsSchema: z.ZodObject<{
|
|
|
74
74
|
} | null | undefined;
|
|
75
75
|
}>>>;
|
|
76
76
|
}, "strip", z.ZodTypeAny, {
|
|
77
|
-
props?: {
|
|
78
|
-
platforms?: ("x" | "facebook" | "instagram" | "linkedin" | "youtube" | "tiktok" | "snapchat" | "whatsapp" | "telegram" | "discord" | "reddit" | "twitch" | "threads")[] | null | undefined;
|
|
79
|
-
iconStyle?: "standard" | "no-border-black" | "no-border-white" | "origin-colorful" | "with-border-black" | "with-border-white" | "with-border-line-colorful" | "with-border-line-black" | "with-border-line-white" | null | undefined;
|
|
80
|
-
iconSize?: number | null | undefined;
|
|
81
|
-
socials?: {
|
|
82
|
-
platform: "x" | "facebook" | "instagram" | "linkedin" | "youtube" | "tiktok" | "snapchat" | "whatsapp" | "telegram" | "discord" | "reddit" | "twitch" | "threads";
|
|
83
|
-
url?: string | null | undefined;
|
|
84
|
-
}[] | null | undefined;
|
|
85
|
-
} | null | undefined;
|
|
86
77
|
style?: {
|
|
87
78
|
backgroundColor?: string | null | undefined;
|
|
88
|
-
textAlign?: "
|
|
79
|
+
textAlign?: "center" | "left" | "right" | null | undefined;
|
|
89
80
|
padding?: {
|
|
90
81
|
bottom: number;
|
|
91
82
|
left: number;
|
|
@@ -93,7 +84,6 @@ declare const SocialsPropsSchema: z.ZodObject<{
|
|
|
93
84
|
top: number;
|
|
94
85
|
} | null | undefined;
|
|
95
86
|
} | null | undefined;
|
|
96
|
-
}, {
|
|
97
87
|
props?: {
|
|
98
88
|
platforms?: ("x" | "facebook" | "instagram" | "linkedin" | "youtube" | "tiktok" | "snapchat" | "whatsapp" | "telegram" | "discord" | "reddit" | "twitch" | "threads")[] | null | undefined;
|
|
99
89
|
iconStyle?: "standard" | "no-border-black" | "no-border-white" | "origin-colorful" | "with-border-black" | "with-border-white" | "with-border-line-colorful" | "with-border-line-black" | "with-border-line-white" | null | undefined;
|
|
@@ -103,9 +93,10 @@ declare const SocialsPropsSchema: z.ZodObject<{
|
|
|
103
93
|
url?: string | null | undefined;
|
|
104
94
|
}[] | null | undefined;
|
|
105
95
|
} | null | undefined;
|
|
96
|
+
}, {
|
|
106
97
|
style?: {
|
|
107
98
|
backgroundColor?: string | null | undefined;
|
|
108
|
-
textAlign?: "
|
|
99
|
+
textAlign?: "center" | "left" | "right" | null | undefined;
|
|
109
100
|
padding?: {
|
|
110
101
|
bottom: number;
|
|
111
102
|
left: number;
|
|
@@ -113,6 +104,15 @@ declare const SocialsPropsSchema: z.ZodObject<{
|
|
|
113
104
|
top: number;
|
|
114
105
|
} | null | undefined;
|
|
115
106
|
} | null | undefined;
|
|
107
|
+
props?: {
|
|
108
|
+
platforms?: ("x" | "facebook" | "instagram" | "linkedin" | "youtube" | "tiktok" | "snapchat" | "whatsapp" | "telegram" | "discord" | "reddit" | "twitch" | "threads")[] | null | undefined;
|
|
109
|
+
iconStyle?: "standard" | "no-border-black" | "no-border-white" | "origin-colorful" | "with-border-black" | "with-border-white" | "with-border-line-colorful" | "with-border-line-black" | "with-border-line-white" | null | undefined;
|
|
110
|
+
iconSize?: number | null | undefined;
|
|
111
|
+
socials?: {
|
|
112
|
+
platform: "x" | "facebook" | "instagram" | "linkedin" | "youtube" | "tiktok" | "snapchat" | "whatsapp" | "telegram" | "discord" | "reddit" | "twitch" | "threads";
|
|
113
|
+
url?: string | null | undefined;
|
|
114
|
+
}[] | null | undefined;
|
|
115
|
+
} | null | undefined;
|
|
116
116
|
}>;
|
|
117
117
|
export default SocialsPropsSchema;
|
|
118
118
|
export type SocialsProps = z.infer<typeof SocialsPropsSchema>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"TextEditor.d.ts","sourceRoot":"","sources":["../../../../src/documents/blocks/Text/TextEditor.tsx"],"names":[],"mappings":"AACA,OAAO,EAAQ,SAAS,EAAuC,MAAM,wBAAwB,CAAC;AA2W9F,MAAM,CAAC,OAAO,UAAU,UAAU,CAAC,KAAK,EAAE,SAAS,
|
|
1
|
+
{"version":3,"file":"TextEditor.d.ts","sourceRoot":"","sources":["../../../../src/documents/blocks/Text/TextEditor.tsx"],"names":[],"mappings":"AACA,OAAO,EAAQ,SAAS,EAAuC,MAAM,wBAAwB,CAAC;AA2W9F,MAAM,CAAC,OAAO,UAAU,UAAU,CAAC,KAAK,EAAE,SAAS,2CA0/BlD"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export type VariableGroupId = 'contacts' | 'email' | 'organization' | 'date' | 'links';
|
|
1
|
+
export type VariableGroupId = 'custom' | 'contacts' | 'email' | 'organization' | 'date' | 'links';
|
|
2
2
|
export type VariableKind = 'user' | 'builtin';
|
|
3
3
|
export type VariableGroup = {
|
|
4
4
|
id: VariableGroupId;
|
|
@@ -8,6 +8,11 @@ export type VariableGroup = {
|
|
|
8
8
|
kind: VariableKind;
|
|
9
9
|
}[];
|
|
10
10
|
};
|
|
11
|
+
export type CustomVariableDefinition = {
|
|
12
|
+
name: string;
|
|
13
|
+
label: string;
|
|
14
|
+
};
|
|
15
|
+
export declare const VARIABLE_NAME_RE: RegExp;
|
|
11
16
|
/** 变量目录(基础内置项)。自定义联系人属性会在 UI 层动态追加。 */
|
|
12
17
|
export declare const BASE_VARIABLE_GROUPS: VariableGroup[];
|
|
13
18
|
export declare function buildAllowedVariableNameSets(args: {
|
|
@@ -16,6 +21,7 @@ export declare function buildAllowedVariableNameSets(args: {
|
|
|
16
21
|
AttrField: string;
|
|
17
22
|
Enable?: number | boolean;
|
|
18
23
|
}[] | null;
|
|
24
|
+
customVariables?: CustomVariableDefinition[] | null;
|
|
19
25
|
}): {
|
|
20
26
|
allowedUser: Set<string>;
|
|
21
27
|
allowedBuiltin: Set<string>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"variableCatalog.d.ts","sourceRoot":"","sources":["../../../../src/documents/blocks/Text/variableCatalog.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,eAAe,GAAG,UAAU,GAAG,OAAO,GAAG,cAAc,GAAG,MAAM,GAAG,OAAO,CAAC;
|
|
1
|
+
{"version":3,"file":"variableCatalog.d.ts","sourceRoot":"","sources":["../../../../src/documents/blocks/Text/variableCatalog.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,eAAe,GAAG,QAAQ,GAAG,UAAU,GAAG,OAAO,GAAG,cAAc,GAAG,MAAM,GAAG,OAAO,CAAC;AAElG,MAAM,MAAM,YAAY,GAAG,MAAM,GAAG,SAAS,CAAC;AAE9C,MAAM,MAAM,aAAa,GAAG;IAC1B,EAAE,EAAE,eAAe,CAAC;IACpB,KAAK,EAAE;QAAE,IAAI,EAAE,MAAM,CAAC;QAAC,QAAQ,EAAE,MAAM,CAAC;QAAC,IAAI,EAAE,YAAY,CAAA;KAAE,EAAE,CAAC;CACjE,CAAC;AAEF,MAAM,MAAM,wBAAwB,GAAG;IAAE,IAAI,EAAE,MAAM,CAAC;IAAC,KAAK,EAAE,MAAM,CAAA;CAAE,CAAC;AAEvE,eAAO,MAAM,gBAAgB,QAA6B,CAAC;AAE3D,uCAAuC;AACvC,eAAO,MAAM,oBAAoB,EAAE,aAAa,EAiD/C,CAAC;AAEF,wBAAgB,4BAA4B,CAAC,IAAI,EAAE;IACjD,UAAU,CAAC,EAAE,aAAa,EAAE,CAAC;IAC7B,iBAAiB,CAAC,EAAE;QAAE,SAAS,EAAE,MAAM,CAAC;QAAC,MAAM,CAAC,EAAE,MAAM,GAAG,OAAO,CAAA;KAAE,EAAE,GAAG,IAAI,CAAC;IAC9E,eAAe,CAAC,EAAE,wBAAwB,EAAE,GAAG,IAAI,CAAC;CACrD;;;EA4BA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"VideoEditor.d.ts","sourceRoot":"","sources":["../../../../src/documents/blocks/Video/VideoEditor.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"VideoEditor.d.ts","sourceRoot":"","sources":["../../../../src/documents/blocks/Video/VideoEditor.tsx"],"names":[],"mappings":"AAOA,OAAO,EAAS,UAAU,EAAE,MAAM,yBAAyB,CAAC;AAY5D,KAAK,gBAAgB,GAAG,UAAU,CAAC;AAEnC,MAAM,CAAC,OAAO,UAAU,WAAW,CAAC,KAAK,EAAE,gBAAgB,2CAqO1D"}
|
|
@@ -55,7 +55,7 @@ declare const VideoPropsSchema: z.ZodObject<{
|
|
|
55
55
|
textAlign: z.ZodNullable<z.ZodOptional<z.ZodEnum<["left", "center", "right"]>>>;
|
|
56
56
|
}, "strip", z.ZodTypeAny, {
|
|
57
57
|
backgroundColor?: string | null | undefined;
|
|
58
|
-
textAlign?: "
|
|
58
|
+
textAlign?: "center" | "left" | "right" | null | undefined;
|
|
59
59
|
padding?: {
|
|
60
60
|
bottom: number;
|
|
61
61
|
left: number;
|
|
@@ -64,7 +64,7 @@ declare const VideoPropsSchema: z.ZodObject<{
|
|
|
64
64
|
} | null | undefined;
|
|
65
65
|
}, {
|
|
66
66
|
backgroundColor?: string | null | undefined;
|
|
67
|
-
textAlign?: "
|
|
67
|
+
textAlign?: "center" | "left" | "right" | null | undefined;
|
|
68
68
|
padding?: {
|
|
69
69
|
bottom: number;
|
|
70
70
|
left: number;
|
|
@@ -73,6 +73,16 @@ declare const VideoPropsSchema: z.ZodObject<{
|
|
|
73
73
|
} | null | undefined;
|
|
74
74
|
}>>>;
|
|
75
75
|
}, "strip", z.ZodTypeAny, {
|
|
76
|
+
style?: {
|
|
77
|
+
backgroundColor?: string | null | undefined;
|
|
78
|
+
textAlign?: "center" | "left" | "right" | null | undefined;
|
|
79
|
+
padding?: {
|
|
80
|
+
bottom: number;
|
|
81
|
+
left: number;
|
|
82
|
+
right: number;
|
|
83
|
+
top: number;
|
|
84
|
+
} | null | undefined;
|
|
85
|
+
} | null | undefined;
|
|
76
86
|
props?: {
|
|
77
87
|
height?: string | null | undefined;
|
|
78
88
|
width?: string | null | undefined;
|
|
@@ -85,9 +95,10 @@ declare const VideoPropsSchema: z.ZodObject<{
|
|
|
85
95
|
contentAlignment?: "bottom" | "top" | "middle" | null | undefined;
|
|
86
96
|
linkHref?: string | null | undefined;
|
|
87
97
|
} | null | undefined;
|
|
98
|
+
}, {
|
|
88
99
|
style?: {
|
|
89
100
|
backgroundColor?: string | null | undefined;
|
|
90
|
-
textAlign?: "
|
|
101
|
+
textAlign?: "center" | "left" | "right" | null | undefined;
|
|
91
102
|
padding?: {
|
|
92
103
|
bottom: number;
|
|
93
104
|
left: number;
|
|
@@ -95,7 +106,6 @@ declare const VideoPropsSchema: z.ZodObject<{
|
|
|
95
106
|
top: number;
|
|
96
107
|
} | null | undefined;
|
|
97
108
|
} | null | undefined;
|
|
98
|
-
}, {
|
|
99
109
|
props?: {
|
|
100
110
|
height?: string | null | undefined;
|
|
101
111
|
width?: string | null | undefined;
|
|
@@ -108,16 +118,6 @@ declare const VideoPropsSchema: z.ZodObject<{
|
|
|
108
118
|
contentAlignment?: "bottom" | "top" | "middle" | null | undefined;
|
|
109
119
|
linkHref?: string | null | undefined;
|
|
110
120
|
} | null | undefined;
|
|
111
|
-
style?: {
|
|
112
|
-
backgroundColor?: string | null | undefined;
|
|
113
|
-
textAlign?: "left" | "right" | "center" | null | undefined;
|
|
114
|
-
padding?: {
|
|
115
|
-
bottom: number;
|
|
116
|
-
left: number;
|
|
117
|
-
right: number;
|
|
118
|
-
top: number;
|
|
119
|
-
} | null | undefined;
|
|
120
|
-
} | null | undefined;
|
|
121
121
|
}>;
|
|
122
122
|
export default VideoPropsSchema;
|
|
123
123
|
export type VideoProps = z.infer<typeof VideoPropsSchema>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DividerButton.d.ts","sourceRoot":"","sources":["../../../../../../src/documents/blocks/helpers/EditorChildrenIds/AddBlockMenu/DividerButton.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"DividerButton.d.ts","sourceRoot":"","sources":["../../../../../../src/documents/blocks/helpers/EditorChildrenIds/AddBlockMenu/DividerButton.tsx"],"names":[],"mappings":"AASA,KAAK,KAAK,GAAG;IACX,aAAa,EAAE,WAAW,GAAG,IAAI,CAAC;IAClC,OAAO,EAAE,MAAM,IAAI,CAAC;CACrB,CAAC;AACF,MAAM,CAAC,OAAO,UAAU,aAAa,CAAC,EAAE,aAAa,EAAE,OAAO,EAAE,EAAE,KAAK,2CAsDtE"}
|
package/dist/documents/blocks/helpers/EditorChildrenIds/AddBlockMenu/PlaceholderButton.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"PlaceholderButton.d.ts","sourceRoot":"","sources":["../../../../../../src/documents/blocks/helpers/EditorChildrenIds/AddBlockMenu/PlaceholderButton.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"PlaceholderButton.d.ts","sourceRoot":"","sources":["../../../../../../src/documents/blocks/helpers/EditorChildrenIds/AddBlockMenu/PlaceholderButton.tsx"],"names":[],"mappings":"AASA,KAAK,KAAK,GAAG;IACX,OAAO,EAAE,MAAM,IAAI,CAAC;CACrB,CAAC;AACF,MAAM,CAAC,OAAO,UAAU,iBAAiB,CAAC,EAAE,OAAO,EAAE,EAAE,KAAK,2CA2B3D"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"buttons.d.ts","sourceRoot":"","sources":["../../../../../../src/documents/blocks/helpers/EditorChildrenIds/AddBlockMenu/buttons.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"buttons.d.ts","sourceRoot":"","sources":["../../../../../../src/documents/blocks/helpers/EditorChildrenIds/AddBlockMenu/buttons.tsx"],"names":[],"mappings":"AAcA,OAAO,EAAE,YAAY,EAAE,MAAM,yBAAyB,CAAC;AAiBvD,KAAK,YAAY,GAAG;IAClB,KAAK,EAAE,MAAM,CAAC;IACd,IAAI,EAAE,GAAG,CAAC,OAAO,CAAC;IAClB,KAAK,EAAE,MAAM,YAAY,CAAC;CAC3B,CAAC;AACF,eAAO,MAAM,OAAO,EAAE,YAAY,EAkLjC,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"EditorBlockWrapper.d.ts","sourceRoot":"","sources":["../../../../../src/documents/blocks/helpers/block-wrappers/EditorBlockWrapper.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"EditorBlockWrapper.d.ts","sourceRoot":"","sources":["../../../../../src/documents/blocks/helpers/block-wrappers/EditorBlockWrapper.tsx"],"names":[],"mappings":"AAYA,KAAK,wBAAwB,GAAG;IAC9B,QAAQ,EAAE,GAAG,CAAC,OAAO,CAAC;CACvB,CAAC;AAEF,MAAM,CAAC,OAAO,UAAU,kBAAkB,CAAC,EAAE,QAAQ,EAAE,EAAE,wBAAwB,2CAwNhF"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"TuneMenu.d.ts","sourceRoot":"","sources":["../../../../../src/documents/blocks/helpers/block-wrappers/TuneMenu.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"TuneMenu.d.ts","sourceRoot":"","sources":["../../../../../src/documents/blocks/helpers/block-wrappers/TuneMenu.tsx"],"names":[],"mappings":"AAkGA,KAAK,KAAK,GAAG;IACX,OAAO,EAAE,MAAM,CAAC;CACjB,CAAC;AACF,MAAM,CAAC,OAAO,UAAU,QAAQ,CAAC,EAAE,OAAO,EAAE,EAAE,KAAK,2CAkWlD"}
|
|
@@ -95,7 +95,7 @@ export declare function useContactAttributes(): ContactAttribute[];
|
|
|
95
95
|
export declare function useDocument(): TEditorConfiguration;
|
|
96
96
|
export declare function useSelectedBlockId(): string | null;
|
|
97
97
|
export declare function useSelectedScreenSize(): "desktop" | "mobile";
|
|
98
|
-
export declare function useSelectedMainTab(): "
|
|
98
|
+
export declare function useSelectedMainTab(): "html" | "preview" | "editor" | "json";
|
|
99
99
|
export declare function setSelectedMainTab(selectedMainTab: TValue['selectedMainTab']): void;
|
|
100
100
|
export declare function useSelectedSidebarTab(): "styles" | "block-configuration";
|
|
101
101
|
export declare function useInspectorDrawerOpen(): boolean;
|