@ghentcdh/ui 1.1.1 → 3.0.0

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.
Files changed (55) hide show
  1. package/ControlWrapper-DejmeYzV.js +1 -0
  2. package/ControlWrapper-DqO2d36v.js +152 -0
  3. package/Markdown-DcpBYoNe.js +1 -0
  4. package/Markdown-Dj1gzJJq.js +59 -0
  5. package/button/Btn.properties.d.ts +6 -2
  6. package/button/btn.vue.d.ts +15 -5
  7. package/const/colors.d.ts +2 -1
  8. package/drawer/drawer.properties.d.ts +4 -0
  9. package/drawer/drawer.vue.d.ts +9 -0
  10. package/filter/filter.vue.d.ts +1 -1
  11. package/form/Checkbox.properties.d.ts +14 -1
  12. package/form/Checkbox.vue.d.ts +41 -8
  13. package/form/Input.properties.d.ts +18 -1
  14. package/form/Input.vue.d.ts +50 -8
  15. package/form/InputNumber.properties.d.ts +14 -1
  16. package/form/InputNumber.vue.d.ts +41 -8
  17. package/form/Textarea.properties.d.ts +26 -1
  18. package/form/Textarea.vue.d.ts +68 -8
  19. package/form/core/ControlWrapper.properties.d.ts +54 -1
  20. package/form/core/ControlWrapper.vue.d.ts +42 -8
  21. package/form/core/properties.d.ts +2 -16
  22. package/form/core/styles.d.ts +1 -1
  23. package/form/core/utils/style.d.ts +3 -3
  24. package/form/index.d.ts +273 -1
  25. package/form/select/AutoComplete.properties.d.ts +27 -2
  26. package/form/select/AutoComplete.vue.d.ts +75 -15
  27. package/form/select/ListResults.properties.d.ts +7 -1
  28. package/form/select/ListResults.vue.d.ts +12 -3
  29. package/form/select/MultiSelect.vue.d.ts +73 -13
  30. package/form/select/SelectComponent.vue.d.ts +61 -10
  31. package/form/select/SelectWrapper.properties.d.ts +57 -9
  32. package/form/select/SelectWrapper.vue.d.ts +99 -17
  33. package/form/text/Markdown.vue.d.ts +41 -8
  34. package/form/text/MarkdownComponent.properties.d.ts +14 -1
  35. package/form/text/MarkdownFallback.vue.d.ts +267 -0
  36. package/icons/icon-list.d.ts +3 -1
  37. package/index.css +3 -1
  38. package/index.d.ts +1 -0
  39. package/index.js +2 -2
  40. package/index.mjs +2318 -2359
  41. package/modal/modal.vue.d.ts +1 -0
  42. package/package.json +26 -16
  43. package/table/cells/text.cell.vue.d.ts +1 -1
  44. package/table/column.model.d.ts +6 -0
  45. package/table/header/sort.header.properties.d.ts +1 -1
  46. package/table/header/sort.header.vue.d.ts +2 -2
  47. package/table/index.d.ts +2 -0
  48. package/table/pagination.component.properties.d.ts +5 -0
  49. package/table/pagination.component.vue.d.ts +9 -0
  50. package/table/table.component.properties.d.ts +4 -0
  51. package/table/table.component.vue.d.ts +9 -0
  52. package/table/table.model.d.ts +4 -1
  53. package/testing.js +1 -1
  54. package/testing.mjs +338 -419
  55. package/test-utils/withSetup.d.ts +0 -4
@@ -30,12 +30,16 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
30
30
  };
31
31
  query: {
32
32
  type: StringConstructor;
33
- default: null;
33
+ default: undefined;
34
34
  };
35
35
  isActive: {
36
36
  type: FunctionConstructor;
37
37
  default: (item: any) => boolean;
38
38
  };
39
+ teleported: {
40
+ type: BooleanConstructor;
41
+ default: boolean;
42
+ };
39
43
  labelKey: {
40
44
  type: StringConstructor;
41
45
  default: string;
@@ -48,20 +52,33 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
48
52
  type: BooleanConstructor;
49
53
  default: boolean;
50
54
  };
