@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
@@ -9,31 +9,45 @@ export declare const SelectProperties: {
9
9
  type: StringConstructor;
10
10
  default: string;
11
11
  };
12
- /** Key to use as the stored
13
- value when options are objects */
12
+ /** Key to use as the stored value when options are objects */
14
13
  valueKey: {
15
14
  type: StringConstructor;
16
15
  default: string;
17
16
  };
18
- /** add a new button next to the list*/
17
+ /** add a new button next to the list */
19
18
  enableCreate: {
20
19
  type: BooleanConstructor;
21
20
  default: boolean;
22
21
  };
22
+ /** Whether to show the clear button when a value is selected */
23
+ clearable: {
24
+ type: BooleanConstructor;
25
+ default: boolean;
26
+ };
27
+ /** Alternative to v-model — accepts a string id or a full option object */
28
+ value: {
29
+ type: PropType<any>;
30
+ default: undefined;
31
+ };
23
32
  id: {
24
33
  type: StringConstructor;
34
+ default: undefined;
25
35
  };
26
36
  placeholder: {
27
37
  type: StringConstructor;
38
+ default: undefined;
28
39
  };
29
40
  description: {
30
41
  type: StringConstructor;
42
+ default: undefined;
31
43
  };
32
44
  errors: {
33
45
  type: StringConstructor;
46
+ default: undefined;
34
47
  };
35
48
  label: {
36
49
  type: StringConstructor;
50
+ default: undefined;
37
51
  };
