ablok-components 0.1.214 → 0.2.2
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 +19761 -20446
- package/dist/ablok-components.umd.js +66 -92
- 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 +16 -16
- package/dist/style.css +0 -1
|
@@ -1,4 +1,18 @@
|
|
|
1
|
-
declare
|
|
1
|
+
declare function __VLS_template(): {
|
|
2
|
+
attrs: Partial<{}>;
|
|
3
|
+
slots: {
|
|
4
|
+
'input-prepend'?(_: {
|
|
5
|
+
slotScope: string;
|
|
6
|
+
}): any;
|
|
7
|
+
'input-append'?(_: {
|
|
8
|
+
slotScope: string;
|
|
9
|
+
}): any;
|
|
10
|
+
};
|
|
11
|
+
refs: {};
|
|
12
|
+
rootEl: HTMLDivElement;
|
|
13
|
+
};
|
|
14
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
15
|
+
declare const __VLS_component: import('../../../../vue/dist/vue.esm-bundler.js').DefineComponent<import('../../../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
|
|
2
16
|
modelValue: {
|
|
3
17
|
type: (StringConstructor | BooleanConstructor | DateConstructor | NumberConstructor)[];
|
|
4
18
|
default: string;
|
|
@@ -62,7 +76,9 @@ declare const _sfc_main: import('./vue/dist/vue.esm-bundler.js').DefineComponent
|
|
|
62
76
|
type: BooleanConstructor;
|
|
63
77
|
default: boolean;
|
|
64
78
|
};
|
|
65
|
-
}
|
|
79
|
+
}>, {}, {}, {}, {}, import('../../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, import('../../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, {
|
|
80
|
+
"update:modelValue": (...args: any[]) => void;
|
|
81
|
+
}, string, import('../../../../vue/dist/vue.esm-bundler.js').PublicProps, Readonly<import('../../../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
|
|
66
82
|
modelValue: {
|
|
67
83
|
type: (StringConstructor | BooleanConstructor | DateConstructor | NumberConstructor)[];
|
|
68
84
|
default: string;
|
|
@@ -126,23 +142,29 @@ declare const _sfc_main: import('./vue/dist/vue.esm-bundler.js').DefineComponent
|
|
|
126
142
|
type: BooleanConstructor;
|
|
127
143
|
default: boolean;
|
|
128
144
|
};
|
|
129
|
-
}>> & {
|
|
145
|
+
}>> & Readonly<{
|
|
130
146
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
131
|
-
}
|
|
147
|
+
}>, {
|
|
132
148
|
type: string;
|
|
133
|
-
|
|
134
|
-
|
|
149
|
+
label: string;
|
|
150
|
+
pattern: string;
|
|
135
151
|
required: boolean;
|
|
152
|
+
variant: string;
|
|
153
|
+
id: string;
|
|
136
154
|
modelValue: string | number | boolean | Date;
|
|
155
|
+
disabled: boolean;
|
|
137
156
|
name: string;
|
|
138
|
-
id: string;
|
|
139
|
-
label: string;
|
|
140
157
|
placeholder: string;
|
|
141
158
|
readOnly: boolean;
|
|
142
|
-
pattern: string;
|
|
143
159
|
role: string;
|
|
144
160
|
autocomplete: string;
|
|
145
161
|
password: string;
|
|
146
162
|
confirm: boolean;
|
|
147
|
-
}, {}>;
|
|
148
|
-
|
|
163
|
+
}, {}, {}, {}, string, import('../../../../vue/dist/vue.esm-bundler.js').ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
164
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
165
|
+
export default _default;
|
|
166
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
167
|
+
new (): {
|
|
168
|
+
$slots: S;
|
|
169
|
+
};
|
|
170
|
+
};
|
|
@@ -1,4 +1,15 @@
|
|
|
1
|
-
declare
|
|
1
|
+
declare function __VLS_template(): {
|
|
2
|
+
attrs: Partial<{}>;
|
|
3
|
+
slots: {
|
|
4
|
+
'input-prepend'?(_: {}): any;
|
|
5
|
+
'input-append'?(_: {}): any;
|
|
6
|
+
label?(_: {}): any;
|
|
7
|
+
};
|
|
8
|
+
refs: {};
|
|
9
|
+
rootEl: HTMLDivElement;
|
|
10
|
+
};
|
|
11
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
12
|
+
declare const __VLS_component: import('../../../../vue/dist/vue.esm-bundler.js').DefineComponent<import('../../../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
|
|
2
13
|
modelValue: {
|
|
3
14
|
type: StringConstructor;
|
|
4
15
|
default: string;
|
|
@@ -50,7 +61,9 @@ declare const _sfc_main: import('./vue/dist/vue.esm-bundler.js').DefineComponent
|
|
|
50
61
|
type: BooleanConstructor;
|
|
51
62
|
default: boolean;
|
|
52
63
|
};
|
|
53
|
-
}
|
|
64
|
+
}>, {}, {}, {}, {}, import('../../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, import('../../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, {
|
|
65
|
+
"update:modelValue": (...args: any[]) => void;
|
|
66
|
+
}, string, import('../../../../vue/dist/vue.esm-bundler.js').PublicProps, Readonly<import('../../../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
|
|
54
67
|
modelValue: {
|
|
55
68
|
type: StringConstructor;
|
|
56
69
|
default: string;
|
|
@@ -102,20 +115,26 @@ declare const _sfc_main: import('./vue/dist/vue.esm-bundler.js').DefineComponent
|
|
|
102
115
|
type: BooleanConstructor;
|
|
103
116
|
default: boolean;
|
|
104
117
|
};
|
|
105
|
-
}>> & {
|
|
118
|
+
}>> & Readonly<{
|
|
106
119
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
107
|
-
}
|
|
120
|
+
}>, {
|
|
108
121
|
type: string;
|
|
109
|
-
|
|
110
|
-
|
|
122
|
+
label: string;
|
|
123
|
+
pattern: string;
|
|
111
124
|
required: boolean;
|
|
125
|
+
variant: string;
|
|
126
|
+
id: string;
|
|
112
127
|
modelValue: string;
|
|
128
|
+
disabled: boolean;
|
|
113
129
|
name: string;
|
|
114
|
-
id: string;
|
|
115
|
-
label: string;
|
|
116
130
|
placeholder: string;
|
|
117
131
|
readOnly: boolean;
|
|
118
|
-
pattern: string;
|
|
119
132
|
checked: boolean;
|
|
120
|
-
}, {}>;
|
|
121
|
-
|
|
133
|
+
}, {}, {}, {}, string, import('../../../../vue/dist/vue.esm-bundler.js').ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
134
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
135
|
+
export default _default;
|
|
136
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
137
|
+
new (): {
|
|
138
|
+
$slots: S;
|
|
139
|
+
};
|
|
140
|
+
};
|
|
@@ -1,14 +1,29 @@
|
|
|
1
|
-
declare
|
|
1
|
+
declare function __VLS_template(): {
|
|
2
|
+
attrs: Partial<{}>;
|
|
3
|
+
slots: {
|
|
4
|
+
default?(_: {}): any;
|
|
5
|
+
};
|
|
6
|
+
refs: {};
|
|
7
|
+
rootEl: HTMLSpanElement;
|
|
8
|
+
};
|
|
9
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
10
|
+
declare const __VLS_component: import('../../../../vue/dist/vue.esm-bundler.js').DefineComponent<import('../../../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
|
|
2
11
|
color: {
|
|
3
12
|
type: StringConstructor;
|
|
4
13
|
default: string;
|
|
5
14
|
};
|
|
6
|
-
}
|
|
15
|
+
}>, {}, {}, {}, {}, 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<import('../../../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
|
|
7
16
|
color: {
|
|
8
17
|
type: StringConstructor;
|
|
9
18
|
default: string;
|
|
10
19
|
};
|
|
11
|
-
}
|
|
20
|
+
}>> & Readonly<{}>, {
|
|
12
21
|
color: string;
|
|
13
|
-
}, {}>;
|
|
14
|
-
|
|
22
|
+
}, {}, {}, {}, string, import('../../../../vue/dist/vue.esm-bundler.js').ComponentProvideOptions, true, {}, HTMLSpanElement>;
|
|
23
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
24
|
+
export default _default;
|
|
25
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
26
|
+
new (): {
|
|
27
|
+
$slots: S;
|
|
28
|
+
};
|
|
29
|
+
};
|
|
@@ -1,10 +1,23 @@
|
|
|
1
|
-
import { PropType } from '
|
|
2
|
-
declare
|
|
1
|
+
import { PropType } from '../../../../vue/dist/vue.esm-bundler.js';
|
|
2
|
+
declare function __VLS_template(): {
|
|
3
|
+
attrs: Partial<{}>;
|
|
4
|
+
slots: {
|
|
5
|
+
'option-label'?(_: {
|
|
6
|
+
option: any;
|
|
7
|
+
index: number;
|
|
8
|
+
}): any;
|
|
9
|
+
label?(_: {}): any;
|
|
10
|
+
};
|
|
11
|
+
refs: {};
|
|
12
|
+
rootEl: HTMLDivElement;
|
|
13
|
+
};
|
|
14
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
15
|
+
declare const __VLS_component: import('../../../../vue/dist/vue.esm-bundler.js').DefineComponent<import('../../../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
|
|
3
16
|
modelValue: {
|
|
4
17
|
type: null;
|
|
5
18
|
};
|
|
6
19
|
options: {
|
|
7
|
-
type: PropType<any
|
|
20
|
+
type: PropType<Array<any>>;
|
|
8
21
|
default: never[];
|
|
9
22
|
};
|
|
10
23
|
name: {
|
|
@@ -42,12 +55,15 @@ declare const _sfc_main: import('./vue/dist/vue.esm-bundler.js').DefineComponent
|
|
|
42
55
|
type: StringConstructor;
|
|
43
56
|
default: string;
|
|
44
57
|
};
|
|
45
|
-
}
|
|
58
|
+
}>, {}, {}, {}, {}, import('../../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, import('../../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, {
|
|
59
|
+
change: (...args: any[]) => void;
|
|
60
|
+
"update:modelValue": (...args: any[]) => void;
|
|
61
|
+
}, string, import('../../../../vue/dist/vue.esm-bundler.js').PublicProps, Readonly<import('../../../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
|
|
46
62
|
modelValue: {
|
|
47
63
|
type: null;
|
|
48
64
|
};
|
|
49
65
|
options: {
|
|
50
|
-
type: PropType<any
|
|
66
|
+
type: PropType<Array<any>>;
|
|
51
67
|
default: never[];
|
|
52
68
|
};
|
|
53
69
|
name: {
|
|
@@ -85,18 +101,24 @@ declare const _sfc_main: import('./vue/dist/vue.esm-bundler.js').DefineComponent
|
|
|
85
101
|
type: StringConstructor;
|
|
86
102
|
default: string;
|
|
87
103
|
};
|
|
88
|
-
}>> & {
|
|
89
|
-
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
104
|
+
}>> & Readonly<{
|
|
90
105
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
91
|
-
|
|
106
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
107
|
+
}>, {
|
|
108
|
+
label: string;
|
|
109
|
+
required: boolean;
|
|
92
110
|
variant: string;
|
|
111
|
+
id: string;
|
|
93
112
|
disabled: boolean;
|
|
94
|
-
required: boolean;
|
|
95
113
|
name: string;
|
|
96
|
-
id: string;
|
|
97
|
-
label: string;
|
|
98
114
|
readOnly: boolean;
|
|
99
115
|
options: any[];
|
|
100
116
|
itemClass: string;
|
|
101
|
-
}, {}>;
|
|
102
|
-
|
|
117
|
+
}, {}, {}, {}, string, import('../../../../vue/dist/vue.esm-bundler.js').ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
118
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
119
|
+
export default _default;
|
|
120
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
121
|
+
new (): {
|
|
122
|
+
$slots: S;
|
|
123
|
+
};
|
|
124
|
+
};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
declare const
|
|
1
|
+
declare const _default: import('../../../../vue/dist/vue.esm-bundler.js').DefineComponent<import('../../../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
|
|
2
2
|
basePath: {
|
|
3
3
|
type: StringConstructor;
|
|
4
4
|
default: string;
|
|
@@ -15,7 +15,7 @@ declare const _sfc_main: import('./vue/dist/vue.esm-bundler.js').DefineComponent
|
|
|
15
15
|
type: StringConstructor;
|
|
16
16
|
default: string;
|
|
17
17
|
};
|
|
18
|
-
}
|
|
18
|
+
}>, {}, {}, {}, {}, 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<import('../../../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
|
|
19
19
|
basePath: {
|
|
20
20
|
type: StringConstructor;
|
|
21
21
|
default: string;
|
|
@@ -32,10 +32,10 @@ declare const _sfc_main: import('./vue/dist/vue.esm-bundler.js').DefineComponent
|
|
|
32
32
|
type: StringConstructor;
|
|
33
33
|
default: string;
|
|
34
34
|
};
|
|
35
|
-
}
|
|
35
|
+
}>> & Readonly<{}>, {
|
|
36
36
|
symbol: string;
|
|
37
|
-
size: string;
|
|
38
37
|
basePath: string;
|
|
39
38
|
prefix: string;
|
|
40
|
-
|
|
41
|
-
|
|
39
|
+
size: string;
|
|
40
|
+
}, {}, {}, {}, string, import('../../../../vue/dist/vue.esm-bundler.js').ComponentProvideOptions, true, {}, HTMLElement>;
|
|
41
|
+
export default _default;
|
|
@@ -1,4 +1,14 @@
|
|
|
1
|
-
declare
|
|
1
|
+
declare function __VLS_template(): {
|
|
2
|
+
attrs: Partial<{}>;
|
|
3
|
+
slots: {
|
|
4
|
+
toggle?(_: {}): any;
|
|
5
|
+
body?(_: {}): any;
|
|
6
|
+
};
|
|
7
|
+
refs: {};
|
|
8
|
+
rootEl: HTMLDivElement;
|
|
9
|
+
};
|
|
10
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
11
|
+
declare const __VLS_component: import('../../../../vue/dist/vue.esm-bundler.js').DefineComponent<import('../../../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
|
|
2
12
|
id: {
|
|
3
13
|
type: StringConstructor;
|
|
4
14
|
default: () => string;
|
|
@@ -23,7 +33,9 @@ declare const _sfc_main: import('./vue/dist/vue.esm-bundler.js').DefineComponent
|
|
|
23
33
|
type: BooleanConstructor;
|
|
24
34
|
default: boolean;
|
|
25
35
|
};
|
|
26
|
-
}
|
|
36
|
+
}>, {}, {}, {}, {}, import('../../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, import('../../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, {
|
|
37
|
+
"update:modelValue": (...args: any[]) => void;
|
|
38
|
+
}, string, import('../../../../vue/dist/vue.esm-bundler.js').PublicProps, Readonly<import('../../../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
|
|
27
39
|
id: {
|
|
28
40
|
type: StringConstructor;
|
|
29
41
|
default: () => string;
|
|
@@ -48,14 +60,20 @@ declare const _sfc_main: import('./vue/dist/vue.esm-bundler.js').DefineComponent
|
|
|
48
60
|
type: BooleanConstructor;
|
|
49
61
|
default: boolean;
|
|
50
62
|
};
|
|
51
|
-
}>> & {
|
|
63
|
+
}>> & Readonly<{
|
|
52
64
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
53
|
-
}
|
|
54
|
-
modelValue: boolean;
|
|
55
|
-
id: string;
|
|
56
|
-
title: string;
|
|
65
|
+
}>, {
|
|
57
66
|
body: string;
|
|
67
|
+
title: string;
|
|
68
|
+
id: string;
|
|
69
|
+
modelValue: boolean;
|
|
58
70
|
parent: string;
|
|
59
71
|
noPadding: boolean;
|
|
60
|
-
}, {}>;
|
|
61
|
-
|
|
72
|
+
}, {}, {}, {}, string, import('../../../../vue/dist/vue.esm-bundler.js').ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
73
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
74
|
+
export default _default;
|
|
75
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
76
|
+
new (): {
|
|
77
|
+
$slots: S;
|
|
78
|
+
};
|
|
79
|
+
};
|
|
@@ -1,2 +1,17 @@
|
|
|
1
|
-
declare
|
|
1
|
+
declare function __VLS_template(): {
|
|
2
|
+
attrs: Partial<{}>;
|
|
3
|
+
slots: {
|
|
4
|
+
default?(_: {}): any;
|
|
5
|
+
};
|
|
6
|
+
refs: {};
|
|
7
|
+
rootEl: HTMLDivElement;
|
|
8
|
+
};
|
|
9
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
10
|
+
declare const __VLS_component: import('../../../../vue/dist/vue.esm-bundler.js').DefineComponent<{}, {}, {}, {}, {}, 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<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('../../../../vue/dist/vue.esm-bundler.js').ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
11
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
2
12
|
export default _default;
|
|
13
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
14
|
+
new (): {
|
|
15
|
+
$slots: S;
|
|
16
|
+
};
|
|
17
|
+
};
|
|
@@ -1,5 +1,16 @@
|
|
|
1
|
-
import { PropType } from '
|
|
2
|
-
declare
|
|
1
|
+
import { PropType } from '../../../../vue/dist/vue.esm-bundler.js';
|
|
2
|
+
declare function __VLS_template(): {
|
|
3
|
+
attrs: Partial<{}>;
|
|
4
|
+
slots: {
|
|
5
|
+
default?(_: {}): any;
|
|
6
|
+
};
|
|
7
|
+
refs: {
|
|
8
|
+
container: HTMLDivElement;
|
|
9
|
+
};
|
|
10
|
+
rootEl: HTMLDivElement;
|
|
11
|
+
};
|
|
12
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
13
|
+
declare const __VLS_component: import('../../../../vue/dist/vue.esm-bundler.js').DefineComponent<import('../../../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
|
|
3
14
|
modelValue: {
|
|
4
15
|
type: StringConstructor;
|
|
5
16
|
};
|
|
@@ -28,7 +39,7 @@ declare const _sfc_main: import('./vue/dist/vue.esm-bundler.js').DefineComponent
|
|
|
28
39
|
default: boolean;
|
|
29
40
|
};
|
|
30
41
|
options: {
|
|
31
|
-
type: PropType<any
|
|
42
|
+
type: PropType<Array<any>>;
|
|
32
43
|
default: never[];
|
|
33
44
|
};
|
|
34
45
|
color: {
|
|
@@ -42,7 +53,10 @@ declare const _sfc_main: import('./vue/dist/vue.esm-bundler.js').DefineComponent
|
|
|
42
53
|
selection: {
|
|
43
54
|
type: StringConstructor;
|
|
44
55
|
};
|
|
45
|
-
}
|
|
56
|
+
}>, {}, {}, {}, {}, import('../../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, import('../../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, {
|
|
57
|
+
"update:modelValue": (...args: any[]) => void;
|
|
58
|
+
"update:selection": (...args: any[]) => void;
|
|
59
|
+
}, string, import('../../../../vue/dist/vue.esm-bundler.js').PublicProps, Readonly<import('../../../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
|
|
46
60
|
modelValue: {
|
|
47
61
|
type: StringConstructor;
|
|
48
62
|
};
|
|
@@ -71,7 +85,7 @@ declare const _sfc_main: import('./vue/dist/vue.esm-bundler.js').DefineComponent
|
|
|
71
85
|
default: boolean;
|
|
72
86
|
};
|
|
73
87
|
options: {
|
|
74
|
-
type: PropType<any
|
|
88
|
+
type: PropType<Array<any>>;
|
|
75
89
|
default: never[];
|
|
76
90
|
};
|
|
77
91
|
color: {
|
|
@@ -85,15 +99,23 @@ declare const _sfc_main: import('./vue/dist/vue.esm-bundler.js').DefineComponent
|
|
|
85
99
|
selection: {
|
|
86
100
|
type: StringConstructor;
|
|
87
101
|
};
|
|
88
|
-
}>> & {
|
|
102
|
+
}>> & Readonly<{
|
|
89
103
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
90
104
|
"onUpdate:selection"?: ((...args: any[]) => any) | undefined;
|
|
91
|
-
}
|
|
105
|
+
}>, {
|
|
92
106
|
color: string;
|
|
107
|
+
required: boolean;
|
|
93
108
|
disabled: boolean;
|
|
94
109
|
outlined: boolean;
|
|
95
|
-
required: boolean;
|
|
96
110
|
readOnly: boolean;
|
|
97
111
|
options: any[];
|
|
98
|
-
}, {}
|
|
99
|
-
|
|
112
|
+
}, {}, {}, {}, string, import('../../../../vue/dist/vue.esm-bundler.js').ComponentProvideOptions, true, {
|
|
113
|
+
container: HTMLDivElement;
|
|
114
|
+
}, HTMLDivElement>;
|
|
115
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
116
|
+
export default _default;
|
|
117
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
118
|
+
new (): {
|
|
119
|
+
$slots: S;
|
|
120
|
+
};
|
|
121
|
+
};
|
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
|
|
2
|
-
declare const _sfc_main: import('./vue/dist/vue.esm-bundler.js').DefineComponent<{
|
|
1
|
+
declare const _default: import('../../../../vue/dist/vue.esm-bundler.js').DefineComponent<import('../../../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
|
|
3
2
|
modelValue: {
|
|
4
3
|
type: null;
|
|
5
4
|
};
|
|
@@ -43,7 +42,12 @@ declare const _sfc_main: import('./vue/dist/vue.esm-bundler.js').DefineComponent
|
|
|
43
42
|
type: BooleanConstructor;
|
|
44
43
|
default: boolean;
|
|
45
44
|
};
|
|
46
|
-
}
|
|
45
|
+
}>, {
|
|
46
|
+
onCapture: () => void;
|
|
47
|
+
camera: any;
|
|
48
|
+
}, {}, {}, {}, import('../../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, import('../../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, {
|
|
49
|
+
"update:modelValue": (...args: any[]) => void;
|
|
50
|
+
}, string, import('../../../../vue/dist/vue.esm-bundler.js').PublicProps, Readonly<import('../../../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
|
|
47
51
|
modelValue: {
|
|
48
52
|
type: null;
|
|
49
53
|
};
|
|
@@ -87,9 +91,9 @@ declare const _sfc_main: import('./vue/dist/vue.esm-bundler.js').DefineComponent
|
|
|
87
91
|
type: BooleanConstructor;
|
|
88
92
|
default: boolean;
|
|
89
93
|
};
|
|
90
|
-
}>> & {
|
|
94
|
+
}>> & Readonly<{
|
|
91
95
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
92
|
-
}
|
|
96
|
+
}>, {
|
|
93
97
|
enableSwitchCamera: boolean;
|
|
94
98
|
defaultRearCamera: boolean;
|
|
95
99
|
enableMirrorCamera: boolean;
|
|
@@ -100,5 +104,9 @@ declare const _sfc_main: import('./vue/dist/vue.esm-bundler.js').DefineComponent
|
|
|
100
104
|
enableAudio: boolean;
|
|
101
105
|
enableSelectDevice: boolean;
|
|
102
106
|
enableCropImage: boolean;
|
|
103
|
-
}, {}
|
|
104
|
-
|
|
107
|
+
}, {}, {}, {}, string, import('../../../../vue/dist/vue.esm-bundler.js').ComponentProvideOptions, true, {
|
|
108
|
+
camera: HTMLVideoElement;
|
|
109
|
+
canvas: HTMLCanvasElement;
|
|
110
|
+
}, any>;
|
|
111
|
+
export default _default;
|
|
112
|
+
export declare function dataURItoBlob(dataURI: any): Blob;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
declare const
|
|
1
|
+
declare const _default: import('../../../../vue/dist/vue.esm-bundler.js').DefineComponent<import('../../../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
|
|
2
2
|
modelValue: {
|
|
3
3
|
type: StringConstructor[];
|
|
4
4
|
default: string;
|
|
@@ -12,10 +12,12 @@ declare const _sfc_main: import('./vue/dist/vue.esm-bundler.js').DefineComponent
|
|
|
12
12
|
isArray(arg: any): arg is any[];
|
|
13
13
|
readonly prototype: any[];
|
|
14
14
|
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
15
|
-
from<
|
|
16
|
-
from<
|
|
17
|
-
from<
|
|
18
|
-
of<
|
|
15
|
+
from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
16
|
+
from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
|
|
17
|
+
from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
18
|
+
of<T>(...items: T[]): T[];
|
|
19
|
+
fromAsync<T>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T | PromiseLike<T>> | ArrayLike<T | PromiseLike<T>>): Promise<T[]>;
|
|
20
|
+
fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>, index: number) => U, thisArg?: any): Promise<Awaited<U>[]>;
|
|
19
21
|
readonly [Symbol.species]: ArrayConstructor;
|
|
20
22
|
};
|
|
21
23
|
default: string[];
|
|
@@ -39,7 +41,9 @@ declare const _sfc_main: import('./vue/dist/vue.esm-bundler.js').DefineComponent
|
|
|
39
41
|
type: BooleanConstructor;
|
|
40
42
|
default: boolean;
|
|
41
43
|
};
|
|
42
|
-
}
|
|
44
|
+
}>, {}, {}, {}, {}, import('../../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, import('../../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, {
|
|
45
|
+
"update:modelValue": (...args: any[]) => void;
|
|
46
|
+
}, string, import('../../../../vue/dist/vue.esm-bundler.js').PublicProps, Readonly<import('../../../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
|
|
43
47
|
modelValue: {
|
|
44
48
|
type: StringConstructor[];
|
|
45
49
|
default: string;
|
|
@@ -53,10 +57,12 @@ declare const _sfc_main: import('./vue/dist/vue.esm-bundler.js').DefineComponent
|
|
|
53
57
|
isArray(arg: any): arg is any[];
|
|
54
58
|
readonly prototype: any[];
|
|
55
59
|
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
56
|
-
from<
|
|
57
|
-
from<
|
|
58
|
-
from<
|
|
59
|
-
of<
|
|
60
|
+
from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
61
|
+
from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
|
|
62
|
+
from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
63
|
+
of<T>(...items: T[]): T[];
|
|
64
|
+
fromAsync<T>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T | PromiseLike<T>> | ArrayLike<T | PromiseLike<T>>): Promise<T[]>;
|
|
65
|
+
fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>, index: number) => U, thisArg?: any): Promise<Awaited<U>[]>;
|
|
60
66
|
readonly [Symbol.species]: ArrayConstructor;
|
|
61
67
|
};
|
|
62
68
|
default: string[];
|
|
@@ -80,14 +86,14 @@ declare const _sfc_main: import('./vue/dist/vue.esm-bundler.js').DefineComponent
|
|
|
80
86
|
type: BooleanConstructor;
|
|
81
87
|
default: boolean;
|
|
82
88
|
};
|
|
83
|
-
}>> & {
|
|
89
|
+
}>> & Readonly<{
|
|
84
90
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
85
|
-
}
|
|
86
|
-
disabled: boolean;
|
|
91
|
+
}>, {
|
|
87
92
|
required: boolean;
|
|
93
|
+
id: string;
|
|
88
94
|
modelValue: string;
|
|
95
|
+
disabled: boolean;
|
|
89
96
|
name: string;
|
|
90
|
-
id: string;
|
|
91
97
|
colors: String[];
|
|
92
|
-
}, {}>;
|
|
93
|
-
export default
|
|
98
|
+
}, {}, {}, {}, string, import('../../../../vue/dist/vue.esm-bundler.js').ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
99
|
+
export default _default;
|
|
@@ -1,4 +1,15 @@
|
|
|
1
|
-
declare
|
|
1
|
+
declare function __VLS_template(): {
|
|
2
|
+
attrs: Partial<{}>;
|
|
3
|
+
slots: {
|
|
4
|
+
default?(_: {}): any;
|
|
5
|
+
};
|
|
6
|
+
refs: {
|
|
7
|
+
renderer: HTMLDivElement;
|
|
8
|
+
};
|
|
9
|
+
rootEl: HTMLDivElement;
|
|
10
|
+
};
|
|
11
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
12
|
+
declare const __VLS_component: import('../../../../vue/dist/vue.esm-bundler.js').DefineComponent<import('../../../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
|
|
2
13
|
modelValue: {
|
|
3
14
|
type: StringConstructor;
|
|
4
15
|
default: string;
|
|
@@ -27,7 +38,10 @@ declare const _sfc_main: import('./vue/dist/vue.esm-bundler.js').DefineComponent
|
|
|
27
38
|
type: BooleanConstructor;
|
|
28
39
|
default: boolean;
|
|
29
40
|
};
|
|
30
|
-
}
|
|
41
|
+
}>, {}, {}, {}, {}, import('../../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, import('../../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, {
|
|
42
|
+
"update:modelValue": (...args: any[]) => void;
|
|
43
|
+
"update:pending": (...args: any[]) => void;
|
|
44
|
+
}, string, import('../../../../vue/dist/vue.esm-bundler.js').PublicProps, Readonly<import('../../../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
|
|
31
45
|
modelValue: {
|
|
32
46
|
type: StringConstructor;
|
|
33
47
|
default: string;
|
|
@@ -56,16 +70,24 @@ declare const _sfc_main: import('./vue/dist/vue.esm-bundler.js').DefineComponent
|
|
|
56
70
|
type: BooleanConstructor;
|
|
57
71
|
default: boolean;
|
|
58
72
|
};
|
|
59
|
-
}>> & {
|
|
73
|
+
}>> & Readonly<{
|
|
60
74
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
61
75
|
"onUpdate:pending"?: ((...args: any[]) => any) | undefined;
|
|
62
|
-
}
|
|
63
|
-
pending: boolean;
|
|
76
|
+
}>, {
|
|
64
77
|
modelValue: string;
|
|
78
|
+
pending: boolean;
|
|
65
79
|
options: Record<string, any>;
|
|
66
80
|
fixedWidth: number;
|
|
67
81
|
renderUpdates: boolean;
|
|
68
82
|
exportToSvg: boolean;
|
|
69
83
|
debug: boolean;
|
|
70
|
-
}, {}
|
|
71
|
-
|
|
84
|
+
}, {}, {}, {}, string, import('../../../../vue/dist/vue.esm-bundler.js').ComponentProvideOptions, true, {
|
|
85
|
+
renderer: HTMLDivElement;
|
|
86
|
+
}, HTMLDivElement>;
|
|
87
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
88
|
+
export default _default;
|
|
89
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
90
|
+
new (): {
|
|
91
|
+
$slots: S;
|
|
92
|
+
};
|
|
93
|
+
};
|