55
+ clearable: {
56
+ type: BooleanConstructor;
57
+ default: boolean;
58
+ };
59
+ value: {
60
+ type: import('vue').PropType<any>;
61
+ default: undefined;
62
+ };
51
63
  id: {
52
64
  type: StringConstructor;
65
+ default: undefined;
53
66
  };
54
67
  placeholder: {
55
68
  type: StringConstructor;
69
+ default: undefined;
56
70
  };
57
71
  description: {
58
72
  type: StringConstructor;
73
+ default: undefined;
59
74
  };
60
75
  errors: {
61
76
  type: StringConstructor;
77
+ default: undefined;
62
78
  };
63
79
  label: {
64
80
  type: StringConstructor;
81
+ default: undefined;
65
82
  };
66
83
  visible: {
67
84
  type: BooleanConstructor;
@@ -113,7 +130,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
113
130
  readonly label: "fieldset-legend";
114
131
  readonly error: "";
115
132
  readonly input: "input";
116
- readonly textarea: "input h-32";
133
+ readonly textarea: "textarea h-32";
117
134
  readonly checkbox: "checkbox";
118
135
  readonly select: "input pr-14";
119
136
  readonly description: "form-control--description label text-xs text-gray-500";
@@ -128,6 +145,14 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
128
145
  type: StringConstructor;
129
146
  default: string;
130
147
  };
148
+ size: {
149
+ type: StringConstructor;
150
+ default: undefined;
151
+ };
152
+ hideErrors: {
153
+ type: BooleanConstructor;
154
+ default: boolean;
155
+ };
131
156
  }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
132
157
  clear: () => any;
133
158
  blur: (event: Event) => any;
@@ -165,12 +190,16 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
165
190
  };
166
191
  query: {
167
192
  type: StringConstructor;
168
- default: null;
193
+ default: undefined;
169
194
  };
170
195
  isActive: {
171
196
  type: FunctionConstructor;
172
197
  default: (item: any) => boolean;
173
198
  };
199
+ teleported: {
200
+ type: BooleanConstructor;
201
+ default: boolean;
202
+ };
174
203
  labelKey: {
175
204
  type: StringConstructor;
176
205
  default: string;
@@ -183,20 +212,33 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
183
212
  type: BooleanConstructor;
184
213
  default: boolean;
185
214
  };
215
+ clearable: {
216
+ type: BooleanConstructor;
217
+ default: boolean;
218
+ };
219
+ value: {
220
+ type: import('vue').PropType<any>;
221
+ default: undefined;
222
+ };
186
223
  id: {
187
224
  type: StringConstructor;
225
+ default: undefined;
188
226
  };
189
227
  placeholder: {
190
228
  type: StringConstructor;
229
+ default: undefined;
191
230
  };
192
231
  description: {
193
232
  type: StringConstructor;
233
+ default: undefined;
194
234
  };
195
235
  errors: {
196
236
  type: StringConstructor;
237
+ default: undefined;
197
238
  };
198
239
  label: {
199
240
  type: StringConstructor;
241
+ default: undefined;
200
242
  };
201
243
  visible: {
202
244
  type: BooleanConstructor;
@@ -248,7 +290,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
248
290
  readonly label: "fieldset-legend";
249
291
  readonly error: "";
250
292
  readonly input: "input";
251
- readonly textarea: "input h-32";
293
+ readonly textarea: "textarea h-32";
252
294
  readonly checkbox: "checkbox";
253
295
  readonly select: "input pr-14";
254
296
  readonly description: "form-control--description label text-xs text-gray-500";
@@ -263,6 +305,14 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
263
305
  type: StringConstructor;
264
306
  default: string;
265
307
  };