38
52
  visible: {
39
53
  type: BooleanConstructor;
@@ -85,7 +99,7 @@ export declare const SelectProperties: {
85
99
  readonly label: "fieldset-legend";
86
100
  readonly error: "";
87
101
  readonly input: "input";
88
- readonly textarea: "input h-32";
102
+ readonly textarea: "textarea h-32";
89
103
  readonly checkbox: "checkbox";
90
104
  readonly select: "input pr-14";
91
105
  readonly description: "form-control--description label text-xs text-gray-500";
@@ -100,6 +114,14 @@ export declare const SelectProperties: {
100
114
  type: StringConstructor;
101
115
  default: string;
102
116
  };
117
+ size: {
118
+ type: StringConstructor;
119
+ default: undefined;
120
+ };
121
+ hideErrors: {
122
+ type: BooleanConstructor;
123
+ default: boolean;
124
+ };
103
125
  };
104
126
  export declare const SelectWrapperEmits: string[];
105
127
  export declare const SelectWrapperProperties: {
@@ -120,31 +142,45 @@ export declare const SelectWrapperProperties: {
120
142
  type: StringConstructor;
121
143
  default: string;
122
144
  };
123
- /** Key to use as the stored
124
- value when options are objects */
145
+ /** Key to use as the stored value when options are objects */
125
146
  valueKey: {
126
147
  type: StringConstructor;
127
148
  default: string;
128
149
  };
129
- /** add a new button next to the list*/
150
+ /** add a new button next to the list */
130
151
  enableCreate: {
131
152
  type: BooleanConstructor;
132
153
  default: boolean;
133
154
  };
155
+ /** Whether to show the clear button when a value is selected */
156
+ clearable: {
157
+ type: BooleanConstructor;
158
+ default: boolean;
159
+ };
160
+ /** Alternative to v-model — accepts a string id or a full option object */
161
+ value: {
162
+ type: PropType<any>;
163
+ default: undefined;
164
+ };
134
165
  id: {
135
166
  type: StringConstructor;
167
+ default: undefined;
136
168
  };
137
169
  placeholder: {
138
170
  type: StringConstructor;
171
+ default: undefined;
139
172
  };
140
173
  description: {
141
174
  type: StringConstructor;
175
+ default: undefined;
142
176
  };
143
177
  errors: {
144
178
  type: StringConstructor;
179
+ default: undefined;
145
180
  };
146
181
  label: {
147
182
  type: StringConstructor;
183
+ default: undefined;
148
184
  };
149
185
  visible: {
150
186
  type: BooleanConstructor;
@@ -196,7 +232,7 @@ export declare const SelectWrapperProperties: {
196
232
  readonly label: "fieldset-legend";
197
233
  readonly error: "";
198
234
  readonly input: "input";
199
- readonly textarea: "input h-32";
235
+ readonly textarea: "textarea h-32";
200
236
  readonly checkbox: "checkbox";
201
237
  readonly select: "input pr-14";
202
238
  readonly description: "form-control--description label text-xs text-gray-500";
@@ -211,12 +247,24 @@ export declare const SelectWrapperProperties: {
211
247
  type: StringConstructor;
212
248
  default: string;
213
249
  };
250
+ size: {
251
+ type: StringConstructor;
252
+ default: undefined;
253
+ };
254
+ hideErrors: {
255
+ type: BooleanConstructor;
256
+ default: boolean;
257
+ };
214
258
  isLoading: {
215
259
  type: BooleanConstructor;
216
260
  default: boolean;
217
261
  };
218
262
  query: {
219
263
  type: StringConstructor;
220
- default: null;
264
+ default: undefined;
265
+ };
266
+ teleported: {
267
+ type: BooleanConstructor;
268
+ default: boolean;
221
269
  };
222
270
  };
@@ -5,6 +5,7 @@ declare function __VLS_template(): {
5
5
  };
6
6
  refs: {
7
7
  selectWrapperRef: HTMLDivElement;
8
+ inputWrapperRef: HTMLDivElement;
8
9
  listResultsRef: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('vue').ExtractPropTypes<{
9
10
  options: {
10
11
  type: import('vue').PropType<Array<import('./ListResults.properties').OptionValue>>;
@@ -16,18 +17,23 @@ declare function __VLS_template(): {
16
17
  };
17
18
  query: {
18
19
  type: StringConstructor;
19
- default: null;
20
+ default: undefined;
20
21
  };
21
22
  isActive: {
22
23
  type: FunctionConstructor;
23
24
  default: (item: any) => boolean;
24
25
  };
26
+ teleported: {
27
+ type: BooleanConstructor;
28
+ default: boolean;
29
+ };
25
30
  }>> & Readonly<{}>, {
26
31
  handleKeydown: (e: KeyboardEvent) => void;
27
32
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
28
33
  isActive: Function;
29
34
  query: string;
30
35
  isLoading: boolean;
36
+ teleported: boolean;
31
37
  }, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
32
38
  listRef: HTMLUListElement;
33
39
  }, HTMLUListElement, import('vue').ComponentProvideOptions, {
@@ -48,18 +54,23 @@ declare function __VLS_template(): {
48
54
  };
49
55
  query: {
50
56
  type: StringConstructor;
51
- default: null;
57
+ default: undefined;
52
58
  };
53
59
  isActive: {
54
60
  type: FunctionConstructor;
55
61
  default: (item: any) => boolean;
56
62
  };
63
+ teleported: {
64
+ type: BooleanConstructor;
65
+ default: boolean;
66
+ };
57
67
  }>> & Readonly<{}>, {
58
68
  handleKeydown: (e: KeyboardEvent) => void;
59
69
  }, {}, {}, {}, {
60
70
  isActive: Function;
61
71
  query: string;
62
72
  isLoading: boolean;
73
+ teleported: boolean;
63
74
  }> | null;
64
75
  };
65
76
  rootEl: HTMLDivElement;
@@ -90,20 +101,33 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
90
101
  type: BooleanConstructor;
91
102
  default: boolean;
92
103
  };
104
+ clearable: {
105
+ type: BooleanConstructor;
106
+ default: boolean;
107
+ };
108
+ value: {
109
+ type: import('vue').PropType<any>;
110
+ default: undefined;
111
+ };
93
112
  id: {
94
113
  type: StringConstructor;
114
+ default: undefined;
95
115
  };
96
116
  placeholder: {
97
117
  type: StringConstructor;
118
+ default: undefined;
98
119
  };
99
120
  description: {
100
121
  type: StringConstructor;
122
+ default: undefined;
101
123
  };
102
124
  errors: {
103
125
  type: StringConstructor;
126
+ default: undefined;
104
127
  };
105
128
  label: {
106
129
  type: StringConstructor;
130
+ default: undefined;
107
131
  };
108
132
  visible: {
109
133
  type: BooleanConstructor;
@@ -155,7 +179,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
155
179
  readonly label: "fieldset-legend";
156
180
  readonly error: "";
157
181
  readonly input: "input";
158
- readonly textarea: "input h-32";
182
+ readonly textarea: "textarea h-32";
159
183
  readonly checkbox: "checkbox";
160
184
  readonly select: "input pr-14";
161
185
  readonly description: "form-control--description label text-xs text-gray-500";
@@ -170,13 +194,25 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
170
194
  type: StringConstructor;
171
195
  default: string;
172
196
  };
197
+ size: {
198
+ type: StringConstructor;
199
+ default: undefined;
200
+ };
201
+ hideErrors: {
202
+ type: BooleanConstructor;
203
+ default: boolean;
204
+ };
173
205
  isLoading: {
174
206
  type: BooleanConstructor;
175
207
  default: boolean;
176
208
  };
177
209
  query: {
178
210
  type: StringConstructor;
179
- default: null;
211
+ default: undefined;
212
+ };
213
+ teleported: {
214
+ type: BooleanConstructor;
215
+ default: boolean;
180
216
  };
181
217
  }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
182
218
  isOpen: {
@@ -203,20 +239,33 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
203
239
  type: BooleanConstructor;
204
240
  default: boolean;
205
241
  };
242
+ clearable: {
243
+ type: BooleanConstructor;
244
+ default: boolean;
245
+ };
246
+ value: {
247
+ type: import('vue').PropType<any>;
248
+ default: undefined;
249
+ };
206
250
  id: {
207
251
  type: StringConstructor;
252
+ default: undefined;
208
253
  };
209
254
  placeholder: {
210
255
  type: StringConstructor;
256
+ default: undefined;
211
257
  };
212
258
  description: {
213
259
  type: StringConstructor;
260
+ default: undefined;
214
261
  };
215
262
  errors: {
216
263
  type: StringConstructor;
264
+ default: undefined;
217
265
  };
218
266
  label: {
219
267
  type: StringConstructor;
268
+ default: undefined;
220
269
  };
221
270
  visible: {
222
271
  type: BooleanConstructor;
@@ -268,7 +317,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
268
317
  readonly label: "fieldset-legend";
269
318
  readonly error: "";
270
319
  readonly input: "input";
271
- readonly textarea: "input h-32";
320
+ readonly textarea: "textarea h-32";
272
321
  readonly checkbox: "checkbox";
273
322
  readonly select: "input pr-14";
274
323
  readonly description: "form-control--description label text-xs text-gray-500";
@@ -283,21 +332,43 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
283
332
  type: StringConstructor;
284
333
  default: string;
285
334
  };
335
+ size: {
336
+ type: StringConstructor;
337
+ default: undefined;
338
+ };
339
+ hideErrors: {
340
+ type: BooleanConstructor;
341
+ default: boolean;
342
+ };
286
343
  isLoading: {
287
344
  type: BooleanConstructor;
288
345
  default: boolean;
289
346
  };
290
347
  query: {
291
348
  type: StringConstructor;
292
- default: null;
349
+ default: undefined;
350
+ };
351
+ teleported: {
352
+ type: BooleanConstructor;
353
+ default: boolean;
293
354
  };
294
355
  }>> & Readonly<{}>, {
356
+ size: string;
357
+ label: string;
295
358
  required: boolean;
359
+ id: string;
360
+ placeholder: string;
296
361
  isActive: Function;
297
362
  query: string;
298
363
  width: string;
299
- labelKey: string;
300
- valueKey: string;
364
+ value: any;
365
+ visible: boolean;
366
+ errors: string;
367
+ isTouched: boolean;
368
+ description: string;
369
+ enabled: boolean;
370
+ isFocused: boolean;
371
+ hideLabel: boolean;
301
372
  styles: {
302
373
  readonly group: {
303
374
  readonly root: "group";
@@ -322,7 +393,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
322
393
  readonly label: "fieldset-legend";
323
394
  readonly error: "";
324
395
  readonly input: "input";
325
- readonly textarea: "input h-32";
396
+ readonly textarea: "textarea h-32";
326
397
  readonly checkbox: "checkbox";
327
398
  readonly select: "input pr-14";
328
399
  readonly description: "form-control--description label text-xs text-gray-500";
@@ -332,16 +403,17 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
332
403
  readonly item: "w-full";
333
404
  };
334
405
  };
335
- hideLabel: boolean;
336
- enableCreate: boolean;
406
+ hideErrors: boolean;
337
407
  isLoading: boolean;
338
- isTouched: boolean;
339
- visible: boolean;
340
- enabled: boolean;
341
- isFocused: boolean;
408
+ teleported: boolean;
342
409
  isOpen: boolean;
410
+ labelKey: string;
411
+ valueKey: string;
412
+ enableCreate: boolean;
413
+ clearable: boolean;
343
414
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {
344
415
  selectWrapperRef: HTMLDivElement;
416
+ inputWrapperRef: HTMLDivElement;
345
417
  listResultsRef: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('vue').ExtractPropTypes<{
346
418
  options: {
347
419
  type: import('vue').PropType<Array<import('./ListResults.properties').OptionValue>>;
@@ -353,18 +425,23 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
353
425
  };
354
426
  query: {
355
427
  type: StringConstructor;
356
- default: null;
428
+ default: undefined;
357
429
  };
358
430
  isActive: {
359
431
  type: FunctionConstructor;
360
432
  default: (item: any) => boolean;
361
433
  };
434
+ teleported: {
435
+ type: BooleanConstructor;
436
+ default: boolean;
437
+ };
362
438
  }>> & Readonly<{}>, {
363
439
  handleKeydown: (e: KeyboardEvent) => void;
364
440
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
365
441
  isActive: Function;
366
442
  query: string;
367
443
  isLoading: boolean;
444
+ teleported: boolean;
368
445
  }, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
369
446
  listRef: HTMLUListElement;
370
447
  }, HTMLUListElement, import('vue').ComponentProvideOptions, {
@@ -385,18 +462,23 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
385
462
  };
386
463
  query: {
387
464
  type: StringConstructor;
388
- default: null;
465
+ default: undefined;
389
466
  };
390
467
  isActive: {
391
468
  type: FunctionConstructor;
392
469
  default: (item: any) => boolean;
393
470
  };
471
+ teleported: {
472
+ type: BooleanConstructor;
473
+ default: boolean;
474
+ };
394
475
  }>> & Readonly<{}>, {
395
476
  handleKeydown: (e: KeyboardEvent) => void;
396
477
  }, {}, {}, {}, {
397
478
  isActive: Function;
398
479
  query: string;
399
480
  isLoading: boolean;
481
+ teleported: boolean;
400
482
  }> | null;
