@ambita/design-system 1.0.39 → 1.0.40
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/aux.common.js +76 -29
- package/dist/aux.common.js.map +1 -1
- package/dist/aux.umd.js +76 -29
- package/dist/aux.umd.js.map +1 -1
- package/dist/aux.umd.min.js +2 -2
- package/dist/aux.umd.min.js.map +1 -1
- package/dist/types/src/components/Banner/Banner.vue.d.ts +55 -16
- package/dist/types/src/components/Checkbox/Checkbox.vue.d.ts +46 -0
- package/dist/types/src/components/Form/FormFieldBlock.vue.d.ts +6 -6
- package/dist/types/src/components/Form/FormFieldset.vue.d.ts +4 -4
- package/dist/types/src/components/Input/Input.vue.d.ts +100 -0
- package/dist/types/src/components/Modal/Modal.vue.d.ts +69 -0
- package/dist/types/src/components/Notification/Notification.vue.d.ts +2 -2
- package/dist/types/src/components/Radio/Radio.vue.d.ts +50 -0
- package/dist/types/src/components/Select/Select.vue.d.ts +83 -0
- package/dist/types/src/components/Textarea/Textarea.vue.d.ts +103 -0
- package/dist/types/src/components/Upload/File/File.vue.d.ts +3 -3
- package/dist/types/src/components/Upload/Upload.vue.d.ts +99 -0
- package/dist/types/src/helpers/formatting.d.ts +2 -0
- package/dist/types/src/index.d.ts +1 -0
- package/package.json +2 -2
|
@@ -1,8 +1,18 @@
|
|
|
1
1
|
declare const _default: import("vue").ComponentOptions<import("vue").default, import("@vue/composition-api").ShallowUnwrapRef<import("@vue/composition-api").Data> & import("@vue/composition-api").Data, {}, {}, string[] | {
|
|
2
|
-
[x: string]: (
|
|
2
|
+
[x: string]: (import("@vue/composition-api").PropOptions<unknown, unknown> | import("@vue/composition-api").PropType<unknown>) | null;
|
|
3
3
|
}, ({
|
|
4
4
|
[x: number]: string;
|
|
5
5
|
} & {
|
|
6
|
+
[Symbol.iterator]?: IterableIterator<string> | undefined;
|
|
7
|
+
[Symbol.unscopables]?: {
|
|
8
|
+
copyWithin: boolean;
|
|
9
|
+
entries: boolean;
|
|
10
|
+
fill: boolean;
|
|
11
|
+
find: boolean;
|
|
12
|
+
findIndex: boolean;
|
|
13
|
+
keys: boolean;
|
|
14
|
+
values: boolean;
|
|
15
|
+
} | undefined;
|
|
6
16
|
length?: number | undefined;
|
|
7
17
|
toString?: string | undefined;
|
|
8
18
|
toLocaleString?: string | undefined;
|
|
@@ -21,13 +31,16 @@ declare const _default: import("vue").ComponentOptions<import("vue").default, im
|
|
|
21
31
|
unshift?: number | undefined;
|
|
22
32
|
indexOf?: ((searchElement: string, fromIndex?: number | undefined) => number) | undefined;
|
|
23
33
|
lastIndexOf?: ((searchElement: string, fromIndex?: number | undefined) => number) | undefined;
|
|
24
|
-
every?:
|
|
25
|
-
|
|
34
|
+
every?: {
|
|
35
|
+
<S extends string>(predicate: (value: string, index: number, array: string[]) => value is S, thisArg?: any): this is S[];
|
|
36
|
+
(predicate: (value: string, index: number, array: string[]) => unknown, thisArg?: any): boolean;
|
|
37
|
+
} | undefined;
|
|
38
|
+
some?: ((predicate: (value: string, index: number, array: string[]) => unknown, thisArg?: any) => boolean) | undefined;
|
|
26
39
|
forEach?: ((callbackfn: (value: string, index: number, array: string[]) => void, thisArg?: any) => void) | undefined;
|
|
27
40
|
map?: (<U>(callbackfn: (value: string, index: number, array: string[]) => U, thisArg?: any) => U[]) | undefined;
|
|
28
41
|
filter?: {
|
|
29
|
-
<
|
|
30
|
-
(
|
|
42
|
+
<S_1 extends string>(predicate: (value: string, index: number, array: string[]) => value is S_1, thisArg?: any): S_1[];
|
|
43
|
+
(predicate: (value: string, index: number, array: string[]) => unknown, thisArg?: any): string[];
|
|
31
44
|
} | undefined;
|
|
32
45
|
reduce?: {
|
|
33
46
|
(callbackfn: (previousValue: string, currentValue: string, currentIndex: number, array: string[]) => string): string;
|
|
@@ -40,7 +53,7 @@ declare const _default: import("vue").ComponentOptions<import("vue").default, im
|
|
|
40
53
|
<U_2>(callbackfn: (previousValue: U_2, currentValue: string, currentIndex: number, array: string[]) => U_2, initialValue: U_2): U_2;
|
|
41
54
|
} | undefined;
|
|
42
55
|
find?: {
|
|
43
|
-
<
|
|
56
|
+
<S_2 extends string>(predicate: (this: void, value: string, index: number, obj: string[]) => value is S_2, thisArg?: any): S_2 | undefined;
|
|
44
57
|
(predicate: (value: string, index: number, obj: string[]) => unknown, thisArg?: any): string | undefined;
|
|
45
58
|
} | undefined;
|
|
46
59
|
findIndex?: ((predicate: (value: string, index: number, obj: string[]) => unknown, thisArg?: any) => number) | undefined;
|
|
@@ -58,6 +71,16 @@ declare const _default: import("vue").ComponentOptions<import("vue").default, im
|
|
|
58
71
|
})> & import("vue").VueConstructor<import("vue").default> & (new (...args: any[]) => import("@vue/composition-api").ComponentRenderProxy<({
|
|
59
72
|
[x: number]: string;
|
|
60
73
|
} & {
|
|
74
|
+
[Symbol.iterator]?: IterableIterator<string> | undefined;
|
|
75
|
+
[Symbol.unscopables]?: {
|
|
76
|
+
copyWithin: boolean;
|
|
77
|
+
entries: boolean;
|
|
78
|
+
fill: boolean;
|
|
79
|
+
find: boolean;
|
|
80
|
+
findIndex: boolean;
|
|
81
|
+
keys: boolean;
|
|
82
|
+
values: boolean;
|
|
83
|
+
} | undefined;
|
|
61
84
|
length?: number | undefined;
|
|
62
85
|
toString?: string | undefined;
|
|
63
86
|
toLocaleString?: string | undefined;
|
|
@@ -76,13 +99,16 @@ declare const _default: import("vue").ComponentOptions<import("vue").default, im
|
|
|
76
99
|
unshift?: number | undefined;
|
|
77
100
|
indexOf?: ((searchElement: string, fromIndex?: number | undefined) => number) | undefined;
|
|
78
101
|
lastIndexOf?: ((searchElement: string, fromIndex?: number | undefined) => number) | undefined;
|
|
79
|
-
every?:
|
|
80
|
-
|
|
102
|
+
every?: {
|
|
103
|
+
<S extends string>(predicate: (value: string, index: number, array: string[]) => value is S, thisArg?: any): this is S[];
|
|
104
|
+
(predicate: (value: string, index: number, array: string[]) => unknown, thisArg?: any): boolean;
|
|
105
|
+
} | undefined;
|
|
106
|
+
some?: ((predicate: (value: string, index: number, array: string[]) => unknown, thisArg?: any) => boolean) | undefined;
|
|
81
107
|
forEach?: ((callbackfn: (value: string, index: number, array: string[]) => void, thisArg?: any) => void) | undefined;
|
|
82
108
|
map?: (<U>(callbackfn: (value: string, index: number, array: string[]) => U, thisArg?: any) => U[]) | undefined;
|
|
83
109
|
filter?: {
|
|
84
|
-
<
|
|
85
|
-
(
|
|
110
|
+
<S_1 extends string>(predicate: (value: string, index: number, array: string[]) => value is S_1, thisArg?: any): S_1[];
|
|
111
|
+
(predicate: (value: string, index: number, array: string[]) => unknown, thisArg?: any): string[];
|
|
86
112
|
} | undefined;
|
|
87
113
|
reduce?: {
|
|
88
114
|
(callbackfn: (previousValue: string, currentValue: string, currentIndex: number, array: string[]) => string): string;
|
|
@@ -95,7 +121,7 @@ declare const _default: import("vue").ComponentOptions<import("vue").default, im
|
|
|
95
121
|
<U_2>(callbackfn: (previousValue: U_2, currentValue: string, currentIndex: number, array: string[]) => U_2, initialValue: U_2): U_2;
|
|
96
122
|
} | undefined;
|
|
97
123
|
find?: {
|
|
98
|
-
<
|
|
124
|
+
<S_2 extends string>(predicate: (this: void, value: string, index: number, obj: string[]) => value is S_2, thisArg?: any): S_2 | undefined;
|
|
99
125
|
(predicate: (value: string, index: number, obj: string[]) => unknown, thisArg?: any): string | undefined;
|
|
100
126
|
} | undefined;
|
|
101
127
|
findIndex?: ((predicate: (value: string, index: number, obj: string[]) => unknown, thisArg?: any) => number) | undefined;
|
|
@@ -113,6 +139,16 @@ declare const _default: import("vue").ComponentOptions<import("vue").default, im
|
|
|
113
139
|
}), import("@vue/composition-api").ShallowUnwrapRef<import("@vue/composition-api").Data>, import("@vue/composition-api").Data, {}, {}, ({
|
|
114
140
|
[x: number]: string;
|
|
115
141
|
} & {
|
|
142
|
+
[Symbol.iterator]?: IterableIterator<string> | undefined;
|
|
143
|
+
[Symbol.unscopables]?: {
|
|
144
|
+
copyWithin: boolean;
|
|
145
|
+
entries: boolean;
|
|
146
|
+
fill: boolean;
|
|
147
|
+
find: boolean;
|
|
148
|
+
findIndex: boolean;
|
|
149
|
+
keys: boolean;
|
|
150
|
+
values: boolean;
|
|
151
|
+
} | undefined;
|
|
116
152
|
length?: number | undefined;
|
|
117
153
|
toString?: string | undefined;
|
|
118
154
|
toLocaleString?: string | undefined;
|
|
@@ -131,13 +167,16 @@ declare const _default: import("vue").ComponentOptions<import("vue").default, im
|
|
|
131
167
|
unshift?: number | undefined;
|
|
132
168
|
indexOf?: ((searchElement: string, fromIndex?: number | undefined) => number) | undefined;
|
|
133
169
|
lastIndexOf?: ((searchElement: string, fromIndex?: number | undefined) => number) | undefined;
|
|
134
|
-
every?:
|
|
135
|
-
|
|
170
|
+
every?: {
|
|
171
|
+
<S extends string>(predicate: (value: string, index: number, array: string[]) => value is S, thisArg?: any): this is S[];
|
|
172
|
+
(predicate: (value: string, index: number, array: string[]) => unknown, thisArg?: any): boolean;
|
|
173
|
+
} | undefined;
|
|
174
|
+
some?: ((predicate: (value: string, index: number, array: string[]) => unknown, thisArg?: any) => boolean) | undefined;
|
|
136
175
|
forEach?: ((callbackfn: (value: string, index: number, array: string[]) => void, thisArg?: any) => void) | undefined;
|
|
137
176
|
map?: (<U>(callbackfn: (value: string, index: number, array: string[]) => U, thisArg?: any) => U[]) | undefined;
|
|
138
177
|
filter?: {
|
|
139
|
-
<
|
|
140
|
-
(
|
|
178
|
+
<S_1 extends string>(predicate: (value: string, index: number, array: string[]) => value is S_1, thisArg?: any): S_1[];
|
|
179
|
+
(predicate: (value: string, index: number, array: string[]) => unknown, thisArg?: any): string[];
|
|
141
180
|
} | undefined;
|
|
142
181
|
reduce?: {
|
|
143
182
|
(callbackfn: (previousValue: string, currentValue: string, currentIndex: number, array: string[]) => string): string;
|
|
@@ -150,7 +189,7 @@ declare const _default: import("vue").ComponentOptions<import("vue").default, im
|
|
|
150
189
|
<U_2>(callbackfn: (previousValue: U_2, currentValue: string, currentIndex: number, array: string[]) => U_2, initialValue: U_2): U_2;
|
|
151
190
|
} | undefined;
|
|
152
191
|
find?: {
|
|
153
|
-
<
|
|
192
|
+
<S_2 extends string>(predicate: (this: void, value: string, index: number, obj: string[]) => value is S_2, thisArg?: any): S_2 | undefined;
|
|
154
193
|
(predicate: (value: string, index: number, obj: string[]) => unknown, thisArg?: any): string | undefined;
|
|
155
194
|
} | undefined;
|
|
156
195
|
findIndex?: ((predicate: (value: string, index: number, obj: string[]) => unknown, thisArg?: any) => number) | undefined;
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
declare const _default: import("vue").ComponentOptions<import("vue").default, import("@vue/composition-api").ShallowUnwrapRef<import("@vue/composition-api").Data> & import("@vue/composition-api").Data, {}, {}, {
|
|
2
|
+
value: {
|
|
3
|
+
type: (StringConstructor | NumberConstructor | BooleanConstructor)[];
|
|
4
|
+
};
|
|
5
|
+
disabled: {
|
|
6
|
+
type: BooleanConstructor;
|
|
7
|
+
};
|
|
8
|
+
id: {
|
|
9
|
+
type: StringConstructor;
|
|
10
|
+
default: (<T extends ArrayLike<number>>(options: import("uuid").V4Options | null | undefined, buffer: T, offset?: number | undefined) => T) & ((options?: import("uuid").V4Options | undefined) => string);
|
|
11
|
+
};
|
|
12
|
+
selected: {
|
|
13
|
+
type: BooleanConstructor;
|
|
14
|
+
default: boolean;
|
|
15
|
+
};
|
|
16
|
+
indeterminate: {
|
|
17
|
+
type: BooleanConstructor;
|
|
18
|
+
default: boolean;
|
|
19
|
+
};
|
|
20
|
+
}, {
|
|
21
|
+
id: string;
|
|
22
|
+
selected: boolean;
|
|
23
|
+
indeterminate: boolean;
|
|
24
|
+
} & {
|
|
25
|
+
value?: string | number | boolean | undefined;
|
|
26
|
+
disabled?: boolean | undefined;
|
|
27
|
+
}> & import("vue").VueConstructor<import("vue").default> & (new (...args: any[]) => import("@vue/composition-api").ComponentRenderProxy<{
|
|
28
|
+
id: string;
|
|
29
|
+
selected: boolean;
|
|
30
|
+
indeterminate: boolean;
|
|
31
|
+
} & {
|
|
32
|
+
value?: string | number | boolean | undefined;
|
|
33
|
+
disabled?: boolean | undefined;
|
|
34
|
+
}, import("@vue/composition-api").ShallowUnwrapRef<import("@vue/composition-api").Data>, import("@vue/composition-api").Data, {}, {}, {
|
|
35
|
+
id: string;
|
|
36
|
+
selected: boolean;
|
|
37
|
+
indeterminate: boolean;
|
|
38
|
+
} & {
|
|
39
|
+
value?: string | number | boolean | undefined;
|
|
40
|
+
disabled?: boolean | undefined;
|
|
41
|
+
}, {
|
|
42
|
+
id: string;
|
|
43
|
+
selected: boolean;
|
|
44
|
+
indeterminate: boolean;
|
|
45
|
+
}, true>);
|
|
46
|
+
export default _default;
|
|
@@ -52,24 +52,24 @@ declare const _default: import("vue").ComponentOptions<import("vue").default, im
|
|
|
52
52
|
required: true;
|
|
53
53
|
};
|
|
54
54
|
}, {
|
|
55
|
-
label: string;
|
|
56
55
|
type: string;
|
|
56
|
+
label: string;
|
|
57
57
|
required: boolean;
|
|
58
|
+
config: Record<string, any>;
|
|
58
59
|
hidden: boolean;
|
|
59
60
|
vfjsFieldErrors: unknown[];
|
|
60
|
-
config: Record<string, any>;
|
|
61
61
|
} & {
|
|
62
62
|
value?: unknown;
|
|
63
63
|
description?: string | undefined;
|
|
64
64
|
options?: unknown[] | undefined;
|
|
65
65
|
fieldWidth?: string | undefined;
|
|
66
66
|
}> & import("vue").VueConstructor<import("vue").default> & (new (...args: any[]) => import("@vue/composition-api").ComponentRenderProxy<{
|
|
67
|
-
label: string;
|
|
68
67
|
type: string;
|
|
68
|
+
label: string;
|
|
69
69
|
required: boolean;
|
|
70
|
+
config: Record<string, any>;
|
|
70
71
|
hidden: boolean;
|
|
71
72
|
vfjsFieldErrors: unknown[];
|
|
72
|
-
config: Record<string, any>;
|
|
73
73
|
} & {
|
|
74
74
|
value?: unknown;
|
|
75
75
|
description?: string | undefined;
|
|
@@ -87,12 +87,12 @@ declare const _default: import("vue").ComponentOptions<import("vue").default, im
|
|
|
87
87
|
};
|
|
88
88
|
updateValue: (value: string) => void;
|
|
89
89
|
}>, import("@vue/composition-api").Data, {}, {}, {
|
|
90
|
-
label: string;
|
|
91
90
|
type: string;
|
|
91
|
+
label: string;
|
|
92
92
|
required: boolean;
|
|
93
|
+
config: Record<string, any>;
|
|
93
94
|
hidden: boolean;
|
|
94
95
|
vfjsFieldErrors: unknown[];
|
|
95
|
-
config: Record<string, any>;
|
|
96
96
|
} & {
|
|
97
97
|
value?: unknown;
|
|
98
98
|
description?: string | undefined;
|
|
@@ -18,21 +18,21 @@ declare const _default: import("vue").ComponentOptions<import("vue").default, im
|
|
|
18
18
|
}, {
|
|
19
19
|
label: string;
|
|
20
20
|
description: string;
|
|
21
|
-
headerLevel: string;
|
|
22
21
|
hidden: boolean;
|
|
22
|
+
headerLevel: string;
|
|
23
23
|
} & {}> & import("vue").VueConstructor<import("vue").default> & (new (...args: any[]) => import("@vue/composition-api").ComponentRenderProxy<{
|
|
24
24
|
label: string;
|
|
25
25
|
description: string;
|
|
26
|
-
headerLevel: string;
|
|
27
26
|
hidden: boolean;
|
|
27
|
+
headerLevel: string;
|
|
28
28
|
} & {}, import("@vue/composition-api").ShallowUnwrapRef<import("@vue/composition-api").Data>, import("@vue/composition-api").Data, {}, {}, {
|
|
29
29
|
label: string;
|
|
30
30
|
description: string;
|
|
31
|
-
headerLevel: string;
|
|
32
31
|
hidden: boolean;
|
|
32
|
+
headerLevel: string;
|
|
33
33
|
} & {}, {
|
|
34
34
|
label: string;
|
|
35
|
-
headerLevel: string;
|
|
36
35
|
hidden: boolean;
|
|
36
|
+
headerLevel: string;
|
|
37
37
|
}, true>);
|
|
38
38
|
export default _default;
|
|
@@ -0,0 +1,100 @@
|
|
|
1
|
+
declare const _default: import("vue").ComponentOptions<import("vue").default, import("@vue/composition-api").ShallowUnwrapRef<{
|
|
2
|
+
inputFieldEl: import("@vue/composition-api").Ref<HTMLInputElement | null>;
|
|
3
|
+
focus: () => void;
|
|
4
|
+
hasLeftIcon: import("@vue/composition-api").ComputedRef<((...args: any[]) => import("vue").VNode[]) | undefined>;
|
|
5
|
+
hasRightIcon: import("@vue/composition-api").ComputedRef<true | ((...args: any[]) => import("vue").VNode[]) | undefined>;
|
|
6
|
+
}> & import("@vue/composition-api").Data, {}, {}, {
|
|
7
|
+
label: {
|
|
8
|
+
type: StringConstructor;
|
|
9
|
+
required: true;
|
|
10
|
+
};
|
|
11
|
+
id: {
|
|
12
|
+
type: StringConstructor;
|
|
13
|
+
default: (<T extends ArrayLike<number>>(options: import("uuid").V4Options | null | undefined, buffer: T, offset?: number | undefined) => T) & ((options?: import("uuid").V4Options | undefined) => string);
|
|
14
|
+
};
|
|
15
|
+
name: {
|
|
16
|
+
type: StringConstructor;
|
|
17
|
+
required: false;
|
|
18
|
+
};
|
|
19
|
+
value: {
|
|
20
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
21
|
+
};
|
|
22
|
+
placeholder: StringConstructor;
|
|
23
|
+
description: StringConstructor;
|
|
24
|
+
type: {
|
|
25
|
+
type: StringConstructor;
|
|
26
|
+
default: string;
|
|
27
|
+
};
|
|
28
|
+
clearable: {
|
|
29
|
+
type: BooleanConstructor;
|
|
30
|
+
default: boolean;
|
|
31
|
+
};
|
|
32
|
+
hideLabel: {
|
|
33
|
+
type: BooleanConstructor;
|
|
34
|
+
default: boolean;
|
|
35
|
+
};
|
|
36
|
+
fieldWidth: {
|
|
37
|
+
type: StringConstructor;
|
|
38
|
+
default: string;
|
|
39
|
+
};
|
|
40
|
+
min: {
|
|
41
|
+
type: NumberConstructor;
|
|
42
|
+
};
|
|
43
|
+
max: {
|
|
44
|
+
type: NumberConstructor;
|
|
45
|
+
};
|
|
46
|
+
}, {
|
|
47
|
+
id: string;
|
|
48
|
+
type: string;
|
|
49
|
+
label: string;
|
|
50
|
+
hideLabel: boolean;
|
|
51
|
+
clearable: boolean;
|
|
52
|
+
fieldWidth: string;
|
|
53
|
+
} & {
|
|
54
|
+
name?: string | undefined;
|
|
55
|
+
value?: string | number | undefined;
|
|
56
|
+
description?: string | undefined;
|
|
57
|
+
placeholder?: string | undefined;
|
|
58
|
+
min?: number | undefined;
|
|
59
|
+
max?: number | undefined;
|
|
60
|
+
}> & import("vue").VueConstructor<import("vue").default> & (new (...args: any[]) => import("@vue/composition-api").ComponentRenderProxy<{
|
|
61
|
+
id: string;
|
|
62
|
+
type: string;
|
|
63
|
+
label: string;
|
|
64
|
+
hideLabel: boolean;
|
|
65
|
+
clearable: boolean;
|
|
66
|
+
fieldWidth: string;
|
|
67
|
+
} & {
|
|
68
|
+
name?: string | undefined;
|
|
69
|
+
value?: string | number | undefined;
|
|
70
|
+
description?: string | undefined;
|
|
71
|
+
placeholder?: string | undefined;
|
|
72
|
+
min?: number | undefined;
|
|
73
|
+
max?: number | undefined;
|
|
74
|
+
}, import("@vue/composition-api").ShallowUnwrapRef<{
|
|
75
|
+
inputFieldEl: import("@vue/composition-api").Ref<HTMLInputElement | null>;
|
|
76
|
+
focus: () => void;
|
|
77
|
+
hasLeftIcon: import("@vue/composition-api").ComputedRef<((...args: any[]) => import("vue").VNode[]) | undefined>;
|
|
78
|
+
hasRightIcon: import("@vue/composition-api").ComputedRef<true | ((...args: any[]) => import("vue").VNode[]) | undefined>;
|
|
79
|
+
}>, import("@vue/composition-api").Data, {}, {}, {
|
|
80
|
+
id: string;
|
|
81
|
+
type: string;
|
|
82
|
+
label: string;
|
|
83
|
+
hideLabel: boolean;
|
|
84
|
+
clearable: boolean;
|
|
85
|
+
fieldWidth: string;
|
|
86
|
+
} & {
|
|
87
|
+
name?: string | undefined;
|
|
88
|
+
value?: string | number | undefined;
|
|
89
|
+
description?: string | undefined;
|
|
90
|
+
placeholder?: string | undefined;
|
|
91
|
+
min?: number | undefined;
|
|
92
|
+
max?: number | undefined;
|
|
93
|
+
}, {
|
|
94
|
+
id: string;
|
|
95
|
+
type: string;
|
|
96
|
+
hideLabel: boolean;
|
|
97
|
+
clearable: boolean;
|
|
98
|
+
fieldWidth: string;
|
|
99
|
+
}, true>);
|
|
100
|
+
export default _default;
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
import { PropType } from '@vue/composition-api';
|
|
2
|
+
import { Action } from '@/components/Modal/Action';
|
|
3
|
+
declare const _default: import("vue").ComponentOptions<import("vue").default, import("@vue/composition-api").ShallowUnwrapRef<{
|
|
4
|
+
closeModal: () => void;
|
|
5
|
+
modalClasses: {
|
|
6
|
+
[x: string]: boolean;
|
|
7
|
+
'aux-modal': boolean;
|
|
8
|
+
};
|
|
9
|
+
propagateEvent: (eventPayLoad: string) => void;
|
|
10
|
+
emit: (event: string, ...args: any[]) => void;
|
|
11
|
+
getTestId: (testid: string) => string | undefined;
|
|
12
|
+
}> & import("@vue/composition-api").Data, {}, {}, {
|
|
13
|
+
actions: {
|
|
14
|
+
type: PropType<Action[]>;
|
|
15
|
+
default: () => never[];
|
|
16
|
+
};
|
|
17
|
+
id: {
|
|
18
|
+
type: StringConstructor;
|
|
19
|
+
default: (<T extends ArrayLike<number>>(options: import("uuid").V4Options | null | undefined, buffer: T, offset?: number | undefined) => T) & ((options?: import("uuid").V4Options | undefined) => string);
|
|
20
|
+
};
|
|
21
|
+
size: {
|
|
22
|
+
type: StringConstructor;
|
|
23
|
+
default: string;
|
|
24
|
+
validator: (value: string) => boolean;
|
|
25
|
+
};
|
|
26
|
+
title: {
|
|
27
|
+
type: StringConstructor;
|
|
28
|
+
validator: (value: string) => boolean;
|
|
29
|
+
};
|
|
30
|
+
dataTestid: {
|
|
31
|
+
type: StringConstructor;
|
|
32
|
+
required: false;
|
|
33
|
+
};
|
|
34
|
+
}, {
|
|
35
|
+
id: string;
|
|
36
|
+
size: string;
|
|
37
|
+
actions: Action[];
|
|
38
|
+
} & {
|
|
39
|
+
dataTestid?: string | undefined;
|
|
40
|
+
title?: string | undefined;
|
|
41
|
+
}> & import("vue").VueConstructor<import("vue").default> & (new (...args: any[]) => import("@vue/composition-api").ComponentRenderProxy<{
|
|
42
|
+
id: string;
|
|
43
|
+
size: string;
|
|
44
|
+
actions: Action[];
|
|
45
|
+
} & {
|
|
46
|
+
dataTestid?: string | undefined;
|
|
47
|
+
title?: string | undefined;
|
|
48
|
+
}, import("@vue/composition-api").ShallowUnwrapRef<{
|
|
49
|
+
closeModal: () => void;
|
|
50
|
+
modalClasses: {
|
|
51
|
+
[x: string]: boolean;
|
|
52
|
+
'aux-modal': boolean;
|
|
53
|
+
};
|
|
54
|
+
propagateEvent: (eventPayLoad: string) => void;
|
|
55
|
+
emit: (event: string, ...args: any[]) => void;
|
|
56
|
+
getTestId: (testid: string) => string | undefined;
|
|
57
|
+
}>, import("@vue/composition-api").Data, {}, {}, {
|
|
58
|
+
id: string;
|
|
59
|
+
size: string;
|
|
60
|
+
actions: Action[];
|
|
61
|
+
} & {
|
|
62
|
+
dataTestid?: string | undefined;
|
|
63
|
+
title?: string | undefined;
|
|
64
|
+
}, {
|
|
65
|
+
id: string;
|
|
66
|
+
size: string;
|
|
67
|
+
actions: Action[];
|
|
68
|
+
}, true>);
|
|
69
|
+
export default _default;
|
|
@@ -5,7 +5,7 @@ declare const _default: import("vue").ComponentOptions<import("vue").default, im
|
|
|
5
5
|
'aux-notification': boolean;
|
|
6
6
|
'aux-notification-show': boolean;
|
|
7
7
|
}>;
|
|
8
|
-
icon: import("@vue/composition-api").ComputedRef<
|
|
8
|
+
icon: import("@vue/composition-api").ComputedRef<VueComponent>;
|
|
9
9
|
removeNotification: () => void;
|
|
10
10
|
}> & import("@vue/composition-api").Data, {}, {}, {
|
|
11
11
|
type: {
|
|
@@ -28,7 +28,7 @@ declare const _default: import("vue").ComponentOptions<import("vue").default, im
|
|
|
28
28
|
'aux-notification': boolean;
|
|
29
29
|
'aux-notification-show': boolean;
|
|
30
30
|
}>;
|
|
31
|
-
icon: import("@vue/composition-api").ComputedRef<
|
|
31
|
+
icon: import("@vue/composition-api").ComputedRef<VueComponent>;
|
|
32
32
|
removeNotification: () => void;
|
|
33
33
|
}>, import("@vue/composition-api").Data, {}, {}, {
|
|
34
34
|
id: string;
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
declare const _default: import("vue").ComponentOptions<import("vue").default, import("@vue/composition-api").ShallowUnwrapRef<{
|
|
2
|
+
isSelected: import("@vue/composition-api").ComputedRef<boolean>;
|
|
3
|
+
}> & import("@vue/composition-api").Data, {}, {}, {
|
|
4
|
+
value: {
|
|
5
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
6
|
+
};
|
|
7
|
+
disabled: {
|
|
8
|
+
type: BooleanConstructor;
|
|
9
|
+
default: boolean;
|
|
10
|
+
};
|
|
11
|
+
id: {
|
|
12
|
+
type: StringConstructor;
|
|
13
|
+
default: (<T extends ArrayLike<number>>(options: import("uuid").V4Options | null | undefined, buffer: T, offset?: number | undefined) => T) & ((options?: import("uuid").V4Options | undefined) => string);
|
|
14
|
+
};
|
|
15
|
+
name: {
|
|
16
|
+
type: StringConstructor;
|
|
17
|
+
required: true;
|
|
18
|
+
};
|
|
19
|
+
selected: {
|
|
20
|
+
type: StringConstructor;
|
|
21
|
+
required: true;
|
|
22
|
+
};
|
|
23
|
+
}, {
|
|
24
|
+
name: string;
|
|
25
|
+
disabled: boolean;
|
|
26
|
+
id: string;
|
|
27
|
+
selected: string;
|
|
28
|
+
} & {
|
|
29
|
+
value?: string | number | undefined;
|
|
30
|
+
}> & import("vue").VueConstructor<import("vue").default> & (new (...args: any[]) => import("@vue/composition-api").ComponentRenderProxy<{
|
|
31
|
+
name: string;
|
|
32
|
+
disabled: boolean;
|
|
33
|
+
id: string;
|
|
34
|
+
selected: string;
|
|
35
|
+
} & {
|
|
36
|
+
value?: string | number | undefined;
|
|
37
|
+
}, import("@vue/composition-api").ShallowUnwrapRef<{
|
|
38
|
+
isSelected: import("@vue/composition-api").ComputedRef<boolean>;
|
|
39
|
+
}>, import("@vue/composition-api").Data, {}, {}, {
|
|
40
|
+
name: string;
|
|
41
|
+
disabled: boolean;
|
|
42
|
+
id: string;
|
|
43
|
+
selected: string;
|
|
44
|
+
} & {
|
|
45
|
+
value?: string | number | undefined;
|
|
46
|
+
}, {
|
|
47
|
+
disabled: boolean;
|
|
48
|
+
id: string;
|
|
49
|
+
}, true>);
|
|
50
|
+
export default _default;
|
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
import { PropType } from '@vue/composition-api';
|
|
2
|
+
declare type Item = {
|
|
3
|
+
label: string;
|
|
4
|
+
value: string;
|
|
5
|
+
disabled: boolean;
|
|
6
|
+
};
|
|
7
|
+
declare const _default: import("vue").ComponentOptions<import("vue").default, import("@vue/composition-api").ShallowUnwrapRef<{
|
|
8
|
+
state: {
|
|
9
|
+
value: string | number | unknown[] | undefined;
|
|
10
|
+
};
|
|
11
|
+
updateValue: (value: string) => void;
|
|
12
|
+
}> & import("@vue/composition-api").Data, {}, {}, {
|
|
13
|
+
items: {
|
|
14
|
+
type: PropType<Item[]>;
|
|
15
|
+
required: true;
|
|
16
|
+
};
|
|
17
|
+
label: {
|
|
18
|
+
type: StringConstructor;
|
|
19
|
+
required: false;
|
|
20
|
+
};
|
|
21
|
+
required: {
|
|
22
|
+
type: BooleanConstructor;
|
|
23
|
+
default: boolean;
|
|
24
|
+
};
|
|
25
|
+
id: {
|
|
26
|
+
type: StringConstructor;
|
|
27
|
+
default: (<T extends ArrayLike<number>>(options: import("uuid").V4Options | null | undefined, buffer: T, offset?: number | undefined) => T) & ((options?: import("uuid").V4Options | undefined) => string);
|
|
28
|
+
};
|
|
29
|
+
name: {
|
|
30
|
+
type: StringConstructor;
|
|
31
|
+
required: false;
|
|
32
|
+
};
|
|
33
|
+
hideLabel: {
|
|
34
|
+
type: BooleanConstructor;
|
|
35
|
+
default: boolean;
|
|
36
|
+
};
|
|
37
|
+
description: {
|
|
38
|
+
type: StringConstructor;
|
|
39
|
+
};
|
|
40
|
+
value: {
|
|
41
|
+
type: (ArrayConstructor | StringConstructor | NumberConstructor)[];
|
|
42
|
+
};
|
|
43
|
+
}, {
|
|
44
|
+
id: string;
|
|
45
|
+
hideLabel: boolean;
|
|
46
|
+
required: boolean;
|
|
47
|
+
items: Item[];
|
|
48
|
+
} & {
|
|
49
|
+
name?: string | undefined;
|
|
50
|
+
value?: string | number | unknown[] | undefined;
|
|
51
|
+
label?: string | undefined;
|
|
52
|
+
description?: string | undefined;
|
|
53
|
+
}> & import("vue").VueConstructor<import("vue").default> & (new (...args: any[]) => import("@vue/composition-api").ComponentRenderProxy<{
|
|
54
|
+
id: string;
|
|
55
|
+
hideLabel: boolean;
|
|
56
|
+
required: boolean;
|
|
57
|
+
items: Item[];
|
|
58
|
+
} & {
|
|
59
|
+
name?: string | undefined;
|
|
60
|
+
value?: string | number | unknown[] | undefined;
|
|
61
|
+
label?: string | undefined;
|
|
62
|
+
description?: string | undefined;
|
|
63
|
+
}, import("@vue/composition-api").ShallowUnwrapRef<{
|
|
64
|
+
state: {
|
|
65
|
+
value: string | number | unknown[] | undefined;
|
|
66
|
+
};
|
|
67
|
+
updateValue: (value: string) => void;
|
|
68
|
+
}>, import("@vue/composition-api").Data, {}, {}, {
|
|
69
|
+
id: string;
|
|
70
|
+
hideLabel: boolean;
|
|
71
|
+
required: boolean;
|
|
72
|
+
items: Item[];
|
|
73
|
+
} & {
|
|
74
|
+
name?: string | undefined;
|
|
75
|
+
value?: string | number | unknown[] | undefined;
|
|
76
|
+
label?: string | undefined;
|
|
77
|
+
description?: string | undefined;
|
|
78
|
+
}, {
|
|
79
|
+
id: string;
|
|
80
|
+
hideLabel: boolean;
|
|
81
|
+
required: boolean;
|
|
82
|
+
}, true>);
|
|
83
|
+
export default _default;
|