@ironsource/shared-ui 2.1.3-rc.10 → 2.1.3-rc.12
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/AppHeader.vue_vue_type_style_index_0_scoped_f9d4e49d_lang.css +1 -0
- package/Autocomplete.vue_vue_type_style_index_0_scoped_e36c9442_lang.css +1 -0
- package/DataGrid.vue_vue_type_style_index_0_scoped_9b108af3_lang.css +1 -0
- package/FormRow.vue_vue_type_style_index_0_scoped_fc3897fd_lang.css +1 -0
- package/HelpIcon.vue_vue_type_style_index_0_scoped_7a611779_lang.css +1 -0
- package/components/appHeader/AppHeader.vue.js +3 -3
- package/components/appHeader/AppHeader.vue2.js +29 -26
- package/components/autocomplete/Autocomplete.vue.d.ts +117 -0
- package/components/autocomplete/Autocomplete.vue.js +7 -0
- package/components/autocomplete/Autocomplete.vue2.js +84 -0
- package/components/autocomplete/index.d.ts +366 -0
- package/components/autocomplete/index.js +6 -0
- package/components/checkbox/v3/index.d.ts +12 -12
- package/components/checkbox/v4/index.d.ts +12 -12
- package/components/chip/v3/Chip.vue.d.ts +1 -1
- package/components/chip/v3/index.d.ts +20 -20
- package/components/chip/v4/ChipV4.vue.d.ts +1 -1
- package/components/chip/v4/index.d.ts +20 -20
- package/components/dialog/v4/index.d.ts +16 -16
- package/components/dropdown/v3/Dropdown.vue.d.ts +11 -11
- package/components/dropdown/v3/index.d.ts +159 -159
- package/components/dropdown/v4/AppDropdownTrigger.vue.d.ts +4 -4
- package/components/dropdown/v4/ChipDropdownTrigger.vue.d.ts +1 -1
- package/components/dropdown/v4/DefaultDropdownTrigger.vue.d.ts +7 -7
- package/components/dropdown/v4/DropdownV4.vue.d.ts +13 -13
- package/components/dropdown/v4/index.d.ts +573 -573
- package/components/filterDropdown/index.d.ts +8 -8
- package/components/forms/FormRow.vue.js +2 -2
- package/components/forms/FormRow.vue2.js +9 -9
- package/components/includeExclude/IncludeExclude.vue.d.ts +3 -3
- package/components/includeExclude/IncludeExcludeAppHeader.vue.d.ts +2 -2
- package/components/includeExclude/IncludeExcludeChipFilter.vue.d.ts +3 -3
- package/components/includeExclude/IncludeExcludeDragDrop.vue.d.ts +3 -3
- package/components/includeExclude/index.d.ts +168 -168
- package/components/input/v3/Input.vue.d.ts +3 -3
- package/components/input/v3/index.d.ts +82 -82
- package/components/input/v4/TextField.vue.d.ts +6 -6
- package/components/input/v4/index.d.ts +115 -115
- package/components/table/common/Table.types.d.ts +3 -0
- package/components/table/v4/DataGrid.vue.d.ts +2 -2
- package/components/table/v4/DataGrid.vue.js +3 -3
- package/components/table/v4/DataGrid.vue2.js +129 -123
- package/components/table/v4/HelpIcon.vue.d.ts +40 -0
- package/components/table/v4/HelpIcon.vue.js +7 -0
- package/components/table/v4/HelpIcon.vue2.js +32 -0
- package/components/table/v4/index.d.ts +39 -39
- package/components/table-cells/v4/EditableV4.vue.d.ts +1 -1
- package/components/table-cells/v4/index.d.ts +20 -20
- package/components/textArea/v4/TextAreaV4.vue.d.ts +3 -3
- package/components/textArea/v4/index.d.ts +23 -23
- package/components/toggle/v3/Toggle.vue.d.ts +1 -1
- package/components/toggle/v3/index.d.ts +9 -9
- package/components/toggle/v4/ToggleV4.vue.d.ts +1 -1
- package/components/toggle/v4/index.d.ts +28 -28
- package/index.d.ts +1869 -1868
- package/index.js +74 -70
- package/package.json +5 -1
- package/testids/index.d.ts +2 -1
- package/testids/index.js +10 -10
- package/AppHeader.vue_vue_type_style_index_0_scoped_95908b8d_lang.css +0 -1
- package/DataGrid.vue_vue_type_style_index_0_scoped_4baf9e57_lang.css +0 -1
- package/FormRow.vue_vue_type_style_index_0_scoped_c5265707_lang.css +0 -1
|
@@ -0,0 +1,366 @@
|
|
|
1
|
+
declare const AutocompleteTypes: () => ({
|
|
2
|
+
new (...args: any[]): {
|
|
3
|
+
$: import("vue").ComponentInternalInstance;
|
|
4
|
+
$data: {};
|
|
5
|
+
$props: Partial<{
|
|
6
|
+
label: string;
|
|
7
|
+
disabled: boolean;
|
|
8
|
+
size: "small" | "medium" | "large";
|
|
9
|
+
mandatory: boolean;
|
|
10
|
+
testId: string;
|
|
11
|
+
hoverHelpText: string;
|
|
12
|
+
hoverHelpTextPlacement: "auto" | "left" | "right" | "bottom" | "top" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end";
|
|
13
|
+
modelValue: string | number;
|
|
14
|
+
placeholder: string;
|
|
15
|
+
labelDirection: "top" | "inside";
|
|
16
|
+
onSearch: (option: any, term: string) => boolean;
|
|
17
|
+
displayValue: (option: unknown) => string;
|
|
18
|
+
optionNameKey: string;
|
|
19
|
+
optionsListWidth: string;
|
|
20
|
+
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
21
|
+
label: {
|
|
22
|
+
type: import("vue").PropType<string>;
|
|
23
|
+
default: string;
|
|
24
|
+
};
|
|
25
|
+
disabled: {
|
|
26
|
+
type: import("vue").PropType<boolean>;
|
|
27
|
+
default: boolean;
|
|
28
|
+
};
|
|
29
|
+
size: {
|
|
30
|
+
type: import("vue").PropType<"small" | "medium" | "large">;
|
|
31
|
+
default: string;
|
|
32
|
+
};
|
|
33
|
+
mandatory: {
|
|
34
|
+
type: import("vue").PropType<boolean>;
|
|
35
|
+
default: boolean;
|
|
36
|
+
};
|
|
37
|
+
testId: {
|
|
38
|
+
type: import("vue").PropType<string>;
|
|
39
|
+
default: string;
|
|
40
|
+
};
|
|
41
|
+
options: {
|
|
42
|
+
type: import("vue").PropType<unknown[] | {
|
|
43
|
+
id: string;
|
|
44
|
+
text: string;
|
|
45
|
+
}[]>;
|
|
46
|
+
required: true;
|
|
47
|
+
};
|
|
48
|
+
hoverHelpText: {
|
|
49
|
+
type: import("vue").PropType<string>;
|
|
50
|
+
default: string;
|
|
51
|
+
};
|
|
52
|
+
hoverHelpTextPlacement: {
|
|
53
|
+
type: import("vue").PropType<"auto" | "left" | "right" | "bottom" | "top" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end">;
|
|
54
|
+
default: string;
|
|
55
|
+
};
|
|
56
|
+
modelValue: {
|
|
57
|
+
type: import("vue").PropType<string | number>;
|
|
58
|
+
default: string;
|
|
59
|
+
};
|
|
60
|
+
placeholder: {
|
|
61
|
+
type: import("vue").PropType<string>;
|
|
62
|
+
default: string;
|
|
63
|
+
};
|
|
64
|
+
labelDirection: {
|
|
65
|
+
type: import("vue").PropType<"top" | "inside">;
|
|
66
|
+
default: string;
|
|
67
|
+
};
|
|
68
|
+
onSearch: {
|
|
69
|
+
type: import("vue").PropType<(option: any, term: string) => boolean>;
|
|
70
|
+
default: any;
|
|
71
|
+
};
|
|
72
|
+
displayValue: {
|
|
73
|
+
type: import("vue").PropType<(option: unknown) => string>;
|
|
74
|
+
default: (option: unknown) => string;
|
|
75
|
+
};
|
|
76
|
+
optionNameKey: {
|
|
77
|
+
type: import("vue").PropType<string>;
|
|
78
|
+
default: string;
|
|
79
|
+
};
|
|
80
|
+
optionsListWidth: {
|
|
81
|
+
type: import("vue").PropType<string>;
|
|
82
|
+
default: any;
|
|
83
|
+
};
|
|
84
|
+
}>> & {
|
|
85
|
+
"onUpdate:modelValue"?: (value: string | number) => any;
|
|
86
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "label" | "disabled" | "size" | "mandatory" | "testId" | "hoverHelpText" | "hoverHelpTextPlacement" | "modelValue" | "placeholder" | "labelDirection" | "onSearch" | "displayValue" | "optionNameKey" | "optionsListWidth">;
|
|
87
|
+
$attrs: {
|
|
88
|
+
[x: string]: unknown;
|
|
89
|
+
};
|
|
90
|
+
$refs: {
|
|
91
|
+
[x: string]: unknown;
|
|
92
|
+
};
|
|
93
|
+
$slots: Readonly<{
|
|
94
|
+
[name: string]: import("vue").Slot;
|
|
95
|
+
}>;
|
|
96
|
+
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
|
|
97
|
+
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
|
|
98
|
+
$emit: (event: "update:modelValue", value: string | number) => void;
|
|
99
|
+
$el: any;
|
|
100
|
+
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
101
|
+
label: {
|
|
102
|
+
type: import("vue").PropType<string>;
|
|
103
|
+
default: string;
|
|
104
|
+
};
|
|
105
|
+
disabled: {
|
|
106
|
+
type: import("vue").PropType<boolean>;
|
|
107
|
+
default: boolean;
|
|
108
|
+
};
|
|
109
|
+
size: {
|
|
110
|
+
type: import("vue").PropType<"small" | "medium" | "large">;
|
|
111
|
+
default: string;
|
|
112
|
+
};
|
|
113
|
+
mandatory: {
|
|
114
|
+
type: import("vue").PropType<boolean>;
|
|
115
|
+
default: boolean;
|
|
116
|
+
};
|
|
117
|
+
testId: {
|
|
118
|
+
type: import("vue").PropType<string>;
|
|
119
|
+
default: string;
|
|
120
|
+
};
|
|
121
|
+
options: {
|
|
122
|
+
type: import("vue").PropType<unknown[] | {
|
|
123
|
+
id: string;
|
|
124
|
+
text: string;
|
|
125
|
+
}[]>;
|
|
126
|
+
required: true;
|
|
127
|
+
};
|
|
128
|
+
hoverHelpText: {
|
|
129
|
+
type: import("vue").PropType<string>;
|
|
130
|
+
default: string;
|
|
131
|
+
};
|
|
132
|
+
hoverHelpTextPlacement: {
|
|
133
|
+
type: import("vue").PropType<"auto" | "left" | "right" | "bottom" | "top" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end">;
|
|
134
|
+
default: string;
|
|
135
|
+
};
|
|
136
|
+
modelValue: {
|
|
137
|
+
type: import("vue").PropType<string | number>;
|
|
138
|
+
default: string;
|
|
139
|
+
};
|
|
140
|
+
placeholder: {
|
|
141
|
+
type: import("vue").PropType<string>;
|
|
142
|
+
default: string;
|
|
143
|
+
};
|
|
144
|
+
labelDirection: {
|
|
145
|
+
type: import("vue").PropType<"top" | "inside">;
|
|
146
|
+
default: string;
|
|
147
|
+
};
|
|
148
|
+
onSearch: {
|
|
149
|
+
type: import("vue").PropType<(option: any, term: string) => boolean>;
|
|
150
|
+
default: any;
|
|
151
|
+
};
|
|
152
|
+
displayValue: {
|
|
153
|
+
type: import("vue").PropType<(option: unknown) => string>;
|
|
154
|
+
default: (option: unknown) => string;
|
|
155
|
+
};
|
|
156
|
+
optionNameKey: {
|
|
157
|
+
type: import("vue").PropType<string>;
|
|
158
|
+
default: string;
|
|
159
|
+
};
|
|
160
|
+
optionsListWidth: {
|
|
161
|
+
type: import("vue").PropType<string>;
|
|
162
|
+
default: any;
|
|
163
|
+
};
|
|
164
|
+
}>> & {
|
|
165
|
+
"onUpdate:modelValue"?: (value: string | number) => any;
|
|
166
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
167
|
+
"update:modelValue": (value: string | number) => void;
|
|
168
|
+
}, string, {
|
|
169
|
+
label: string;
|
|
170
|
+
disabled: boolean;
|
|
171
|
+
size: "small" | "medium" | "large";
|
|
172
|
+
mandatory: boolean;
|
|
173
|
+
testId: string;
|
|
174
|
+
hoverHelpText: string;
|
|
175
|
+
hoverHelpTextPlacement: "auto" | "left" | "right" | "bottom" | "top" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end";
|
|
176
|
+
modelValue: string | number;
|
|
177
|
+
placeholder: string;
|
|
178
|
+
labelDirection: "top" | "inside";
|
|
179
|
+
onSearch: (option: any, term: string) => boolean;
|
|
180
|
+
displayValue: (option: unknown) => string;
|
|
181
|
+
optionNameKey: string;
|
|
182
|
+
optionsListWidth: string;
|
|
183
|
+
}, {}, string> & {
|
|
184
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
185
|
+
created?: (() => void) | (() => void)[];
|
|
186
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
187
|
+
mounted?: (() => void) | (() => void)[];
|
|
188
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
189
|
+
updated?: (() => void) | (() => void)[];
|
|
190
|
+
activated?: (() => void) | (() => void)[];
|
|
191
|
+
deactivated?: (() => void) | (() => void)[];
|
|
192
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
193
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
194
|
+
destroyed?: (() => void) | (() => void)[];
|
|
195
|
+
unmounted?: (() => void) | (() => void)[];
|
|
196
|
+
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
|
197
|
+
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
|
198
|
+
errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>, info: string) => boolean | void)[];
|
|
199
|
+
};
|
|
200
|
+
$forceUpdate: () => void;
|
|
201
|
+
$nextTick: typeof import("vue").nextTick;
|
|
202
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean>): import("vue").WatchStopHandle;
|
|
203
|
+
} & Readonly<import("vue").ExtractPropTypes<{
|
|
204
|
+
label: {
|
|
205
|
+
type: import("vue").PropType<string>;
|
|
206
|
+
default: string;
|
|
207
|
+
};
|
|
208
|
+
disabled: {
|
|
209
|
+
type: import("vue").PropType<boolean>;
|
|
210
|
+
default: boolean;
|
|
211
|
+
};
|
|
212
|
+
size: {
|
|
213
|
+
type: import("vue").PropType<"small" | "medium" | "large">;
|
|
214
|
+
default: string;
|
|
215
|
+
};
|
|
216
|
+
mandatory: {
|
|
217
|
+
type: import("vue").PropType<boolean>;
|
|
218
|
+
default: boolean;
|
|
219
|
+
};
|
|
220
|
+
testId: {
|
|
221
|
+
type: import("vue").PropType<string>;
|
|
222
|
+
default: string;
|
|
223
|
+
};
|
|
224
|
+
options: {
|
|
225
|
+
type: import("vue").PropType<unknown[] | {
|
|
226
|
+
id: string;
|
|
227
|
+
text: string;
|
|
228
|
+
}[]>;
|
|
229
|
+
required: true;
|
|
230
|
+
};
|
|
231
|
+
hoverHelpText: {
|
|
232
|
+
type: import("vue").PropType<string>;
|
|
233
|
+
default: string;
|
|
234
|
+
};
|
|
235
|
+
hoverHelpTextPlacement: {
|
|
236
|
+
type: import("vue").PropType<"auto" | "left" | "right" | "bottom" | "top" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end">;
|
|
237
|
+
default: string;
|
|
238
|
+
};
|
|
239
|
+
modelValue: {
|
|
240
|
+
type: import("vue").PropType<string | number>;
|
|
241
|
+
default: string;
|
|
242
|
+
};
|
|
243
|
+
placeholder: {
|
|
244
|
+
type: import("vue").PropType<string>;
|
|
245
|
+
default: string;
|
|
246
|
+
};
|
|
247
|
+
labelDirection: {
|
|
248
|
+
type: import("vue").PropType<"top" | "inside">;
|
|
249
|
+
default: string;
|
|
250
|
+
};
|
|
251
|
+
onSearch: {
|
|
252
|
+
type: import("vue").PropType<(option: any, term: string) => boolean>;
|
|
253
|
+
default: any;
|
|
254
|
+
};
|
|
255
|
+
displayValue: {
|
|
256
|
+
type: import("vue").PropType<(option: unknown) => string>;
|
|
257
|
+
default: (option: unknown) => string;
|
|
258
|
+
};
|
|
259
|
+
optionNameKey: {
|
|
260
|
+
type: import("vue").PropType<string>;
|
|
261
|
+
default: string;
|
|
262
|
+
};
|
|
263
|
+
optionsListWidth: {
|
|
264
|
+
type: import("vue").PropType<string>;
|
|
265
|
+
default: any;
|
|
266
|
+
};
|
|
267
|
+
}>> & {
|
|
268
|
+
"onUpdate:modelValue"?: (value: string | number) => any;
|
|
269
|
+
} & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
|
|
270
|
+
__isFragment?: never;
|
|
271
|
+
__isTeleport?: never;
|
|
272
|
+
__isSuspense?: never;
|
|
273
|
+
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
274
|
+
label: {
|
|
275
|
+
type: import("vue").PropType<string>;
|
|
276
|
+
default: string;
|
|
277
|
+
};
|
|
278
|
+
disabled: {
|
|
279
|
+
type: import("vue").PropType<boolean>;
|
|
280
|
+
default: boolean;
|
|
281
|
+
};
|
|
282
|
+
size: {
|
|
283
|
+
type: import("vue").PropType<"small" | "medium" | "large">;
|
|
284
|
+
default: string;
|
|
285
|
+
};
|
|
286
|
+
mandatory: {
|
|
287
|
+
type: import("vue").PropType<boolean>;
|
|
288
|
+
default: boolean;
|
|
289
|
+
};
|
|
290
|
+
testId: {
|
|
291
|
+
type: import("vue").PropType<string>;
|
|
292
|
+
default: string;
|
|
293
|
+
};
|
|
294
|
+
options: {
|
|
295
|
+
type: import("vue").PropType<unknown[] | {
|
|
296
|
+
id: string;
|
|
297
|
+
text: string;
|
|
298
|
+
}[]>;
|
|
299
|
+
required: true;
|
|
300
|
+
};
|
|
301
|
+
hoverHelpText: {
|
|
302
|
+
type: import("vue").PropType<string>;
|
|
303
|
+
default: string;
|
|
304
|
+
};
|
|
305
|
+
hoverHelpTextPlacement: {
|
|
306
|
+
type: import("vue").PropType<"auto" | "left" | "right" | "bottom" | "top" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end">;
|
|
307
|
+
default: string;
|
|
308
|
+
};
|
|
309
|
+
modelValue: {
|
|
310
|
+
type: import("vue").PropType<string | number>;
|
|
311
|
+
default: string;
|
|
312
|
+
};
|
|
313
|
+
placeholder: {
|
|
314
|
+
type: import("vue").PropType<string>;
|
|
315
|
+
default: string;
|
|
316
|
+
};
|
|
317
|
+
labelDirection: {
|
|
318
|
+
type: import("vue").PropType<"top" | "inside">;
|
|
319
|
+
default: string;
|
|
320
|
+
};
|
|
321
|
+
onSearch: {
|
|
322
|
+
type: import("vue").PropType<(option: any, term: string) => boolean>;
|
|
323
|
+
default: any;
|
|
324
|
+
};
|
|
325
|
+
displayValue: {
|
|
326
|
+
type: import("vue").PropType<(option: unknown) => string>;
|
|
327
|
+
default: (option: unknown) => string;
|
|
328
|
+
};
|
|
329
|
+
optionNameKey: {
|
|
330
|
+
type: import("vue").PropType<string>;
|
|
331
|
+
default: string;
|
|
332
|
+
};
|
|
333
|
+
optionsListWidth: {
|
|
334
|
+
type: import("vue").PropType<string>;
|
|
335
|
+
default: any;
|
|
336
|
+
};
|
|
337
|
+
}>> & {
|
|
338
|
+
"onUpdate:modelValue"?: (value: string | number) => any;
|
|
339
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
340
|
+
"update:modelValue": (value: string | number) => void;
|
|
341
|
+
}, string, {
|
|
342
|
+
label: string;
|
|
343
|
+
disabled: boolean;
|
|
344
|
+
size: "small" | "medium" | "large";
|
|
345
|
+
mandatory: boolean;
|
|
346
|
+
testId: string;
|
|
347
|
+
hoverHelpText: string;
|
|
348
|
+
hoverHelpTextPlacement: "auto" | "left" | "right" | "bottom" | "top" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end";
|
|
349
|
+
modelValue: string | number;
|
|
350
|
+
placeholder: string;
|
|
351
|
+
labelDirection: "top" | "inside";
|
|
352
|
+
onSearch: (option: any, term: string) => boolean;
|
|
353
|
+
displayValue: (option: unknown) => string;
|
|
354
|
+
optionNameKey: string;
|
|
355
|
+
optionsListWidth: string;
|
|
356
|
+
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
357
|
+
$slots: {
|
|
358
|
+
default?(_: {
|
|
359
|
+
option: unknown;
|
|
360
|
+
selected: boolean;
|
|
361
|
+
active: boolean;
|
|
362
|
+
}): any;
|
|
363
|
+
};
|
|
364
|
+
}))[];
|
|
365
|
+
export { default as Autocomplete } from './Autocomplete.vue';
|
|
366
|
+
export { AutocompleteTypes };
|
|
@@ -22,12 +22,12 @@ declare const CheckboxTypes: () => ({
|
|
|
22
22
|
type: import("vue").PropType<string>;
|
|
23
23
|
default: string;
|
|
24
24
|
};
|
|
25
|
-
|
|
25
|
+
isIndeterminate: {
|
|
26
26
|
type: import("vue").PropType<boolean>;
|
|
27
|
-
required: true;
|
|
28
27
|
};
|
|
29
|
-
|
|
28
|
+
isChecked: {
|
|
30
29
|
type: import("vue").PropType<boolean>;
|
|
30
|
+
required: true;
|
|
31
31
|
};
|
|
32
32
|
}>> & {
|
|
33
33
|
onClick?: (event: MouseEvent) => any;
|
|
@@ -62,12 +62,12 @@ declare const CheckboxTypes: () => ({
|
|
|
62
62
|
type: import("vue").PropType<string>;
|
|
63
63
|
default: string;
|
|
64
64
|
};
|
|
65
|
-
|
|
65
|
+
isIndeterminate: {
|
|
66
66
|
type: import("vue").PropType<boolean>;
|
|
67
|
-
required: true;
|
|
68
67
|
};
|
|
69
|
-
|
|
68
|
+
isChecked: {
|
|
70
69
|
type: import("vue").PropType<boolean>;
|
|
70
|
+
required: true;
|
|
71
71
|
};
|
|
72
72
|
}>> & {
|
|
73
73
|
onClick?: (event: MouseEvent) => any;
|
|
@@ -115,12 +115,12 @@ declare const CheckboxTypes: () => ({
|
|
|
115
115
|
type: import("vue").PropType<string>;
|
|
116
116
|
default: string;
|
|
117
117
|
};
|
|
118
|
-
|
|
118
|
+
isIndeterminate: {
|
|
119
119
|
type: import("vue").PropType<boolean>;
|
|
120
|
-
required: true;
|
|
121
120
|
};
|
|
122
|
-
|
|
121
|
+
isChecked: {
|
|
123
122
|
type: import("vue").PropType<boolean>;
|
|
123
|
+
required: true;
|
|
124
124
|
};
|
|
125
125
|
}>> & {
|
|
126
126
|
onClick?: (event: MouseEvent) => any;
|
|
@@ -145,12 +145,12 @@ declare const CheckboxTypes: () => ({
|
|
|
145
145
|
type: import("vue").PropType<string>;
|
|
146
146
|
default: string;
|
|
147
147
|
};
|
|
148
|
-
|
|
148
|
+
isIndeterminate: {
|
|
149
149
|
type: import("vue").PropType<boolean>;
|
|
150
|
-
required: true;
|
|
151
150
|
};
|
|
152
|
-
|
|
151
|
+
isChecked: {
|
|
153
152
|
type: import("vue").PropType<boolean>;
|
|
153
|
+
required: true;
|
|
154
154
|
};
|
|
155
155
|
}>> & {
|
|
156
156
|
onClick?: (event: MouseEvent) => any;
|
|
@@ -17,12 +17,12 @@ declare const CheckboxTypes: () => ({
|
|
|
17
17
|
type: import("vue").PropType<string>;
|
|
18
18
|
default: string;
|
|
19
19
|
};
|
|
20
|
-
|
|
20
|
+
isIndeterminate: {
|
|
21
21
|
type: import("vue").PropType<boolean>;
|
|
22
|
-
required: true;
|
|
23
22
|
};
|
|
24
|
-
|
|
23
|
+
isChecked: {
|
|
25
24
|
type: import("vue").PropType<boolean>;
|
|
25
|
+
required: true;
|
|
26
26
|
};
|
|
27
27
|
}>> & {
|
|
28
28
|
onClick?: (event: MouseEvent) => any;
|
|
@@ -53,12 +53,12 @@ declare const CheckboxTypes: () => ({
|
|
|
53
53
|
type: import("vue").PropType<string>;
|
|
54
54
|
default: string;
|
|
55
55
|
};
|
|
56
|
-
|
|
56
|
+
isIndeterminate: {
|
|
57
57
|
type: import("vue").PropType<boolean>;
|
|
58
|
-
required: true;
|
|
59
58
|
};
|
|
60
|
-
|
|
59
|
+
isChecked: {
|
|
61
60
|
type: import("vue").PropType<boolean>;
|
|
61
|
+
required: true;
|
|
62
62
|
};
|
|
63
63
|
}>> & {
|
|
64
64
|
onClick?: (event: MouseEvent) => any;
|
|
@@ -101,12 +101,12 @@ declare const CheckboxTypes: () => ({
|
|
|
101
101
|
type: import("vue").PropType<string>;
|
|
102
102
|
default: string;
|
|
103
103
|
};
|
|
104
|
-
|
|
104
|
+
isIndeterminate: {
|
|
105
105
|
type: import("vue").PropType<boolean>;
|
|
106
|
-
required: true;
|
|
107
106
|
};
|
|
108
|
-
|
|
107
|
+
isChecked: {
|
|
109
108
|
type: import("vue").PropType<boolean>;
|
|
109
|
+
required: true;
|
|
110
110
|
};
|
|
111
111
|
}>> & {
|
|
112
112
|
onClick?: (event: MouseEvent) => any;
|
|
@@ -127,12 +127,12 @@ declare const CheckboxTypes: () => ({
|
|
|
127
127
|
type: import("vue").PropType<string>;
|
|
128
128
|
default: string;
|
|
129
129
|
};
|
|
130
|
-
|
|
130
|
+
isIndeterminate: {
|
|
131
131
|
type: import("vue").PropType<boolean>;
|
|
132
|
-
required: true;
|
|
133
132
|
};
|
|
134
|
-
|
|
133
|
+
isChecked: {
|
|
135
134
|
type: import("vue").PropType<boolean>;
|
|
135
|
+
required: true;
|
|
136
136
|
};
|
|
137
137
|
}>> & {
|
|
138
138
|
onClick?: (event: MouseEvent) => any;
|
|
@@ -30,8 +30,8 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
30
30
|
disabled: boolean;
|
|
31
31
|
testId: string;
|
|
32
32
|
selected: boolean;
|
|
33
|
-
clearable: boolean;
|
|
34
33
|
prefix: string;
|
|
34
|
+
clearable: boolean;
|
|
35
35
|
}>, {
|
|
36
36
|
"icon-start"?(_: {}): any;
|
|
37
37
|
default?(_: {}): any;
|
|
@@ -6,8 +6,8 @@ declare const ChipTypes: () => ({
|
|
|
6
6
|
disabled: boolean;
|
|
7
7
|
testId: string;
|
|
8
8
|
selected: boolean;
|
|
9
|
-
clearable: boolean;
|
|
10
9
|
prefix: string;
|
|
10
|
+
clearable: boolean;
|
|
11
11
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
12
12
|
disabled: {
|
|
13
13
|
type: import("vue").PropType<boolean>;
|
|
@@ -21,17 +21,17 @@ declare const ChipTypes: () => ({
|
|
|
21
21
|
type: import("vue").PropType<boolean>;
|
|
22
22
|
default: boolean;
|
|
23
23
|
};
|
|
24
|
-
clearable: {
|
|
25
|
-
type: import("vue").PropType<boolean>;
|
|
26
|
-
default: boolean;
|
|
27
|
-
};
|
|
28
24
|
prefix: {
|
|
29
25
|
type: import("vue").PropType<string>;
|
|
30
26
|
default: any;
|
|
31
27
|
};
|
|
28
|
+
clearable: {
|
|
29
|
+
type: import("vue").PropType<boolean>;
|
|
30
|
+
default: boolean;
|
|
31
|
+
};
|
|
32
32
|
}>> & {
|
|
33
33
|
onCleared?: (...args: any[]) => any;
|
|
34
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "disabled" | "testId" | "selected" | "
|
|
34
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "disabled" | "testId" | "selected" | "prefix" | "clearable">;
|
|
35
35
|
$attrs: {
|
|
36
36
|
[x: string]: unknown;
|
|
37
37
|
};
|
|
@@ -58,14 +58,14 @@ declare const ChipTypes: () => ({
|
|
|
58
58
|
type: import("vue").PropType<boolean>;
|
|
59
59
|
default: boolean;
|
|
60
60
|
};
|
|
61
|
-
clearable: {
|
|
62
|
-
type: import("vue").PropType<boolean>;
|
|
63
|
-
default: boolean;
|
|
64
|
-
};
|
|
65
61
|
prefix: {
|
|
66
62
|
type: import("vue").PropType<string>;
|
|
67
63
|
default: any;
|
|
68
64
|
};
|
|
65
|
+
clearable: {
|
|
66
|
+
type: import("vue").PropType<boolean>;
|
|
67
|
+
default: boolean;
|
|
68
|
+
};
|
|
69
69
|
}>> & {
|
|
70
70
|
onCleared?: (...args: any[]) => any;
|
|
71
71
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
@@ -74,8 +74,8 @@ declare const ChipTypes: () => ({
|
|
|
74
74
|
disabled: boolean;
|
|
75
75
|
testId: string;
|
|
76
76
|
selected: boolean;
|
|
77
|
-
clearable: boolean;
|
|
78
77
|
prefix: string;
|
|
78
|
+
clearable: boolean;
|
|
79
79
|
}, {}, string> & {
|
|
80
80
|
beforeCreate?: (() => void) | (() => void)[];
|
|
81
81
|
created?: (() => void) | (() => void)[];
|
|
@@ -109,14 +109,14 @@ declare const ChipTypes: () => ({
|
|
|
109
109
|
type: import("vue").PropType<boolean>;
|
|
110
110
|
default: boolean;
|
|
111
111
|
};
|
|
112
|
-
clearable: {
|
|
113
|
-
type: import("vue").PropType<boolean>;
|
|
114
|
-
default: boolean;
|
|
115
|
-
};
|
|
116
112
|
prefix: {
|
|
117
113
|
type: import("vue").PropType<string>;
|
|
118
114
|
default: any;
|
|
119
115
|
};
|
|
116
|
+
clearable: {
|
|
117
|
+
type: import("vue").PropType<boolean>;
|
|
118
|
+
default: boolean;
|
|
119
|
+
};
|
|
120
120
|
}>> & {
|
|
121
121
|
onCleared?: (...args: any[]) => any;
|
|
122
122
|
} & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
|
|
@@ -136,14 +136,14 @@ declare const ChipTypes: () => ({
|
|
|
136
136
|
type: import("vue").PropType<boolean>;
|
|
137
137
|
default: boolean;
|
|
138
138
|
};
|
|
139
|
-
clearable: {
|
|
140
|
-
type: import("vue").PropType<boolean>;
|
|
141
|
-
default: boolean;
|
|
142
|
-
};
|
|
143
139
|
prefix: {
|
|
144
140
|
type: import("vue").PropType<string>;
|
|
145
141
|
default: any;
|
|
146
142
|
};
|
|
143
|
+
clearable: {
|
|
144
|
+
type: import("vue").PropType<boolean>;
|
|
145
|
+
default: boolean;
|
|
146
|
+
};
|
|
147
147
|
}>> & {
|
|
148
148
|
onCleared?: (...args: any[]) => any;
|
|
149
149
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
@@ -152,8 +152,8 @@ declare const ChipTypes: () => ({
|
|
|
152
152
|
disabled: boolean;
|
|
153
153
|
testId: string;
|
|
154
154
|
selected: boolean;
|
|
155
|
-
clearable: boolean;
|
|
156
155
|
prefix: string;
|
|
156
|
+
clearable: boolean;
|
|
157
157
|
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
158
158
|
$slots: {
|
|
159
159
|
"icon-start"?(_: {}): any;
|
|
@@ -30,8 +30,8 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
30
30
|
disabled: boolean;
|
|
31
31
|
testId: string;
|
|
32
32
|
selected: boolean;
|
|
33
|
-
clearable: boolean;
|
|
34
33
|
prefix: string;
|
|
34
|
+
clearable: boolean;
|
|
35
35
|
}>, {
|
|
36
36
|
"icon-start"?(_: {}): any;
|
|
37
37
|
default?(_: {}): any;
|