401
483
  }, HTMLDivElement>;
402
484
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
@@ -13,18 +13,23 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
13
13
  };
14
14
  id: {
15
15
  type: StringConstructor;
16
+ default: undefined;
16
17
  };
17
18
  placeholder: {
18
19
  type: StringConstructor;
20
+ default: undefined;
19
21
  };
20
22
  description: {
21
23
  type: StringConstructor;
24
+ default: undefined;
22
25
  };
23
26
  errors: {
24
27
  type: StringConstructor;
28
+ default: undefined;
25
29
  };
26
30
  label: {
27
31
  type: StringConstructor;
32
+ default: undefined;
28
33
  };
29
34
  visible: {
30
35
  type: BooleanConstructor;
@@ -76,7 +81,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
76
81
  readonly label: "fieldset-legend";
77
82
  readonly error: "";
78
83
  readonly input: "input";
79
- readonly textarea: "input h-32";
84
+ readonly textarea: "textarea h-32";
80
85
  readonly checkbox: "checkbox";
81
86
  readonly select: "input pr-14";
82
87
  readonly description: "form-control--description label text-xs text-gray-500";
@@ -87,6 +92,14 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
87
92
  };
88
93
  };
89
94
  };
95
+ size: {
96
+ type: StringConstructor;
97
+ default: undefined;
98
+ };
99
+ hideErrors: {
100
+ type: BooleanConstructor;
101
+ default: boolean;
102
+ };
90
103
  modelValue: {
91
104
  type: import('vue').PropType<any>;
92
105
  };
