@quidgest/ui 0.14.21 → 0.14.23
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/dist/manifest/components.json +2 -0
- package/dist/ui.css +110 -5
- package/dist/ui.esm.js +3449 -3286
- package/dist/ui.js +9 -9
- package/dist/ui.min.css +1 -1
- package/dist/ui.min.js +714 -702
- package/dist/ui.scss +118 -8
- package/esm/components/QColorPicker/QColorPicker.vue.js +1 -1
- package/esm/components/QCombobox/QCombobox.d.ts +28 -8
- package/esm/components/QCombobox/QCombobox.d.ts.map +1 -1
- package/esm/components/QCombobox/QCombobox.vue.js +31 -30
- package/esm/components/QCombobox/index.d.ts +49 -14
- package/esm/components/QCombobox/index.d.ts.map +1 -1
- package/esm/components/QDateTimePicker/QDateTimePicker.vue.js +1 -1
- package/esm/components/QDateTimePicker/index.d.ts +3 -0
- package/esm/components/QDateTimePicker/index.d.ts.map +1 -1
- package/esm/components/QField/QField.d.ts.map +1 -1
- package/esm/components/QField/QField.vue.js +11 -10
- package/esm/components/QFileUpload/QFileUpload.vue.js +1 -1
- package/esm/components/QFileUpload/index.d.ts +3 -0
- package/esm/components/QFileUpload/index.d.ts.map +1 -1
- package/esm/components/QInputGroup/QInputGroup.vue.js +1 -1
- package/esm/components/QLabel/QLabel.d.ts +1 -0
- package/esm/components/QLabel/QLabel.d.ts.map +1 -1
- package/esm/components/QLabel/QLabel.vue.js +28 -13
- package/esm/components/QLabel/index.d.ts +1 -0
- package/esm/components/QLabel/index.d.ts.map +1 -1
- package/esm/components/QLabel/types.d.ts +5 -0
- package/esm/components/QLabel/types.d.ts.map +1 -1
- package/esm/components/QMeter/QMeter.vue.js +14 -13
- package/esm/components/QMeter/index.d.ts +2 -0
- package/esm/components/QMeter/index.d.ts.map +1 -1
- package/esm/components/QPasswordField/QPasswordField.d.ts +14 -4
- package/esm/components/QPasswordField/QPasswordField.d.ts.map +1 -1
- package/esm/components/QPasswordField/QPasswordField.vue.js +22 -21
- package/esm/components/QPasswordField/index.d.ts +7 -2
- package/esm/components/QPasswordField/index.d.ts.map +1 -1
- package/esm/components/QRadioGroup/QRadioButton.d.ts +24 -0
- package/esm/components/QRadioGroup/QRadioButton.d.ts.map +1 -0
- package/esm/components/QRadioGroup/QRadioButton.vue.js +78 -0
- package/esm/components/QRadioGroup/QRadioButton.vue2.js +4 -0
- package/esm/components/QRadioGroup/QRadioGroup.d.ts +32 -0
- package/esm/components/QRadioGroup/QRadioGroup.d.ts.map +1 -0
- package/esm/components/QRadioGroup/QRadioGroup.vue.js +79 -0
- package/esm/components/QRadioGroup/QRadioGroup.vue2.js +4 -0
- package/esm/components/QRadioGroup/index.d.ts +108 -0
- package/esm/components/QRadioGroup/index.d.ts.map +1 -0
- package/esm/components/QRadioGroup/index.js +8 -0
- package/esm/components/QRadioGroup/types.d.ts +65 -0
- package/esm/components/QRadioGroup/types.d.ts.map +1 -0
- package/esm/components/QSelect/QSelect.d.ts +2 -2
- package/esm/components/QSelect/QSelect.vue.js +1 -1
- package/esm/components/QSelect/index.d.ts +4 -1
- package/esm/components/QSelect/index.d.ts.map +1 -1
- package/esm/components/QTextArea/QTextArea.d.ts.map +1 -1
- package/esm/components/QTextArea/QTextArea.vue.js +34 -31
- package/esm/components/QTextArea/index.d.ts +3 -0
- package/esm/components/QTextArea/index.d.ts.map +1 -1
- package/esm/components/QTextField/QTextField.d.ts +2 -2
- package/esm/components/QTextField/QTextField.d.ts.map +1 -1
- package/esm/components/QTextField/QTextField.vue.js +49 -39
- package/esm/components/QTextField/index.d.ts +7 -1
- package/esm/components/QTextField/index.d.ts.map +1 -1
- package/esm/components/QTextField/types.d.ts +5 -0
- package/esm/components/QTextField/types.d.ts.map +1 -1
- package/esm/components/index.d.ts +1 -0
- package/esm/components/index.d.ts.map +1 -1
- package/esm/components/index.js +34 -31
- package/esm/index.d.ts +2 -0
- package/package.json +1 -1
|
@@ -36,12 +36,13 @@ declare const QCombobox: {
|
|
|
36
36
|
readonly class?: string | unknown[] | undefined;
|
|
37
37
|
readonly label?: string | undefined;
|
|
38
38
|
readonly for?: string | undefined;
|
|
39
|
+
readonly required?: boolean | undefined;
|
|
39
40
|
readonly size?: import('..').QFieldSize | undefined;
|
|
40
41
|
readonly readonly?: boolean | undefined;
|
|
41
42
|
readonly disabled?: boolean | undefined;
|
|
42
|
-
readonly required?: boolean | undefined;
|
|
43
43
|
readonly invalid?: boolean | undefined;
|
|
44
44
|
readonly placeholder?: string | undefined;
|
|
45
|
+
readonly maxLength?: number | undefined;
|
|
45
46
|
readonly clearable?: boolean | undefined;
|
|
46
47
|
readonly type?: string | undefined;
|
|
47
48
|
readonly texts?: typeof import('../QTextField/types').DEFAULT_TEXTS | undefined;
|
|
@@ -62,10 +63,10 @@ declare const QCombobox: {
|
|
|
62
63
|
readonly class?: string | unknown[] | undefined;
|
|
63
64
|
readonly label?: string | undefined;
|
|
64
65
|
readonly for?: string | undefined;
|
|
66
|
+
readonly required?: boolean | undefined;
|
|
65
67
|
readonly size?: import('..').QFieldSize | undefined;
|
|
66
68
|
readonly readonly?: boolean | undefined;
|
|
67
69
|
readonly disabled?: boolean | undefined;
|
|
68
|
-
readonly required?: boolean | undefined;
|
|
69
70
|
readonly invalid?: boolean | undefined;
|
|
70
71
|
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
71
72
|
$attrs: {
|
|
@@ -138,6 +139,7 @@ declare const QCombobox: {
|
|
|
138
139
|
} & import('../../types/component').QBaseComponentProps & {
|
|
139
140
|
label?: string;
|
|
140
141
|
for?: string;
|
|
142
|
+
required?: boolean;
|
|
141
143
|
} & {
|
|
142
144
|
size?: import('..').QFieldSize;
|
|
143
145
|
readonly?: boolean;
|
|
@@ -146,6 +148,7 @@ declare const QCombobox: {
|
|
|
146
148
|
invalid?: boolean;
|
|
147
149
|
} & {
|
|
148
150
|
placeholder?: string;
|
|
151
|
+
maxLength?: number;
|
|
149
152
|
clearable?: boolean;
|
|
150
153
|
type?: string;
|
|
151
154
|
texts?: typeof import('../QTextField/types').DEFAULT_TEXTS;
|
|
@@ -188,6 +191,7 @@ declare const QCombobox: {
|
|
|
188
191
|
} & import('../../types/component').QBaseComponentProps & {
|
|
189
192
|
label?: string;
|
|
190
193
|
for?: string;
|
|
194
|
+
required?: boolean;
|
|
191
195
|
} & {
|
|
192
196
|
size?: import('..').QFieldSize;
|
|
193
197
|
readonly?: boolean;
|
|
@@ -196,6 +200,7 @@ declare const QCombobox: {
|
|
|
196
200
|
invalid?: boolean;
|
|
197
201
|
} & {
|
|
198
202
|
placeholder?: string;
|
|
203
|
+
maxLength?: number;
|
|
199
204
|
clearable?: boolean;
|
|
200
205
|
type?: string;
|
|
201
206
|
texts?: typeof import('../QTextField/types').DEFAULT_TEXTS;
|
|
@@ -222,12 +227,13 @@ declare const QCombobox: {
|
|
|
222
227
|
readonly class?: string | unknown[] | undefined;
|
|
223
228
|
readonly label?: string | undefined;
|
|
224
229
|
readonly for?: string | undefined;
|
|
230
|
+
readonly required?: boolean | undefined;
|
|
225
231
|
readonly size?: import('..').QFieldSize | undefined;
|
|
226
232
|
readonly readonly?: boolean | undefined;
|
|
227
233
|
readonly disabled?: boolean | undefined;
|
|
228
|
-
readonly required?: boolean | undefined;
|
|
229
234
|
readonly invalid?: boolean | undefined;
|
|
230
235
|
readonly placeholder?: string | undefined;
|
|
236
|
+
readonly maxLength?: number | undefined;
|
|
231
237
|
readonly clearable?: boolean | undefined;
|
|
232
238
|
readonly type?: string | undefined;
|
|
233
239
|
readonly texts?: typeof import('../QTextField/types').DEFAULT_TEXTS | undefined;
|
|
@@ -248,10 +254,10 @@ declare const QCombobox: {
|
|
|
248
254
|
readonly class?: string | unknown[] | undefined;
|
|
249
255
|
readonly label?: string | undefined;
|
|
250
256
|
readonly for?: string | undefined;
|
|
257
|
+
readonly required?: boolean | undefined;
|
|
251
258
|
readonly size?: import('..').QFieldSize | undefined;
|
|
252
259
|
readonly readonly?: boolean | undefined;
|
|
253
260
|
readonly disabled?: boolean | undefined;
|
|
254
|
-
readonly required?: boolean | undefined;
|
|
255
261
|
readonly invalid?: boolean | undefined;
|
|
256
262
|
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
257
263
|
$attrs: {
|
|
@@ -324,6 +330,7 @@ declare const QCombobox: {
|
|
|
324
330
|
} & import('../../types/component').QBaseComponentProps & {
|
|
325
331
|
label?: string;
|
|
326
332
|
for?: string;
|
|
333
|
+
required?: boolean;
|
|
327
334
|
} & {
|
|
328
335
|
size?: import('..').QFieldSize;
|
|
329
336
|
readonly?: boolean;
|
|
@@ -332,6 +339,7 @@ declare const QCombobox: {
|
|
|
332
339
|
invalid?: boolean;
|
|
333
340
|
} & {
|
|
334
341
|
placeholder?: string;
|
|
342
|
+
maxLength?: number;
|
|
335
343
|
clearable?: boolean;
|
|
336
344
|
type?: string;
|
|
337
345
|
texts?: typeof import('../QTextField/types').DEFAULT_TEXTS;
|
|
@@ -374,6 +382,7 @@ declare const QCombobox: {
|
|
|
374
382
|
} & import('../../types/component').QBaseComponentProps & {
|
|
375
383
|
label?: string;
|
|
376
384
|
for?: string;
|
|
385
|
+
required?: boolean;
|
|
377
386
|
} & {
|
|
378
387
|
size?: import('..').QFieldSize;
|
|
379
388
|
readonly?: boolean;
|
|
@@ -382,6 +391,7 @@ declare const QCombobox: {
|
|
|
382
391
|
invalid?: boolean;
|
|
383
392
|
} & {
|
|
384
393
|
placeholder?: string;
|
|
394
|
+
maxLength?: number;
|
|
385
395
|
clearable?: boolean;
|
|
386
396
|
type?: string;
|
|
387
397
|
texts?: typeof import('../QTextField/types').DEFAULT_TEXTS;
|
|
@@ -435,12 +445,13 @@ declare const QCombobox: {
|
|
|
435
445
|
readonly class?: string | unknown[] | undefined;
|
|
436
446
|
readonly label?: string | undefined;
|
|
437
447
|
readonly for?: string | undefined;
|
|
448
|
+
readonly required?: boolean | undefined;
|
|
438
449
|
readonly size?: import('..').QFieldSize | undefined;
|
|
439
450
|
readonly readonly?: boolean | undefined;
|
|
440
451
|
readonly disabled?: boolean | undefined;
|
|
441
|
-
readonly required?: boolean | undefined;
|
|
442
452
|
readonly invalid?: boolean | undefined;
|
|
443
453
|
readonly placeholder?: string | undefined;
|
|
454
|
+
readonly maxLength?: number | undefined;
|
|
444
455
|
readonly clearable?: boolean | undefined;
|
|
445
456
|
readonly type?: string | undefined;
|
|
446
457
|
readonly texts?: typeof import('../QTextField/types').DEFAULT_TEXTS | undefined;
|
|
@@ -461,10 +472,10 @@ declare const QCombobox: {
|
|
|
461
472
|
readonly class?: string | unknown[] | undefined;
|
|
462
473
|
readonly label?: string | undefined;
|
|
463
474
|
readonly for?: string | undefined;
|
|
475
|
+
readonly required?: boolean | undefined;
|
|
464
476
|
readonly size?: import('..').QFieldSize | undefined;
|
|
465
477
|
readonly readonly?: boolean | undefined;
|
|
466
478
|
readonly disabled?: boolean | undefined;
|
|
467
|
-
readonly required?: boolean | undefined;
|
|
468
479
|
readonly invalid?: boolean | undefined;
|
|
469
480
|
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
470
481
|
$attrs: {
|
|
@@ -537,6 +548,7 @@ declare const QCombobox: {
|
|
|
537
548
|
} & import('../../types/component').QBaseComponentProps & {
|
|
538
549
|
label?: string;
|
|
539
550
|
for?: string;
|
|
551
|
+
required?: boolean;
|
|
540
552
|
} & {
|
|
541
553
|
size?: import('..').QFieldSize;
|
|
542
554
|
readonly?: boolean;
|
|
@@ -545,6 +557,7 @@ declare const QCombobox: {
|
|
|
545
557
|
invalid?: boolean;
|
|
546
558
|
} & {
|
|
547
559
|
placeholder?: string;
|
|
560
|
+
maxLength?: number;
|
|
548
561
|
clearable?: boolean;
|
|
549
562
|
type?: string;
|
|
550
563
|
texts?: typeof import('../QTextField/types').DEFAULT_TEXTS;
|
|
@@ -587,6 +600,7 @@ declare const QCombobox: {
|
|
|
587
600
|
} & import('../../types/component').QBaseComponentProps & {
|
|
588
601
|
label?: string;
|
|
589
602
|
for?: string;
|
|
603
|
+
required?: boolean;
|
|
590
604
|
} & {
|
|
591
605
|
size?: import('..').QFieldSize;
|
|
592
606
|
readonly?: boolean;
|
|
@@ -595,6 +609,7 @@ declare const QCombobox: {
|
|
|
595
609
|
invalid?: boolean;
|
|
596
610
|
} & {
|
|
597
611
|
placeholder?: string;
|
|
612
|
+
maxLength?: number;
|
|
598
613
|
clearable?: boolean;
|
|
599
614
|
type?: string;
|
|
600
615
|
texts?: typeof import('../QTextField/types').DEFAULT_TEXTS;
|
|
@@ -903,12 +918,13 @@ declare const QCombobox: {
|
|
|
903
918
|
readonly class?: string | unknown[] | undefined;
|
|
904
919
|
readonly label?: string | undefined;
|
|
905
920
|
readonly for?: string | undefined;
|
|
921
|
+
readonly required?: boolean | undefined;
|
|
906
922
|
readonly size?: import('..').QFieldSize | undefined;
|
|
907
923
|
readonly readonly?: boolean | undefined;
|
|
908
924
|
readonly disabled?: boolean | undefined;
|
|
909
|
-
readonly required?: boolean | undefined;
|
|
910
925
|
readonly invalid?: boolean | undefined;
|
|
911
926
|
readonly placeholder?: string | undefined;
|
|
927
|
+
readonly maxLength?: number | undefined;
|
|
912
928
|
readonly clearable?: boolean | undefined;
|
|
913
929
|
readonly type?: string | undefined;
|
|
914
930
|
readonly texts?: typeof import('../QTextField/types').DEFAULT_TEXTS | undefined;
|
|
@@ -929,10 +945,10 @@ declare const QCombobox: {
|
|
|
929
945
|
readonly class?: string | unknown[] | undefined;
|
|
930
946
|
readonly label?: string | undefined;
|
|
931
947
|
readonly for?: string | undefined;
|
|
948
|
+
readonly required?: boolean | undefined;
|
|
932
949
|
readonly size?: import('..').QFieldSize | undefined;
|
|
933
950
|
readonly readonly?: boolean | undefined;
|
|
934
951
|
readonly disabled?: boolean | undefined;
|
|
935
|
-
readonly required?: boolean | undefined;
|
|
936
952
|
readonly invalid?: boolean | undefined;
|
|
937
953
|
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
938
954
|
$attrs: {
|
|
@@ -1005,6 +1021,7 @@ declare const QCombobox: {
|
|
|
1005
1021
|
} & import('../../types/component').QBaseComponentProps & {
|
|
1006
1022
|
label?: string;
|
|
1007
1023
|
for?: string;
|
|
1024
|
+
required?: boolean;
|
|
1008
1025
|
} & {
|
|
1009
1026
|
size?: import('..').QFieldSize;
|
|
1010
1027
|
readonly?: boolean;
|
|
@@ -1013,6 +1030,7 @@ declare const QCombobox: {
|
|
|
1013
1030
|
invalid?: boolean;
|
|
1014
1031
|
} & {
|
|
1015
1032
|
placeholder?: string;
|
|
1033
|
+
maxLength?: number;
|
|
1016
1034
|
clearable?: boolean;
|
|
1017
1035
|
type?: string;
|
|
1018
1036
|
texts?: typeof import('../QTextField/types').DEFAULT_TEXTS;
|
|
@@ -1055,6 +1073,7 @@ declare const QCombobox: {
|
|
|
1055
1073
|
} & import('../../types/component').QBaseComponentProps & {
|
|
1056
1074
|
label?: string;
|
|
1057
1075
|
for?: string;
|
|
1076
|
+
required?: boolean;
|
|
1058
1077
|
} & {
|
|
1059
1078
|
size?: import('..').QFieldSize;
|
|
1060
1079
|
readonly?: boolean;
|
|
@@ -1063,6 +1082,7 @@ declare const QCombobox: {
|
|
|
1063
1082
|
invalid?: boolean;
|
|
1064
1083
|
} & {
|
|
1065
1084
|
placeholder?: string;
|
|
1085
|
+
maxLength?: number;
|
|
1066
1086
|
clearable?: boolean;
|
|
1067
1087
|
type?: string;
|
|
1068
1088
|
texts?: typeof import('../QTextField/types').DEFAULT_TEXTS;
|
|
@@ -1089,12 +1109,13 @@ declare const QCombobox: {
|
|
|
1089
1109
|
readonly class?: string | unknown[] | undefined;
|
|
1090
1110
|
readonly label?: string | undefined;
|
|
1091
1111
|
readonly for?: string | undefined;
|
|
1112
|
+
readonly required?: boolean | undefined;
|
|
1092
1113
|
readonly size?: import('..').QFieldSize | undefined;
|
|
1093
1114
|
readonly readonly?: boolean | undefined;
|
|
1094
1115
|
readonly disabled?: boolean | undefined;
|
|
1095
|
-
readonly required?: boolean | undefined;
|
|
1096
1116
|
readonly invalid?: boolean | undefined;
|
|
1097
1117
|
readonly placeholder?: string | undefined;
|
|
1118
|
+
readonly maxLength?: number | undefined;
|
|
1098
1119
|
readonly clearable?: boolean | undefined;
|
|
1099
1120
|
readonly type?: string | undefined;
|
|
1100
1121
|
readonly texts?: typeof import('../QTextField/types').DEFAULT_TEXTS | undefined;
|
|
@@ -1115,10 +1136,10 @@ declare const QCombobox: {
|
|
|
1115
1136
|
readonly class?: string | unknown[] | undefined;
|
|
1116
1137
|
readonly label?: string | undefined;
|
|
1117
1138
|
readonly for?: string | undefined;
|
|
1139
|
+
readonly required?: boolean | undefined;
|
|
1118
1140
|
readonly size?: import('..').QFieldSize | undefined;
|
|
1119
1141
|
readonly readonly?: boolean | undefined;
|
|
1120
1142
|
readonly disabled?: boolean | undefined;
|
|
1121
|
-
readonly required?: boolean | undefined;
|
|
1122
1143
|
readonly invalid?: boolean | undefined;
|
|
1123
1144
|
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
1124
1145
|
$attrs: {
|
|
@@ -1191,6 +1212,7 @@ declare const QCombobox: {
|
|
|
1191
1212
|
} & import('../../types/component').QBaseComponentProps & {
|
|
1192
1213
|
label?: string;
|
|
1193
1214
|
for?: string;
|
|
1215
|
+
required?: boolean;
|
|
1194
1216
|
} & {
|
|
1195
1217
|
size?: import('..').QFieldSize;
|
|
1196
1218
|
readonly?: boolean;
|
|
@@ -1199,6 +1221,7 @@ declare const QCombobox: {
|
|
|
1199
1221
|
invalid?: boolean;
|
|
1200
1222
|
} & {
|
|
1201
1223
|
placeholder?: string;
|
|
1224
|
+
maxLength?: number;
|
|
1202
1225
|
clearable?: boolean;
|
|
1203
1226
|
type?: string;
|
|
1204
1227
|
texts?: typeof import('../QTextField/types').DEFAULT_TEXTS;
|
|
@@ -1241,6 +1264,7 @@ declare const QCombobox: {
|
|
|
1241
1264
|
} & import('../../types/component').QBaseComponentProps & {
|
|
1242
1265
|
label?: string;
|
|
1243
1266
|
for?: string;
|
|
1267
|
+
required?: boolean;
|
|
1244
1268
|
} & {
|
|
1245
1269
|
size?: import('..').QFieldSize;
|
|
1246
1270
|
readonly?: boolean;
|
|
@@ -1249,6 +1273,7 @@ declare const QCombobox: {
|
|
|
1249
1273
|
invalid?: boolean;
|
|
1250
1274
|
} & {
|
|
1251
1275
|
placeholder?: string;
|
|
1276
|
+
maxLength?: number;
|
|
1252
1277
|
clearable?: boolean;
|
|
1253
1278
|
type?: string;
|
|
1254
1279
|
texts?: typeof import('../QTextField/types').DEFAULT_TEXTS;
|
|
@@ -1324,12 +1349,13 @@ declare const QCombobox: {
|
|
|
1324
1349
|
readonly class?: string | unknown[] | undefined;
|
|
1325
1350
|
readonly label?: string | undefined;
|
|
1326
1351
|
readonly for?: string | undefined;
|
|
1352
|
+
readonly required?: boolean | undefined;
|
|
1327
1353
|
readonly size?: import('..').QFieldSize | undefined;
|
|
1328
1354
|
readonly readonly?: boolean | undefined;
|
|
1329
1355
|
readonly disabled?: boolean | undefined;
|
|
1330
|
-
readonly required?: boolean | undefined;
|
|
1331
1356
|
readonly invalid?: boolean | undefined;
|
|
1332
1357
|
readonly placeholder?: string | undefined;
|
|
1358
|
+
readonly maxLength?: number | undefined;
|
|
1333
1359
|
readonly clearable?: boolean | undefined;
|
|
1334
1360
|
readonly type?: string | undefined;
|
|
1335
1361
|
readonly texts?: typeof import('../QTextField/types').DEFAULT_TEXTS | undefined;
|
|
@@ -1350,10 +1376,10 @@ declare const QCombobox: {
|
|
|
1350
1376
|
readonly class?: string | unknown[] | undefined;
|
|
1351
1377
|
readonly label?: string | undefined;
|
|
1352
1378
|
readonly for?: string | undefined;
|
|
1379
|
+
readonly required?: boolean | undefined;
|
|
1353
1380
|
readonly size?: import('..').QFieldSize | undefined;
|
|
1354
1381
|
readonly readonly?: boolean | undefined;
|
|
1355
1382
|
readonly disabled?: boolean | undefined;
|
|
1356
|
-
readonly required?: boolean | undefined;
|
|
1357
1383
|
readonly invalid?: boolean | undefined;
|
|
1358
1384
|
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
1359
1385
|
$attrs: {
|
|
@@ -1426,6 +1452,7 @@ declare const QCombobox: {
|
|
|
1426
1452
|
} & import('../../types/component').QBaseComponentProps & {
|
|
1427
1453
|
label?: string;
|
|
1428
1454
|
for?: string;
|
|
1455
|
+
required?: boolean;
|
|
1429
1456
|
} & {
|
|
1430
1457
|
size?: import('..').QFieldSize;
|
|
1431
1458
|
readonly?: boolean;
|
|
@@ -1434,6 +1461,7 @@ declare const QCombobox: {
|
|
|
1434
1461
|
invalid?: boolean;
|
|
1435
1462
|
} & {
|
|
1436
1463
|
placeholder?: string;
|
|
1464
|
+
maxLength?: number;
|
|
1437
1465
|
clearable?: boolean;
|
|
1438
1466
|
type?: string;
|
|
1439
1467
|
texts?: typeof import('../QTextField/types').DEFAULT_TEXTS;
|
|
@@ -1476,6 +1504,7 @@ declare const QCombobox: {
|
|
|
1476
1504
|
} & import('../../types/component').QBaseComponentProps & {
|
|
1477
1505
|
label?: string;
|
|
1478
1506
|
for?: string;
|
|
1507
|
+
required?: boolean;
|
|
1479
1508
|
} & {
|
|
1480
1509
|
size?: import('..').QFieldSize;
|
|
1481
1510
|
readonly?: boolean;
|
|
@@ -1484,6 +1513,7 @@ declare const QCombobox: {
|
|
|
1484
1513
|
invalid?: boolean;
|
|
1485
1514
|
} & {
|
|
1486
1515
|
placeholder?: string;
|
|
1516
|
+
maxLength?: number;
|
|
1487
1517
|
clearable?: boolean;
|
|
1488
1518
|
type?: string;
|
|
1489
1519
|
texts?: typeof import('../QTextField/types').DEFAULT_TEXTS;
|
|
@@ -1510,12 +1540,13 @@ declare const QCombobox: {
|
|
|
1510
1540
|
readonly class?: string | unknown[] | undefined;
|
|
1511
1541
|
readonly label?: string | undefined;
|
|
1512
1542
|
readonly for?: string | undefined;
|
|
1543
|
+
readonly required?: boolean | undefined;
|
|
1513
1544
|
readonly size?: import('..').QFieldSize | undefined;
|
|
1514
1545
|
readonly readonly?: boolean | undefined;
|
|
1515
1546
|
readonly disabled?: boolean | undefined;
|
|
1516
|
-
readonly required?: boolean | undefined;
|
|
1517
1547
|
readonly invalid?: boolean | undefined;
|
|
1518
1548
|
readonly placeholder?: string | undefined;
|
|
1549
|
+
readonly maxLength?: number | undefined;
|
|
1519
1550
|
readonly clearable?: boolean | undefined;
|
|
1520
1551
|
readonly type?: string | undefined;
|
|
1521
1552
|
readonly texts?: typeof import('../QTextField/types').DEFAULT_TEXTS | undefined;
|
|
@@ -1536,10 +1567,10 @@ declare const QCombobox: {
|
|
|
1536
1567
|
readonly class?: string | unknown[] | undefined;
|
|
1537
1568
|
readonly label?: string | undefined;
|
|
1538
1569
|
readonly for?: string | undefined;
|
|
1570
|
+
readonly required?: boolean | undefined;
|
|
1539
1571
|
readonly size?: import('..').QFieldSize | undefined;
|
|
1540
1572
|
readonly readonly?: boolean | undefined;
|
|
1541
1573
|
readonly disabled?: boolean | undefined;
|
|
1542
|
-
readonly required?: boolean | undefined;
|
|
1543
1574
|
readonly invalid?: boolean | undefined;
|
|
1544
1575
|
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
1545
1576
|
$attrs: {
|
|
@@ -1612,6 +1643,7 @@ declare const QCombobox: {
|
|
|
1612
1643
|
} & import('../../types/component').QBaseComponentProps & {
|
|
1613
1644
|
label?: string;
|
|
1614
1645
|
for?: string;
|
|
1646
|
+
required?: boolean;
|
|
1615
1647
|
} & {
|
|
1616
1648
|
size?: import('..').QFieldSize;
|
|
1617
1649
|
readonly?: boolean;
|
|
@@ -1620,6 +1652,7 @@ declare const QCombobox: {
|
|
|
1620
1652
|
invalid?: boolean;
|
|
1621
1653
|
} & {
|
|
1622
1654
|
placeholder?: string;
|
|
1655
|
+
maxLength?: number;
|
|
1623
1656
|
clearable?: boolean;
|
|
1624
1657
|
type?: string;
|
|
1625
1658
|
texts?: typeof import('../QTextField/types').DEFAULT_TEXTS;
|
|
@@ -1662,6 +1695,7 @@ declare const QCombobox: {
|
|
|
1662
1695
|
} & import('../../types/component').QBaseComponentProps & {
|
|
1663
1696
|
label?: string;
|
|
1664
1697
|
for?: string;
|
|
1698
|
+
required?: boolean;
|
|
1665
1699
|
} & {
|
|
1666
1700
|
size?: import('..').QFieldSize;
|
|
1667
1701
|
readonly?: boolean;
|
|
@@ -1670,6 +1704,7 @@ declare const QCombobox: {
|
|
|
1670
1704
|
invalid?: boolean;
|
|
1671
1705
|
} & {
|
|
1672
1706
|
placeholder?: string;
|
|
1707
|
+
maxLength?: number;
|
|
1673
1708
|
clearable?: boolean;
|
|
1674
1709
|
type?: string;
|
|
1675
1710
|
texts?: typeof import('../QTextField/types').DEFAULT_TEXTS;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/QCombobox/index.ts"],"names":[],"mappings":"AAMA,QAAA,MAAM,SAAS
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/QCombobox/index.ts"],"names":[],"mappings":"AAMA,QAAA,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;gDAI+vzB,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wCAAtH,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;gDAAtH,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wCAAtH,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;gDAAtH,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wCAAtH,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wCAAtH,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;gDAAtH,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wCAAtH,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;gDAAtH,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wCAAtH,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;gDAAtH,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wCAAtH,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4CAAtH,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oCAAtH,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4CAAtH,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oCAAtH,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAJv1zB,CAAA;AAG7C,OAAO,EAAE,SAAS,EAAE,CAAA"}
|
|
@@ -17,10 +17,10 @@ const ee = ["value", "placeholder", "disabled", "readonly", "required", "onInput
|
|
|
17
17
|
class: {},
|
|
18
18
|
label: {},
|
|
19
19
|
for: {},
|
|
20
|
+
required: { type: Boolean },
|
|
20
21
|
size: {},
|
|
21
22
|
readonly: { type: Boolean },
|
|
22
23
|
disabled: { type: Boolean },
|
|
23
|
-
required: { type: Boolean },
|
|
24
24
|
invalid: { type: Boolean },
|
|
25
25
|
format: { default: "dd/MM/yyyy HH:mm" },
|
|
26
26
|
minTime: {},
|
|
@@ -5,6 +5,7 @@ declare const QDateTimePicker: {
|
|
|
5
5
|
} & import('../../types/component').QBaseComponentProps & {
|
|
6
6
|
label?: string;
|
|
7
7
|
for?: string;
|
|
8
|
+
required?: boolean;
|
|
8
9
|
} & {
|
|
9
10
|
size?: import('..').QFieldSize;
|
|
10
11
|
readonly?: boolean;
|
|
@@ -43,6 +44,7 @@ declare const QDateTimePicker: {
|
|
|
43
44
|
} & import('../../types/component').QBaseComponentProps & {
|
|
44
45
|
label?: string;
|
|
45
46
|
for?: string;
|
|
47
|
+
required?: boolean;
|
|
46
48
|
} & {
|
|
47
49
|
size?: import('..').QFieldSize;
|
|
48
50
|
readonly?: boolean;
|
|
@@ -74,6 +76,7 @@ declare const QDateTimePicker: {
|
|
|
74
76
|
} & import('../../types/component').QBaseComponentProps & {
|
|
75
77
|
label?: string;
|
|
76
78
|
for?: string;
|
|
79
|
+
required?: boolean;
|
|
77
80
|
} & {
|
|
78
81
|
size?: import('..').QFieldSize;
|
|
79
82
|
readonly?: boolean;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/QDateTimePicker/index.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,SAAS,CAAA;AAKnD,QAAA,MAAM,eAAe
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/QDateTimePicker/index.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,SAAS,CAAA;AAKnD,QAAA,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAAoC,CAAA;AAGzD,OAAO,EAAE,eAAe,EAAE,CAAA;AAG1B,YAAY,EAAE,oBAAoB,EAAE,CAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"QField.vue.d.ts","sourceRoot":"","sources":["../../../src/components/QField/QField.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"QField.vue.d.ts","sourceRoot":"","sources":["../../../src/components/QField/QField.vue"],"names":[],"mappings":"AA0CA;AAyFC,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,SAAS,CAAA;AA4C3C,iBAAS,cAAc;WA8FT,OAAO,IAA6B;;iCAlBb,GAAG;gCACJ,GAAG;yBACV,GAAG;yBACH,GAAG;yBACF,GAAG;wBACJ,GAAG;wBACH,GAAG;;;;;;EAiB/B;AAYD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;;;;;OASnB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAapG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { defineComponent as
|
|
1
|
+
import { defineComponent as c, ref as q, computed as a, createElementBlock as o, openBlock as d, normalizeClass as m, createBlock as _, createCommentVNode as r, renderSlot as s, unref as v, withCtx as t, createElementVNode as b, mergeProps as y } from "vue";
|
|
2
2
|
import { QLabel as $ } from "../QLabel/index.js";
|
|
3
3
|
const k = ["id"], h = {
|
|
4
4
|
key: 0,
|
|
@@ -9,7 +9,7 @@ const k = ["id"], h = {
|
|
|
9
9
|
}, C = {
|
|
10
10
|
key: 1,
|
|
11
11
|
class: "q-field__extras"
|
|
12
|
-
}, N = /* @__PURE__ */
|
|
12
|
+
}, N = /* @__PURE__ */ c({
|
|
13
13
|
inheritAttrs: !1,
|
|
14
14
|
__name: "QField",
|
|
15
15
|
props: {
|
|
@@ -17,14 +17,14 @@ const k = ["id"], h = {
|
|
|
17
17
|
class: {},
|
|
18
18
|
label: {},
|
|
19
19
|
for: {},
|
|
20
|
+
required: { type: Boolean },
|
|
20
21
|
size: { default: "medium" },
|
|
21
22
|
readonly: { type: Boolean },
|
|
22
23
|
disabled: { type: Boolean },
|
|
23
|
-
required: { type: Boolean },
|
|
24
24
|
invalid: { type: Boolean }
|
|
25
25
|
},
|
|
26
26
|
setup(n, { expose: p }) {
|
|
27
|
-
const e = n, i =
|
|
27
|
+
const e = n, i = q(null), f = a(() => e.required && !e.readonly && !e.disabled), u = a(() => [
|
|
28
28
|
"q-field",
|
|
29
29
|
`q-field--${e.size}`,
|
|
30
30
|
{
|
|
@@ -39,13 +39,14 @@ const k = ["id"], h = {
|
|
|
39
39
|
fieldRef: i
|
|
40
40
|
}), (l, z) => (d(), o("div", {
|
|
41
41
|
id: e.id,
|
|
42
|
-
class:
|
|
42
|
+
class: m(u.value)
|
|
43
43
|
}, [
|
|
44
44
|
e.label ? (d(), _(v($), {
|
|
45
45
|
key: 0,
|
|
46
46
|
class: "q-field__label",
|
|
47
47
|
label: e.label,
|
|
48
|
-
for: e.for
|
|
48
|
+
for: e.for,
|
|
49
|
+
required: e.required
|
|
49
50
|
}, {
|
|
50
51
|
prepend: t(() => [
|
|
51
52
|
s(l.$slots, "label.prepend")
|
|
@@ -55,7 +56,7 @@ const k = ["id"], h = {
|
|
|
55
56
|
]),
|
|
56
57
|
_: 3
|
|
57
58
|
/* FORWARDED */
|
|
58
|
-
}, 8, ["label", "for"])) :
|
|
59
|
+
}, 8, ["label", "for", "required"])) : r("v-if", !0),
|
|
59
60
|
s(l.$slots, "control", {}, () => [
|
|
60
61
|
b(
|
|
61
62
|
"div",
|
|
@@ -67,11 +68,11 @@ const k = ["id"], h = {
|
|
|
67
68
|
[
|
|
68
69
|
l.$slots.prepend ? (d(), o("div", h, [
|
|
69
70
|
s(l.$slots, "prepend")
|
|
70
|
-
])) :
|
|
71
|
+
])) : r("v-if", !0),
|
|
71
72
|
s(l.$slots, "default"),
|
|
72
73
|
l.$slots.append ? (d(), o("div", B, [
|
|
73
74
|
s(l.$slots, "append")
|
|
74
|
-
])) :
|
|
75
|
+
])) : r("v-if", !0)
|
|
75
76
|
],
|
|
76
77
|
16
|
|
77
78
|
/* FULL_PROPS */
|
|
@@ -79,7 +80,7 @@ const k = ["id"], h = {
|
|
|
79
80
|
]),
|
|
80
81
|
l.$slots.extras ? (d(), o("div", C, [
|
|
81
82
|
s(l.$slots, "extras")
|
|
82
|
-
])) :
|
|
83
|
+
])) : r("v-if", !0)
|
|
83
84
|
], 10, k));
|
|
84
85
|
}
|
|
85
86
|
});
|
|
@@ -29,10 +29,10 @@ const K = ["id", "accept", "required", "readonly", "disabled"], Y = {
|
|
|
29
29
|
class: {},
|
|
30
30
|
label: {},
|
|
31
31
|
for: {},
|
|
32
|
+
required: { type: Boolean },
|
|
32
33
|
size: { default: "large" },
|
|
33
34
|
readonly: { type: Boolean },
|
|
34
35
|
disabled: { type: Boolean },
|
|
35
|
-
required: { type: Boolean },
|
|
36
36
|
invalid: { type: Boolean },
|
|
37
37
|
accept: {},
|
|
38
38
|
icons: { default: () => H },
|
|
@@ -5,6 +5,7 @@ declare const QFileUpload: {
|
|
|
5
5
|
} & import('../../types/component').QBaseComponentProps & {
|
|
6
6
|
label?: string;
|
|
7
7
|
for?: string;
|
|
8
|
+
required?: boolean;
|
|
8
9
|
} & {
|
|
9
10
|
size?: import('..').QFieldSize;
|
|
10
11
|
readonly?: boolean;
|
|
@@ -38,6 +39,7 @@ declare const QFileUpload: {
|
|
|
38
39
|
} & import('../../types/component').QBaseComponentProps & {
|
|
39
40
|
label?: string;
|
|
40
41
|
for?: string;
|
|
42
|
+
required?: boolean;
|
|
41
43
|
} & {
|
|
42
44
|
size?: import('..').QFieldSize;
|
|
43
45
|
readonly?: boolean;
|
|
@@ -63,6 +65,7 @@ declare const QFileUpload: {
|
|
|
63
65
|
} & import('../../types/component').QBaseComponentProps & {
|
|
64
66
|
label?: string;
|
|
65
67
|
for?: string;
|
|
68
|
+
required?: boolean;
|
|
66
69
|
} & {
|
|
67
70
|
size?: import('..').QFieldSize;
|
|
68
71
|
readonly?: boolean;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/QFileUpload/index.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,SAAS,CAAA;AAK/C,QAAA,MAAM,WAAW
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/QFileUpload/index.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,SAAS,CAAA;AAK/C,QAAA,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAAgC,CAAA;AAGjD,OAAO,EAAE,WAAW,EAAE,CAAA;AAGtB,YAAY,EAAE,gBAAgB,EAAE,CAAA"}
|
|
@@ -15,10 +15,10 @@ const _ = {
|
|
|
15
15
|
class: {},
|
|
16
16
|
label: {},
|
|
17
17
|
for: {},
|
|
18
|
+
required: { type: Boolean },
|
|
18
19
|
size: { default: "large" },
|
|
19
20
|
readonly: { type: Boolean },
|
|
20
21
|
disabled: { type: Boolean },
|
|
21
|
-
required: { type: Boolean },
|
|
22
22
|
invalid: { type: Boolean },
|
|
23
23
|
prependIcon: {},
|
|
24
24
|
appendIcon: {}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"QLabel.vue.d.ts","sourceRoot":"","sources":["../../../src/components/QLabel/QLabel.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"QLabel.vue.d.ts","sourceRoot":"","sources":["../../../src/components/QLabel/QLabel.vue"],"names":[],"mappings":"AAeA;AA0CC,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,SAAS,CAAA;AAwB3C,iBAAS,cAAc;WAmCT,OAAO,IAA6B;;yBAbrB,GAAG;yBACH,GAAG;wBACJ,GAAG;;;;EAgB9B;AASD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe,kSAMnB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAQpG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
|