308
+ size: {
309
+ type: StringConstructor;
310
+ default: undefined;
311
+ };
312
+ hideErrors: {
313
+ type: BooleanConstructor;
314
+ default: boolean;
315
+ };
266
316
  }>> & Readonly<{
267
317
  onClear?: (() => any) | undefined;
268
318
  onBlur?: ((event: Event) => any) | undefined;
@@ -270,12 +320,22 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
270
320
  onFocus?: ((event: FocusEvent) => any) | undefined;
271
321
  "onUpdate:modelValue"?: ((value: any) => any) | undefined;
272
322
  }>, {
323
+ size: string;
324
+ label: string;
273
325
  required: boolean;
326
+ id: string;
327
+ placeholder: string;
274
328
  isActive: Function;
275
329
  query: string;
276
330
  width: string;
277
- labelKey: string;
278
- valueKey: string;
331
+ value: any;
332
+ visible: boolean;
333
+ errors: string;
334
+ isTouched: boolean;
335
+ description: string;
336
+ enabled: boolean;
337
+ isFocused: boolean;
338
+ hideLabel: boolean;
279
339
  styles: {
280
340
  readonly group: {
281
341
  readonly root: "group";
@@ -300,7 +360,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
300
360
  readonly label: "fieldset-legend";
301
361
  readonly error: "";
302
362
  readonly input: "input";
303
- readonly textarea: "input h-32";
363
+ readonly textarea: "textarea h-32";
304
364
  readonly checkbox: "checkbox";
305
365
  readonly select: "input pr-14";
306
366
  readonly description: "form-control--description label text-xs text-gray-500";
@@ -310,18 +370,18 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
310
370
  readonly item: "w-full";
311
371
  };
312
372
  };
313
- hideLabel: boolean;
314
- freeText: boolean;
315
- enableCreate: boolean;
316
- isLoading: boolean;
317
- isTouched: boolean;
318
- visible: boolean;
319
- enabled: boolean;
320
- isFocused: boolean;
373
+ hideErrors: boolean;
321
374
  modelValue: string | Record<string, any>;
375
+ isLoading: boolean;
376
+ teleported: boolean;
377
+ labelKey: string;
378
+ valueKey: string;
379
+ enableCreate: boolean;
380
+ clearable: boolean;
322
381
  fetchOptions: Function;
323
382
  debounceMs: number;
324
383
  maxResults: number;
384
+ freeText: boolean;
325
385
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {
326
386
  inputRef: HTMLInputElement;
327
387
  }, HTMLDivElement>;
@@ -2,6 +2,7 @@ import { PropType } from 'vue';
2
2
  export type OptionValue = {
3
3
  label: string;
4
4
  value: string;
5
+ disabled?: boolean;
5
6
  };
6
7
  export declare const ListResultsEmits: string[];
7
8
  export declare const ListProperties: {
@@ -15,10 +16,15 @@ export declare const ListProperties: {
15
16
  };
16
17
  query: {
17
18
  type: StringConstructor;
18
- default: null;
19
+ default: undefined;
19
20
  };
20
21
  isActive: {
21
22
  type: FunctionConstructor;
22
23
  default: (item: any) => boolean;
23
24
  };
25
+ /** When true the list is teleported to <body>; positioning is handled via inline style from the parent */
26
+ teleported: {
27
+ type: BooleanConstructor;
28
+ default: boolean;
29
+ };
24
30
  };
@@ -1,5 +1,5 @@
1
1
  import { OptionValue } from './ListResults.properties';
2
- export declare function highlight(text: string, query: string): string;
2
+ export declare function highlight(isActive: boolean, text: string, query: string): string;
3
3
  declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
4
4
  options: {
5
5
  type: import('vue').PropType<Array<OptionValue>>;
@@ -11,12 +11,16 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
11
11
  };
12
12
  query: {
13
13
  type: StringConstructor;
14
- default: null;
14
+ default: undefined;
15
15
  };
16
16
  isActive: {
17
17
  type: FunctionConstructor;
18
18
  default: (item: any) => boolean;
19
19
  };
20
+ teleported: {
21
+ type: BooleanConstructor;
22
+ default: boolean;
23
+ };
20
24
  }>, {
21
25
  handleKeydown: (e: KeyboardEvent) => void;
22
26
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
@@ -30,16 +34,21 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
30
34
  };