@@ -107,18 +120,23 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
107
120
  };
108
121
  id: {
109
122
  type: StringConstructor;
123
+ default: undefined;
110
124
  };
111
125
  placeholder: {
112
126
  type: StringConstructor;
127
+ default: undefined;
113
128
  };
114
129
  description: {
115
130
  type: StringConstructor;
131
+ default: undefined;
116
132
  };
117
133
  errors: {
118
134
  type: StringConstructor;
135
+ default: undefined;
119
136
  };
120
137
  label: {
121
138
  type: StringConstructor;
139
+ default: undefined;
122
140
  };
123
141
  visible: {
124
142
  type: BooleanConstructor;
@@ -170,7 +188,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
170
188
  readonly label: "fieldset-legend";
171
189
  readonly error: "";
172
190
  readonly input: "input";
173
- readonly textarea: "input h-32";
191
+ readonly textarea: "textarea h-32";
174
192
  readonly checkbox: "checkbox";
175
193
  readonly select: "input pr-14";
176
194
  readonly description: "form-control--description label text-xs text-gray-500";
@@ -181,15 +199,34 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
181
199
  };
182
200
  };
183
201
  };
202
+ size: {
203
+ type: StringConstructor;
204
+ default: undefined;
205
+ };
206
+ hideErrors: {
207
+ type: BooleanConstructor;
208
+ default: boolean;
209
+ };
184
210
  modelValue: {
185
211
  type: import('vue').PropType<any>;
186
212
  };
