@ghentcdh/ui 2.0.0 → 3.0.1
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/ControlWrapper-C7br-nwU.js +152 -0
- package/ControlWrapper-Ckzwap0M.js +1 -0
- package/Markdown-BjFpy32Y.js +59 -0
- package/Markdown-DRCEgDfZ.js +1 -0
- package/alert/alert.vue.d.ts +7 -11
- package/button/btn-badge.vue.d.ts +8 -12
- package/button/btn.vue.d.ts +7 -11
- package/card/card.vue.d.ts +13 -14
- package/collapse/Collapse.vue.d.ts +12 -14
- package/collapse/CollapseRow.vue.d.ts +8 -12
- package/drawer/drawer.vue.d.ts +12 -14
- package/filter/filter.vue.d.ts +4 -3
- package/form/Checkbox.vue.d.ts +11 -10
- package/form/Input.vue.d.ts +11 -10
- package/form/InputNumber.vue.d.ts +11 -10
- package/form/Textarea.vue.d.ts +13 -12
- package/form/core/ControlWrapper.vue.d.ts +17 -20
- package/form/index.d.ts +10 -10
- package/form/select/AutoComplete.vue.d.ts +14 -15
- package/form/select/ListResults.vue.d.ts +4 -5
- package/form/select/MultiSelect.vue.d.ts +13 -12
- package/form/select/SelectComponent.vue.d.ts +13 -12
- package/form/select/SelectWrapper.vue.d.ts +18 -160
- package/form/text/Markdown.vue.d.ts +12 -11
- package/form/text/MarkdownFallback.vue.d.ts +12 -11
- package/icons/icon.vue.d.ts +2 -1
- package/index.css +3 -1
- package/index.js +2 -1
- package/index.mjs +2330 -67
- package/loading/loading.vue.d.ts +2 -1
- package/menu/dropdown.vue.d.ts +2 -1
- package/menu/menu-item.vue.d.ts +2 -1
- package/menu/menu.vue.d.ts +2 -1
- package/menu/sub-menu.vue.d.ts +2 -1
- package/modal/confirmModal.vue.d.ts +3 -2
- package/modal/modal.vue.d.ts +12 -18
- package/modal/modalWrapper.vue.d.ts +2 -1
- package/package.json +9 -9
- package/shell/shell.component.vue.d.ts +7 -11
- package/table/cells/boolean.cell.vue.d.ts +3 -2
- package/table/cells/text.cell.vue.d.ts +3 -2
- package/table/header/sort.header.vue.d.ts +3 -2
- package/table/pagination-button.component.vue.d.ts +2 -1
- package/table/pagination.component.vue.d.ts +3 -2
- package/table/table.component.vue.d.ts +4 -3
- package/testing.js +1 -1
- package/testing.mjs +338 -419
- package/toast/notification-message.vue.d.ts +2 -1
- package/toast/notifications.vue.d.ts +2 -1
- package/tree/TreeItem.vue.d.ts +3 -2
- package/tree/TreeView.vue.d.ts +3 -2
- package/Markdown-C7ZNnPQB.js +0 -1
- package/Markdown-OZGmR-pI.js +0 -76
- package/index-NGeplssl.js +0 -2
- package/index-WrdKkd9c.js +0 -2633
package/form/Textarea.vue.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
declare const
|
|
1
|
+
declare const __VLS_export: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
2
2
|
rows: {
|
|
3
3
|
type: NumberConstructor;
|
|
4
4
|
default: number;
|
|
@@ -112,7 +112,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
112
112
|
type: import('vue').PropType<string>;
|
|
113
113
|
};
|
|
114
114
|
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
115
|
-
"update:modelValue": (value: string) =>
|
|
115
|
+
"update:modelValue": (value: string | undefined) => any;
|
|
116
116
|
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
117
117
|
rows: {
|
|
118
118
|
type: NumberConstructor;
|
|
@@ -227,7 +227,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
227
227
|
type: import('vue').PropType<string>;
|
|
228
228
|
};
|
|
229
229
|
}>> & Readonly<{
|
|
230
|
-
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
230
|
+
"onUpdate:modelValue"?: ((value: string | undefined) => any) | undefined;
|
|
231
231
|
}>, {
|
|
232
232
|
size: string;
|
|
233
233
|
label: string;
|
|
@@ -236,6 +236,13 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
236
236
|
id: string;
|
|
237
237
|
placeholder: string;
|
|
238
238
|
width: string;
|
|
239
|
+
errors: string;
|
|
240
|
+
isTouched: boolean;
|
|
241
|
+
description: string;
|
|
242
|
+
visible: boolean;
|
|
243
|
+
enabled: boolean;
|
|
244
|
+
isFocused: boolean;
|
|
245
|
+
hideLabel: boolean;
|
|
239
246
|
styles: {
|
|
240
247
|
readonly group: {
|
|
241
248
|
readonly root: "group";
|
|
@@ -270,16 +277,10 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
270
277
|
readonly item: "w-full";
|
|
271
278
|
};
|
|
272
279
|
};
|
|
273
|
-
hideLabel: boolean;
|
|
274
|
-
minHeight: string;
|
|
275
|
-
visible: boolean;
|
|
276
|
-
errors: string;
|
|
277
|
-
isTouched: boolean;
|
|
278
|
-
description: string;
|
|
279
|
-
enabled: boolean;
|
|
280
|
-
isFocused: boolean;
|
|
281
280
|
hideErrors: boolean;
|
|
281
|
+
minHeight: string;
|
|
282
282
|
rows: number;
|
|
283
283
|
height: string;
|
|
284
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {},
|
|
284
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
285
|
+
declare const _default: typeof __VLS_export;
|
|
285
286
|
export default _default;
|
|
@@ -1,14 +1,10 @@
|
|
|
1
|
-
declare
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
};
|
|
7
|
-
refs: {};
|
|
8
|
-
rootEl: HTMLFieldSetElement;
|
|
1
|
+
declare var __VLS_1: {}, __VLS_3: {};
|
|
2
|
+
type __VLS_Slots = {} & {
|
|
3
|
+
'label-action'?: (props: typeof __VLS_1) => any;
|
|
4
|
+
} & {
|
|
5
|
+
default?: (props: typeof __VLS_3) => any;
|
|
9
6
|
};
|
|
10
|
-
|
|
11
|
-
declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
7
|
+
declare const __VLS_base: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
12
8
|
id: {
|
|
13
9
|
type: StringConstructor;
|
|
14
10
|
default: undefined;
|
|
@@ -203,6 +199,13 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
203
199
|
id: string;
|
|
204
200
|
placeholder: string;
|
|
205
201
|
width: string;
|
|
202
|
+
errors: string;
|
|
203
|
+
isTouched: boolean;
|
|
204
|
+
description: string;
|
|
205
|
+
visible: boolean;
|
|
206
|
+
enabled: boolean;
|
|
207
|
+
isFocused: boolean;
|
|
208
|
+
hideLabel: boolean;
|
|
206
209
|
styles: {
|
|
207
210
|
readonly group: {
|
|
208
211
|
readonly root: "group";
|
|
@@ -237,18 +240,12 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
237
240
|
readonly item: "w-full";
|
|
238
241
|
};
|
|
239
242
|
};
|
|
240
|
-
hideLabel: boolean;
|
|
241
|
-
visible: boolean;
|
|
242
|
-
errors: string;
|
|
243
|
-
isTouched: boolean;
|
|
244
|
-
description: string;
|
|
245
|
-
enabled: boolean;
|
|
246
|
-
isFocused: boolean;
|
|
247
243
|
hideErrors: boolean;
|
|
248
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {},
|
|
249
|
-
declare const
|
|
244
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
245
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
246
|
+
declare const _default: typeof __VLS_export;
|
|
250
247
|
export default _default;
|
|
251
|
-
type
|
|
248
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
252
249
|
new (): {
|
|
253
250
|
$slots: S;
|
|
254
251
|
};
|
package/form/index.d.ts
CHANGED
|
@@ -118,7 +118,7 @@ export declare const Markdown: import('vue').DefineComponent<import('vue').Extra
|
|
|
118
118
|
type: import('vue').PropType<any>;
|
|
119
119
|
};
|
|
120
120
|
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
121
|
-
"update:modelValue": (value: any) =>
|
|
121
|
+
"update:modelValue": (value: any) => any;
|
|
122
122
|
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
123
123
|
width: {
|
|
124
124
|
type: StringConstructor;
|
|
@@ -234,6 +234,13 @@ export declare const Markdown: import('vue').DefineComponent<import('vue').Extra
|
|
|
234
234
|
placeholder: string;
|
|
235
235
|
width: string;
|
|
236
236
|
actions: import('./text/MarkdownComponent.properties').ToolbarAction[];
|
|
237
|
+
errors: string;
|
|
238
|
+
isTouched: boolean;
|
|
239
|
+
description: string;
|
|
240
|
+
visible: boolean;
|
|
241
|
+
enabled: boolean;
|
|
242
|
+
isFocused: boolean;
|
|
243
|
+
hideLabel: boolean;
|
|
237
244
|
styles: {
|
|
238
245
|
readonly group: {
|
|
239
246
|
readonly root: "group";
|
|
@@ -268,16 +275,9 @@ export declare const Markdown: import('vue').DefineComponent<import('vue').Extra
|
|
|
268
275
|
readonly item: "w-full";
|
|
269
276
|
};
|
|
270
277
|
};
|
|
271
|
-
hideLabel: boolean;
|
|
272
|
-
minHeight: string;
|
|
273
|
-
visible: boolean;
|
|
274
|
-
errors: string;
|
|
275
|
-
isTouched: boolean;
|
|
276
|
-
description: string;
|
|
277
|
-
enabled: boolean;
|
|
278
|
-
isFocused: boolean;
|
|
279
278
|
hideErrors: boolean;
|
|
280
|
-
|
|
279
|
+
minHeight: string;
|
|
280
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
281
281
|
export { default as Checkbox } from './Checkbox.vue';
|
|
282
282
|
export { default as Input } from './Input.vue';
|
|
283
283
|
export { default as InputNumber } from './InputNumber.vue';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { OptionValue } from './ListResults.properties';
|
|
2
|
-
declare const
|
|
2
|
+
declare const __VLS_export: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
3
3
|
modelValue: {
|
|
4
4
|
type: (StringConstructor | ObjectConstructor)[];
|
|
5
5
|
default: string;
|
|
@@ -329,8 +329,13 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
329
329
|
query: string;
|
|
330
330
|
width: string;
|
|
331
331
|
value: any;
|
|
332
|
-
|
|
333
|
-
|
|
332
|
+
errors: string;
|
|
333
|
+
isTouched: boolean;
|
|
334
|
+
description: string;
|
|
335
|
+
visible: boolean;
|
|
336
|
+
enabled: boolean;
|
|
337
|
+
isFocused: boolean;
|
|
338
|
+
hideLabel: boolean;
|
|
334
339
|
styles: {
|
|
335
340
|
readonly group: {
|
|
336
341
|
readonly root: "group";
|
|
@@ -365,24 +370,18 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
365
370
|
readonly item: "w-full";
|
|
366
371
|
};
|
|
367
372
|
};
|
|
368
|
-
hideLabel: boolean;
|
|
369
|
-
freeText: boolean;
|
|
370
|
-
enableCreate: boolean;
|
|
371
|
-
visible: boolean;
|
|
372
|
-
errors: string;
|
|
373
|
-
isTouched: boolean;
|
|
374
|
-
description: string;
|
|
375
|
-
enabled: boolean;
|
|
376
|
-
isFocused: boolean;
|
|
377
373
|
hideErrors: boolean;
|
|
378
374
|
modelValue: string | Record<string, any>;
|
|
379
375
|
isLoading: boolean;
|
|
380
376
|
teleported: boolean;
|
|
377
|
+
labelKey: string;
|
|
378
|
+
valueKey: string;
|
|
379
|
+
enableCreate: boolean;
|
|
381
380
|
clearable: boolean;
|
|
382
381
|
fetchOptions: Function;
|
|
383
382
|
debounceMs: number;
|
|
384
383
|
maxResults: number;
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
384
|
+
freeText: boolean;
|
|
385
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
386
|
+
declare const _default: typeof __VLS_export;
|
|
388
387
|
export default _default;
|
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
import { OptionValue } from './ListResults.properties';
|
|
2
2
|
export declare function highlight(isActive: boolean, text: string, query: string): string;
|
|
3
|
-
declare const _default:
|
|
3
|
+
declare const _default: typeof __VLS_export;
|
|
4
|
+
export default _default;
|
|
5
|
+
declare const __VLS_export: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
4
6
|
options: {
|
|
5
7
|
type: import('vue').PropType<Array<OptionValue>>;
|
|
6
8
|
required: false;
|
|
@@ -49,7 +51,4 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
49
51
|
query: string;
|
|
50
52
|
isLoading: boolean;
|
|
51
53
|
teleported: boolean;
|
|
52
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {
|
|
53
|
-
listRef: HTMLUListElement;
|
|
54
|
-
}, HTMLUListElement>;
|
|
55
|
-
export default _default;
|
|
54
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
declare const
|
|
1
|
+
declare const __VLS_export: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
2
2
|
isOpen: {
|
|
3
3
|
type: BooleanConstructor;
|
|
4
4
|
default: boolean;
|
|
@@ -302,8 +302,13 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
302
302
|
query: string;
|
|
303
303
|
width: string;
|
|
304
304
|
value: any;
|
|
305
|
-
|
|
306
|
-
|
|
305
|
+
errors: string;
|
|
306
|
+
isTouched: boolean;
|
|
307
|
+
description: string;
|
|
308
|
+
visible: boolean;
|
|
309
|
+
enabled: boolean;
|
|
310
|
+
isFocused: boolean;
|
|
311
|
+
hideLabel: boolean;
|
|
307
312
|
styles: {
|
|
308
313
|
readonly group: {
|
|
309
314
|
readonly root: "group";
|
|
@@ -338,18 +343,14 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
338
343
|
readonly item: "w-full";
|
|
339
344
|
};
|
|
340
345
|
};
|
|
341
|
-
hideLabel: boolean;
|
|
342
|
-
enableCreate: boolean;
|
|
343
|
-
visible: boolean;
|
|
344
|
-
errors: string;
|
|
345
|
-
isTouched: boolean;
|
|
346
|
-
description: string;
|
|
347
|
-
enabled: boolean;
|
|
348
|
-
isFocused: boolean;
|
|
349
346
|
hideErrors: boolean;
|
|
350
347
|
isLoading: boolean;
|
|
351
348
|
teleported: boolean;
|
|
352
349
|
isOpen: boolean;
|
|
350
|
+
labelKey: string;
|
|
351
|
+
valueKey: string;
|
|
352
|
+
enableCreate: boolean;
|
|
353
353
|
clearable: boolean;
|
|
354
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {},
|
|
354
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
355
|
+
declare const _default: typeof __VLS_export;
|
|
355
356
|
export default _default;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
declare const
|
|
1
|
+
declare const __VLS_export: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
2
2
|
options: {
|
|
3
3
|
type: import('vue').PropType<Array<any>>;
|
|
4
4
|
required: true;
|
|
@@ -260,8 +260,13 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
260
260
|
placeholder: string;
|
|
261
261
|
width: string;
|
|
262
262
|
value: any;
|
|
263
|
-
|
|
264
|
-
|
|
263
|
+
errors: string;
|
|
264
|
+
isTouched: boolean;
|
|
265
|
+
description: string;
|
|
266
|
+
visible: boolean;
|
|
267
|
+
enabled: boolean;
|
|
268
|
+
isFocused: boolean;
|
|
269
|
+
hideLabel: boolean;
|
|
265
270
|
styles: {
|
|
266
271
|
readonly group: {
|
|
267
272
|
readonly root: "group";
|
|
@@ -296,15 +301,11 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
296
301
|
readonly item: "w-full";
|
|
297
302
|
};
|
|
298
303
|
};
|
|
299
|
-
hideLabel: boolean;
|
|
300
|
-
enableCreate: boolean;
|
|
301
|
-
visible: boolean;
|
|
302
|
-
errors: string;
|
|
303
|
-
isTouched: boolean;
|
|
304
|
-
description: string;
|
|
305
|
-
enabled: boolean;
|
|
306
|
-
isFocused: boolean;
|
|
307
304
|
hideErrors: boolean;
|
|
305
|
+
labelKey: string;
|
|
306
|
+
valueKey: string;
|
|
307
|
+
enableCreate: boolean;
|
|
308
308
|
clearable: boolean;
|
|
309
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {},
|
|
309
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
310
|
+
declare const _default: typeof __VLS_export;
|
|
310
311
|
export default _default;
|
|
@@ -1,82 +1,8 @@
|
|
|
1
|
-
declare
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
default?(_: {}): any;
|
|
5
|
-
};
|
|
6
|
-
refs: {
|
|
7
|
-
selectWrapperRef: HTMLDivElement;
|
|
8
|
-
inputWrapperRef: HTMLDivElement;
|
|
9
|
-
listResultsRef: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('vue').ExtractPropTypes<{
|
|
10
|
-
options: {
|
|
11
|
-
type: import('vue').PropType<Array<import('./ListResults.properties').OptionValue>>;
|
|
12
|
-
required: false;
|
|
13
|
-
};
|
|
14
|
-
isLoading: {
|
|
15
|
-
type: BooleanConstructor;
|
|
16
|
-
default: boolean;
|
|
17
|
-
};
|
|
18
|
-
query: {
|
|
19
|
-
type: StringConstructor;
|
|
20
|
-
default: undefined;
|
|
21
|
-
};
|
|
22
|
-
isActive: {
|
|
23
|
-
type: FunctionConstructor;
|
|
24
|
-
default: (item: any) => boolean;
|
|
25
|
-
};
|
|
26
|
-
teleported: {
|
|
27
|
-
type: BooleanConstructor;
|
|
28
|
-
default: boolean;
|
|
29
|
-
};
|
|
30
|
-
}>> & Readonly<{}>, {
|
|
31
|
-
handleKeydown: (e: KeyboardEvent) => void;
|
|
32
|
-
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
|
|
33
|
-
isActive: Function;
|
|
34
|
-
query: string;
|
|
35
|
-
isLoading: boolean;
|
|
36
|
-
teleported: boolean;
|
|
37
|
-
}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
|
|
38
|
-
listRef: HTMLUListElement;
|
|
39
|
-
}, HTMLUListElement, import('vue').ComponentProvideOptions, {
|
|
40
|
-
P: {};
|
|
41
|
-
B: {};
|
|
42
|
-
D: {};
|
|
43
|
-
C: {};
|
|
44
|
-
M: {};
|
|
45
|
-
Defaults: {};
|
|
46
|
-
}, Readonly<import('vue').ExtractPropTypes<{
|
|
47
|
-
options: {
|
|
48
|
-
type: import('vue').PropType<Array<import('./ListResults.properties').OptionValue>>;
|
|
49
|
-
required: false;
|
|
50
|
-
};
|
|
51
|
-
isLoading: {
|
|
52
|
-
type: BooleanConstructor;
|
|
53
|
-
default: boolean;
|
|
54
|
-
};
|
|
55
|
-
query: {
|
|
56
|
-
type: StringConstructor;
|
|
57
|
-
default: undefined;
|
|
58
|
-
};
|
|
59
|
-
isActive: {
|
|
60
|
-
type: FunctionConstructor;
|
|
61
|
-
default: (item: any) => boolean;
|
|
62
|
-
};
|
|
63
|
-
teleported: {
|
|
64
|
-
type: BooleanConstructor;
|
|
65
|
-
default: boolean;
|
|
66
|
-
};
|
|
67
|
-
}>> & Readonly<{}>, {
|
|
68
|
-
handleKeydown: (e: KeyboardEvent) => void;
|
|
69
|
-
}, {}, {}, {}, {
|
|
70
|
-
isActive: Function;
|
|
71
|
-
query: string;
|
|
72
|
-
isLoading: boolean;
|
|
73
|
-
teleported: boolean;
|
|
74
|
-
}> | null;
|
|
75
|
-
};
|
|
76
|
-
rootEl: HTMLDivElement;
|
|
1
|
+
declare var __VLS_7: {};
|
|
2
|
+
type __VLS_Slots = {} & {
|
|
3
|
+
default?: (props: typeof __VLS_7) => any;
|
|
77
4
|
};
|
|
78
|
-
|
|
79
|
-
declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
5
|
+
declare const __VLS_base: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
80
6
|
isOpen: {
|
|
81
7
|
type: BooleanConstructor;
|
|
82
8
|
default: boolean;
|
|
@@ -362,8 +288,13 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
362
288
|
query: string;
|
|
363
289
|
width: string;
|
|
364
290
|
value: any;
|
|
365
|
-
|
|
366
|
-
|
|
291
|
+
errors: string;
|
|
292
|
+
isTouched: boolean;
|
|
293
|
+
description: string;
|
|
294
|
+
visible: boolean;
|
|
295
|
+
enabled: boolean;
|
|
296
|
+
isFocused: boolean;
|
|
297
|
+
hideLabel: boolean;
|
|
367
298
|
styles: {
|
|
368
299
|
readonly group: {
|
|
369
300
|
readonly root: "group";
|
|
@@ -398,92 +329,19 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
398
329
|
readonly item: "w-full";
|
|
399
330
|
};
|
|
400
331
|
};
|
|
401
|
-
hideLabel: boolean;
|
|
402
|
-
enableCreate: boolean;
|
|
403
|
-
visible: boolean;
|
|
404
|
-
errors: string;
|
|
405
|
-
isTouched: boolean;
|
|
406
|
-
description: string;
|
|
407
|
-
enabled: boolean;
|
|
408
|
-
isFocused: boolean;
|
|
409
332
|
hideErrors: boolean;
|
|
410
333
|
isLoading: boolean;
|
|
411
334
|
teleported: boolean;
|
|
412
335
|
isOpen: boolean;
|
|
336
|
+
labelKey: string;
|
|
337
|
+
valueKey: string;
|
|
338
|
+
enableCreate: boolean;
|
|
413
339
|
clearable: boolean;
|
|
414
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
listResultsRef: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('vue').ExtractPropTypes<{
|
|
418
|
-
options: {
|
|
419
|
-
type: import('vue').PropType<Array<import('./ListResults.properties').OptionValue>>;
|
|
420
|
-
required: false;
|
|
421
|
-
};
|
|
422
|
-
isLoading: {
|
|
423
|
-
type: BooleanConstructor;
|
|
424
|
-
default: boolean;
|
|
425
|
-
};
|
|
426
|
-
query: {
|
|
427
|
-
type: StringConstructor;
|
|
428
|
-
default: undefined;
|
|
429
|
-
};
|
|
430
|
-
isActive: {
|
|
431
|
-
type: FunctionConstructor;
|
|
432
|
-
default: (item: any) => boolean;
|
|
433
|
-
};
|
|
434
|
-
teleported: {
|
|
435
|
-
type: BooleanConstructor;
|
|
436
|
-
default: boolean;
|
|
437
|
-
};
|
|
438
|
-
}>> & Readonly<{}>, {
|
|
439
|
-
handleKeydown: (e: KeyboardEvent) => void;
|
|
440
|
-
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
|
|
441
|
-
isActive: Function;
|
|
442
|
-
query: string;
|
|
443
|
-
isLoading: boolean;
|
|
444
|
-
teleported: boolean;
|
|
445
|
-
}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
|
|
446
|
-
listRef: HTMLUListElement;
|
|
447
|
-
}, HTMLUListElement, import('vue').ComponentProvideOptions, {
|
|
448
|
-
P: {};
|
|
449
|
-
B: {};
|
|
450
|
-
D: {};
|
|
451
|
-
C: {};
|
|
452
|
-
M: {};
|
|
453
|
-
Defaults: {};
|
|
454
|
-
}, Readonly<import('vue').ExtractPropTypes<{
|
|
455
|
-
options: {
|
|
456
|
-
type: import('vue').PropType<Array<import('./ListResults.properties').OptionValue>>;
|
|
457
|
-
required: false;
|
|
458
|
-
};
|
|
459
|
-
isLoading: {
|
|
460
|
-
type: BooleanConstructor;
|
|
461
|
-
default: boolean;
|
|
462
|
-
};
|
|
463
|
-
query: {
|
|
464
|
-
type: StringConstructor;
|
|
465
|
-
default: undefined;
|
|
466
|
-
};
|
|
467
|
-
isActive: {
|
|
468
|
-
type: FunctionConstructor;
|
|
469
|
-
default: (item: any) => boolean;
|
|
470
|
-
};
|
|
471
|
-
teleported: {
|
|
472
|
-
type: BooleanConstructor;
|
|
473
|
-
default: boolean;
|
|
474
|
-
};
|
|
475
|
-
}>> & Readonly<{}>, {
|
|
476
|
-
handleKeydown: (e: KeyboardEvent) => void;
|
|
477
|
-
}, {}, {}, {}, {
|
|
478
|
-
isActive: Function;
|
|
479
|
-
query: string;
|
|
480
|
-
isLoading: boolean;
|
|
481
|
-
teleported: boolean;
|
|
482
|
-
}> | null;
|
|
483
|
-
}, HTMLDivElement>;
|
|
484
|
-
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
340
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
341
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
342
|
+
declare const _default: typeof __VLS_export;
|
|
485
343
|
export default _default;
|
|
486
|
-
type
|
|
344
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
487
345
|
new (): {
|
|
488
346
|
$slots: S;
|
|
489
347
|
};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
declare const
|
|
1
|
+
declare const __VLS_export: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
2
2
|
width: {
|
|
3
3
|
type: StringConstructor;
|
|
4
4
|
default: string;
|
|
@@ -104,7 +104,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
104
104
|
type: import('vue').PropType<any>;
|
|
105
105
|
};
|
|
106
106
|
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
107
|
-
"update:modelValue": (value: any) =>
|
|
107
|
+
"update:modelValue": (value: any) => any;
|
|
108
108
|
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
109
109
|
width: {
|
|
110
110
|
type: StringConstructor;
|
|
@@ -220,6 +220,13 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
220
220
|
placeholder: string;
|
|
221
221
|
width: string;
|
|
222
222
|
actions: import('./MarkdownComponent.properties').ToolbarAction[];
|
|
223
|
+
errors: string;
|
|
224
|
+
isTouched: boolean;
|
|
225
|
+
description: string;
|
|
226
|
+
visible: boolean;
|
|
227
|
+
enabled: boolean;
|
|
228
|
+
isFocused: boolean;
|
|
229
|
+
hideLabel: boolean;
|
|
223
230
|
styles: {
|
|
224
231
|
readonly group: {
|
|
225
232
|
readonly root: "group";
|
|
@@ -254,14 +261,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
254
261
|
readonly item: "w-full";
|
|
255
262
|
};
|
|
256
263
|
};
|
|
257
|
-
hideLabel: boolean;
|
|
258
|
-
minHeight: string;
|
|
259
|
-
visible: boolean;
|
|
260
|
-
errors: string;
|
|
261
|
-
isTouched: boolean;
|
|
262
|
-
description: string;
|
|
263
|
-
enabled: boolean;
|
|
264
|
-
isFocused: boolean;
|
|
265
264
|
hideErrors: boolean;
|
|
266
|
-
|
|
265
|
+
minHeight: string;
|
|
266
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
267
|
+
declare const _default: typeof __VLS_export;
|
|
267
268
|
export default _default;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
declare const
|
|
1
|
+
declare const __VLS_export: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
2
2
|
width: {
|
|
3
3
|
type: StringConstructor;
|
|
4
4
|
default: string;
|
|
@@ -104,7 +104,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
104
104
|
type: import('vue').PropType<any>;
|
|
105
105
|
};
|
|
106
106
|
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
107
|
-
"update:modelValue": (value: any) =>
|
|
107
|
+
"update:modelValue": (value: any) => any;
|
|
108
108
|
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
109
109
|
width: {
|
|
110
110
|
type: StringConstructor;
|
|
@@ -220,6 +220,13 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
220
220
|
placeholder: string;
|
|
221
221
|
width: string;
|
|
222
222
|
actions: import('./MarkdownComponent.properties').ToolbarAction[];
|
|
223
|
+
errors: string;
|
|
224
|
+
isTouched: boolean;
|
|
225
|
+
description: string;
|
|
226
|
+
visible: boolean;
|
|
227
|
+
enabled: boolean;
|
|
228
|
+
isFocused: boolean;
|
|
229
|
+
hideLabel: boolean;
|
|
223
230
|
styles: {
|
|
224
231
|
readonly group: {
|
|
225
232
|
readonly root: "group";
|
|
@@ -254,14 +261,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
254
261
|
readonly item: "w-full";
|
|
255
262
|
};
|
|
256
263
|
};
|
|
257
|
-
hideLabel: boolean;
|
|
258
|
-
minHeight: string;
|
|
259
|
-
visible: boolean;
|
|
260
|
-
errors: string;
|
|
261
|
-
isTouched: boolean;
|
|
262
|
-
description: string;
|
|
263
|
-
enabled: boolean;
|
|
264
|
-
isFocused: boolean;
|
|
265
264
|
hideErrors: boolean;
|
|
266
|
-
|
|
265
|
+
minHeight: string;
|
|
266
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
267
|
+
declare const _default: typeof __VLS_export;
|
|
267
268
|
export default _default;
|
package/icons/icon.vue.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
declare const
|
|
1
|
+
declare const __VLS_export: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
2
2
|
icon: {
|
|
3
3
|
type: import('vue').PropType<import('./icon-list').IconProp>;
|
|
4
4
|
};
|
|
@@ -13,4 +13,5 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
13
13
|
type: import('vue').PropType<import('..').Size>;
|
|
14
14
|
};
|
|
15
15
|
}>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
16
|
+
declare const _default: typeof __VLS_export;
|
|
16
17
|
export default _default;
|