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
|
@@ -7,7 +7,7 @@ export declare enum MediaType {
|
|
|
7
7
|
Render = "Render",
|
|
8
8
|
SecureText = "SecureText"
|
|
9
9
|
}
|
|
10
|
-
declare const
|
|
10
|
+
declare const _sfc_main: import('./vue/dist/vue.esm-bundler.js').DefineComponent<{
|
|
11
11
|
modelValue: {
|
|
12
12
|
type: {
|
|
13
13
|
(arrayLength: number): any[];
|
|
@@ -17,12 +17,10 @@ declare const _default: import('../../../../vue/dist/vue.esm-bundler.js').Define
|
|
|
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<
|
|
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>[]>;
|
|
20
|
+
from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
|
|
21
|
+
from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
|
|
22
|
+
from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
|
|
23
|
+
of<T_4>(...items: T_4[]): T_4[];
|
|
26
24
|
readonly [Symbol.species]: ArrayConstructor;
|
|
27
25
|
};
|
|
28
26
|
default: () => never[];
|
|
@@ -84,9 +82,7 @@ declare const _default: import('../../../../vue/dist/vue.esm-bundler.js').Define
|
|
|
84
82
|
type: NumberConstructor;
|
|
85
83
|
default: number;
|
|
86
84
|
};
|
|
87
|
-
}
|
|
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<{
|
|
85
|
+
}, {}, 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<{
|
|
90
86
|
modelValue: {
|
|
91
87
|
type: {
|
|
92
88
|
(arrayLength: number): any[];
|
|
@@ -96,12 +92,10 @@ declare const _default: import('../../../../vue/dist/vue.esm-bundler.js').Define
|
|
|
96
92
|
isArray(arg: any): arg is any[];
|
|
97
93
|
readonly prototype: any[];
|
|
98
94
|
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
99
|
-
from<
|
|
100
|
-
from<
|
|
101
|
-
from<
|
|
102
|
-
of<
|
|
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>[]>;
|
|
95
|
+
from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
|
|
96
|
+
from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
|
|
97
|
+
from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
|
|
98
|
+
of<T_4>(...items: T_4[]): T_4[];
|
|
105
99
|
readonly [Symbol.species]: ArrayConstructor;
|
|
106
100
|
};
|
|
107
101
|
default: () => never[];
|
|
@@ -163,22 +157,22 @@ declare const _default: import('../../../../vue/dist/vue.esm-bundler.js').Define
|
|
|
163
157
|
type: NumberConstructor;
|
|
164
158
|
default: number;
|
|
165
159
|
};
|
|
166
|
-
}>> &
|
|
160
|
+
}>> & {
|
|
167
161
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
168
|
-
}
|
|
162
|
+
}, {
|
|
169
163
|
type: string;
|
|
170
|
-
label: string;
|
|
171
|
-
required: boolean;
|
|
172
164
|
variant: string;
|
|
173
|
-
id: string;
|
|
174
|
-
modelValue: any[];
|
|
175
165
|
disabled: boolean;
|
|
166
|
+
required: boolean;
|
|
167
|
+
modelValue: any[];
|
|
176
168
|
name: string;
|
|
169
|
+
id: string;
|
|
170
|
+
label: string;
|
|
177
171
|
accept: string;
|
|
178
172
|
endpoint: string;
|
|
179
173
|
authToken: string;
|
|
180
174
|
baseResponsePath: string;
|
|
181
175
|
previewWidth: number;
|
|
182
176
|
mediaTypeMap: Record<string, any>;
|
|
183
|
-
}, {}
|
|
184
|
-
export default
|
|
177
|
+
}, {}>;
|
|
178
|
+
export default _sfc_main;
|
|
@@ -1,19 +1,4 @@
|
|
|
1
|
-
declare
|
|
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<{
|
|
1
|
+
declare const _sfc_main: import('./vue/dist/vue.esm-bundler.js').DefineComponent<{
|
|
17
2
|
modelValue: {
|
|
18
3
|
type: NumberConstructor;
|
|
19
4
|
default: number;
|
|
@@ -35,12 +20,10 @@ declare const __VLS_component: import('../../../../vue/dist/vue.esm-bundler.js')
|
|
|
35
20
|
isArray(arg: any): arg is any[];
|
|
36
21
|
readonly prototype: any[];
|
|
37
22
|
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
38
|
-
from<
|
|
39
|
-
from<
|
|
40
|
-
from<
|
|
41
|
-
of<
|
|
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>[]>;
|
|
23
|
+
from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
|
|
24
|
+
from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
|
|
25
|
+
from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
|
|
26
|
+
of<T_4>(...items: T_4[]): T_4[];
|
|
44
27
|
readonly [Symbol.species]: ArrayConstructor;
|
|
45
28
|
};
|
|
46
29
|
default: never[];
|
|
@@ -49,10 +32,7 @@ declare const __VLS_component: import('../../../../vue/dist/vue.esm-bundler.js')
|
|
|
49
32
|
type: BooleanConstructor;
|
|
50
33
|
default: boolean;
|
|
51
34
|
};
|
|
52
|
-
}
|
|
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<{
|
|
35
|
+
}, {}, 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<{
|
|
56
36
|
modelValue: {
|
|
57
37
|
type: NumberConstructor;
|
|
58
38
|
default: number;
|
|
@@ -74,12 +54,10 @@ declare const __VLS_component: import('../../../../vue/dist/vue.esm-bundler.js')
|
|
|
74
54
|
isArray(arg: any): arg is any[];
|
|
75
55
|
readonly prototype: any[];
|
|
76
56
|
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
77
|
-
from<
|
|
78
|
-
from<
|
|
79
|
-
from<
|
|
80
|
-
of<
|
|
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>[]>;
|
|
57
|
+
from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
|
|
58
|
+
from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
|
|
59
|
+
from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
|
|
60
|
+
of<T_4>(...items: T_4[]): T_4[];
|
|
83
61
|
readonly [Symbol.species]: ArrayConstructor;
|
|
84
62
|
};
|
|
85
63
|
default: never[];
|
|
@@ -88,23 +66,14 @@ declare const __VLS_component: import('../../../../vue/dist/vue.esm-bundler.js')
|
|
|
88
66
|
type: BooleanConstructor;
|
|
89
67
|
default: boolean;
|
|
90
68
|
};
|
|
91
|
-
}>> &
|
|
92
|
-
onSelect?: ((...args: any[]) => any) | undefined;
|
|
69
|
+
}>> & {
|
|
93
70
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
94
|
-
|
|
71
|
+
onSelect?: ((...args: any[]) => any) | undefined;
|
|
72
|
+
}, {
|
|
95
73
|
modelValue: number;
|
|
96
74
|
messages: Record<string, any>;
|
|
97
75
|
config: Record<string, any>;
|
|
98
76
|
items: any[];
|
|
99
77
|
navigation: boolean;
|
|
100
|
-
}, {}
|
|
101
|
-
|
|
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
|
-
};
|
|
78
|
+
}, {}>;
|
|
79
|
+
export default _sfc_main;
|
|
@@ -1,28 +1,45 @@
|
|
|
1
|
-
type
|
|
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
|
-
|
|
1
|
+
import type { PropType as __PropType } from './vue/dist/vue.esm-bundler.js';
|
|
2
|
+
declare const _sfc_main: import('./vue/dist/vue.esm-bundler.js').DefineComponent<{
|
|
3
|
+
id: {
|
|
4
|
+
type: __PropType<string | undefined>;
|
|
5
|
+
required: false;
|
|
6
|
+
};
|
|
7
|
+
name: {
|
|
8
|
+
type: __PropType<string | undefined>;
|
|
9
|
+
required: false;
|
|
10
|
+
};
|
|
11
|
+
variant: {
|
|
12
|
+
type: __PropType<string | undefined>;
|
|
13
|
+
required: false;
|
|
14
|
+
};
|
|
15
|
+
disabled: {
|
|
16
|
+
type: __PropType<boolean | undefined>;
|
|
17
|
+
required: false;
|
|
18
|
+
};
|
|
19
|
+
pending: {
|
|
20
|
+
type: __PropType<boolean | undefined>;
|
|
21
|
+
required: false;
|
|
22
|
+
};
|
|
23
|
+
}, {}, 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<{
|
|
24
|
+
id: {
|
|
25
|
+
type: __PropType<string | undefined>;
|
|
26
|
+
required: false;
|
|
27
|
+
};
|
|
28
|
+
name: {
|
|
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,4 +1,4 @@
|
|
|
1
|
-
import { PropType } from '
|
|
1
|
+
import type { 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 _sfc_main: import('./vue/dist/vue.esm-bundler.js').DefineComponent<{
|
|
10
10
|
modelValue: {
|
|
11
11
|
type: BooleanConstructor;
|
|
12
12
|
default: boolean;
|
|
@@ -35,16 +35,7 @@ declare const _default: __VLS_WithTemplateSlots<import('../../../../vue/dist/vue
|
|
|
35
35
|
type: StringConstructor;
|
|
36
36
|
default: string;
|
|
37
37
|
};
|
|
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<{
|
|
38
|
+
}, {}, unknown, {}, {}, import('./vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, import('./vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, ("update:modelValue" | "cancel" | "confirm")[], "update:modelValue" | "cancel" | "confirm", import('./vue/dist/vue.esm-bundler.js').PublicProps, Readonly<import('./vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
|
|
48
39
|
modelValue: {
|
|
49
40
|
type: BooleanConstructor;
|
|
50
41
|
default: boolean;
|
|
@@ -73,27 +64,17 @@ declare const _default: __VLS_WithTemplateSlots<import('../../../../vue/dist/vue
|
|
|
73
64
|
type: StringConstructor;
|
|
74
65
|
default: string;
|
|
75
66
|
};
|
|
76
|
-
}>> &
|
|
77
|
-
onCancel?: ((...args: any[]) => any) | undefined;
|
|
67
|
+
}>> & {
|
|
78
68
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
69
|
+
onCancel?: ((...args: any[]) => any) | undefined;
|
|
79
70
|
onConfirm?: ((...args: any[]) => any) | undefined;
|
|
80
|
-
}
|
|
71
|
+
}, {
|
|
81
72
|
size: Breakpoints;
|
|
82
|
-
footer: boolean;
|
|
83
|
-
title: string;
|
|
84
73
|
modelValue: boolean;
|
|
74
|
+
title: string;
|
|
75
|
+
footer: boolean;
|
|
85
76
|
classes: string;
|
|
86
77
|
modal: boolean;
|
|
87
78
|
dismiss: boolean;
|
|
88
|
-
}, {}
|
|
89
|
-
|
|
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
|
-
};
|
|
79
|
+
}, {}>;
|
|
80
|
+
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: BooleanConstructor;
|
|
4
4
|
default: boolean;
|
|
@@ -39,9 +39,7 @@ declare const _default: __VLS_WithTemplateSlots<import('../../../../vue/dist/vue
|
|
|
39
39
|
type: NumberConstructor;
|
|
40
40
|
default: number;
|
|
41
41
|
};
|
|
42
|
-
}
|
|
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<{
|
|
42
|
+
}, {}, 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<{
|
|
45
43
|
modelValue: {
|
|
46
44
|
type: BooleanConstructor;
|
|
47
45
|
default: boolean;
|
|
@@ -82,27 +80,18 @@ declare const _default: __VLS_WithTemplateSlots<import('../../../../vue/dist/vue
|
|
|
82
80
|
type: NumberConstructor;
|
|
83
81
|
default: number;
|
|
84
82
|
};
|
|
85
|
-
}>> &
|
|
83
|
+
}>> & {
|
|
86
84
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
87
|
-
}
|
|
85
|
+
}, {
|
|
88
86
|
type: string;
|
|
87
|
+
modelValue: boolean;
|
|
88
|
+
id: string;
|
|
89
|
+
title: string;
|
|
89
90
|
footer: boolean;
|
|
90
91
|
header: boolean;
|
|
91
|
-
|
|
92
|
-
id: string;
|
|
93
|
-
modelValue: boolean;
|
|
92
|
+
closeTimeout: number;
|
|
94
93
|
classes: string;
|
|
95
94
|
hover: boolean;
|
|
96
95
|
hoverDelay: number;
|
|
97
|
-
|
|
98
|
-
|
|
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
|
-
};
|
|
96
|
+
}, {}>;
|
|
97
|
+
export default _sfc_main;
|
|
@@ -1,17 +1,4 @@
|
|
|
1
|
-
declare
|
|
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<{
|
|
1
|
+
declare const _sfc_main: import('./vue/dist/vue.esm-bundler.js').DefineComponent<{
|
|
15
2
|
modelValue: {
|
|
16
3
|
type: {
|
|
17
4
|
(arrayLength: number): any[];
|
|
@@ -21,12 +8,10 @@ declare const __VLS_component: import('../../../../vue/dist/vue.esm-bundler.js')
|
|
|
21
8
|
isArray(arg: any): arg is any[];
|
|
22
9
|
readonly prototype: any[];
|
|
23
10
|
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
24
|
-
from<
|
|
25
|
-
from<
|
|
26
|
-
from<
|
|
27
|
-
of<
|
|
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>[]>;
|
|
11
|
+
from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
|
|
12
|
+
from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
|
|
13
|
+
from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
|
|
14
|
+
of<T_4>(...items: T_4[]): T_4[];
|
|
30
15
|
readonly [Symbol.species]: ArrayConstructor;
|
|
31
16
|
};
|
|
32
17
|
default: () => never[];
|
|
@@ -51,10 +36,7 @@ declare const __VLS_component: import('../../../../vue/dist/vue.esm-bundler.js')
|
|
|
51
36
|
type: BooleanConstructor;
|
|
52
37
|
default: boolean;
|
|
53
38
|
};
|
|
54
|
-
}
|
|
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<{
|
|
39
|
+
}, {}, unknown, {}, {}, import('./vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, import('./vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, ("update:modelValue" | "update:isDragging")[], "update:modelValue" | "update:isDragging", import('./vue/dist/vue.esm-bundler.js').PublicProps, Readonly<import('./vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
|
|
58
40
|
modelValue: {
|
|
59
41
|
type: {
|
|
60
42
|
(arrayLength: number): any[];
|
|
@@ -64,12 +46,10 @@ declare const __VLS_component: import('../../../../vue/dist/vue.esm-bundler.js')
|
|
|
64
46
|
isArray(arg: any): arg is any[];
|
|
65
47
|
readonly prototype: any[];
|
|
66
48
|
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
67
|
-
from<
|
|
68
|
-
from<
|
|
69
|
-
from<
|
|
70
|
-
of<
|
|
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>[]>;
|
|
49
|
+
from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
|
|
50
|
+
from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
|
|
51
|
+
from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
|
|
52
|
+
of<T_4>(...items: T_4[]): T_4[];
|
|
73
53
|
readonly [Symbol.species]: ArrayConstructor;
|
|
74
54
|
};
|
|
75
55
|
default: () => never[];
|
|
@@ -94,21 +74,15 @@ declare const __VLS_component: import('../../../../vue/dist/vue.esm-bundler.js')
|
|
|
94
74
|
type: BooleanConstructor;
|
|
95
75
|
default: boolean;
|
|
96
76
|
};
|
|
97
|
-
}>> &
|
|
77
|
+
}>> & {
|
|
98
78
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
99
79
|
"onUpdate:isDragging"?: ((...args: any[]) => any) | undefined;
|
|
100
|
-
}
|
|
80
|
+
}, {
|
|
101
81
|
modelValue: any[];
|
|
102
82
|
messages: Record<string, any>;
|
|
103
83
|
vertical: boolean;
|
|
104
84
|
config: Record<string, any>;
|
|
105
85
|
showDragHandle: boolean;
|
|
106
86
|
showPreview: boolean;
|
|
107
|
-
}, {}
|
|
108
|
-
|
|
109
|
-
export default _default;
|
|
110
|
-
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
111
|
-
new (): {
|
|
112
|
-
$slots: S;
|
|
113
|
-
};
|
|
114
|
-
};
|
|
87
|
+
}, {}>;
|
|
88
|
+
export default _sfc_main;
|
|
@@ -1,43 +1,16 @@
|
|
|
1
|
-
declare
|
|
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<{
|
|
1
|
+
declare const _sfc_main: import('./vue/dist/vue.esm-bundler.js').DefineComponent<{
|
|
19
2
|
modelValue: {
|
|
20
3
|
type: NumberConstructor;
|
|
21
4
|
default: number;
|
|
22
5
|
};
|
|
23
|
-
}
|
|
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<{
|
|
6
|
+
}, {}, 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<{
|
|
26
7
|
modelValue: {
|
|
27
8
|
type: NumberConstructor;
|
|
28
9
|
default: number;
|
|
29
10
|
};
|
|
30
|
-
}>> &
|
|
11
|
+
}>> & {
|
|
31
12
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
32
|
-
}
|
|
13
|
+
}, {
|
|
33
14
|
modelValue: number;
|
|
34
|
-
}, {}
|
|
35
|
-
|
|
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
|
-
};
|
|
15
|
+
}, {}>;
|
|
16
|
+
export default _sfc_main;
|
package/dist/index.d.ts
CHANGED
|
@@ -1,40 +1,40 @@
|
|
|
1
|
-
export { default as SvgIcon } from
|
|
2
|
-
export { default as LoadingSpinner } from
|
|
3
|
-
export { default as BaseImage } from
|
|
4
|
-
export { default as BaseHeadline } from
|
|
5
|
-
export { default as BaseParagraph } from
|
|
6
|
-
export { default as AccordionItem } from
|
|
7
|
-
export { default as Accordion } from
|
|
8
|
-
export { default as BaseButton } from
|
|
9
|
-
export { default as BaseInput } from
|
|
10
|
-
export { default as InputTextarea } from
|
|
11
|
-
export { default as InputCheckbox } from
|
|
12
|
-
export { default as InputDatetime } from
|
|
13
|
-
export { default as InputDatepicker } from
|
|
14
|
-
export { default as InputPassword } from
|
|
15
|
-
export { default as CheckGroup } from
|
|
16
|
-
export { default as RadioGroup } from
|
|
17
|
-
export { default as RadioButtons } from
|
|
18
|
-
export { default as InputFile } from
|
|
19
|
-
export { default as SelectMedia } from
|
|
20
|
-
export { default as RteEditor } from
|
|
21
|
-
export { default as InputColor } from
|
|
22
|
-
export { default as ColorPalette } from
|
|
23
|
-
export { default as InputDropdown } from
|
|
24
|
-
export { default as AutoSuggest } from
|
|
25
|
-
export { default as BaseCamera } from
|
|
26
|
-
export { default as FileUpload } from
|
|
27
|
-
export { default as UploadGroup } from
|
|
28
|
-
export { default as AssetUploader } from
|
|
29
|
-
export { default as BaseCarousel } from
|
|
30
|
-
export { default as MediaThumbnails } from
|
|
31
|
-
export { default as ProgressSteps } from
|
|
32
|
-
export { default as DomRenderer } from
|
|
33
|
-
export { default as PopoverTooltip } from
|
|
34
|
-
export { default as PopoverNotifications } from
|
|
35
|
-
export { default as LinkSharing } from
|
|
36
|
-
export { default as BaseForm } from
|
|
37
|
-
export { default as ModalDialog } from
|
|
38
|
-
export { default as PopoverDialog } from
|
|
39
|
-
export { default as SortableList } from
|
|
40
|
-
export { default as TouchWrapper } from
|
|
1
|
+
export { default as SvgIcon } from "./components/atoms/svg-icon/svg-icon.vue";
|
|
2
|
+
export { default as LoadingSpinner } from "./components/atoms/loading-spinner/loading-spinner.vue";
|
|
3
|
+
export { default as BaseImage } from "./components/atoms/base-image/base-image.vue";
|
|
4
|
+
export { default as BaseHeadline } from "./components/atoms/base-headline/base-headline.vue";
|
|
5
|
+
export { default as BaseParagraph } from "./components/atoms/base-paragraph/base-paragraph.vue";
|
|
6
|
+
export { default as AccordionItem } from "./components/molecules/accordion/accordion-item.vue";
|
|
7
|
+
export { default as Accordion } from "./components/molecules/accordion/accordion.vue";
|
|
8
|
+
export { default as BaseButton } from "./components/atoms/base-button/base-button.vue";
|
|
9
|
+
export { default as BaseInput } from "./components/atoms/base-input/base-input.vue";
|
|
10
|
+
export { default as InputTextarea } from "./components/atoms/input-textarea/input-textarea.vue";
|
|
11
|
+
export { default as InputCheckbox } from "./components/atoms/input-checkbox/input-checkbox.vue";
|
|
12
|
+
export { default as InputDatetime } from "./components/atoms/input-datetime/input-datetime.vue";
|
|
13
|
+
export { default as InputDatepicker } from "./components/molecules/input-datepicker/input-datepicker.vue";
|
|
14
|
+
export { default as InputPassword } from "./components/atoms/input-password/input-password.vue";
|
|
15
|
+
export { default as CheckGroup } from "./components/atoms/check-group/check-group.vue";
|
|
16
|
+
export { default as RadioGroup } from "./components/atoms/radio-group/radio-group.vue";
|
|
17
|
+
export { default as RadioButtons } from "./components/molecules/radio-buttons/radio-buttons.vue";
|
|
18
|
+
export { default as InputFile } from "./components/atoms/input-file/input-file.vue";
|
|
19
|
+
export { default as SelectMedia } from "./components/molecules/select-media/select-media.vue";
|
|
20
|
+
export { default as RteEditor } from "./components/molecules/rte-editor/rte-editor.vue";
|
|
21
|
+
export { default as InputColor } from "./components/molecules/input-color/input-color.vue";
|
|
22
|
+
export { default as ColorPalette } from "./components/molecules/color-palette/color-palette.vue";
|
|
23
|
+
export { default as InputDropdown } from "./components/molecules/input-dropdown/input-dropdown.vue";
|
|
24
|
+
export { default as AutoSuggest } from "./components/molecules/auto-suggest/auto-suggest.vue";
|
|
25
|
+
export { default as BaseCamera } from "./components/molecules/base-camera/base-camera.vue";
|
|
26
|
+
export { default as FileUpload } from "./components/molecules/file-upload/file-upload.vue";
|
|
27
|
+
export { default as UploadGroup } from "./components/molecules/upload-group/upload-group.vue";
|
|
28
|
+
export { default as AssetUploader } from "./components/organisms/asset-uploader/asset-uploader.vue";
|
|
29
|
+
export { default as BaseCarousel } from "./components/templates/base-carousel/base-carousel.vue";
|
|
30
|
+
export { default as MediaThumbnails } from "./components/molecules/media-thumbnails/media-thumbnails.vue";
|
|
31
|
+
export { default as ProgressSteps } from "./components/molecules/progress-steps/progress-steps.vue";
|
|
32
|
+
export { default as DomRenderer } from "./components/molecules/dom-renderer/dom-renderer.vue";
|
|
33
|
+
export { default as PopoverTooltip } from "./components/molecules/popover-tooltip/popover-tooltip.vue";
|
|
34
|
+
export { default as PopoverNotifications } from "./components/molecules/popover-notifications/popover-notifications.vue";
|
|
35
|
+
export { default as LinkSharing } from "./components/molecules/link-sharing/link-sharing.vue";
|
|
36
|
+
export { default as BaseForm } from "./components/templates/base-form/base-form.vue";
|
|
37
|
+
export { default as ModalDialog } from "./components/templates/modal-dialog/modal-dialog.vue";
|
|
38
|
+
export { default as PopoverDialog } from "./components/templates/popover-dialog/popover-dialog.vue";
|
|
39
|
+
export { default as SortableList } from "./components/templates/sortable-list/sortable-list.vue";
|
|
40
|
+
export { default as TouchWrapper } from "./components/templates/touch-wrapper/touch-wrapper.vue";
|