187
213
  }>> & Readonly<{
188
214
  "onUpdate:modelValue"?: ((value: any) => any) | undefined;
189
215
  }>, {
216
+ size: string;
217
+ label: string;
190
218
  required: boolean;
219
+ id: string;
220
+ placeholder: string;
191
221
  width: string;
192
222
  actions: import('./MarkdownComponent.properties').ToolbarAction[];
223
+ visible: boolean;
224
+ errors: string;
225
+ isTouched: boolean;
226
+ description: string;
227
+ enabled: boolean;
228
+ isFocused: boolean;
229
+ hideLabel: boolean;
193
230
  styles: {
194
231
  readonly group: {
195
232
  readonly root: "group";
@@ -214,7 +251,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
214
251
  readonly label: "fieldset-legend";
215
252
  readonly error: "";
216
253
  readonly input: "input";
217
- readonly textarea: "input h-32";
254
+ readonly textarea: "textarea h-32";
218
255
  readonly checkbox: "checkbox";
219
256
  readonly select: "input pr-14";
220
257
  readonly description: "form-control--description label text-xs text-gray-500";
@@ -224,11 +261,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
224
261
  readonly item: "w-full";
225
262
  };
226
263
  };
227
- hideLabel: boolean;
264
+ hideErrors: boolean;
228
265
  minHeight: string;
229
- isTouched: boolean;
230
- visible: boolean;
231
- enabled: boolean;
232
- isFocused: boolean;
233
266
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLFieldSetElement>;
234
267
  export default _default;
@@ -24,18 +24,23 @@ export declare const MarkdownComponentProperties: {
24
24
  };
25
25
  id: {
26
26
  type: StringConstructor;
27
+ default: undefined;
27
28
  };
28
29
  placeholder: {
29
30
  type: StringConstructor;
31
+ default: undefined;
30
32
  };
31
33
  description: {
32
34
  type: StringConstructor;
35
+ default: undefined;
33
36
  };
34
37
  errors: {
35
38
  type: StringConstructor;
39
+ default: undefined;
36
40
  };
37
41
  label: {
38
42
  type: StringConstructor;
43
+ default: undefined;
39
44
  };
40
45
  visible: {
41
46
  type: BooleanConstructor;
@@ -87,7 +92,7 @@ export declare const MarkdownComponentProperties: {
87
92
  readonly label: "fieldset-legend";
88
93
  readonly error: "";
89
94
  readonly input: "input";
90
- readonly textarea: "input h-32";
95
+ readonly textarea: "textarea h-32";
91
96
  readonly checkbox: "checkbox";
92
97
  readonly select: "input pr-14";
93
98
  readonly description: "form-control--description label text-xs text-gray-500";
@@ -98,4 +103,12 @@ export declare const MarkdownComponentProperties: {
98
103
  };
99
104
  };
100
105
  };
106
+ size: {
107
+ type: StringConstructor;
108
+ default: undefined;
109
+ };
110
+ hideErrors: {
111
+ type: BooleanConstructor;
112
+ default: boolean;
113
+ };
101
114
  };