31
35
  query: {
32
36
  type: StringConstructor;
33
- default: null;
37
+ default: undefined;
34
38
  };
35
39
  isActive: {
36
40
  type: FunctionConstructor;
37
41
  default: (item: any) => boolean;
38
42
  };
43
+ teleported: {
44
+ type: BooleanConstructor;
45
+ default: boolean;
46
+ };
39
47
  }>> & Readonly<{}>, {
40
48
  isActive: Function;
41
49
  query: string;
42
50
  isLoading: boolean;
51
+ teleported: boolean;
43
52
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {
44
53
  listRef: HTMLUListElement;
45
54
  }, HTMLUListElement>;
@@ -23,20 +23,33 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
23
23
  type: BooleanConstructor;
24
24
  default: boolean;
25
25
  };
26
+ clearable: {
27
+ type: BooleanConstructor;
28
+ default: boolean;
29
+ };
30
+ value: {
31
+ type: import('vue').PropType<any>;
32
+ default: undefined;
33
+ };
26
34
  id: {
27
35
  type: StringConstructor;
36
+ default: undefined;
28
37
  };
29
38
  placeholder: {
30
39
  type: StringConstructor;
40
+ default: undefined;
31
41
  };
32
42
  description: {
33
43
  type: StringConstructor;
44
+ default: undefined;
34
45
  };
35
46
  errors: {
36
47
  type: StringConstructor;
48
+ default: undefined;
37
49
  };
38
50
  label: {
39
51
  type: StringConstructor;
52
+ default: undefined;
40
53
  };
41
54
  visible: {
42
55
  type: BooleanConstructor;
@@ -88,7 +101,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
88
101
  readonly label: "fieldset-legend";
89
102
  readonly error: "";
90
103
  readonly input: "input";
91
- readonly textarea: "input h-32";
104
+ readonly textarea: "textarea h-32";
92
105
  readonly checkbox: "checkbox";
93
106
  readonly select: "input pr-14";
94
107
  readonly description: "form-control--description label text-xs text-gray-500";
@@ -103,13 +116,25 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
103
116
  type: StringConstructor;
104
117
  default: string;
105
118
  };
119
+ size: {
120
+ type: StringConstructor;
121
+ default: undefined;
122
+ };
123
+ hideErrors: {
124
+ type: BooleanConstructor;
125
+ default: boolean;
126
+ };
106
127
  isLoading: {
107
128
  type: BooleanConstructor;
108
129
  default: boolean;
109
130
  };
110
131
  query: {
111
132
  type: StringConstructor;
112
- default: null;
133
+ default: undefined;
134
+ };
135
+ teleported: {
136
+ type: BooleanConstructor;
137
+ default: boolean;
113
138
  };
114
139
  modelValue: {
115
140
  type: import('vue').PropType<any[]>;
@@ -145,20 +170,33 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
145
170
  type: BooleanConstructor;
146
171
  default: boolean;
147
172
  };
173
+ clearable: {
174
+ type: BooleanConstructor;
175
+ default: boolean;
176
+ };
177
+ value: {
178
+ type: import('vue').PropType<any>;
179
+ default: undefined;
180
+ };
148
181
  id: {
149
182
  type: StringConstructor;
183
+ default: undefined;
150
184
  };
151
185
  placeholder: {
152
186
  type: StringConstructor;
187
+ default: undefined;
153
188
  };
154
189
  description: {
155
190
  type: StringConstructor;
191
+ default: undefined;
156
192
  };
157
193
  errors: {
158
194
  type: StringConstructor;
195
+ default: undefined;
159
196
  };
160
197
  label: {
161
198
  type: StringConstructor;
199
+ default: undefined;
162
200
  };
163
201
  visible: {
164
202
  type: BooleanConstructor;
@@ -210,7 +248,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
210
248
  readonly label: "fieldset-legend";
211
249
  readonly error: "";
212
250
  readonly input: "input";
213
- readonly textarea: "input h-32";
251
+ readonly textarea: "textarea h-32";
214
252
  readonly checkbox: "checkbox";
215
253
  readonly select: "input pr-14";
216
254
  readonly description: "form-control--description label text-xs text-gray-500";
@@ -225,13 +263,25 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
225
263
  type: StringConstructor;
226
264
  default: string;
227
265
  };
