@ghentcdh/ui 1.1.0 → 2.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.
- package/Markdown-C7ZNnPQB.js +1 -0
- package/Markdown-OZGmR-pI.js +76 -0
- package/button/Btn.properties.d.ts +6 -2
- package/button/btn.vue.d.ts +15 -5
- package/const/colors.d.ts +2 -1
- package/drawer/drawer.properties.d.ts +4 -0
- package/drawer/drawer.vue.d.ts +9 -0
- package/form/Checkbox.properties.d.ts +14 -1
- package/form/Checkbox.vue.d.ts +37 -4
- package/form/Input.properties.d.ts +18 -1
- package/form/Input.vue.d.ts +46 -4
- package/form/InputNumber.properties.d.ts +14 -1
- package/form/InputNumber.vue.d.ts +37 -4
- package/form/Textarea.properties.d.ts +26 -1
- package/form/Textarea.vue.d.ts +64 -4
- package/form/core/ControlWrapper.properties.d.ts +54 -1
- package/form/core/ControlWrapper.vue.d.ts +38 -4
- package/form/core/properties.d.ts +2 -16
- package/form/core/styles.d.ts +1 -1
- package/form/core/utils/style.d.ts +3 -3
- package/form/index.d.ts +273 -1
- package/form/select/AutoComplete.properties.d.ts +27 -2
- package/form/select/AutoComplete.vue.d.ts +67 -7
- package/form/select/ListResults.properties.d.ts +7 -1
- package/form/select/ListResults.vue.d.ts +12 -3
- package/form/select/MultiSelect.vue.d.ts +67 -7
- package/form/select/SelectComponent.vue.d.ts +55 -4
- package/form/select/SelectWrapper.properties.d.ts +57 -9
- package/form/select/SelectWrapper.vue.d.ts +93 -11
- package/form/text/Markdown.vue.d.ts +37 -4
- package/form/text/MarkdownComponent.properties.d.ts +14 -1
- package/form/text/MarkdownFallback.vue.d.ts +267 -0
- package/icons/icon-list.d.ts +3 -1
- package/index-NGeplssl.js +2 -0
- package/index-WrdKkd9c.js +2633 -0
- package/index.css +1 -1
- package/index.d.ts +1 -0
- package/index.js +1 -2
- package/index.mjs +66 -2370
- package/modal/modal.vue.d.ts +1 -0
- package/package.json +14 -7
- package/table/cells/text.cell.vue.d.ts +1 -1
- package/table/column.model.d.ts +6 -0
- package/table/header/sort.header.properties.d.ts +1 -1
- package/table/header/sort.header.vue.d.ts +2 -2
- package/table/index.d.ts +2 -0
- package/table/pagination.component.properties.d.ts +5 -0
- package/table/pagination.component.vue.d.ts +9 -0
- package/table/table.component.properties.d.ts +4 -0
- package/table/table.component.vue.d.ts +9 -0
- package/table/table.model.d.ts +4 -1
- package/test-utils/withSetup.d.ts +0 -4
|
@@ -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:
|
|
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:
|
|
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: "
|
|
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:
|
|
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: "
|
|
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,19 +332,36 @@ 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:
|
|
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;
|
|
364
|
+
value: any;
|
|
299
365
|
labelKey: string;
|
|
300
366
|
valueKey: string;
|
|
301
367
|
styles: {
|
|
@@ -322,7 +388,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
322
388
|
readonly label: "fieldset-legend";
|
|
323
389
|
readonly error: "";
|
|
324
390
|
readonly input: "input";
|
|
325
|
-
readonly textarea: "
|
|
391
|
+
readonly textarea: "textarea h-32";
|
|
326
392
|
readonly checkbox: "checkbox";
|
|
327
393
|
readonly select: "input pr-14";
|
|
328
394
|
readonly description: "form-control--description label text-xs text-gray-500";
|
|
@@ -334,14 +400,20 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
334
400
|
};
|
|
335
401
|
hideLabel: boolean;
|
|
336
402
|
enableCreate: boolean;
|
|
337
|
-
isLoading: boolean;
|
|
338
|
-
isTouched: boolean;
|
|
339
403
|
visible: boolean;
|
|
404
|
+
errors: string;
|
|
405
|
+
isTouched: boolean;
|
|
406
|
+
description: string;
|
|
340
407
|
enabled: boolean;
|
|
341
408
|
isFocused: boolean;
|
|
409
|
+
hideErrors: boolean;
|
|
410
|
+
isLoading: boolean;
|
|
411
|
+
teleported: boolean;
|
|
342
412
|
isOpen: 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:
|
|
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:
|
|
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: "
|
|
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: "
|
|
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,13 +199,25 @@ 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[];
|
|
193
223
|
styles: {
|
|
@@ -214,7 +244,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
214
244
|
readonly label: "fieldset-legend";
|
|
215
245
|
readonly error: "";
|
|
216
246
|
readonly input: "input";
|
|
217
|
-
readonly textarea: "
|
|
247
|
+
readonly textarea: "textarea h-32";
|
|
218
248
|
readonly checkbox: "checkbox";
|
|
219
249
|
readonly select: "input pr-14";
|
|
220
250
|
readonly description: "form-control--description label text-xs text-gray-500";
|
|
@@ -226,9 +256,12 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
226
256
|
};
|
|
227
257
|
hideLabel: boolean;
|
|
228
258
|
minHeight: string;
|
|
229
|
-
isTouched: boolean;
|
|
230
259
|
visible: boolean;
|
|
260
|
+
errors: string;
|
|
261
|
+
isTouched: boolean;
|
|
262
|
+
description: string;
|
|
231
263
|
enabled: boolean;
|
|
232
264
|
isFocused: boolean;
|
|
265
|
+
hideErrors: 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: "
|
|
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
|
};
|