designertool 0.55.0 → 0.57.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/PostcardDesigner.vue.d.ts +3 -1
- package/dist/assets/icons/template-icons/loading-circle-icon.vue.d.ts +1 -1
- package/dist/components/Image/ImageLibrary.vue.d.ts +1 -1
- package/dist/components/Image/ImageLoadingCard.vue.d.ts +1 -1
- package/dist/components/Image/ImageUpload.vue.d.ts +2 -2
- package/dist/components/Image/ImageUploadUrl.vue.d.ts +1 -1
- package/dist/components/TextEditor/Selects/AlignSelector.vue.d.ts +1 -1
- package/dist/components/TextEditor/Selects/AlignToPageSelector.vue.d.ts +1 -1
- package/dist/components/TextEditor/Selects/OrderSelector.vue.d.ts +1 -1
- package/dist/components/TextEditor/TipTapEditor.vue.d.ts +1 -1
- package/dist/components/TextEditor/TipTapTextFormatter.vue.d.ts +1 -1
- package/dist/components/display-elements/Item.vue.d.ts +1 -1
- package/dist/components/display-elements/ItemWrapper.vue.d.ts +6 -6
- package/dist/components/display-elements/displayables/Code.vue.d.ts +1 -1
- package/dist/components/display-elements/displayables/Map.vue.d.ts +1 -1
- package/dist/components/display-elements/displayables/Paragraph.vue.d.ts +2 -2
- package/dist/components/display-elements/displayables/QrCode.vue.d.ts +2 -2
- package/dist/components/display-elements/displayables/Text.vue.d.ts +1 -1
- package/dist/components/display-elements/displayables/Tracking.vue.d.ts +1 -1
- package/dist/components/pages/Canvas.vue.d.ts +2 -2
- package/dist/components/pages/EditPage.vue.d.ts +3 -3
- package/dist/components/pages/PreviewPage.vue.d.ts +2 -2
- package/dist/components/share/Border.vue.d.ts +1 -1
- package/dist/components/share/Button.vue.d.ts +2 -2
- package/dist/components/share/ColorPicker.vue.d.ts +3 -3
- package/dist/components/share/GoogleAutocomplete.vue.d.ts +2 -2
- package/dist/components/share/HeaderSection.vue.d.ts +1 -1
- package/dist/components/share/IconButton.vue.d.ts +2 -2
- package/dist/components/share/Input.vue.d.ts +3 -3
- package/dist/components/share/ItemActions.vue.d.ts +1 -1
- package/dist/components/share/Modal.vue.d.ts +2 -2
- package/dist/components/share/Position.vue.d.ts +1 -1
- package/dist/components/share/SidebarTabs.vue.d.ts +1 -1
- package/dist/components/share/Slider.vue.d.ts +1 -1
- package/dist/components/share/Tooltip.vue.d.ts +2 -2
- package/dist/components/sidebar/Background.vue.d.ts +3 -3
- package/dist/components/sidebar/Layer.vue.d.ts +2 -2
- package/dist/components/sidebar/Map.vue.d.ts +1 -1
- package/dist/components/sidebar/Template.vue.d.ts +5 -5
- package/dist/components/sidebar/Tracking.vue.d.ts +1 -1
- package/dist/components/sidebar/Variable.vue.d.ts +6 -6
- package/dist/composable/generateHtml.d.ts +1 -0
- package/dist/composable/googleMap.d.ts +11 -0
- package/dist/designertool.js +3567 -3556
- package/dist/entry.d.ts +2 -2
- package/dist/layouts/DeviceOverlay.vue.d.ts +1 -1
- package/dist/layouts/MainLayout.vue.d.ts +5 -5
- package/dist/layouts/SubscribeOverlay.vue.d.ts +1 -1
- package/dist/layouts/TheFooter.vue.d.ts +1 -1
- package/dist/layouts/TheSideBar.vue.d.ts +1 -1
- package/dist/stores/global-store.d.ts +12 -0
- package/dist/stores/history-store.d.ts +1 -0
- package/dist/stores/item-store.d.ts +11 -0
- package/package.json +1 -1
package/dist/entry.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
declare const PostcardDesignerElement:
|
|
1
|
+
declare const PostcardDesignerElement: import('vue').VueElementConstructor<unknown>;
|
|
2
2
|
declare const register: () => void;
|
|
3
3
|
export { PostcardDesignerElement, register };
|
|
4
4
|
declare global {
|
|
5
5
|
interface HTMLElementTagNameMap {
|
|
6
|
-
'postcard-designer':
|
|
6
|
+
'postcard-designer': HTMLElement;
|
|
7
7
|
}
|
|
8
8
|
}
|
|
@@ -9,5 +9,5 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
9
9
|
type: PropType<"tablet" | "mobile">;
|
|
10
10
|
required: true;
|
|
11
11
|
};
|
|
12
|
-
}>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {},
|
|
12
|
+
}>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
13
13
|
export default _default;
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {
|
|
2
|
-
mainContent:
|
|
2
|
+
mainContent: HTMLDivElement;
|
|
3
3
|
editPage: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
4
4
|
isGuidelines: boolean;
|
|
5
5
|
}> & Readonly<{}>, {
|
|
6
6
|
updateSize: (manualChange?: boolean, zoomToFit?: boolean) => void;
|
|
7
7
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
|
|
8
|
-
containerRef:
|
|
9
|
-
postCard:
|
|
10
|
-
},
|
|
8
|
+
containerRef: HTMLDivElement;
|
|
9
|
+
postCard: HTMLDivElement;
|
|
10
|
+
}, HTMLDivElement, import('vue').ComponentProvideOptions, {
|
|
11
11
|
P: {};
|
|
12
12
|
B: {};
|
|
13
13
|
D: {};
|
|
@@ -19,5 +19,5 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
19
19
|
}> & Readonly<{}>, {
|
|
20
20
|
updateSize: (manualChange?: boolean, zoomToFit?: boolean) => void;
|
|
21
21
|
}, {}, {}, {}, {}> | null;
|
|
22
|
-
},
|
|
22
|
+
}, HTMLDivElement>;
|
|
23
23
|
export default _default;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {},
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
2
2
|
export default _default;
|
|
@@ -8,5 +8,5 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
8
8
|
}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
9
9
|
onShowLayers?: ((...args: any[]) => any) | undefined;
|
|
10
10
|
onShowGuidelines?: ((...args: any[]) => any) | undefined;
|
|
11
|
-
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {},
|
|
11
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
12
12
|
export default _default;
|
|
@@ -38,5 +38,5 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
38
38
|
editable: boolean;
|
|
39
39
|
activeKey: string;
|
|
40
40
|
showLayers: boolean;
|
|
41
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {},
|
|
41
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
42
42
|
export default _default;
|
|
@@ -18,6 +18,7 @@ export declare const useGlobal: import('pinia').StoreDefinition<"global", {
|
|
|
18
18
|
editAttribute: (className: string, attributes: Object) => void;
|
|
19
19
|
deleteAttributeFromId: (className: string, attributes: string[]) => void;
|
|
20
20
|
deleteClassAttribute: (className: string) => void;
|
|
21
|
+
updateElementContent: (selector: string, content: string) => void;
|
|
21
22
|
initHtml: (htmlTitle: string) => void;
|
|
22
23
|
getHtmlText: () => string;
|
|
23
24
|
getStyleByKey: (key: string) => import('vue').StyleValue;
|
|
@@ -50,6 +51,7 @@ export declare const useGlobal: import('pinia').StoreDefinition<"global", {
|
|
|
50
51
|
editAttribute: (className: string, attributes: Object) => void;
|
|
51
52
|
deleteAttributeFromId: (className: string, attributes: string[]) => void;
|
|
52
53
|
deleteClassAttribute: (className: string) => void;
|
|
54
|
+
updateElementContent: (selector: string, content: string) => void;
|
|
53
55
|
initHtml: (htmlTitle: string) => void;
|
|
54
56
|
getHtmlText: () => string;
|
|
55
57
|
getStyleByKey: (key: string) => import('vue').StyleValue;
|
|
@@ -81,6 +83,7 @@ export declare const useGlobal: import('pinia').StoreDefinition<"global", {
|
|
|
81
83
|
editAttribute: (className: string, attributes: Object) => void;
|
|
82
84
|
deleteAttributeFromId: (className: string, attributes: string[]) => void;
|
|
83
85
|
deleteClassAttribute: (className: string) => void;
|
|
86
|
+
updateElementContent: (selector: string, content: string) => void;
|
|
84
87
|
initHtml: (htmlTitle: string) => void;
|
|
85
88
|
getHtmlText: () => string;
|
|
86
89
|
getStyleByKey: (key: string) => import('vue').StyleValue;
|
|
@@ -108,6 +111,7 @@ export declare const useGlobal: import('pinia').StoreDefinition<"global", {
|
|
|
108
111
|
editAttribute: (className: string, attributes: Object) => void;
|
|
109
112
|
deleteAttributeFromId: (className: string, attributes: string[]) => void;
|
|
110
113
|
deleteClassAttribute: (className: string) => void;
|
|
114
|
+
updateElementContent: (selector: string, content: string) => void;
|
|
111
115
|
initHtml: (htmlTitle: string) => void;
|
|
112
116
|
getHtmlText: () => string;
|
|
113
117
|
getStyleByKey: (key: string) => import('vue').StyleValue;
|
|
@@ -134,6 +138,7 @@ export declare const useGlobal: import('pinia').StoreDefinition<"global", {
|
|
|
134
138
|
editAttribute: (className: string, attributes: Object) => void;
|
|
135
139
|
deleteAttributeFromId: (className: string, attributes: string[]) => void;
|
|
136
140
|
deleteClassAttribute: (className: string) => void;
|
|
141
|
+
updateElementContent: (selector: string, content: string) => void;
|
|
137
142
|
initHtml: (htmlTitle: string) => void;
|
|
138
143
|
getHtmlText: () => string;
|
|
139
144
|
getStyleByKey: (key: string) => import('vue').StyleValue;
|
|
@@ -162,6 +167,7 @@ export declare const useGlobal: import('pinia').StoreDefinition<"global", {
|
|
|
162
167
|
editAttribute: (className: string, attributes: Object) => void;
|
|
163
168
|
deleteAttributeFromId: (className: string, attributes: string[]) => void;
|
|
164
169
|
deleteClassAttribute: (className: string) => void;
|
|
170
|
+
updateElementContent: (selector: string, content: string) => void;
|
|
165
171
|
initHtml: (htmlTitle: string) => void;
|
|
166
172
|
getHtmlText: () => string;
|
|
167
173
|
getStyleByKey: (key: string) => import('vue').StyleValue;
|
|
@@ -190,6 +196,7 @@ export declare const useGlobal: import('pinia').StoreDefinition<"global", {
|
|
|
190
196
|
editAttribute: (className: string, attributes: Object) => void;
|
|
191
197
|
deleteAttributeFromId: (className: string, attributes: string[]) => void;
|
|
192
198
|
deleteClassAttribute: (className: string) => void;
|
|
199
|
+
updateElementContent: (selector: string, content: string) => void;
|
|
193
200
|
initHtml: (htmlTitle: string) => void;
|
|
194
201
|
getHtmlText: () => string;
|
|
195
202
|
getStyleByKey: (key: string) => import('vue').StyleValue;
|
|
@@ -228,6 +235,7 @@ export declare const useGlobal: import('pinia').StoreDefinition<"global", {
|
|
|
228
235
|
editAttribute: (className: string, attributes: Object) => void;
|
|
229
236
|
deleteAttributeFromId: (className: string, attributes: string[]) => void;
|
|
230
237
|
deleteClassAttribute: (className: string) => void;
|
|
238
|
+
updateElementContent: (selector: string, content: string) => void;
|
|
231
239
|
initHtml: (htmlTitle: string) => void;
|
|
232
240
|
getHtmlText: () => string;
|
|
233
241
|
getStyleByKey: (key: string) => import('vue').StyleValue;
|
|
@@ -259,6 +267,7 @@ export declare const useGlobal: import('pinia').StoreDefinition<"global", {
|
|
|
259
267
|
editAttribute: (className: string, attributes: Object) => void;
|
|
260
268
|
deleteAttributeFromId: (className: string, attributes: string[]) => void;
|
|
261
269
|
deleteClassAttribute: (className: string) => void;
|
|
270
|
+
updateElementContent: (selector: string, content: string) => void;
|
|
262
271
|
initHtml: (htmlTitle: string) => void;
|
|
263
272
|
getHtmlText: () => string;
|
|
264
273
|
getStyleByKey: (key: string) => import('vue').StyleValue;
|
|
@@ -288,6 +297,7 @@ export declare const useGlobal: import('pinia').StoreDefinition<"global", {
|
|
|
288
297
|
editAttribute: (className: string, attributes: Object) => void;
|
|
289
298
|
deleteAttributeFromId: (className: string, attributes: string[]) => void;
|
|
290
299
|
deleteClassAttribute: (className: string) => void;
|
|
300
|
+
updateElementContent: (selector: string, content: string) => void;
|
|
291
301
|
initHtml: (htmlTitle: string) => void;
|
|
292
302
|
getHtmlText: () => string;
|
|
293
303
|
getStyleByKey: (key: string) => import('vue').StyleValue;
|
|
@@ -320,6 +330,7 @@ export declare const useGlobal: import('pinia').StoreDefinition<"global", {
|
|
|
320
330
|
editAttribute: (className: string, attributes: Object) => void;
|
|
321
331
|
deleteAttributeFromId: (className: string, attributes: string[]) => void;
|
|
322
332
|
deleteClassAttribute: (className: string) => void;
|
|
333
|
+
updateElementContent: (selector: string, content: string) => void;
|
|
323
334
|
initHtml: (htmlTitle: string) => void;
|
|
324
335
|
getHtmlText: () => string;
|
|
325
336
|
getStyleByKey: (key: string) => import('vue').StyleValue;
|
|
@@ -581,6 +592,7 @@ export declare const useGlobal: import('pinia').StoreDefinition<"global", {
|
|
|
581
592
|
editAttribute: (className: string, attributes: Object) => void;
|
|
582
593
|
deleteAttributeFromId: (className: string, attributes: string[]) => void;
|
|
583
594
|
deleteClassAttribute: (className: string) => void;
|
|
595
|
+
updateElementContent: (selector: string, content: string) => void;
|
|
584
596
|
initHtml: (htmlTitle: string) => void;
|
|
585
597
|
getHtmlText: () => string;
|
|
586
598
|
getStyleByKey: (key: string) => import('vue').StyleValue;
|
|
@@ -12,6 +12,7 @@ export declare const useHistory: import('pinia').StoreDefinition<"history", {
|
|
|
12
12
|
editAttribute: (className: string, attributes: Object) => void;
|
|
13
13
|
deleteAttributeFromId: (className: string, attributes: string[]) => void;
|
|
14
14
|
deleteClassAttribute: (className: string) => void;
|
|
15
|
+
updateElementContent: (selector: string, content: string) => void;
|
|
15
16
|
initHtml: (htmlTitle: string) => void;
|
|
16
17
|
getHtmlText: () => string;
|
|
17
18
|
getStyleByKey: (key: string) => import('vue').StyleValue;
|
|
@@ -17,6 +17,7 @@ export declare const useItems: import('pinia').StoreDefinition<"items", {
|
|
|
17
17
|
editAttribute: (className: string, attributes: Object) => void;
|
|
18
18
|
deleteAttributeFromId: (className: string, attributes: string[]) => void;
|
|
19
19
|
deleteClassAttribute: (className: string) => void;
|
|
20
|
+
updateElementContent: (selector: string, content: string) => void;
|
|
20
21
|
initHtml: (htmlTitle: string) => void;
|
|
21
22
|
getHtmlText: () => string;
|
|
22
23
|
getStyleByKey: (key: string) => import('vue').StyleValue;
|
|
@@ -49,6 +50,7 @@ export declare const useItems: import('pinia').StoreDefinition<"items", {
|
|
|
49
50
|
editAttribute: (className: string, attributes: Object) => void;
|
|
50
51
|
deleteAttributeFromId: (className: string, attributes: string[]) => void;
|
|
51
52
|
deleteClassAttribute: (className: string) => void;
|
|
53
|
+
updateElementContent: (selector: string, content: string) => void;
|
|
52
54
|
initHtml: (htmlTitle: string) => void;
|
|
53
55
|
getHtmlText: () => string;
|
|
54
56
|
getStyleByKey: (key: string) => import('vue').StyleValue;
|
|
@@ -80,6 +82,7 @@ export declare const useItems: import('pinia').StoreDefinition<"items", {
|
|
|
80
82
|
editAttribute: (className: string, attributes: Object) => void;
|
|
81
83
|
deleteAttributeFromId: (className: string, attributes: string[]) => void;
|
|
82
84
|
deleteClassAttribute: (className: string) => void;
|
|
85
|
+
updateElementContent: (selector: string, content: string) => void;
|
|
83
86
|
initHtml: (htmlTitle: string) => void;
|
|
84
87
|
getHtmlText: () => string;
|
|
85
88
|
getStyleByKey: (key: string) => import('vue').StyleValue;
|
|
@@ -107,6 +110,7 @@ export declare const useItems: import('pinia').StoreDefinition<"items", {
|
|
|
107
110
|
editAttribute: (className: string, attributes: Object) => void;
|
|
108
111
|
deleteAttributeFromId: (className: string, attributes: string[]) => void;
|
|
109
112
|
deleteClassAttribute: (className: string) => void;
|
|
113
|
+
updateElementContent: (selector: string, content: string) => void;
|
|
110
114
|
initHtml: (htmlTitle: string) => void;
|
|
111
115
|
getHtmlText: () => string;
|
|
112
116
|
getStyleByKey: (key: string) => import('vue').StyleValue;
|
|
@@ -133,6 +137,7 @@ export declare const useItems: import('pinia').StoreDefinition<"items", {
|
|
|
133
137
|
editAttribute: (className: string, attributes: Object) => void;
|
|
134
138
|
deleteAttributeFromId: (className: string, attributes: string[]) => void;
|
|
135
139
|
deleteClassAttribute: (className: string) => void;
|
|
140
|
+
updateElementContent: (selector: string, content: string) => void;
|
|
136
141
|
initHtml: (htmlTitle: string) => void;
|
|
137
142
|
getHtmlText: () => string;
|
|
138
143
|
getStyleByKey: (key: string) => import('vue').StyleValue;
|
|
@@ -161,6 +166,7 @@ export declare const useItems: import('pinia').StoreDefinition<"items", {
|
|
|
161
166
|
editAttribute: (className: string, attributes: Object) => void;
|
|
162
167
|
deleteAttributeFromId: (className: string, attributes: string[]) => void;
|
|
163
168
|
deleteClassAttribute: (className: string) => void;
|
|
169
|
+
updateElementContent: (selector: string, content: string) => void;
|
|
164
170
|
initHtml: (htmlTitle: string) => void;
|
|
165
171
|
getHtmlText: () => string;
|
|
166
172
|
getStyleByKey: (key: string) => import('vue').StyleValue;
|
|
@@ -189,6 +195,7 @@ export declare const useItems: import('pinia').StoreDefinition<"items", {
|
|
|
189
195
|
editAttribute: (className: string, attributes: Object) => void;
|
|
190
196
|
deleteAttributeFromId: (className: string, attributes: string[]) => void;
|
|
191
197
|
deleteClassAttribute: (className: string) => void;
|
|
198
|
+
updateElementContent: (selector: string, content: string) => void;
|
|
192
199
|
initHtml: (htmlTitle: string) => void;
|
|
193
200
|
getHtmlText: () => string;
|
|
194
201
|
getStyleByKey: (key: string) => import('vue').StyleValue;
|
|
@@ -227,6 +234,7 @@ export declare const useItems: import('pinia').StoreDefinition<"items", {
|
|
|
227
234
|
editAttribute: (className: string, attributes: Object) => void;
|
|
228
235
|
deleteAttributeFromId: (className: string, attributes: string[]) => void;
|
|
229
236
|
deleteClassAttribute: (className: string) => void;
|
|
237
|
+
updateElementContent: (selector: string, content: string) => void;
|
|
230
238
|
initHtml: (htmlTitle: string) => void;
|
|
231
239
|
getHtmlText: () => string;
|
|
232
240
|
getStyleByKey: (key: string) => import('vue').StyleValue;
|
|
@@ -258,6 +266,7 @@ export declare const useItems: import('pinia').StoreDefinition<"items", {
|
|
|
258
266
|
editAttribute: (className: string, attributes: Object) => void;
|
|
259
267
|
deleteAttributeFromId: (className: string, attributes: string[]) => void;
|
|
260
268
|
deleteClassAttribute: (className: string) => void;
|
|
269
|
+
updateElementContent: (selector: string, content: string) => void;
|
|
261
270
|
initHtml: (htmlTitle: string) => void;
|
|
262
271
|
getHtmlText: () => string;
|
|
263
272
|
getStyleByKey: (key: string) => import('vue').StyleValue;
|
|
@@ -287,6 +296,7 @@ export declare const useItems: import('pinia').StoreDefinition<"items", {
|
|
|
287
296
|
editAttribute: (className: string, attributes: Object) => void;
|
|
288
297
|
deleteAttributeFromId: (className: string, attributes: string[]) => void;
|
|
289
298
|
deleteClassAttribute: (className: string) => void;
|
|
299
|
+
updateElementContent: (selector: string, content: string) => void;
|
|
290
300
|
initHtml: (htmlTitle: string) => void;
|
|
291
301
|
getHtmlText: () => string;
|
|
292
302
|
getStyleByKey: (key: string) => import('vue').StyleValue;
|
|
@@ -319,6 +329,7 @@ export declare const useItems: import('pinia').StoreDefinition<"items", {
|
|
|
319
329
|
editAttribute: (className: string, attributes: Object) => void;
|
|
320
330
|
deleteAttributeFromId: (className: string, attributes: string[]) => void;
|
|
321
331
|
deleteClassAttribute: (className: string) => void;
|
|
332
|
+
updateElementContent: (selector: string, content: string) => void;
|
|
322
333
|
initHtml: (htmlTitle: string) => void;
|
|
323
334
|
getHtmlText: () => string;
|
|
324
335
|
getStyleByKey: (key: string) => import('vue').StyleValue;
|