266
+ size: {
267
+ type: StringConstructor;
268
+ default: undefined;
269
+ };
270
+ hideErrors: {
271
+ type: BooleanConstructor;
272
+ default: boolean;
273
+ };
228
274
  isLoading: {
229
275
  type: BooleanConstructor;
230
276
  default: boolean;
231
277
  };
232
278
  query: {
233
279
  type: StringConstructor;
234
- default: null;
280
+ default: undefined;
281
+ };
282
+ teleported: {
283
+ type: BooleanConstructor;
284
+ default: boolean;
235
285
  };
236
286
  modelValue: {
237
287
  type: import('vue').PropType<any[]>;
@@ -243,12 +293,22 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
243
293
  onFocus?: ((event: FocusEvent) => any) | undefined;
244
294
  "onUpdate:modelValue"?: ((...args: unknown[]) => any) | undefined;
245
295
  }>, {
296
+ size: string;
297
+ label: string;
246
298
  required: boolean;
299
+ id: string;
300
+ placeholder: string;
247
301
  isActive: Function;
248
302
  query: string;
249
303
  width: string;
250
- labelKey: string;
251
- valueKey: string;
304
+ value: any;
305
+ visible: boolean;
306
+ errors: string;
307
+ isTouched: boolean;
308
+ description: string;
309
+ enabled: boolean;
310
+ isFocused: boolean;
311
+ hideLabel: boolean;
252
312
  styles: {
253
313
  readonly group: {
254
314
  readonly root: "group";
@@ -273,7 +333,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
273
333
  readonly label: "fieldset-legend";
274
334
  readonly error: "";
275
335
  readonly input: "input";
276
- readonly textarea: "input h-32";
336
+ readonly textarea: "textarea h-32";
277
337
  readonly checkbox: "checkbox";
278
338
  readonly select: "input pr-14";
279
339
  readonly description: "form-control--description label text-xs text-gray-500";
@@ -283,13 +343,13 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
283
343
  readonly item: "w-full";
284
344
  };
285
345
  };
286
- hideLabel: boolean;
287
- enableCreate: boolean;
346
+ hideErrors: boolean;
288
347
  isLoading: boolean;
289
- isTouched: boolean;
290
- visible: boolean;
291
- enabled: boolean;
292
- isFocused: boolean;
348
+ teleported: boolean;
293
349
  isOpen: boolean;
350
+ labelKey: string;
351
+ valueKey: string;
352
+ enableCreate: boolean;
353
+ clearable: boolean;
294
354
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
295
355
  export default _default;
@@ -15,20 +15,33 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
15
15
  type: BooleanConstructor;
16
16
  default: boolean;
17
17
  };
18
+ clearable: {
19
+ type: BooleanConstructor;
20
+ default: boolean;
21
+ };
22
+ value: {
23
+ type: import('vue').PropType<any>;
24
+ default: undefined;
25
+ };
18
26
  id: {
19
27
  type: StringConstructor;
28
+ default: undefined;
20
29
  };
21
30
  placeholder: {
22
31
  type: StringConstructor;
32
+ default: undefined;
23
33
  };
24
34
  description: {
25
35
  type: StringConstructor;
36
+ default: undefined;
26
37
  };
27
38
  errors: {
28
39
  type: StringConstructor;
40
+ default: undefined;
29
41
  };
30
42
  label: {
31
43
  type: StringConstructor;
44
+ default: undefined;
32
45
  };
33
46
  visible: {
34
47
  type: BooleanConstructor;
@@ -80,7 +93,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
80
93
  readonly label: "fieldset-legend";
81
94
  readonly error: "";
82
95
  readonly input: "input";
83
- readonly textarea: "input h-32";
96
+ readonly textarea: "textarea h-32";
84
97
  readonly checkbox: "checkbox";
85
98
  readonly select: "input pr-14";
86
99
  readonly description: "form-control--description label text-xs text-gray-500";
@@ -95,6 +108,14 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
95
108
  type: StringConstructor;
96
109
  default: string;
97
110
  };
