ablok-components 0.2.9 → 0.2.11
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/ablok-components.css +1 -0
- package/dist/ablok-components.es.js +19889 -20568
- package/dist/ablok-components.umd.js +66 -91
- package/dist/components/_preview.vue.d.ts +29 -0
- package/dist/components/atoms/base-button/base-button.vue.d.ts +23 -7
- package/dist/components/atoms/base-headline/base-headline.vue.d.ts +24 -45
- package/dist/components/atoms/base-image/base-image.vue.d.ts +5 -5
- package/dist/components/atoms/base-input/base-input.vue.d.ts +38 -11
- package/dist/components/atoms/base-paragraph/base-paragraph.vue.d.ts +8 -37
- package/dist/components/atoms/check-group/check-group.vue.d.ts +23 -17
- package/dist/components/atoms/input-checkbox/input-checkbox.vue.d.ts +12 -7
- package/dist/components/atoms/input-datetime/input-datetime.d.ts +0 -0
- package/dist/components/atoms/input-datetime/input-datetime.vue.d.ts +34 -11
- package/dist/components/atoms/input-file/input-file.vue.d.ts +47 -19
- package/dist/components/atoms/input-password/input-password.vue.d.ts +33 -11
- package/dist/components/atoms/input-textarea/input-textarea.vue.d.ts +30 -11
- package/dist/components/atoms/loading-spinner/loading-spinner.vue.d.ts +20 -5
- package/dist/components/atoms/radio-group/radio-group.vue.d.ts +35 -13
- package/dist/components/atoms/svg-icon/svg-icon.vue.d.ts +6 -6
- package/dist/components/component-hub.d.ts +9 -0
- package/dist/components/molecules/accordion/accordion-item.vue.d.ts +27 -9
- package/dist/components/molecules/accordion/accordion.vue.d.ts +16 -1
- package/dist/components/molecules/auto-suggest/auto-suggest.vue.d.ts +32 -10
- package/dist/components/molecules/base-camera/base-camera.vue.d.ts +15 -7
- package/dist/components/molecules/color-palette/color-palette.vue.d.ts +22 -16
- package/dist/components/molecules/dom-renderer/dom-renderer.vue.d.ts +29 -7
- package/dist/components/molecules/file-upload/file-upload.vue.d.ts +59 -45
- package/dist/components/molecules/input-color/input-color.vue.d.ts +13 -11
- package/dist/components/molecules/input-datepicker/input-datepicker.vue.d.ts +36 -11
- package/dist/components/molecules/input-dropdown/input-dropdown.vue.d.ts +24 -18
- package/dist/components/molecules/link-sharing/link-sharing.vue.d.ts +17 -13
- package/dist/components/molecules/media-thumbnails/media-thumbnails.vue.d.ts +22 -15
- package/dist/components/molecules/popover-notifications/popover-notifications.vue.d.ts +28 -14
- package/dist/components/molecules/popover-tooltip/popover-tooltip.vue.d.ts +206 -13
- package/dist/components/molecules/progress-steps/progress-steps.vue.d.ts +44 -16
- package/dist/components/molecules/radio-buttons/radio-buttons.vue.d.ts +23 -16
- package/dist/components/molecules/rte-editor/rte-editor.vue.d.ts +9 -7
- package/dist/components/molecules/select-media/select-media.vue.d.ts +23 -16
- package/dist/components/molecules/upload-group/upload-group.vue.d.ts +24 -18
- package/dist/components/organisms/asset-uploader/asset-uploader.vue.d.ts +24 -18
- package/dist/components/templates/base-carousel/base-carousel.vue.d.ts +46 -15
- package/dist/components/templates/base-form/base-form.vue.d.ts +28 -45
- package/dist/components/templates/modal-dialog/modal-dialog.vue.d.ts +29 -10
- package/dist/components/templates/popover-dialog/popover-dialog.vue.d.ts +21 -10
- package/dist/components/templates/sortable-list/sortable-list.vue.d.ts +40 -14
- package/dist/components/templates/touch-wrapper/touch-wrapper.vue.d.ts +33 -6
- package/dist/i18n.d.ts +168 -0
- package/dist/index.d.ts +40 -40
- package/dist/locales/en.d.ts +166 -0
- package/dist/main.d.ts +0 -0
- package/package.json +1 -1
- package/dist/style.css +0 -1
|
@@ -7,7 +7,7 @@ export declare enum MediaType {
|
|
|
7
7
|
Render = "Render",
|
|
8
8
|
SecureText = "SecureText"
|
|
9
9
|
}
|
|
10
|
-
declare const
|
|
10
|
+
declare const _default: import('../../../../vue/dist/vue.esm-bundler.js').DefineComponent<import('../../../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
|
|
11
11
|
modelValue: {
|
|
12
12
|
type: {
|
|
13
13
|
(arrayLength: number): any[];
|
|
@@ -17,10 +17,12 @@ declare const _sfc_main: import('./vue/dist/vue.esm-bundler.js').DefineComponent
|
|
|
17
17
|
isArray(arg: any): arg is any[];
|
|
18
18
|
readonly prototype: any[];
|
|
19
19
|
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
20
|
-
from<
|
|
21
|
-
from<
|
|
22
|
-
from<
|
|
23
|
-
of<
|
|
20
|
+
from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
21
|
+
from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
|
|
22
|
+
from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
23
|
+
of<T>(...items: T[]): T[];
|
|
24
|
+
fromAsync<T>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T | PromiseLike<T>> | ArrayLike<T | PromiseLike<T>>): Promise<T[]>;
|
|
25
|
+
fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>, index: number) => U, thisArg?: any): Promise<Awaited<U>[]>;
|
|
24
26
|
readonly [Symbol.species]: ArrayConstructor;
|
|
25
27
|
};
|
|
26
28
|
default: () => never[];
|
|
@@ -82,7 +84,9 @@ declare const _sfc_main: import('./vue/dist/vue.esm-bundler.js').DefineComponent
|
|
|
82
84
|
type: NumberConstructor;
|
|
83
85
|
default: number;
|
|
84
86
|
};
|
|
85
|
-
}
|
|
87
|
+
}>, {}, {}, {}, {}, import('../../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, import('../../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, {
|
|
88
|
+
"update:modelValue": (...args: any[]) => void;
|
|
89
|
+
}, string, import('../../../../vue/dist/vue.esm-bundler.js').PublicProps, Readonly<import('../../../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
|
|
86
90
|
modelValue: {
|
|
87
91
|
type: {
|
|
88
92
|
(arrayLength: number): any[];
|
|
@@ -92,10 +96,12 @@ declare const _sfc_main: import('./vue/dist/vue.esm-bundler.js').DefineComponent
|
|
|
92
96
|
isArray(arg: any): arg is any[];
|
|
93
97
|
readonly prototype: any[];
|
|
94
98
|
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
95
|
-
from<
|
|
96
|
-
from<
|
|
97
|
-
from<
|
|
98
|
-
of<
|
|
99
|
+
from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
100
|
+
from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
|
|
101
|
+
from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
102
|
+
of<T>(...items: T[]): T[];
|
|
103
|
+
fromAsync<T>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T | PromiseLike<T>> | ArrayLike<T | PromiseLike<T>>): Promise<T[]>;
|
|
104
|
+
fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>, index: number) => U, thisArg?: any): Promise<Awaited<U>[]>;
|
|
99
105
|
readonly [Symbol.species]: ArrayConstructor;
|
|
100
106
|
};
|
|
101
107
|
default: () => never[];
|
|
@@ -157,22 +163,22 @@ declare const _sfc_main: import('./vue/dist/vue.esm-bundler.js').DefineComponent
|
|
|
157
163
|
type: NumberConstructor;
|
|
158
164
|
default: number;
|
|
159
165
|
};
|
|
160
|
-
}>> & {
|
|
166
|
+
}>> & Readonly<{
|
|
161
167
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
162
|
-
}
|
|
168
|
+
}>, {
|
|
163
169
|
type: string;
|
|
164
|
-
|
|
165
|
-
disabled: boolean;
|
|
170
|
+
label: string;
|
|
166
171
|
required: boolean;
|
|
172
|
+
variant: string;
|
|
173
|
+
id: string;
|
|
167
174
|
modelValue: any[];
|
|
175
|
+
disabled: boolean;
|
|
168
176
|
name: string;
|
|
169
|
-
id: string;
|
|
170
|
-
label: string;
|
|
171
177
|
accept: string;
|
|
172
178
|
endpoint: string;
|
|
173
179
|
authToken: string;
|
|
174
180
|
baseResponsePath: string;
|
|
175
181
|
previewWidth: number;
|
|
176
182
|
mediaTypeMap: Record<string, any>;
|
|
177
|
-
}, {}>;
|
|
178
|
-
export default
|
|
183
|
+
}, {}, {}, {}, string, import('../../../../vue/dist/vue.esm-bundler.js').ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
184
|
+
export default _default;
|
|
@@ -1,4 +1,19 @@
|
|
|
1
|
-
declare
|
|
1
|
+
declare function __VLS_template(): {
|
|
2
|
+
attrs: Partial<{}>;
|
|
3
|
+
slots: {
|
|
4
|
+
'carousel-item'?(_: {
|
|
5
|
+
item: any;
|
|
6
|
+
index: number;
|
|
7
|
+
}): any;
|
|
8
|
+
};
|
|
9
|
+
refs: {
|
|
10
|
+
viewport: HTMLDivElement;
|
|
11
|
+
track: HTMLDivElement;
|
|
12
|
+
};
|
|
13
|
+
rootEl: HTMLDivElement;
|
|
14
|
+
};
|
|
15
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
16
|
+
declare const __VLS_component: import('../../../../vue/dist/vue.esm-bundler.js').DefineComponent<import('../../../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
|
|
2
17
|
modelValue: {
|
|
3
18
|
type: NumberConstructor;
|
|
4
19
|
default: number;
|
|
@@ -20,10 +35,12 @@ declare const _sfc_main: import('./vue/dist/vue.esm-bundler.js').DefineComponent
|
|
|
20
35
|
isArray(arg: any): arg is any[];
|
|
21
36
|
readonly prototype: any[];
|
|
22
37
|
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
23
|
-
from<
|
|
24
|
-
from<
|
|
25
|
-
from<
|
|
26
|
-
of<
|
|
38
|
+
from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
39
|
+
from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
|
|
40
|
+
from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
41
|
+
of<T>(...items: T[]): T[];
|
|
42
|
+
fromAsync<T>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T | PromiseLike<T>> | ArrayLike<T | PromiseLike<T>>): Promise<T[]>;
|
|
43
|
+
fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>, index: number) => U, thisArg?: any): Promise<Awaited<U>[]>;
|
|
27
44
|
readonly [Symbol.species]: ArrayConstructor;
|
|
28
45
|
};
|
|
29
46
|
default: never[];
|
|
@@ -32,7 +49,10 @@ declare const _sfc_main: import('./vue/dist/vue.esm-bundler.js').DefineComponent
|
|
|
32
49
|
type: BooleanConstructor;
|
|
33
50
|
default: boolean;
|
|
34
51
|
};
|
|
35
|
-
}
|
|
52
|
+
}>, {}, {}, {}, {}, import('../../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, import('../../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, {
|
|
53
|
+
select: (...args: any[]) => void;
|
|
54
|
+
"update:modelValue": (...args: any[]) => void;
|
|
55
|
+
}, string, import('../../../../vue/dist/vue.esm-bundler.js').PublicProps, Readonly<import('../../../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
|
|
36
56
|
modelValue: {
|
|
37
57
|
type: NumberConstructor;
|
|
38
58
|
default: number;
|
|
@@ -54,10 +74,12 @@ declare const _sfc_main: import('./vue/dist/vue.esm-bundler.js').DefineComponent
|
|
|
54
74
|
isArray(arg: any): arg is any[];
|
|
55
75
|
readonly prototype: any[];
|
|
56
76
|
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
57
|
-
from<
|
|
58
|
-
from<
|
|
59
|
-
from<
|
|
60
|
-
of<
|
|
77
|
+
from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
78
|
+
from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
|
|
79
|
+
from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
80
|
+
of<T>(...items: T[]): T[];
|
|
81
|
+
fromAsync<T>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T | PromiseLike<T>> | ArrayLike<T | PromiseLike<T>>): Promise<T[]>;
|
|
82
|
+
fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>, index: number) => U, thisArg?: any): Promise<Awaited<U>[]>;
|
|
61
83
|
readonly [Symbol.species]: ArrayConstructor;
|
|
62
84
|
};
|
|
63
85
|
default: never[];
|
|
@@ -66,14 +88,23 @@ declare const _sfc_main: import('./vue/dist/vue.esm-bundler.js').DefineComponent
|
|
|
66
88
|
type: BooleanConstructor;
|
|
67
89
|
default: boolean;
|
|
68
90
|
};
|
|
69
|
-
}>> & {
|
|
70
|
-
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
91
|
+
}>> & Readonly<{
|
|
71
92
|
onSelect?: ((...args: any[]) => any) | undefined;
|
|
72
|
-
|
|
93
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
94
|
+
}>, {
|
|
73
95
|
modelValue: number;
|
|
74
96
|
messages: Record<string, any>;
|
|
75
97
|
config: Record<string, any>;
|
|
76
98
|
items: any[];
|
|
77
99
|
navigation: boolean;
|
|
78
|
-
}, {}
|
|
79
|
-
|
|
100
|
+
}, {}, {}, {}, string, import('../../../../vue/dist/vue.esm-bundler.js').ComponentProvideOptions, true, {
|
|
101
|
+
viewport: HTMLDivElement;
|
|
102
|
+
track: HTMLDivElement;
|
|
103
|
+
}, HTMLDivElement>;
|
|
104
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
105
|
+
export default _default;
|
|
106
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
107
|
+
new (): {
|
|
108
|
+
$slots: S;
|
|
109
|
+
};
|
|
110
|
+
};
|
|
@@ -1,45 +1,28 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
};
|
|
28
|
-
|
|
29
|
-
type: __PropType<string | undefined>;
|
|
30
|
-
required: false;
|
|
31
|
-
};
|
|
32
|
-
variant: {
|
|
33
|
-
type: __PropType<string | undefined>;
|
|
34
|
-
required: false;
|
|
35
|
-
};
|
|
36
|
-
disabled: {
|
|
37
|
-
type: __PropType<boolean | undefined>;
|
|
38
|
-
required: false;
|
|
39
|
-
};
|
|
40
|
-
pending: {
|
|
41
|
-
type: __PropType<boolean | undefined>;
|
|
42
|
-
required: false;
|
|
43
|
-
};
|
|
44
|
-
}>>, {}, {}>;
|
|
45
|
-
export default _sfc_main;
|
|
1
|
+
type __VLS_Props = {
|
|
2
|
+
id?: string;
|
|
3
|
+
name?: string;
|
|
4
|
+
variant?: string;
|
|
5
|
+
disabled?: boolean;
|
|
6
|
+
pending?: boolean;
|
|
7
|
+
};
|
|
8
|
+
declare function __VLS_template(): {
|
|
9
|
+
attrs: Partial<{}>;
|
|
10
|
+
slots: {
|
|
11
|
+
default?(_: {}): any;
|
|
12
|
+
};
|
|
13
|
+
refs: {
|
|
14
|
+
form: HTMLFormElement;
|
|
15
|
+
};
|
|
16
|
+
rootEl: HTMLDivElement;
|
|
17
|
+
};
|
|
18
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
19
|
+
declare const __VLS_component: import('../../../../vue/dist/vue.esm-bundler.js').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('../../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, import('../../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, {}, string, import('../../../../vue/dist/vue.esm-bundler.js').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('../../../../vue/dist/vue.esm-bundler.js').ComponentProvideOptions, false, {
|
|
20
|
+
form: HTMLFormElement;
|
|
21
|
+
}, HTMLDivElement>;
|
|
22
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
23
|
+
export default _default;
|
|
24
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
25
|
+
new (): {
|
|
26
|
+
$slots: S;
|
|
27
|
+
};
|
|
28
|
+
};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import
|
|
1
|
+
import { PropType } from '../../../../vue/dist/vue.esm-bundler.js';
|
|
2
2
|
export declare enum Breakpoints {
|
|
3
3
|
XS = "xs",
|
|
4
4
|
SM = "sm",
|
|
@@ -6,7 +6,7 @@ export declare enum Breakpoints {
|
|
|
6
6
|
LG = "lg",
|
|
7
7
|
XL = "xl"
|
|
8
8
|
}
|
|
9
|
-
declare const
|
|
9
|
+
declare const _default: __VLS_WithTemplateSlots<import('../../../../vue/dist/vue.esm-bundler.js').DefineComponent<import('../../../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
|
|
10
10
|
modelValue: {
|
|
11
11
|
type: BooleanConstructor;
|
|
12
12
|
default: boolean;
|
|
@@ -35,7 +35,16 @@ declare const _sfc_main: import('./vue/dist/vue.esm-bundler.js').DefineComponent
|
|
|
35
35
|
type: StringConstructor;
|
|
36
36
|
default: string;
|
|
37
37
|
};
|
|
38
|
-
}
|
|
38
|
+
}>, {
|
|
39
|
+
show: () => void;
|
|
40
|
+
close: () => void;
|
|
41
|
+
confirm: (returnVal?: string) => void;
|
|
42
|
+
cancel: () => void;
|
|
43
|
+
}, {}, {}, {}, import('../../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, import('../../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, {
|
|
44
|
+
cancel: (...args: any[]) => void;
|
|
45
|
+
"update:modelValue": (...args: any[]) => void;
|
|
46
|
+
confirm: (...args: any[]) => void;
|
|
47
|
+
}, string, import('../../../../vue/dist/vue.esm-bundler.js').PublicProps, Readonly<import('../../../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
|
|
39
48
|
modelValue: {
|
|
40
49
|
type: BooleanConstructor;
|
|
41
50
|
default: boolean;
|
|
@@ -64,17 +73,27 @@ declare const _sfc_main: import('./vue/dist/vue.esm-bundler.js').DefineComponent
|
|
|
64
73
|
type: StringConstructor;
|
|
65
74
|
default: string;
|
|
66
75
|
};
|
|
67
|
-
}>> & {
|
|
68
|
-
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
76
|
+
}>> & Readonly<{
|
|
69
77
|
onCancel?: ((...args: any[]) => any) | undefined;
|
|
78
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
70
79
|
onConfirm?: ((...args: any[]) => any) | undefined;
|
|
71
|
-
}
|
|
80
|
+
}>, {
|
|
72
81
|
size: Breakpoints;
|
|
73
|
-
modelValue: boolean;
|
|
74
|
-
title: string;
|
|
75
82
|
footer: boolean;
|
|
83
|
+
title: string;
|
|
84
|
+
modelValue: boolean;
|
|
76
85
|
classes: string;
|
|
77
86
|
modal: boolean;
|
|
78
87
|
dismiss: boolean;
|
|
79
|
-
}, {}
|
|
80
|
-
|
|
88
|
+
}, {}, {}, {}, string, import('../../../../vue/dist/vue.esm-bundler.js').ComponentProvideOptions, true, {
|
|
89
|
+
dialog: HTMLDialogElement;
|
|
90
|
+
}, HTMLDialogElement>, {
|
|
91
|
+
default?(_: {}): any;
|
|
92
|
+
footer?(_: {}): any;
|
|
93
|
+
}>;
|
|
94
|
+
export default _default;
|
|
95
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
96
|
+
new (): {
|
|
97
|
+
$slots: S;
|
|
98
|
+
};
|
|
99
|
+
};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
declare const
|
|
1
|
+
declare const _default: __VLS_WithTemplateSlots<import('../../../../vue/dist/vue.esm-bundler.js').DefineComponent<import('../../../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
|
|
2
2
|
modelValue: {
|
|
3
3
|
type: BooleanConstructor;
|
|
4
4
|
default: boolean;
|
|
@@ -39,7 +39,9 @@ declare const _sfc_main: import('./vue/dist/vue.esm-bundler.js').DefineComponent
|
|
|
39
39
|
type: NumberConstructor;
|
|
40
40
|
default: number;
|
|
41
41
|
};
|
|
42
|
-
}
|
|
42
|
+
}>, {}, {}, {}, {}, import('../../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, import('../../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, {
|
|
43
|
+
"update:modelValue": (...args: any[]) => void;
|
|
44
|
+
}, string, import('../../../../vue/dist/vue.esm-bundler.js').PublicProps, Readonly<import('../../../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
|
|
43
45
|
modelValue: {
|
|
44
46
|
type: BooleanConstructor;
|
|
45
47
|
default: boolean;
|
|
@@ -80,18 +82,27 @@ declare const _sfc_main: import('./vue/dist/vue.esm-bundler.js').DefineComponent
|
|
|
80
82
|
type: NumberConstructor;
|
|
81
83
|
default: number;
|
|
82
84
|
};
|
|
83
|
-
}>> & {
|
|
85
|
+
}>> & Readonly<{
|
|
84
86
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
85
|
-
}
|
|
87
|
+
}>, {
|
|
86
88
|
type: string;
|
|
87
|
-
modelValue: boolean;
|
|
88
|
-
id: string;
|
|
89
|
-
title: string;
|
|
90
89
|
footer: boolean;
|
|
91
90
|
header: boolean;
|
|
92
|
-
|
|
91
|
+
title: string;
|
|
92
|
+
id: string;
|
|
93
|
+
modelValue: boolean;
|
|
93
94
|
classes: string;
|
|
94
95
|
hover: boolean;
|
|
95
96
|
hoverDelay: number;
|
|
96
|
-
|
|
97
|
-
|
|
97
|
+
closeTimeout: number;
|
|
98
|
+
}, {}, {}, {}, string, import('../../../../vue/dist/vue.esm-bundler.js').ComponentProvideOptions, true, {
|
|
99
|
+
popover: HTMLSpanElement;
|
|
100
|
+
}, HTMLSpanElement>, {
|
|
101
|
+
default?(_: {}): any;
|
|
102
|
+
}>;
|
|
103
|
+
export default _default;
|
|
104
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
105
|
+
new (): {
|
|
106
|
+
$slots: S;
|
|
107
|
+
};
|
|
108
|
+
};
|
|
@@ -1,4 +1,17 @@
|
|
|
1
|
-
declare
|
|
1
|
+
declare function __VLS_template(): {
|
|
2
|
+
attrs: Partial<{}>;
|
|
3
|
+
slots: {
|
|
4
|
+
'list-item'?(_: {
|
|
5
|
+
item: any;
|
|
6
|
+
index: number;
|
|
7
|
+
}): any;
|
|
8
|
+
'list-append'?(_: {}): any;
|
|
9
|
+
};
|
|
10
|
+
refs: {};
|
|
11
|
+
rootEl: any;
|
|
12
|
+
};
|
|
13
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
14
|
+
declare const __VLS_component: import('../../../../vue/dist/vue.esm-bundler.js').DefineComponent<import('../../../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
|
|
2
15
|
modelValue: {
|
|
3
16
|
type: {
|
|
4
17
|
(arrayLength: number): any[];
|
|
@@ -8,10 +21,12 @@ declare const _sfc_main: import('./vue/dist/vue.esm-bundler.js').DefineComponent
|
|
|
8
21
|
isArray(arg: any): arg is any[];
|
|
9
22
|
readonly prototype: any[];
|
|
10
23
|
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
11
|
-
from<
|
|
12
|
-
from<
|
|
13
|
-
from<
|
|
14
|
-
of<
|
|
24
|
+
from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
25
|
+
from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
|
|
26
|
+
from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
27
|
+
of<T>(...items: T[]): T[];
|
|
28
|
+
fromAsync<T>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T | PromiseLike<T>> | ArrayLike<T | PromiseLike<T>>): Promise<T[]>;
|
|
29
|
+
fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>, index: number) => U, thisArg?: any): Promise<Awaited<U>[]>;
|
|
15
30
|
readonly [Symbol.species]: ArrayConstructor;
|
|
16
31
|
};
|
|
17
32
|
default: () => never[];
|
|
@@ -36,7 +51,10 @@ declare const _sfc_main: import('./vue/dist/vue.esm-bundler.js').DefineComponent
|
|
|
36
51
|
type: BooleanConstructor;
|
|
37
52
|
default: boolean;
|
|
38
53
|
};
|
|
39
|
-
}
|
|
54
|
+
}>, {}, {}, {}, {}, import('../../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, import('../../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, {
|
|
55
|
+
"update:modelValue": (...args: any[]) => void;
|
|
56
|
+
"update:isDragging": (...args: any[]) => void;
|
|
57
|
+
}, string, import('../../../../vue/dist/vue.esm-bundler.js').PublicProps, Readonly<import('../../../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
|
|
40
58
|
modelValue: {
|
|
41
59
|
type: {
|
|
42
60
|
(arrayLength: number): any[];
|
|
@@ -46,10 +64,12 @@ declare const _sfc_main: import('./vue/dist/vue.esm-bundler.js').DefineComponent
|
|
|
46
64
|
isArray(arg: any): arg is any[];
|
|
47
65
|
readonly prototype: any[];
|
|
48
66
|
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
49
|
-
from<
|
|
50
|
-
from<
|
|
51
|
-
from<
|
|
52
|
-
of<
|
|
67
|
+
from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
68
|
+
from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
|
|
69
|
+
from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
70
|
+
of<T>(...items: T[]): T[];
|
|
71
|
+
fromAsync<T>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T | PromiseLike<T>> | ArrayLike<T | PromiseLike<T>>): Promise<T[]>;
|
|
72
|
+
fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>, index: number) => U, thisArg?: any): Promise<Awaited<U>[]>;
|
|
53
73
|
readonly [Symbol.species]: ArrayConstructor;
|
|
54
74
|
};
|
|
55
75
|
default: () => never[];
|
|
@@ -74,15 +94,21 @@ declare const _sfc_main: import('./vue/dist/vue.esm-bundler.js').DefineComponent
|
|
|
74
94
|
type: BooleanConstructor;
|
|
75
95
|
default: boolean;
|
|
76
96
|
};
|
|
77
|
-
}>> & {
|
|
97
|
+
}>> & Readonly<{
|
|
78
98
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
79
99
|
"onUpdate:isDragging"?: ((...args: any[]) => any) | undefined;
|
|
80
|
-
}
|
|
100
|
+
}>, {
|
|
81
101
|
modelValue: any[];
|
|
82
102
|
messages: Record<string, any>;
|
|
83
103
|
vertical: boolean;
|
|
84
104
|
config: Record<string, any>;
|
|
85
105
|
showDragHandle: boolean;
|
|
86
106
|
showPreview: boolean;
|
|
87
|
-
}, {}>;
|
|
88
|
-
|
|
107
|
+
}, {}, {}, {}, string, import('../../../../vue/dist/vue.esm-bundler.js').ComponentProvideOptions, true, {}, any>;
|
|
108
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
109
|
+
export default _default;
|
|
110
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
111
|
+
new (): {
|
|
112
|
+
$slots: S;
|
|
113
|
+
};
|
|
114
|
+
};
|
|
@@ -1,16 +1,43 @@
|
|
|
1
|
-
declare
|
|
1
|
+
declare function setScale(payload: number): void;
|
|
2
|
+
declare function __VLS_template(): {
|
|
3
|
+
attrs: Partial<{}>;
|
|
4
|
+
slots: {
|
|
5
|
+
controls?(_: {
|
|
6
|
+
on: {
|
|
7
|
+
setScale: typeof setScale;
|
|
8
|
+
};
|
|
9
|
+
}): any;
|
|
10
|
+
default?(_: {}): any;
|
|
11
|
+
};
|
|
12
|
+
refs: {
|
|
13
|
+
touchElement: HTMLDivElement;
|
|
14
|
+
};
|
|
15
|
+
rootEl: HTMLDivElement;
|
|
16
|
+
};
|
|
17
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
18
|
+
declare const __VLS_component: import('../../../../vue/dist/vue.esm-bundler.js').DefineComponent<import('../../../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
|
|
2
19
|
modelValue: {
|
|
3
20
|
type: NumberConstructor;
|
|
4
21
|
default: number;
|
|
5
22
|
};
|
|
6
|
-
}
|
|
23
|
+
}>, {}, {}, {}, {}, import('../../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, import('../../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, {
|
|
24
|
+
"update:modelValue": (...args: any[]) => void;
|
|
25
|
+
}, string, import('../../../../vue/dist/vue.esm-bundler.js').PublicProps, Readonly<import('../../../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
|
|
7
26
|
modelValue: {
|
|
8
27
|
type: NumberConstructor;
|
|
9
28
|
default: number;
|
|
10
29
|
};
|
|
11
|
-
}>> & {
|
|
30
|
+
}>> & Readonly<{
|
|
12
31
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
13
|
-
}
|
|
32
|
+
}>, {
|
|
14
33
|
modelValue: number;
|
|
15
|
-
}, {}
|
|
16
|
-
|
|
34
|
+
}, {}, {}, {}, string, import('../../../../vue/dist/vue.esm-bundler.js').ComponentProvideOptions, true, {
|
|
35
|
+
touchElement: HTMLDivElement;
|
|
36
|
+
}, HTMLDivElement>;
|
|
37
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
38
|
+
export default _default;
|
|
39
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
40
|
+
new (): {
|
|
41
|
+
$slots: S;
|
|
42
|
+
};
|
|
43
|
+
};
|