designertool 0.10.0 → 0.12.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 +9 -2
- package/dist/assets/icons/template-icons/loading-circle-icon.vue.d.ts +1 -1
- package/dist/components/CssProvider.vue.d.ts +15 -0
- package/dist/components/Image/ImageCard.vue.d.ts +9 -14
- package/dist/components/Image/ImageLibrary.vue.d.ts +8 -6
- package/dist/components/Image/ImageLoadingCard.vue.d.ts +2 -2
- package/dist/components/Image/ImageUpload.vue.d.ts +7 -3
- package/dist/components/Image/ImageUploadUrl.vue.d.ts +7 -5
- package/dist/components/Image/UnsplashPhoto.vue.d.ts +7 -5
- package/dist/components/Image/UnsplashPhotoList.vue.d.ts +7 -5
- package/dist/components/Template/TemplateList.vue.d.ts +9 -6
- package/dist/components/TextEditor/Selects/AlignSelector.vue.d.ts +8 -6
- package/dist/components/TextEditor/Selects/AlignToPageSelector.vue.d.ts +8 -6
- package/dist/components/TextEditor/Selects/OrderSelector.vue.d.ts +5 -3
- package/dist/components/TextEditor/TextFormatter.vue.d.ts +2 -2
- package/dist/components/display-elements/Item.vue.d.ts +4 -4
- package/dist/components/display-elements/ItemWrapper.vue.d.ts +25 -4
- package/dist/components/display-elements/displayables/Code.vue.d.ts +5 -5
- package/dist/components/display-elements/displayables/Image.vue.d.ts +4 -4
- package/dist/components/display-elements/displayables/Map.vue.d.ts +4 -4
- package/dist/components/display-elements/displayables/QrCode.vue.d.ts +4 -4
- package/dist/components/display-elements/displayables/Shape.vue.d.ts +4 -4
- package/dist/components/display-elements/displayables/Text.vue.d.ts +6 -4
- package/dist/components/display-elements/displayables/Tracking.vue.d.ts +4 -4
- package/dist/components/pages/Canvas.vue.d.ts +250 -5
- package/dist/components/pages/EditPage.vue.d.ts +10 -13
- package/dist/components/pages/PreviewPage.vue.d.ts +7 -5
- package/dist/components/share/BaseSelect.vue.d.ts +8 -6
- package/dist/components/share/Border.vue.d.ts +8 -6
- package/dist/components/share/Button.vue.d.ts +20 -5
- package/dist/components/share/Dropdown.vue.d.ts +19 -13
- package/dist/components/share/GoogleAutocomplete.vue.d.ts +15 -8
- package/dist/components/share/GoogleMap.vue.d.ts +6 -6
- package/dist/components/share/HeaderSection.vue.d.ts +8 -6
- package/dist/components/share/IconButton.vue.d.ts +20 -5
- package/dist/components/share/Input.vue.d.ts +11 -6
- package/dist/components/share/Modal.vue.d.ts +103 -7
- package/dist/components/share/Position.vue.d.ts +8 -6
- package/dist/components/share/SidebarTabs.vue.d.ts +8 -6
- package/dist/components/share/Slider.vue.d.ts +8 -6
- package/dist/components/share/Tooltip.vue.d.ts +19 -19
- package/dist/components/sidebar/Background.vue.d.ts +45 -2
- package/dist/components/sidebar/Image.vue.d.ts +2 -2
- package/dist/components/sidebar/Layer.vue.d.ts +2 -2
- package/dist/components/sidebar/Map.vue.d.ts +2 -2
- package/dist/components/sidebar/Shape.vue.d.ts +2 -2
- package/dist/components/sidebar/Template.vue.d.ts +134 -2
- package/dist/components/sidebar/Text.vue.d.ts +2 -2
- package/dist/components/sidebar/Tracking.vue.d.ts +2 -2
- package/dist/components/sidebar/Variable.vue.d.ts +174 -2
- package/dist/composable/debouncedRef.d.ts +1 -1
- package/dist/composable/googleMap.d.ts +78 -1662
- package/dist/designertool.css +1 -0
- package/dist/designertool.js +56899 -0
- package/dist/entry.d.ts +2 -3
- package/dist/index.d.ts +1 -10
- package/dist/layouts/DeviceOverlay.vue.d.ts +6 -6
- package/dist/layouts/MainLayout.vue.d.ts +22 -2
- package/dist/layouts/TheFooter.vue.d.ts +10 -22
- package/dist/layouts/TheSideBar.vue.d.ts +12 -7
- package/dist/layouts/TheToolbar.vue.d.ts +9 -14
- package/dist/main.d.ts +1 -0
- package/dist/package-entry.d.ts +12 -0
- package/dist/stores/canvas-store.d.ts +1 -1
- package/dist/stores/config-store.d.ts +3 -3
- package/dist/stores/constants.d.ts +1 -9
- package/dist/stores/global-store.d.ts +68 -1652
- package/dist/stores/history-store.d.ts +2 -2
- package/dist/stores/image-store.d.ts +1 -1
- package/dist/stores/item-store.d.ts +60 -1644
- package/dist/stores/project-store.d.ts +1 -1
- package/dist/stores/template-store.d.ts +1 -1
- package/dist/stores/unsplash-store.d.ts +36 -36
- package/package.json +9 -9
- package/dist/PostcardDesigner.vue.d.ts.map +0 -1
- package/dist/index.css +0 -1
- package/dist/postcard-dt.css +0 -1
- package/dist/postcard-dt.es.js +0 -48924
|
@@ -1,7 +1,14 @@
|
|
|
1
|
+
interface Props {
|
|
2
|
+
config: any;
|
|
3
|
+
}
|
|
1
4
|
declare global {
|
|
2
5
|
interface Window {
|
|
3
6
|
initMap: () => void;
|
|
4
7
|
}
|
|
5
8
|
}
|
|
6
|
-
declare const
|
|
7
|
-
|
|
9
|
+
declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
10
|
+
"html-button-click": (...args: any[]) => void;
|
|
11
|
+
}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{
|
|
12
|
+
"onHtml-button-click"?: ((...args: any[]) => any) | undefined;
|
|
13
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
14
|
+
export default _default;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const _default: import(
|
|
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;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
2
|
+
export default _default;
|
|
3
|
+
type __VLS_WithTemplateSlots<T, S> = T & (new () => {
|
|
4
|
+
$slots: S;
|
|
5
|
+
});
|
|
6
|
+
declare const __VLS_component: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
7
|
+
type __VLS_TemplateResult = {
|
|
8
|
+
attrs: Partial<typeof __VLS_inheritedAttrs>;
|
|
9
|
+
slots: {
|
|
10
|
+
default?(_: {}): any;
|
|
11
|
+
};
|
|
12
|
+
refs: {};
|
|
13
|
+
rootEl: any;
|
|
14
|
+
};
|
|
15
|
+
declare let __VLS_inheritedAttrs: {};
|
|
@@ -1,17 +1,12 @@
|
|
|
1
|
-
import type { PropType as __PropType } from 'vue';
|
|
2
1
|
import { S3Image } from '../../types/api';
|
|
3
|
-
|
|
4
|
-
image:
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
type: __PropType<S3Image>;
|
|
11
|
-
required: true;
|
|
12
|
-
};
|
|
13
|
-
}>> & {
|
|
2
|
+
interface Props {
|
|
3
|
+
image: S3Image;
|
|
4
|
+
}
|
|
5
|
+
declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
6
|
+
imageSelect: (...args: any[]) => void;
|
|
7
|
+
imageDelete: (...args: any[]) => void;
|
|
8
|
+
}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{
|
|
14
9
|
onImageSelect?: ((...args: any[]) => any) | undefined;
|
|
15
10
|
onImageDelete?: ((...args: any[]) => any) | undefined;
|
|
16
|
-
}, {}, {}>;
|
|
17
|
-
export default
|
|
11
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
12
|
+
export default _default;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { PropType } from 'vue';
|
|
2
2
|
import { S3Image } from '../../types/api';
|
|
3
|
-
declare const
|
|
3
|
+
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
4
4
|
images: {
|
|
5
5
|
type: PropType<S3Image[]>;
|
|
6
6
|
default: () => never[];
|
|
@@ -9,7 +9,9 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
9
9
|
type: NumberConstructor;
|
|
10
10
|
required: true;
|
|
11
11
|
};
|
|
12
|
-
}
|
|
12
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
13
|
+
imageSelect: (...args: any[]) => void;
|
|
14
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
13
15
|
images: {
|
|
14
16
|
type: PropType<S3Image[]>;
|
|
15
17
|
default: () => never[];
|
|
@@ -18,9 +20,9 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
18
20
|
type: NumberConstructor;
|
|
19
21
|
required: true;
|
|
20
22
|
};
|
|
21
|
-
}>> & {
|
|
23
|
+
}>> & Readonly<{
|
|
22
24
|
onImageSelect?: ((...args: any[]) => any) | undefined;
|
|
23
|
-
}
|
|
25
|
+
}>, {
|
|
24
26
|
images: S3Image[];
|
|
25
|
-
}, {}>;
|
|
26
|
-
export default
|
|
27
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
28
|
+
export default _default;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const
|
|
2
|
-
export default
|
|
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
|
+
export default _default;
|
|
@@ -1,4 +1,8 @@
|
|
|
1
|
-
declare const
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
2
|
+
uploadFile: (...args: any[]) => void;
|
|
3
|
+
}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{
|
|
2
4
|
onUploadFile?: ((...args: any[]) => any) | undefined;
|
|
3
|
-
}, {}, {}
|
|
4
|
-
|
|
5
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {
|
|
6
|
+
fileInput: HTMLInputElement;
|
|
7
|
+
}, HTMLDivElement>;
|
|
8
|
+
export default _default;
|
|
@@ -1,14 +1,16 @@
|
|
|
1
|
-
declare const
|
|
1
|
+
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
2
2
|
action: {
|
|
3
3
|
type: StringConstructor;
|
|
4
4
|
required: true;
|
|
5
5
|
};
|
|
6
|
-
}
|
|
6
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
7
|
+
uploadFile: (...args: any[]) => void;
|
|
8
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
7
9
|
action: {
|
|
8
10
|
type: StringConstructor;
|
|
9
11
|
required: true;
|
|
10
12
|
};
|
|
11
|
-
}>> & {
|
|
13
|
+
}>> & Readonly<{
|
|
12
14
|
onUploadFile?: ((...args: any[]) => any) | undefined;
|
|
13
|
-
}, {}, {}>;
|
|
14
|
-
export default
|
|
15
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
16
|
+
export default _default;
|
|
@@ -1,14 +1,16 @@
|
|
|
1
1
|
import { PropType } from 'vue';
|
|
2
2
|
import { Photo } from '../../types/unsplash';
|
|
3
|
-
declare const
|
|
3
|
+
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
4
4
|
photo: {
|
|
5
5
|
type: PropType<Photo>;
|
|
6
6
|
};
|
|
7
|
-
}
|
|
7
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
8
|
+
imageClick: (...args: any[]) => void;
|
|
9
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
8
10
|
photo: {
|
|
9
11
|
type: PropType<Photo>;
|
|
10
12
|
};
|
|
11
|
-
}>> & {
|
|
13
|
+
}>> & Readonly<{
|
|
12
14
|
onImageClick?: ((...args: any[]) => any) | undefined;
|
|
13
|
-
}, {}, {}>;
|
|
14
|
-
export default
|
|
15
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
16
|
+
export default _default;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { PropType } from 'vue';
|
|
2
2
|
import { Photo } from '../../types/unsplash';
|
|
3
|
-
declare const
|
|
3
|
+
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
4
4
|
images: {
|
|
5
5
|
type: PropType<Photo[]>;
|
|
6
6
|
};
|
|
@@ -11,7 +11,9 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
11
11
|
type: NumberConstructor;
|
|
12
12
|
required: true;
|
|
13
13
|
};
|
|
14
|
-
}
|
|
14
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
15
|
+
imageSelect: (...args: any[]) => void;
|
|
16
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
15
17
|
images: {
|
|
16
18
|
type: PropType<Photo[]>;
|
|
17
19
|
};
|
|
@@ -22,7 +24,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
22
24
|
type: NumberConstructor;
|
|
23
25
|
required: true;
|
|
24
26
|
};
|
|
25
|
-
}>> & {
|
|
27
|
+
}>> & Readonly<{
|
|
26
28
|
onImageSelect?: ((...args: any[]) => any) | undefined;
|
|
27
|
-
}, {}, {}>;
|
|
28
|
-
export default
|
|
29
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
30
|
+
export default _default;
|
|
@@ -1,19 +1,22 @@
|
|
|
1
1
|
import { PropType } from 'vue';
|
|
2
2
|
import { Template } from '../../types/api';
|
|
3
|
-
declare const
|
|
3
|
+
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
4
4
|
templates: {
|
|
5
5
|
type: PropType<Template[]>;
|
|
6
6
|
default: () => never[];
|
|
7
7
|
};
|
|
8
|
-
}
|
|
8
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
9
|
+
clearTemplate: (...args: any[]) => void;
|
|
10
|
+
setTemplate: (...args: any[]) => void;
|
|
11
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
9
12
|
templates: {
|
|
10
13
|
type: PropType<Template[]>;
|
|
11
14
|
default: () => never[];
|
|
12
15
|
};
|
|
13
|
-
}>> & {
|
|
16
|
+
}>> & Readonly<{
|
|
14
17
|
onClearTemplate?: ((...args: any[]) => any) | undefined;
|
|
15
18
|
onSetTemplate?: ((...args: any[]) => any) | undefined;
|
|
16
|
-
}
|
|
19
|
+
}>, {
|
|
17
20
|
templates: Template[];
|
|
18
|
-
}, {}>;
|
|
19
|
-
export default
|
|
21
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
22
|
+
export default _default;
|
|
@@ -1,16 +1,18 @@
|
|
|
1
|
-
declare const
|
|
1
|
+
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
2
2
|
modelValue: {
|
|
3
3
|
type: StringConstructor;
|
|
4
4
|
default: string;
|
|
5
5
|
};
|
|
6
|
-
}
|
|
6
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
7
|
+
"update:modelValue": (...args: any[]) => void;
|
|
8
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
7
9
|
modelValue: {
|
|
8
10
|
type: StringConstructor;
|
|
9
11
|
default: string;
|
|
10
12
|
};
|
|
11
|
-
}>> & {
|
|
13
|
+
}>> & Readonly<{
|
|
12
14
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
13
|
-
}
|
|
15
|
+
}>, {
|
|
14
16
|
modelValue: string;
|
|
15
|
-
}, {}>;
|
|
16
|
-
export default
|
|
17
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
18
|
+
export default _default;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
declare const
|
|
1
|
+
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
2
2
|
modelValue: {
|
|
3
3
|
type: ObjectConstructor;
|
|
4
4
|
default: {
|
|
@@ -9,7 +9,9 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
9
9
|
r: number;
|
|
10
10
|
};
|
|
11
11
|
};
|
|
12
|
-
}
|
|
12
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
13
|
+
"update:modelValue": (...args: any[]) => void;
|
|
14
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
13
15
|
modelValue: {
|
|
14
16
|
type: ObjectConstructor;
|
|
15
17
|
default: {
|
|
@@ -20,9 +22,9 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
20
22
|
r: number;
|
|
21
23
|
};
|
|
22
24
|
};
|
|
23
|
-
}>> & {
|
|
25
|
+
}>> & Readonly<{
|
|
24
26
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
25
|
-
}
|
|
27
|
+
}>, {
|
|
26
28
|
modelValue: Record<string, any>;
|
|
27
|
-
}, {}>;
|
|
28
|
-
export default
|
|
29
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
30
|
+
export default _default;
|
|
@@ -1,4 +1,6 @@
|
|
|
1
|
-
declare const
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
2
|
+
setOrder: (...args: any[]) => void;
|
|
3
|
+
}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{
|
|
2
4
|
onSetOrder?: ((...args: any[]) => any) | undefined;
|
|
3
|
-
}, {}, {}>;
|
|
4
|
-
export default
|
|
5
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
6
|
+
export default _default;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const
|
|
2
|
-
export default
|
|
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
|
+
export default _default;
|
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
import { Item } from '../../types/items';
|
|
2
2
|
import { PropType } from 'vue';
|
|
3
|
-
declare const
|
|
3
|
+
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
4
4
|
item: {
|
|
5
5
|
type: PropType<Item>;
|
|
6
6
|
required: true;
|
|
7
7
|
};
|
|
8
|
-
}
|
|
8
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
9
9
|
item: {
|
|
10
10
|
type: PropType<Item>;
|
|
11
11
|
required: true;
|
|
12
12
|
};
|
|
13
|
-
}
|
|
14
|
-
export default
|
|
13
|
+
}>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
14
|
+
export default _default;
|
|
@@ -1,14 +1,35 @@
|
|
|
1
1
|
import { PropType } from 'vue';
|
|
2
2
|
import { Item } from '../../types/items';
|
|
3
|
-
declare
|
|
3
|
+
declare function __VLS_template(): {
|
|
4
|
+
attrs: Partial<{}>;
|
|
5
|
+
slots: {
|
|
6
|
+
default?(_: {}): any;
|
|
7
|
+
};
|
|
8
|
+
refs: {
|
|
9
|
+
wrapperRef: HTMLDivElement;
|
|
10
|
+
moveableRef: HTMLDivElement;
|
|
11
|
+
};
|
|
12
|
+
rootEl: HTMLDivElement;
|
|
13
|
+
};
|
|
14
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
15
|
+
declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
4
16
|
item: {
|
|
5
17
|
type: PropType<Item>;
|
|
6
18
|
required: true;
|
|
7
19
|
};
|
|
8
|
-
}
|
|
20
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
9
21
|
item: {
|
|
10
22
|
type: PropType<Item>;
|
|
11
23
|
required: true;
|
|
12
24
|
};
|
|
13
|
-
}
|
|
14
|
-
|
|
25
|
+
}>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {
|
|
26
|
+
wrapperRef: HTMLDivElement;
|
|
27
|
+
moveableRef: HTMLDivElement;
|
|
28
|
+
}, HTMLDivElement>;
|
|
29
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
30
|
+
export default _default;
|
|
31
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
32
|
+
new (): {
|
|
33
|
+
$slots: S;
|
|
34
|
+
};
|
|
35
|
+
};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
declare const
|
|
1
|
+
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
2
2
|
code: {
|
|
3
3
|
type: StringConstructor;
|
|
4
4
|
default: string;
|
|
@@ -11,7 +11,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
11
11
|
type: BooleanConstructor;
|
|
12
12
|
default: boolean;
|
|
13
13
|
};
|
|
14
|
-
}
|
|
14
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
15
15
|
code: {
|
|
16
16
|
type: StringConstructor;
|
|
17
17
|
default: string;
|
|
@@ -24,9 +24,9 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
24
24
|
type: BooleanConstructor;
|
|
25
25
|
default: boolean;
|
|
26
26
|
};
|
|
27
|
-
}
|
|
27
|
+
}>> & Readonly<{}>, {
|
|
28
28
|
enabled: boolean;
|
|
29
29
|
code: string;
|
|
30
30
|
lineNumbers: boolean;
|
|
31
|
-
}, {}>;
|
|
32
|
-
export default
|
|
31
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
32
|
+
export default _default;
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
declare const
|
|
1
|
+
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
2
2
|
id: {
|
|
3
3
|
type: NumberConstructor;
|
|
4
4
|
required: true;
|
|
5
5
|
};
|
|
6
|
-
}
|
|
6
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
7
7
|
id: {
|
|
8
8
|
type: NumberConstructor;
|
|
9
9
|
required: true;
|
|
10
10
|
};
|
|
11
|
-
}
|
|
12
|
-
export default
|
|
11
|
+
}>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
12
|
+
export default _default;
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
declare const
|
|
1
|
+
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
2
2
|
id: {
|
|
3
3
|
type: NumberConstructor;
|
|
4
4
|
required: true;
|
|
5
5
|
};
|
|
6
|
-
}
|
|
6
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
7
7
|
id: {
|
|
8
8
|
type: NumberConstructor;
|
|
9
9
|
required: true;
|
|
10
10
|
};
|
|
11
|
-
}
|
|
12
|
-
export default
|
|
11
|
+
}>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
12
|
+
export default _default;
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
declare const
|
|
1
|
+
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
2
2
|
id: {
|
|
3
3
|
type: NumberConstructor;
|
|
4
4
|
required: true;
|
|
5
5
|
};
|
|
6
|
-
}
|
|
6
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
7
7
|
id: {
|
|
8
8
|
type: NumberConstructor;
|
|
9
9
|
required: true;
|
|
10
10
|
};
|
|
11
|
-
}
|
|
12
|
-
export default
|
|
11
|
+
}>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
12
|
+
export default _default;
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
declare const
|
|
1
|
+
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
2
2
|
id: {
|
|
3
3
|
type: NumberConstructor;
|
|
4
4
|
required: true;
|
|
5
5
|
};
|
|
6
|
-
}
|
|
6
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
7
7
|
id: {
|
|
8
8
|
type: NumberConstructor;
|
|
9
9
|
required: true;
|
|
10
10
|
};
|
|
11
|
-
}
|
|
12
|
-
export default
|
|
11
|
+
}>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
12
|
+
export default _default;
|
|
@@ -1,12 +1,14 @@
|
|
|
1
|
-
declare const
|
|
1
|
+
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
2
2
|
id: {
|
|
3
3
|
type: NumberConstructor;
|
|
4
4
|
required: true;
|
|
5
5
|
};
|
|
6
|
-
}
|
|
6
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
7
7
|
id: {
|
|
8
8
|
type: NumberConstructor;
|
|
9
9
|
required: true;
|
|
10
10
|
};
|
|
11
|
-
}
|
|
12
|
-
|
|
11
|
+
}>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {
|
|
12
|
+
textItem: HTMLDivElement;
|
|
13
|
+
}, HTMLDivElement>;
|
|
14
|
+
export default _default;
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
declare const
|
|
1
|
+
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
2
2
|
id: {
|
|
3
3
|
type: NumberConstructor;
|
|
4
4
|
required: true;
|
|
5
5
|
};
|
|
6
|
-
}
|
|
6
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
7
7
|
id: {
|
|
8
8
|
type: NumberConstructor;
|
|
9
9
|
required: true;
|
|
10
10
|
};
|
|
11
|
-
}
|
|
12
|
-
export default
|
|
11
|
+
}>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLImageElement>;
|
|
12
|
+
export default _default;
|