ablok-components 0.2.2 → 0.2.4
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.es.js +20128 -19447
- package/dist/ablok-components.umd.js +91 -66
- package/dist/components/atoms/base-button/base-button.vue.d.ts +7 -23
- package/dist/components/atoms/base-headline/base-headline.vue.d.ts +45 -24
- package/dist/components/atoms/base-image/base-image.vue.d.ts +5 -5
- package/dist/components/atoms/base-input/base-input.vue.d.ts +11 -38
- package/dist/components/atoms/base-paragraph/base-paragraph.vue.d.ts +37 -8
- package/dist/components/atoms/check-group/check-group.vue.d.ts +17 -23
- package/dist/components/atoms/input-checkbox/input-checkbox.vue.d.ts +7 -12
- package/dist/components/atoms/input-datetime/input-datetime.vue.d.ts +11 -34
- package/dist/components/atoms/input-file/input-file.vue.d.ts +19 -47
- package/dist/components/atoms/input-password/input-password.vue.d.ts +11 -33
- package/dist/components/atoms/input-textarea/input-textarea.vue.d.ts +11 -30
- package/dist/components/atoms/loading-spinner/loading-spinner.vue.d.ts +5 -20
- package/dist/components/atoms/radio-group/radio-group.vue.d.ts +13 -35
- package/dist/components/atoms/svg-icon/svg-icon.vue.d.ts +6 -6
- package/dist/components/molecules/accordion/accordion-item.vue.d.ts +9 -27
- package/dist/components/molecules/accordion/accordion.vue.d.ts +1 -16
- package/dist/components/molecules/auto-suggest/auto-suggest.vue.d.ts +10 -32
- package/dist/components/molecules/base-camera/base-camera.vue.d.ts +7 -15
- package/dist/components/molecules/color-palette/color-palette.vue.d.ts +16 -22
- package/dist/components/molecules/dom-renderer/dom-renderer.vue.d.ts +7 -29
- package/dist/components/molecules/file-upload/file-upload.vue.d.ts +45 -59
- package/dist/components/molecules/input-color/input-color.vue.d.ts +11 -13
- package/dist/components/molecules/input-datepicker/input-datepicker.vue.d.ts +11 -36
- package/dist/components/molecules/input-dropdown/input-dropdown.vue.d.ts +18 -24
- package/dist/components/molecules/link-sharing/link-sharing.vue.d.ts +13 -17
- package/dist/components/molecules/media-thumbnails/media-thumbnails.vue.d.ts +15 -22
- package/dist/components/molecules/popover-notifications/popover-notifications.vue.d.ts +14 -28
- package/dist/components/molecules/popover-tooltip/popover-tooltip.vue.d.ts +13 -206
- package/dist/components/molecules/progress-steps/progress-steps.vue.d.ts +16 -44
- package/dist/components/molecules/radio-buttons/radio-buttons.vue.d.ts +16 -23
- package/dist/components/molecules/rte-editor/rte-editor.vue.d.ts +7 -9
- package/dist/components/molecules/select-media/select-media.vue.d.ts +16 -23
- package/dist/components/molecules/upload-group/upload-group.vue.d.ts +18 -24
- package/dist/components/organisms/asset-uploader/asset-uploader.vue.d.ts +18 -24
- package/dist/components/templates/base-carousel/base-carousel.vue.d.ts +15 -46
- package/dist/components/templates/base-form/base-form.vue.d.ts +45 -28
- package/dist/components/templates/modal-dialog/modal-dialog.vue.d.ts +10 -29
- package/dist/components/templates/popover-dialog/popover-dialog.vue.d.ts +10 -21
- package/dist/components/templates/sortable-list/sortable-list.vue.d.ts +14 -40
- package/dist/components/templates/touch-wrapper/touch-wrapper.vue.d.ts +6 -33
- package/dist/index.d.ts +40 -40
- package/dist/style.css +1 -0
- package/package.json +1 -1
- package/dist/ablok-components.css +0 -1
- package/dist/components/_preview.vue.d.ts +0 -29
- package/dist/components/atoms/input-datetime/input-datetime.d.ts +0 -0
- package/dist/components/component-hub.d.ts +0 -9
- package/dist/i18n.d.ts +0 -168
- package/dist/locales/en.d.ts +0 -166
- package/dist/main.d.ts +0 -0
|
@@ -1,38 +1,36 @@
|
|
|
1
1
|
export declare function fileToDataUrl(file: File): Promise<any>;
|
|
2
|
-
declare const
|
|
2
|
+
declare const _sfc_main: import('./vue/dist/vue.esm-bundler.js').DefineComponent<{
|
|
3
3
|
modelValue: {
|
|
4
4
|
type: {
|
|
5
5
|
(arrayLength: number): {
|
|
6
|
-
type?: string;
|
|
7
|
-
src?: string;
|
|
6
|
+
type?: string | undefined;
|
|
7
|
+
src?: string | undefined;
|
|
8
8
|
}[];
|
|
9
9
|
(...items: {
|
|
10
|
-
type?: string;
|
|
11
|
-
src?: string;
|
|
10
|
+
type?: string | undefined;
|
|
11
|
+
src?: string | undefined;
|
|
12
12
|
}[]): {
|
|
13
|
-
type?: string;
|
|
14
|
-
src?: string;
|
|
13
|
+
type?: string | undefined;
|
|
14
|
+
src?: string | undefined;
|
|
15
15
|
}[];
|
|
16
16
|
new (arrayLength: number): {
|
|
17
|
-
type?: string;
|
|
18
|
-
src?: string;
|
|
17
|
+
type?: string | undefined;
|
|
18
|
+
src?: string | undefined;
|
|
19
19
|
}[];
|
|
20
20
|
new (...items: {
|
|
21
|
-
type?: string;
|
|
22
|
-
src?: string;
|
|
21
|
+
type?: string | undefined;
|
|
22
|
+
src?: string | undefined;
|
|
23
23
|
}[]): {
|
|
24
|
-
type?: string;
|
|
25
|
-
src?: string;
|
|
24
|
+
type?: string | undefined;
|
|
25
|
+
src?: string | undefined;
|
|
26
26
|
}[];
|
|
27
27
|
isArray(arg: any): arg is any[];
|
|
28
28
|
readonly prototype: any[];
|
|
29
29
|
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
30
|
-
from<
|
|
31
|
-
from<
|
|
32
|
-
from<
|
|
33
|
-
of<
|
|
34
|
-
fromAsync<T>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T | PromiseLike<T>> | ArrayLike<T | PromiseLike<T>>): Promise<T[]>;
|
|
35
|
-
fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>, index: number) => U, thisArg?: any): Promise<Awaited<U>[]>;
|
|
30
|
+
from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
|
|
31
|
+
from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
|
|
32
|
+
from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
|
|
33
|
+
of<T_4>(...items: T_4[]): T_4[];
|
|
36
34
|
readonly [Symbol.species]: ArrayConstructor;
|
|
37
35
|
};
|
|
38
36
|
default: never[];
|
|
@@ -113,43 +111,38 @@ declare const _default: __VLS_WithTemplateSlots<import('../../../../vue/dist/vue
|
|
|
113
111
|
type: BooleanConstructor;
|
|
114
112
|
default: boolean;
|
|
115
113
|
};
|
|
116
|
-
}
|
|
117
|
-
"update:modelValue": (...args: any[]) => void;
|
|
118
|
-
"update:src": (...args: any[]) => void;
|
|
119
|
-
}, string, import('../../../../vue/dist/vue.esm-bundler.js').PublicProps, Readonly<import('../../../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
|
|
114
|
+
}, {}, unknown, {}, {}, import('./vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, import('./vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, ("update:modelValue" | "update:src")[], "update:modelValue" | "update:src", import('./vue/dist/vue.esm-bundler.js').PublicProps, Readonly<import('./vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
|
|
120
115
|
modelValue: {
|
|
121
116
|
type: {
|
|
122
117
|
(arrayLength: number): {
|
|
123
|
-
type?: string;
|
|
124
|
-
src?: string;
|
|
118
|
+
type?: string | undefined;
|
|
119
|
+
src?: string | undefined;
|
|
125
120
|
}[];
|
|
126
121
|
(...items: {
|
|
127
|
-
type?: string;
|
|
128
|
-
src?: string;
|
|
122
|
+
type?: string | undefined;
|
|
123
|
+
src?: string | undefined;
|
|
129
124
|
}[]): {
|
|
130
|
-
type?: string;
|
|
131
|
-
src?: string;
|
|
125
|
+
type?: string | undefined;
|
|
126
|
+
src?: string | undefined;
|
|
132
127
|
}[];
|
|
133
128
|
new (arrayLength: number): {
|
|
134
|
-
type?: string;
|
|
135
|
-
src?: string;
|
|
129
|
+
type?: string | undefined;
|
|
130
|
+
src?: string | undefined;
|
|
136
131
|
}[];
|
|
137
132
|
new (...items: {
|
|
138
|
-
type?: string;
|
|
139
|
-
src?: string;
|
|
133
|
+
type?: string | undefined;
|
|
134
|
+
src?: string | undefined;
|
|
140
135
|
}[]): {
|
|
141
|
-
type?: string;
|
|
142
|
-
src?: string;
|
|
136
|
+
type?: string | undefined;
|
|
137
|
+
src?: string | undefined;
|
|
143
138
|
}[];
|
|
144
139
|
isArray(arg: any): arg is any[];
|
|
145
140
|
readonly prototype: any[];
|
|
146
141
|
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
147
|
-
from<
|
|
148
|
-
from<
|
|
149
|
-
from<
|
|
150
|
-
of<
|
|
151
|
-
fromAsync<T>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T | PromiseLike<T>> | ArrayLike<T | PromiseLike<T>>): Promise<T[]>;
|
|
152
|
-
fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>, index: number) => U, thisArg?: any): Promise<Awaited<U>[]>;
|
|
142
|
+
from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
|
|
143
|
+
from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
|
|
144
|
+
from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
|
|
145
|
+
of<T_4>(...items: T_4[]): T_4[];
|
|
153
146
|
readonly [Symbol.species]: ArrayConstructor;
|
|
154
147
|
};
|
|
155
148
|
default: never[];
|
|
@@ -230,23 +223,23 @@ declare const _default: __VLS_WithTemplateSlots<import('../../../../vue/dist/vue
|
|
|
230
223
|
type: BooleanConstructor;
|
|
231
224
|
default: boolean;
|
|
232
225
|
};
|
|
233
|
-
}>> &
|
|
226
|
+
}>> & {
|
|
234
227
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
235
228
|
"onUpdate:src"?: ((...args: any[]) => any) | undefined;
|
|
236
|
-
}
|
|
237
|
-
label: string;
|
|
238
|
-
pattern: string;
|
|
239
|
-
required: boolean;
|
|
229
|
+
}, {
|
|
240
230
|
variant: string;
|
|
241
|
-
|
|
231
|
+
disabled: boolean;
|
|
232
|
+
required: boolean;
|
|
242
233
|
modelValue: {
|
|
243
|
-
type?: string;
|
|
244
|
-
src?: string;
|
|
234
|
+
type?: string | undefined;
|
|
235
|
+
src?: string | undefined;
|
|
245
236
|
}[];
|
|
246
|
-
disabled: boolean;
|
|
247
237
|
name: string;
|
|
238
|
+
id: string;
|
|
239
|
+
label: string;
|
|
248
240
|
placeholder: string;
|
|
249
241
|
readOnly: boolean;
|
|
242
|
+
pattern: string;
|
|
250
243
|
multiple: boolean;
|
|
251
244
|
accept: string;
|
|
252
245
|
endpoint: string;
|
|
@@ -256,12 +249,5 @@ declare const _default: __VLS_WithTemplateSlots<import('../../../../vue/dist/vue
|
|
|
256
249
|
enablePreview: boolean;
|
|
257
250
|
previewWidth: number;
|
|
258
251
|
dropFiles: boolean;
|
|
259
|
-
}, {}
|
|
260
|
-
|
|
261
|
-
}>;
|
|
262
|
-
export default _default;
|
|
263
|
-
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
264
|
-
new (): {
|
|
265
|
-
$slots: S;
|
|
266
|
-
};
|
|
267
|
-
};
|
|
252
|
+
}, {}>;
|
|
253
|
+
export default _sfc_main;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
declare const
|
|
1
|
+
declare const _sfc_main: import('./vue/dist/vue.esm-bundler.js').DefineComponent<{
|
|
2
2
|
modelValue: {
|
|
3
3
|
type: (StringConstructor | BooleanConstructor | DateConstructor | NumberConstructor)[];
|
|
4
4
|
default: string;
|
|
@@ -46,9 +46,7 @@ declare const _default: import('../../../../vue/dist/vue.esm-bundler.js').Define
|
|
|
46
46
|
type: StringConstructor;
|
|
47
47
|
default: null;
|
|
48
48
|
};
|
|
49
|
-
}
|
|
50
|
-
"update:modelValue": (...args: any[]) => void;
|
|
51
|
-
}, string, import('../../../../vue/dist/vue.esm-bundler.js').PublicProps, Readonly<import('../../../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
|
|
49
|
+
}, {}, unknown, {}, {}, import('./vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, import('./vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", import('./vue/dist/vue.esm-bundler.js').PublicProps, Readonly<import('./vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
|
|
52
50
|
modelValue: {
|
|
53
51
|
type: (StringConstructor | BooleanConstructor | DateConstructor | NumberConstructor)[];
|
|
54
52
|
default: string;
|
|
@@ -96,19 +94,19 @@ declare const _default: import('../../../../vue/dist/vue.esm-bundler.js').Define
|
|
|
96
94
|
type: StringConstructor;
|
|
97
95
|
default: null;
|
|
98
96
|
};
|
|
99
|
-
}>> &
|
|
97
|
+
}>> & {
|
|
100
98
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
101
|
-
}
|
|
99
|
+
}, {
|
|
102
100
|
type: string;
|
|
103
|
-
label: string;
|
|
104
|
-
pattern: string;
|
|
105
|
-
required: boolean;
|
|
106
101
|
variant: string;
|
|
107
|
-
id: string;
|
|
108
|
-
modelValue: string | number | boolean | Date;
|
|
109
102
|
disabled: boolean;
|
|
103
|
+
required: boolean;
|
|
104
|
+
modelValue: string | number | boolean | Date;
|
|
110
105
|
name: string;
|
|
106
|
+
id: string;
|
|
107
|
+
label: string;
|
|
111
108
|
placeholder: string;
|
|
112
109
|
readOnly: boolean;
|
|
113
|
-
|
|
114
|
-
|
|
110
|
+
pattern: string;
|
|
111
|
+
}, {}>;
|
|
112
|
+
export default _sfc_main;
|
|
@@ -1,19 +1,4 @@
|
|
|
1
|
-
declare
|
|
2
|
-
attrs: Partial<{}>;
|
|
3
|
-
slots: {
|
|
4
|
-
label?(_: {}): any;
|
|
5
|
-
'input-prepend'?(_: {
|
|
6
|
-
slotScope: string;
|
|
7
|
-
}): any;
|
|
8
|
-
'input-append'?(_: {
|
|
9
|
-
slotScope: string;
|
|
10
|
-
}): any;
|
|
11
|
-
};
|
|
12
|
-
refs: {};
|
|
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<{
|
|
1
|
+
declare const _sfc_main: import('./vue/dist/vue.esm-bundler.js').DefineComponent<{
|
|
17
2
|
modelValue: {
|
|
18
3
|
type: null;
|
|
19
4
|
default: string;
|
|
@@ -78,11 +63,7 @@ declare const __VLS_component: import('../../../../vue/dist/vue.esm-bundler.js')
|
|
|
78
63
|
type: StringConstructor;
|
|
79
64
|
default: string;
|
|
80
65
|
};
|
|
81
|
-
}
|
|
82
|
-
"update:modelValue": (...args: any[]) => void;
|
|
83
|
-
"update:from": (...args: any[]) => void;
|
|
84
|
-
"update:to": (...args: any[]) => void;
|
|
85
|
-
}, string, import('../../../../vue/dist/vue.esm-bundler.js').PublicProps, Readonly<import('../../../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
|
|
66
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:modelValue" | "update:from" | "update:to")[], "update:modelValue" | "update:from" | "update:to", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
86
67
|
modelValue: {
|
|
87
68
|
type: null;
|
|
88
69
|
default: string;
|
|
@@ -147,32 +128,26 @@ declare const __VLS_component: import('../../../../vue/dist/vue.esm-bundler.js')
|
|
|
147
128
|
type: StringConstructor;
|
|
148
129
|
default: string;
|
|
149
130
|
};
|
|
150
|
-
}>> &
|
|
131
|
+
}>> & {
|
|
151
132
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
152
133
|
"onUpdate:from"?: ((...args: any[]) => any) | undefined;
|
|
153
134
|
"onUpdate:to"?: ((...args: any[]) => any) | undefined;
|
|
154
|
-
}
|
|
135
|
+
}, {
|
|
155
136
|
type: string;
|
|
156
|
-
|
|
157
|
-
from: string | number | boolean | Date;
|
|
158
|
-
to: string | number | boolean | Date;
|
|
137
|
+
disabled: boolean;
|
|
159
138
|
required: boolean;
|
|
160
|
-
id: string;
|
|
161
139
|
modelValue: any;
|
|
162
|
-
disabled: boolean;
|
|
163
140
|
name: string;
|
|
141
|
+
id: string;
|
|
142
|
+
label: string;
|
|
164
143
|
readOnly: boolean;
|
|
144
|
+
from: string | number | boolean | Date;
|
|
145
|
+
to: string | number | boolean | Date;
|
|
165
146
|
range: boolean;
|
|
166
147
|
textRange: boolean;
|
|
167
148
|
inline: boolean;
|
|
168
149
|
textInput: boolean;
|
|
169
150
|
picker: boolean;
|
|
170
151
|
locale: string;
|
|
171
|
-
}, {}
|
|
172
|
-
|
|
173
|
-
export default _default;
|
|
174
|
-
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
175
|
-
new (): {
|
|
176
|
-
$slots: S;
|
|
177
|
-
};
|
|
178
|
-
};
|
|
152
|
+
}, {}>;
|
|
153
|
+
export default _sfc_main;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
declare const
|
|
1
|
+
declare const _sfc_main: import('./vue/dist/vue.esm-bundler.js').DefineComponent<{
|
|
2
2
|
id: {
|
|
3
3
|
type: StringConstructor;
|
|
4
4
|
};
|
|
@@ -37,12 +37,10 @@ declare const _default: import('../../../../vue/dist/vue.esm-bundler.js').Define
|
|
|
37
37
|
isArray(arg: any): arg is any[];
|
|
38
38
|
readonly prototype: any[];
|
|
39
39
|
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
40
|
-
from<
|
|
41
|
-
from<
|
|
42
|
-
from<
|
|
43
|
-
of<
|
|
44
|
-
fromAsync<T>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T | PromiseLike<T>> | ArrayLike<T | PromiseLike<T>>): Promise<T[]>;
|
|
45
|
-
fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>, index: number) => U, thisArg?: any): Promise<Awaited<U>[]>;
|
|
40
|
+
from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
|
|
41
|
+
from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
|
|
42
|
+
from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
|
|
43
|
+
of<T_4>(...items: T_4[]): T_4[];
|
|
46
44
|
readonly [Symbol.species]: ArrayConstructor;
|
|
47
45
|
};
|
|
48
46
|
required: true;
|
|
@@ -82,9 +80,7 @@ declare const _default: import('../../../../vue/dist/vue.esm-bundler.js').Define
|
|
|
82
80
|
type: BooleanConstructor;
|
|
83
81
|
default: boolean;
|
|
84
82
|
};
|
|
85
|
-
}
|
|
86
|
-
"update:modelValue": (...args: any[]) => void;
|
|
87
|
-
}, string, import('../../../../vue/dist/vue.esm-bundler.js').PublicProps, Readonly<import('../../../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
|
|
83
|
+
}, {}, unknown, {}, {}, import('./vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, import('./vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", import('./vue/dist/vue.esm-bundler.js').PublicProps, Readonly<import('./vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
|
|
88
84
|
id: {
|
|
89
85
|
type: StringConstructor;
|
|
90
86
|
};
|
|
@@ -123,12 +119,10 @@ declare const _default: import('../../../../vue/dist/vue.esm-bundler.js').Define
|
|
|
123
119
|
isArray(arg: any): arg is any[];
|
|
124
120
|
readonly prototype: any[];
|
|
125
121
|
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
126
|
-
from<
|
|
127
|
-
from<
|
|
128
|
-
from<
|
|
129
|
-
of<
|
|
130
|
-
fromAsync<T>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T | PromiseLike<T>> | ArrayLike<T | PromiseLike<T>>): Promise<T[]>;
|
|
131
|
-
fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>, index: number) => U, thisArg?: any): Promise<Awaited<U>[]>;
|
|
122
|
+
from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
|
|
123
|
+
from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
|
|
124
|
+
from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
|
|
125
|
+
of<T_4>(...items: T_4[]): T_4[];
|
|
132
126
|
readonly [Symbol.species]: ArrayConstructor;
|
|
133
127
|
};
|
|
134
128
|
required: true;
|
|
@@ -168,21 +162,21 @@ declare const _default: import('../../../../vue/dist/vue.esm-bundler.js').Define
|
|
|
168
162
|
type: BooleanConstructor;
|
|
169
163
|
default: boolean;
|
|
170
164
|
};
|
|
171
|
-
}>> &
|
|
165
|
+
}>> & {
|
|
172
166
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
173
|
-
}
|
|
174
|
-
label: string;
|
|
175
|
-
icon: string;
|
|
176
|
-
color: string;
|
|
177
|
-
required: boolean;
|
|
167
|
+
}, {
|
|
178
168
|
variant: string;
|
|
169
|
+
color: string;
|
|
170
|
+
icon: string;
|
|
179
171
|
disabled: boolean;
|
|
180
172
|
outlined: boolean;
|
|
173
|
+
required: boolean;
|
|
181
174
|
name: string;
|
|
175
|
+
label: string;
|
|
182
176
|
placeholder: string;
|
|
183
177
|
readOnly: boolean;
|
|
184
178
|
multiple: boolean;
|
|
185
179
|
showSelectionCount: boolean;
|
|
186
180
|
exactMatch: boolean;
|
|
187
|
-
}, {}
|
|
188
|
-
export default
|
|
181
|
+
}, {}>;
|
|
182
|
+
export default _sfc_main;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export declare const stripHtml: (s: string) => string;
|
|
2
|
-
declare const
|
|
2
|
+
declare const _sfc_main: import('./vue/dist/vue.esm-bundler.js').DefineComponent<{
|
|
3
3
|
url: {
|
|
4
4
|
type: StringConstructor;
|
|
5
5
|
default: string;
|
|
@@ -16,12 +16,10 @@ declare const _default: import('../../../../vue/dist/vue.esm-bundler.js').Define
|
|
|
16
16
|
isArray(arg: any): arg is any[];
|
|
17
17
|
readonly prototype: any[];
|
|
18
18
|
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
19
|
-
from<
|
|
20
|
-
from<
|
|
21
|
-
from<
|
|
22
|
-
of<
|
|
23
|
-
fromAsync<T>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T | PromiseLike<T>> | ArrayLike<T | PromiseLike<T>>): Promise<T[]>;
|
|
24
|
-
fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>, index: number) => U, thisArg?: any): Promise<Awaited<U>[]>;
|
|
19
|
+
from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
|
|
20
|
+
from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
|
|
21
|
+
from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
|
|
22
|
+
of<T_4>(...items: T_4[]): T_4[];
|
|
25
23
|
readonly [Symbol.species]: ArrayConstructor;
|
|
26
24
|
};
|
|
27
25
|
text: {
|
|
@@ -44,7 +42,7 @@ declare const _default: import('../../../../vue/dist/vue.esm-bundler.js').Define
|
|
|
44
42
|
bluesky: boolean;
|
|
45
43
|
};
|
|
46
44
|
};
|
|
47
|
-
}
|
|
45
|
+
}, {}, unknown, {}, {}, 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<{
|
|
48
46
|
url: {
|
|
49
47
|
type: StringConstructor;
|
|
50
48
|
default: string;
|
|
@@ -61,12 +59,10 @@ declare const _default: import('../../../../vue/dist/vue.esm-bundler.js').Define
|
|
|
61
59
|
isArray(arg: any): arg is any[];
|
|
62
60
|
readonly prototype: any[];
|
|
63
61
|
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
64
|
-
from<
|
|
65
|
-
from<
|
|
66
|
-
from<
|
|
67
|
-
of<
|
|
68
|
-
fromAsync<T>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T | PromiseLike<T>> | ArrayLike<T | PromiseLike<T>>): Promise<T[]>;
|
|
69
|
-
fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>, index: number) => U, thisArg?: any): Promise<Awaited<U>[]>;
|
|
62
|
+
from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
|
|
63
|
+
from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
|
|
64
|
+
from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
|
|
65
|
+
of<T_4>(...items: T_4[]): T_4[];
|
|
70
66
|
readonly [Symbol.species]: ArrayConstructor;
|
|
71
67
|
};
|
|
72
68
|
text: {
|
|
@@ -89,11 +85,11 @@ declare const _default: import('../../../../vue/dist/vue.esm-bundler.js').Define
|
|
|
89
85
|
bluesky: boolean;
|
|
90
86
|
};
|
|
91
87
|
};
|
|
92
|
-
}
|
|
88
|
+
}>>, {
|
|
93
89
|
text: string;
|
|
94
90
|
url: string;
|
|
95
91
|
subject: string;
|
|
96
92
|
media: string;
|
|
97
93
|
services: Record<string, any>;
|
|
98
|
-
}, {}
|
|
99
|
-
export default
|
|
94
|
+
}, {}>;
|
|
95
|
+
export default _sfc_main;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
declare const
|
|
1
|
+
declare const _sfc_main: import('./vue/dist/vue.esm-bundler.js').DefineComponent<{
|
|
2
2
|
modelValue: {
|
|
3
3
|
default: null;
|
|
4
4
|
};
|
|
@@ -19,20 +19,15 @@ declare const _default: import('../../../../vue/dist/vue.esm-bundler.js').Define
|
|
|
19
19
|
isArray(arg: any): arg is any[];
|
|
20
20
|
readonly prototype: any[];
|
|
21
21
|
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
22
|
-
from<
|
|
23
|
-
from<
|
|
24
|
-
from<
|
|
25
|
-
of<
|
|
26
|
-
fromAsync<T>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T | PromiseLike<T>> | ArrayLike<T | PromiseLike<T>>): Promise<T[]>;
|
|
27
|
-
fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>, index: number) => U, thisArg?: any): Promise<Awaited<U>[]>;
|
|
22
|
+
from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
|
|
23
|
+
from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
|
|
24
|
+
from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
|
|
25
|
+
of<T_4>(...items: T_4[]): T_4[];
|
|
28
26
|
readonly [Symbol.species]: ArrayConstructor;
|
|
29
27
|
};
|
|
30
28
|
default: never[];
|
|
31
29
|
};
|
|
32
|
-
}
|
|
33
|
-
select: (...args: any[]) => void;
|
|
34
|
-
"update:modelValue": (...args: any[]) => void;
|
|
35
|
-
}, string, import('../../../../vue/dist/vue.esm-bundler.js').PublicProps, Readonly<import('../../../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
|
|
30
|
+
}, {}, unknown, {}, {}, import('./vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, import('./vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, ("update:modelValue" | "select")[], "update:modelValue" | "select", import('./vue/dist/vue.esm-bundler.js').PublicProps, Readonly<import('./vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
|
|
36
31
|
modelValue: {
|
|
37
32
|
default: null;
|
|
38
33
|
};
|
|
@@ -53,23 +48,21 @@ declare const _default: import('../../../../vue/dist/vue.esm-bundler.js').Define
|
|
|
53
48
|
isArray(arg: any): arg is any[];
|
|
54
49
|
readonly prototype: any[];
|
|
55
50
|
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
56
|
-
from<
|
|
57
|
-
from<
|
|
58
|
-
from<
|
|
59
|
-
of<
|
|
60
|
-
fromAsync<T>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T | PromiseLike<T>> | ArrayLike<T | PromiseLike<T>>): Promise<T[]>;
|
|
61
|
-
fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>, index: number) => U, thisArg?: any): Promise<Awaited<U>[]>;
|
|
51
|
+
from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
|
|
52
|
+
from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
|
|
53
|
+
from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
|
|
54
|
+
of<T_4>(...items: T_4[]): T_4[];
|
|
62
55
|
readonly [Symbol.species]: ArrayConstructor;
|
|
63
56
|
};
|
|
64
57
|
default: never[];
|
|
65
58
|
};
|
|
66
|
-
}>> &
|
|
67
|
-
onSelect?: ((...args: any[]) => any) | undefined;
|
|
59
|
+
}>> & {
|
|
68
60
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
69
|
-
|
|
61
|
+
onSelect?: ((...args: any[]) => any) | undefined;
|
|
62
|
+
}, {
|
|
70
63
|
modelValue: null;
|
|
71
64
|
messages: Record<string, any>;
|
|
72
65
|
config: Record<string, any>;
|
|
73
66
|
assets: any[];
|
|
74
|
-
}, {}
|
|
75
|
-
export default
|
|
67
|
+
}, {}>;
|
|
68
|
+
export default _sfc_main;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { PropType } from '
|
|
2
|
-
declare const
|
|
1
|
+
import { type PropType } from './vue/dist/vue.esm-bundler.js';
|
|
2
|
+
declare const _sfc_main: import('./vue/dist/vue.esm-bundler.js').DefineComponent<{
|
|
3
3
|
modelValue: {
|
|
4
4
|
type: BooleanConstructor;
|
|
5
5
|
default: boolean;
|
|
@@ -9,10 +9,10 @@ declare const _default: __VLS_WithTemplateSlots<import('../../../../vue/dist/vue
|
|
|
9
9
|
default: () => string;
|
|
10
10
|
};
|
|
11
11
|
items: {
|
|
12
|
-
type: PropType<
|
|
13
|
-
id: string;
|
|
12
|
+
type: PropType<{
|
|
14
13
|
[key: string]: any;
|
|
15
|
-
|
|
14
|
+
id: string;
|
|
15
|
+
}[]>;
|
|
16
16
|
default: () => never[];
|
|
17
17
|
};
|
|
18
18
|
debounceItem: {
|
|
@@ -27,9 +27,7 @@ declare const _default: __VLS_WithTemplateSlots<import('../../../../vue/dist/vue
|
|
|
27
27
|
type: BooleanConstructor;
|
|
28
28
|
default: boolean;
|
|
29
29
|
};
|
|
30
|
-
}
|
|
31
|
-
addItem: (item: any) => void;
|
|
32
|
-
}, {}, {}, {}, 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<{
|
|
30
|
+
}, {}, unknown, {}, {}, 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<{
|
|
33
31
|
modelValue: {
|
|
34
32
|
type: BooleanConstructor;
|
|
35
33
|
default: boolean;
|
|
@@ -39,10 +37,10 @@ declare const _default: __VLS_WithTemplateSlots<import('../../../../vue/dist/vue
|
|
|
39
37
|
default: () => string;
|
|
40
38
|
};
|
|
41
39
|
items: {
|
|
42
|
-
type: PropType<
|
|
43
|
-
id: string;
|
|
40
|
+
type: PropType<{
|
|
44
41
|
[key: string]: any;
|
|
45
|
-
|
|
42
|
+
id: string;
|
|
43
|
+
}[]>;
|
|
46
44
|
default: () => never[];
|
|
47
45
|
};
|
|
48
46
|
debounceItem: {
|
|
@@ -57,27 +55,15 @@ declare const _default: __VLS_WithTemplateSlots<import('../../../../vue/dist/vue
|
|
|
57
55
|
type: BooleanConstructor;
|
|
58
56
|
default: boolean;
|
|
59
57
|
};
|
|
60
|
-
}
|
|
61
|
-
id: string;
|
|
58
|
+
}>>, {
|
|
62
59
|
modelValue: boolean;
|
|
60
|
+
id: string;
|
|
63
61
|
items: {
|
|
64
62
|
[key: string]: any;
|
|
65
63
|
id: string;
|
|
66
64
|
}[];
|
|
67
|
-
closeTimeout: number;
|
|
68
65
|
debounceItem: number;
|
|
66
|
+
closeTimeout: number;
|
|
69
67
|
collapsible: boolean;
|
|
70
|
-
}, {}
|
|
71
|
-
|
|
72
|
-
item: {
|
|
73
|
-
[key: string]: any;
|
|
74
|
-
id: string;
|
|
75
|
-
};
|
|
76
|
-
}): any;
|
|
77
|
-
}>;
|
|
78
|
-
export default _default;
|
|
79
|
-
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
80
|
-
new (): {
|
|
81
|
-
$slots: S;
|
|
82
|
-
};
|
|
83
|
-
};
|
|
68
|
+
}, {}>;
|
|
69
|
+
export default _sfc_main;
|