designertool 0.56.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 +3566 -3555
- 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
|
@@ -13,5 +13,7 @@ declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, imp
|
|
|
13
13
|
}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{
|
|
14
14
|
"onHtml-button-click"?: ((...args: any[]) => any) | undefined;
|
|
15
15
|
onExit?: ((...args: any[]) => any) | undefined;
|
|
16
|
-
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false,
|
|
16
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
17
|
+
headReplacement: HTMLDivElement;
|
|
18
|
+
}, any>;
|
|
17
19
|
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, {}, SVGSVGElement>;
|
|
2
2
|
export default _default;
|
|
@@ -24,5 +24,5 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
24
24
|
onImageSelect?: ((...args: any[]) => any) | undefined;
|
|
25
25
|
}>, {
|
|
26
26
|
images: S3Image[];
|
|
27
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {},
|
|
27
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
28
28
|
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;
|
|
@@ -3,6 +3,6 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
3
3
|
}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{
|
|
4
4
|
onUploadFile?: ((...args: any[]) => any) | undefined;
|
|
5
5
|
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {
|
|
6
|
-
fileInput:
|
|
7
|
-
},
|
|
6
|
+
fileInput: HTMLInputElement;
|
|
7
|
+
}, HTMLDivElement>;
|
|
8
8
|
export default _default;
|
|
@@ -12,5 +12,5 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
12
12
|
};
|
|
13
13
|
}>> & Readonly<{
|
|
14
14
|
onUploadFile?: ((...args: any[]) => any) | undefined;
|
|
15
|
-
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {},
|
|
15
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
16
16
|
export default _default;
|
|
@@ -14,5 +14,5 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
14
14
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
15
15
|
}>, {
|
|
16
16
|
modelValue: string;
|
|
17
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {},
|
|
17
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
18
18
|
export default _default;
|
|
@@ -26,5 +26,5 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
26
26
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
27
27
|
}>, {
|
|
28
28
|
modelValue: Record<string, any>;
|
|
29
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {},
|
|
29
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
30
30
|
export default _default;
|
|
@@ -2,5 +2,5 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
2
2
|
setOrder: (...args: any[]) => void;
|
|
3
3
|
}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{
|
|
4
4
|
onSetOrder?: ((...args: any[]) => any) | undefined;
|
|
5
|
-
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {},
|
|
5
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
6
6
|
export default _default;
|
|
@@ -64,5 +64,5 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
64
64
|
}>, {
|
|
65
65
|
modelValue: string;
|
|
66
66
|
editable: boolean;
|
|
67
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {},
|
|
67
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
68
68
|
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;
|
|
@@ -10,5 +10,5 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
10
10
|
type: PropType<Item>;
|
|
11
11
|
required: true;
|
|
12
12
|
};
|
|
13
|
-
}>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {},
|
|
13
|
+
}>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
14
14
|
export default _default;
|
|
@@ -6,10 +6,10 @@ declare function __VLS_template(): {
|
|
|
6
6
|
default?(_: {}): any;
|
|
7
7
|
};
|
|
8
8
|
refs: {
|
|
9
|
-
wrapperRef:
|
|
10
|
-
moveableRef:
|
|
9
|
+
wrapperRef: HTMLDivElement;
|
|
10
|
+
moveableRef: HTMLDivElement;
|
|
11
11
|
};
|
|
12
|
-
rootEl:
|
|
12
|
+
rootEl: HTMLDivElement;
|
|
13
13
|
};
|
|
14
14
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
15
15
|
declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
@@ -23,9 +23,9 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
23
23
|
required: true;
|
|
24
24
|
};
|
|
25
25
|
}>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {
|
|
26
|
-
wrapperRef:
|
|
27
|
-
moveableRef:
|
|
28
|
-
},
|
|
26
|
+
wrapperRef: HTMLDivElement;
|
|
27
|
+
moveableRef: HTMLDivElement;
|
|
28
|
+
}, HTMLDivElement>;
|
|
29
29
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
30
30
|
export default _default;
|
|
31
31
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
@@ -28,5 +28,5 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
28
28
|
enabled: boolean;
|
|
29
29
|
code: string;
|
|
30
30
|
lineNumbers: boolean;
|
|
31
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {},
|
|
31
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
32
32
|
export default _default;
|
|
@@ -8,5 +8,5 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
8
8
|
type: NumberConstructor;
|
|
9
9
|
required: true;
|
|
10
10
|
};
|
|
11
|
-
}>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {},
|
|
11
|
+
}>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
12
12
|
export default _default;
|
|
@@ -9,6 +9,6 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
9
9
|
required: true;
|
|
10
10
|
};
|
|
11
11
|
}>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {
|
|
12
|
-
paragraphItem:
|
|
13
|
-
},
|
|
12
|
+
paragraphItem: HTMLDivElement;
|
|
13
|
+
}, HTMLDivElement>;
|
|
14
14
|
export default _default;
|
|
@@ -9,6 +9,6 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
9
9
|
required: true;
|
|
10
10
|
};
|
|
11
11
|
}>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {
|
|
12
|
-
imageElement:
|
|
13
|
-
},
|
|
12
|
+
imageElement: HTMLImageElement;
|
|
13
|
+
}, HTMLDivElement>;
|
|
14
14
|
export default _default;
|
|
@@ -57,7 +57,7 @@ declare const _default: import('vue').DefineComponent<Props, {
|
|
|
57
57
|
}, import('vue').PublicProps, {
|
|
58
58
|
modelValue: string;
|
|
59
59
|
editable: boolean;
|
|
60
|
-
}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {},
|
|
60
|
+
}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, HTMLDivElement, import('vue').ComponentProvideOptions, {
|
|
61
61
|
P: {};
|
|
62
62
|
B: {};
|
|
63
63
|
D: {};
|
|
@@ -8,5 +8,5 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
8
8
|
type: NumberConstructor;
|
|
9
9
|
required: true;
|
|
10
10
|
};
|
|
11
|
-
}>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {},
|
|
11
|
+
}>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLImageElement>;
|
|
12
12
|
export default _default;
|
|
@@ -16,7 +16,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
16
16
|
}>> & Readonly<{
|
|
17
17
|
onElementMoved?: ((...args: any[]) => any) | undefined;
|
|
18
18
|
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {
|
|
19
|
-
canvas:
|
|
19
|
+
canvas: HTMLDivElement;
|
|
20
20
|
moveableRef: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<Partial<import('vue3-moveable').MoveableProperties>> & {
|
|
21
21
|
onResizeStart?: ((e: import('vue3-moveable').OnResizeStart) => any) | undefined;
|
|
22
22
|
onBeforeResize?: ((e: import('vue3-moveable').OnBeforeResize) => any) | undefined;
|
|
@@ -257,5 +257,5 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
257
257
|
getTargets: () => (HTMLElement | SVGElement)[];
|
|
258
258
|
stopDrag: (type?: "target" | "control" | undefined) => void;
|
|
259
259
|
}, {}> | null;
|
|
260
|
-
},
|
|
260
|
+
}, HTMLDivElement>;
|
|
261
261
|
export default _default;
|
|
@@ -5,7 +5,7 @@ declare function adjustZoomBasedOnScreen(manualChange?: boolean, zoomToFit?: boo
|
|
|
5
5
|
declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
6
6
|
updateSize: typeof adjustZoomBasedOnScreen;
|
|
7
7
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
8
|
-
containerRef:
|
|
9
|
-
postCard:
|
|
10
|
-
},
|
|
8
|
+
containerRef: HTMLDivElement;
|
|
9
|
+
postCard: HTMLDivElement;
|
|
10
|
+
}, HTMLDivElement>;
|
|
11
11
|
export default _default;
|
|
@@ -11,6 +11,6 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
11
11
|
}>> & Readonly<{}>, {
|
|
12
12
|
selectedIndex: number;
|
|
13
13
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {
|
|
14
|
-
preview:
|
|
15
|
-
},
|
|
14
|
+
preview: HTMLDivElement;
|
|
15
|
+
}, HTMLDivElement>;
|
|
16
16
|
export default _default;
|
|
@@ -31,5 +31,5 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
31
31
|
}>, {
|
|
32
32
|
radius: boolean;
|
|
33
33
|
modelValue: Record<string, any>;
|
|
34
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {},
|
|
34
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
35
35
|
export default _default;
|
|
@@ -4,7 +4,7 @@ declare function __VLS_template(): {
|
|
|
4
4
|
default?(_: {}): any;
|
|
5
5
|
};
|
|
6
6
|
refs: {};
|
|
7
|
-
rootEl:
|
|
7
|
+
rootEl: HTMLButtonElement;
|
|
8
8
|
};
|
|
9
9
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
10
10
|
declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
@@ -43,7 +43,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
43
43
|
size: string;
|
|
44
44
|
type: string;
|
|
45
45
|
iconSide: string;
|
|
46
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {},
|
|
46
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLButtonElement>;
|
|
47
47
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
48
48
|
export default _default;
|
|
49
49
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
@@ -12,7 +12,7 @@ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {}, {},
|
|
|
12
12
|
}>, {
|
|
13
13
|
teleportTarget: string | HTMLElement;
|
|
14
14
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
15
|
-
pickerRef:
|
|
16
|
-
modalRef:
|
|
17
|
-
},
|
|
15
|
+
pickerRef: HTMLDivElement;
|
|
16
|
+
modalRef: HTMLDivElement;
|
|
17
|
+
}, HTMLDivElement>;
|
|
18
18
|
export default _default;
|
|
@@ -78,6 +78,6 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
78
78
|
placeholder: string;
|
|
79
79
|
isError: boolean;
|
|
80
80
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {
|
|
81
|
-
addressInput:
|
|
82
|
-
},
|
|
81
|
+
addressInput: HTMLInputElement;
|
|
82
|
+
}, HTMLDivElement>;
|
|
83
83
|
export default _default;
|
|
@@ -26,5 +26,5 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
26
26
|
onBack?: ((...args: any[]) => any) | undefined;
|
|
27
27
|
}>, {
|
|
28
28
|
isEditMode: boolean;
|
|
29
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {},
|
|
29
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
30
30
|
export default _default;
|
|
@@ -4,7 +4,7 @@ declare function __VLS_template(): {
|
|
|
4
4
|
default?(_: {}): any;
|
|
5
5
|
};
|
|
6
6
|
refs: {};
|
|
7
|
-
rootEl:
|
|
7
|
+
rootEl: HTMLButtonElement;
|
|
8
8
|
};
|
|
9
9
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
10
10
|
declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
@@ -49,7 +49,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
49
49
|
size: string;
|
|
50
50
|
type: string;
|
|
51
51
|
active: boolean;
|
|
52
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {},
|
|
52
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLButtonElement>;
|
|
53
53
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
54
54
|
export default _default;
|
|
55
55
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
@@ -73,7 +73,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
73
73
|
suffix: string;
|
|
74
74
|
isError: boolean;
|
|
75
75
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {
|
|
76
|
-
inputElement:
|
|
77
|
-
suffixElement:
|
|
78
|
-
},
|
|
76
|
+
inputElement: HTMLInputElement;
|
|
77
|
+
suffixElement: HTMLSpanElement;
|
|
78
|
+
}, HTMLDivElement>;
|
|
79
79
|
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;
|
|
@@ -24,7 +24,7 @@ declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, imp
|
|
|
24
24
|
hasCancelButton: boolean;
|
|
25
25
|
action: string;
|
|
26
26
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
27
|
-
modalRef:
|
|
27
|
+
modalRef: HTMLDivElement;
|
|
28
28
|
cancelButtonRef: ({
|
|
29
29
|
$: import('vue').ComponentInternalInstance;
|
|
30
30
|
$data: {};
|
|
@@ -51,7 +51,7 @@ declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, imp
|
|
|
51
51
|
$parent: import('vue').ComponentPublicInstance | null;
|
|
52
52
|
$host: Element | null;
|
|
53
53
|
$emit: (event: string, ...args: any[]) => void;
|
|
54
|
-
$el:
|
|
54
|
+
$el: HTMLButtonElement;
|
|
55
55
|
$options: import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
|
|
56
56
|
size: {
|
|
57
57
|
type: StringConstructor;
|
|
@@ -26,5 +26,5 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
26
26
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
27
27
|
}>, {
|
|
28
28
|
modelValue: Record<string, any>;
|
|
29
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {},
|
|
29
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
30
30
|
export default _default;
|
|
@@ -26,5 +26,5 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
26
26
|
}>, {
|
|
27
27
|
tabs: string[];
|
|
28
28
|
activeTab: number;
|
|
29
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {},
|
|
29
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
30
30
|
export default _default;
|
|
@@ -31,5 +31,5 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
31
31
|
}>, {
|
|
32
32
|
min: number;
|
|
33
33
|
max: number;
|
|
34
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {},
|
|
34
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
35
35
|
export default _default;
|
|
@@ -8,10 +8,10 @@ declare function __VLS_template(): {
|
|
|
8
8
|
default?(_: {}): any;
|
|
9
9
|
};
|
|
10
10
|
refs: {};
|
|
11
|
-
rootEl:
|
|
11
|
+
rootEl: HTMLDivElement;
|
|
12
12
|
};
|
|
13
13
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
14
|
-
declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {},
|
|
14
|
+
declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
15
15
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
16
16
|
export default _default;
|
|
17
17
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
@@ -16,7 +16,7 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
16
16
|
back: (...args: any[]) => void;
|
|
17
17
|
}, import('vue').PublicProps, {
|
|
18
18
|
isEditMode: boolean;
|
|
19
|
-
}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {},
|
|
19
|
+
}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, HTMLDivElement, import('vue').ComponentProvideOptions, {
|
|
20
20
|
P: {};
|
|
21
21
|
B: {};
|
|
22
22
|
D: {};
|
|
@@ -39,7 +39,7 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
39
39
|
}>, {}, {}, {}, {}, {
|
|
40
40
|
isEditMode: boolean;
|
|
41
41
|
}> | null;
|
|
42
|
-
colorSection:
|
|
43
|
-
imageUrlSection:
|
|
42
|
+
colorSection: HTMLDivElement;
|
|
43
|
+
imageUrlSection: HTMLDivElement;
|
|
44
44
|
}, any>;
|
|
45
45
|
export default _default;
|
|
@@ -1,4 +1,4 @@
|
|
|
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
|
-
inputRef:
|
|
3
|
-
},
|
|
2
|
+
inputRef: HTMLInputElement;
|
|
3
|
+
}, HTMLDivElement>;
|
|
4
4
|
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;
|
|
@@ -16,7 +16,7 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
16
16
|
back: (...args: any[]) => void;
|
|
17
17
|
}, import('vue').PublicProps, {
|
|
18
18
|
isEditMode: boolean;
|
|
19
|
-
}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {},
|
|
19
|
+
}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, HTMLDivElement, import('vue').ComponentProvideOptions, {
|
|
20
20
|
P: {};
|
|
21
21
|
B: {};
|
|
22
22
|
D: {};
|
|
@@ -81,9 +81,9 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
81
81
|
suffix: string;
|
|
82
82
|
isError: boolean;
|
|
83
83
|
}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
|
|
84
|
-
inputElement:
|
|
85
|
-
suffixElement:
|
|
86
|
-
},
|
|
84
|
+
inputElement: HTMLInputElement;
|
|
85
|
+
suffixElement: HTMLSpanElement;
|
|
86
|
+
}, HTMLDivElement, import('vue').ComponentProvideOptions, {
|
|
87
87
|
P: {};
|
|
88
88
|
B: {};
|
|
89
89
|
D: {};
|
|
@@ -130,5 +130,5 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
130
130
|
suffix: string;
|
|
131
131
|
isError: boolean;
|
|
132
132
|
}> | null;
|
|
133
|
-
},
|
|
133
|
+
}, HTMLDivElement>;
|
|
134
134
|
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;
|
|
@@ -16,7 +16,7 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
16
16
|
back: (...args: any[]) => void;
|
|
17
17
|
}, import('vue').PublicProps, {
|
|
18
18
|
isEditMode: boolean;
|
|
19
|
-
}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {},
|
|
19
|
+
}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, HTMLDivElement, import('vue').ComponentProvideOptions, {
|
|
20
20
|
P: {};
|
|
21
21
|
B: {};
|
|
22
22
|
D: {};
|
|
@@ -56,7 +56,7 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
56
56
|
}, import('vue').PublicProps, {
|
|
57
57
|
tabs: string[];
|
|
58
58
|
activeTab: number;
|
|
59
|
-
}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {},
|
|
59
|
+
}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, HTMLDivElement, import('vue').ComponentProvideOptions, {
|
|
60
60
|
P: {};
|
|
61
61
|
B: {};
|
|
62
62
|
D: {};
|
|
@@ -121,9 +121,9 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
121
121
|
suffix: string;
|
|
122
122
|
isError: boolean;
|
|
123
123
|
}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
|
|
124
|
-
inputElement:
|
|
125
|
-
suffixElement:
|
|
126
|
-
},
|
|
124
|
+
inputElement: HTMLInputElement;
|
|
125
|
+
suffixElement: HTMLSpanElement;
|
|
126
|
+
}, HTMLDivElement, import('vue').ComponentProvideOptions, {
|
|
127
127
|
P: {};
|
|
128
128
|
B: {};
|
|
129
129
|
D: {};
|
|
@@ -170,5 +170,5 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
170
170
|
suffix: string;
|
|
171
171
|
isError: boolean;
|
|
172
172
|
}> | null;
|
|
173
|
-
},
|
|
173
|
+
}, HTMLDivElement>;
|
|
174
174
|
export default _default;
|
|
@@ -8,6 +8,7 @@ export declare const useHtmlGenerator: () => {
|
|
|
8
8
|
editAttribute: (className: string, attributes: Object) => void;
|
|
9
9
|
deleteAttributeFromId: (className: string, attributes: string[]) => void;
|
|
10
10
|
deleteClassAttribute: (className: string) => void;
|
|
11
|
+
updateElementContent: (selector: string, content: string) => void;
|
|
11
12
|
initHtml: (htmlTitle: string) => void;
|
|
12
13
|
getHtmlText: () => string;
|
|
13
14
|
getStyleByKey: (key: string) => StyleValue;
|
|
@@ -18,6 +18,7 @@ export declare const useMap: () => {
|
|
|
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 useMap: () => {
|
|
|
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 useMap: () => {
|
|
|
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 useMap: () => {
|
|
|
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 useMap: () => {
|
|
|
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 useMap: () => {
|
|
|
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 useMap: () => {
|
|
|
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 useMap: () => {
|
|
|
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 useMap: () => {
|
|
|
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 useMap: () => {
|
|
|
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 useMap: () => {
|
|
|
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;
|