111
+ size: {
112
+ type: StringConstructor;
113
+ default: undefined;
114
+ };
115
+ hideErrors: {
116
+ type: BooleanConstructor;
117
+ default: boolean;
118
+ };
98
119
  modelValue: {
99
120
  type: import('vue').PropType<any>;
100
121
  };
@@ -121,20 +142,33 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
121
142
  type: BooleanConstructor;
122
143
  default: boolean;
123
144
  };
145
+ clearable: {
146
+ type: BooleanConstructor;
147
+ default: boolean;
148
+ };
149
+ value: {
150
+ type: import('vue').PropType<any>;
151
+ default: undefined;
152
+ };
124
153
  id: {
125
154
  type: StringConstructor;
155
+ default: undefined;
126
156
  };
127
157
  placeholder: {
128
158
  type: StringConstructor;
159
+ default: undefined;
129
160
  };
130
161
  description: {
131
162
  type: StringConstructor;
163
+ default: undefined;
132
164
  };
133
165
  errors: {
134
166
  type: StringConstructor;
167
+ default: undefined;
135
168
  };
136
169
  label: {
137
170
  type: StringConstructor;
171
+ default: undefined;
138
172
  };
139
173
  visible: {
140
174
  type: BooleanConstructor;
@@ -186,7 +220,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
186
220
  readonly label: "fieldset-legend";
187
221
  readonly error: "";
188
222
  readonly input: "input";
189
- readonly textarea: "input h-32";
223
+ readonly textarea: "textarea h-32";
190
224
  readonly checkbox: "checkbox";
191
225
  readonly select: "input pr-14";
192
226
  readonly description: "form-control--description label text-xs text-gray-500";
@@ -201,6 +235,14 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
201
235
  type: StringConstructor;
202
236
  default: string;
203
237
  };
238
+ size: {
239
+ type: StringConstructor;
240
+ default: undefined;
241
+ };
242
+ hideErrors: {
243
+ type: BooleanConstructor;
244
+ default: boolean;
245
+ };
204
246
  modelValue: {
205
247
  type: import('vue').PropType<any>;
206
248
  };
@@ -211,10 +253,20 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
211
253
  onFocus?: ((event: FocusEvent) => any) | undefined;
212
254
  "onUpdate:modelValue"?: ((...args: unknown[]) => any) | undefined;
213
255
  }>, {
256
+ size: string;
257
+ label: string;
214
258
  required: boolean;
259
+ id: string;
260
+ placeholder: string;
215
261
  width: string;
216
- labelKey: string;
217
- valueKey: string;
262
+ value: any;
263
+ visible: boolean;
264
+ errors: string;
265
+ isTouched: boolean;
266
+ description: string;
267
+ enabled: boolean;
268
+ isFocused: boolean;
269
+ hideLabel: boolean;
218
270
  styles: {
219
271
  readonly group: {
220
272
  readonly root: "group";
@@ -239,7 +291,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
239
291
  readonly label: "fieldset-legend";
240
292
  readonly error: "";
241
293
  readonly input: "input";
242
- readonly textarea: "input h-32";
294
+ readonly textarea: "textarea h-32";
243
295
  readonly checkbox: "checkbox";
244
296
  readonly select: "input pr-14";
245
297
  readonly description: "form-control--description label text-xs text-gray-500";
@@ -249,11 +301,10 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
249
301
  readonly item: "w-full";
250
302
  };
251
303
  };
252
- hideLabel: boolean;
304
+ hideErrors: boolean;
305
+ labelKey: string;
306
+ valueKey: string;
253
307
  enableCreate: boolean;
254
- isTouched: boolean;
255
- visible: boolean;
256
- enabled: boolean;
257
- isFocused: boolean;
308
+ clearable: boolean;
258
309
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
259
310
  export default _default;