@quidgest/ui 0.16.65 → 0.16.67

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 (63) hide show
  1. package/dist/json/api.json +226 -1
  2. package/dist/ui.css +14 -0
  3. package/dist/ui.esm.js +35 -10
  4. package/dist/ui.js +5 -5
  5. package/dist/ui.min.css +1 -1
  6. package/dist/ui.min.js +154 -154
  7. package/dist/ui.scss +15 -1
  8. package/esm/components/QCheckbox/QCheckbox.vue.js +4 -3
  9. package/esm/components/QCheckbox/QCheckboxLabel.vue.js +7 -6
  10. package/esm/components/QCheckbox/index.d.ts +3 -0
  11. package/esm/components/QCheckbox/index.d.ts.map +1 -1
  12. package/esm/components/QCombobox/QCombobox.d.ts +28 -4
  13. package/esm/components/QCombobox/QCombobox.d.ts.map +1 -1
  14. package/esm/components/QCombobox/QCombobox.vue.js +6 -5
  15. package/esm/components/QCombobox/index.d.ts +49 -7
  16. package/esm/components/QCombobox/index.d.ts.map +1 -1
  17. package/esm/components/QDateTimePicker/QDateTimePicker.d.ts.map +1 -1
  18. package/esm/components/QDateTimePicker/QDateTimePicker.vue.js +23 -21
  19. package/esm/components/QDateTimePicker/index.d.ts +3 -0
  20. package/esm/components/QDateTimePicker/index.d.ts.map +1 -1
  21. package/esm/components/QField/QField.d.ts +1 -0
  22. package/esm/components/QField/QField.d.ts.map +1 -1
  23. package/esm/components/QField/QField.vue.js +23 -20
  24. package/esm/components/QField/index.d.ts +3 -0
  25. package/esm/components/QField/index.d.ts.map +1 -1
  26. package/esm/components/QFileUpload/QFileUpload.d.ts.map +1 -1
  27. package/esm/components/QFileUpload/QFileUpload.vue.js +18 -16
  28. package/esm/components/QFileUpload/index.d.ts +3 -0
  29. package/esm/components/QFileUpload/index.d.ts.map +1 -1
  30. package/esm/components/QInputGroup/QInputGroup.d.ts.map +1 -1
  31. package/esm/components/QInputGroup/QInputGroup.vue.js +27 -25
  32. package/esm/components/QLabel/QLabel.d.ts.map +1 -1
  33. package/esm/components/QLabel/QLabel.vue.js +15 -13
  34. package/esm/components/QLabel/types.d.ts +12 -0
  35. package/esm/components/QLabel/types.d.ts.map +1 -1
  36. package/esm/components/QMeter/QMeter.vue.js +8 -7
  37. package/esm/components/QMeter/index.d.ts +2 -0
  38. package/esm/components/QMeter/index.d.ts.map +1 -1
  39. package/esm/components/QPasswordField/QPasswordField.d.ts +14 -2
  40. package/esm/components/QPasswordField/QPasswordField.d.ts.map +1 -1
  41. package/esm/components/QPasswordField/QPasswordField.vue.js +5 -4
  42. package/esm/components/QPasswordField/index.d.ts +7 -1
  43. package/esm/components/QPasswordField/index.d.ts.map +1 -1
  44. package/esm/components/QRadioGroup/QRadioButton.vue.js +13 -12
  45. package/esm/components/QRadioGroup/QRadioGroup.vue.js +8 -7
  46. package/esm/components/QRadioGroup/index.d.ts +3 -0
  47. package/esm/components/QRadioGroup/index.d.ts.map +1 -1
  48. package/esm/components/QSelect/QSelect.d.ts +8 -2
  49. package/esm/components/QSelect/QSelect.d.ts.map +1 -1
  50. package/esm/components/QSelect/QSelect.vue.js +9 -7
  51. package/esm/components/QSelect/index.d.ts +7 -1
  52. package/esm/components/QSelect/index.d.ts.map +1 -1
  53. package/esm/components/QSwitch/QSwitch.vue.js +15 -14
  54. package/esm/components/QTextArea/QTextArea.d.ts.map +1 -1
  55. package/esm/components/QTextArea/QTextArea.vue.js +21 -19
  56. package/esm/components/QTextArea/index.d.ts +3 -0
  57. package/esm/components/QTextArea/index.d.ts.map +1 -1
  58. package/esm/components/QTextField/QTextField.d.ts +8 -2
  59. package/esm/components/QTextField/QTextField.d.ts.map +1 -1
  60. package/esm/components/QTextField/QTextField.vue.js +28 -26
  61. package/esm/components/QTextField/index.d.ts +7 -1
  62. package/esm/components/QTextField/index.d.ts.map +1 -1
  63. package/package.json +1 -1
@@ -34,6 +34,7 @@ declare const QCombobox: {
34
34
  readonly label?: string | undefined;
35
35
  readonly required?: boolean | undefined;
36
36
  readonly for?: string | undefined;
37
+ readonly labelPosition?: import('..').QLabelPosition | undefined;
37
38
  readonly size?: import('..').QFieldSize | undefined;
38
39
  readonly readonly?: boolean | undefined;
39
40
  readonly disabled?: boolean | undefined;
@@ -61,6 +62,7 @@ declare const QCombobox: {
61
62
  readonly label?: string | undefined;
62
63
  readonly required?: boolean | undefined;
63
64
  readonly for?: string | undefined;
65
+ readonly labelPosition?: import('..').QLabelPosition | undefined;
64
66
  readonly size?: import('..').QFieldSize | undefined;
65
67
  readonly readonly?: boolean | undefined;
66
68
  readonly disabled?: boolean | undefined;
@@ -86,6 +88,7 @@ declare const QCombobox: {
86
88
  fieldRef: Readonly<import('vue').ShallowRef<HTMLDivElement | null>>;
87
89
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
88
90
  size: import('..').QFieldSize;
91
+ labelPosition: import('..').QLabelPosition;
89
92
  }, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
90
93
  beforeCreate?: (() => void) | (() => void)[];
91
94
  created?: (() => void) | (() => void)[];
@@ -108,7 +111,8 @@ declare const QCombobox: {
108
111
  $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
109
112
  } & Readonly<{
110
113
  size: import('..').QFieldSize;
111
- }> & Omit<Readonly<import('..').QFieldProps> & Readonly<{}>, "size" | "fieldRef"> & import('vue').ShallowUnwrapRef<{
114
+ labelPosition: import('..').QLabelPosition;
115
+ }> & Omit<Readonly<import('..').QFieldProps> & Readonly<{}>, "fieldRef" | ("size" | "labelPosition")> & import('vue').ShallowUnwrapRef<{
112
116
  fieldRef: Readonly<import('vue').ShallowRef<HTMLDivElement | null>>;
113
117
  }> & {} & import('vue').ComponentCustomProperties & {} & {
114
118
  $slots: {
@@ -137,6 +141,7 @@ declare const QCombobox: {
137
141
  label?: string;
138
142
  required?: boolean;
139
143
  for?: string;
144
+ labelPosition?: import('..').QLabelPosition;
140
145
  } & {
141
146
  size?: import('..').QFieldSize;
142
147
  readonly?: boolean;
@@ -189,6 +194,7 @@ declare const QCombobox: {
189
194
  label?: string;
190
195
  required?: boolean;
191
196
  for?: string;
197
+ labelPosition?: import('..').QLabelPosition;
192
198
  } & {
193
199
  size?: import('..').QFieldSize;
194
200
  readonly?: boolean;
@@ -225,6 +231,7 @@ declare const QCombobox: {
225
231
  readonly label?: string | undefined;
226
232
  readonly required?: boolean | undefined;
227
233
  readonly for?: string | undefined;
234
+ readonly labelPosition?: import('..').QLabelPosition | undefined;
228
235
  readonly size?: import('..').QFieldSize | undefined;
229
236
  readonly readonly?: boolean | undefined;
230
237
  readonly disabled?: boolean | undefined;
@@ -252,6 +259,7 @@ declare const QCombobox: {
252
259
  readonly label?: string | undefined;
253
260
  readonly required?: boolean | undefined;
254
261
  readonly for?: string | undefined;
262
+ readonly labelPosition?: import('..').QLabelPosition | undefined;
255
263
  readonly size?: import('..').QFieldSize | undefined;
256
264
  readonly readonly?: boolean | undefined;
257
265
  readonly disabled?: boolean | undefined;
@@ -277,6 +285,7 @@ declare const QCombobox: {
277
285
  fieldRef: Readonly<import('vue').ShallowRef<HTMLDivElement | null>>;
278
286
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
279
287
  size: import('..').QFieldSize;
288
+ labelPosition: import('..').QLabelPosition;
280
289
  }, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
281
290
  beforeCreate?: (() => void) | (() => void)[];
282
291
  created?: (() => void) | (() => void)[];
@@ -299,7 +308,8 @@ declare const QCombobox: {
299
308
  $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
300
309
  } & Readonly<{
301
310
  size: import('..').QFieldSize;
302
- }> & Omit<Readonly<import('..').QFieldProps> & Readonly<{}>, "size" | "fieldRef"> & import('vue').ShallowUnwrapRef<{
311
+ labelPosition: import('..').QLabelPosition;
312
+ }> & Omit<Readonly<import('..').QFieldProps> & Readonly<{}>, "fieldRef" | ("size" | "labelPosition")> & import('vue').ShallowUnwrapRef<{
303
313
  fieldRef: Readonly<import('vue').ShallowRef<HTMLDivElement | null>>;
304
314
  }> & {} & import('vue').ComponentCustomProperties & {} & {
305
315
  $slots: {
@@ -328,6 +338,7 @@ declare const QCombobox: {
328
338
  label?: string;
329
339
  required?: boolean;
330
340
  for?: string;
341
+ labelPosition?: import('..').QLabelPosition;
331
342
  } & {
332
343
  size?: import('..').QFieldSize;
333
344
  readonly?: boolean;
@@ -380,6 +391,7 @@ declare const QCombobox: {
380
391
  label?: string;
381
392
  required?: boolean;
382
393
  for?: string;
394
+ labelPosition?: import('..').QLabelPosition;
383
395
  } & {
384
396
  size?: import('..').QFieldSize;
385
397
  readonly?: boolean;
@@ -441,6 +453,7 @@ declare const QCombobox: {
441
453
  readonly label?: string | undefined;
442
454
  readonly required?: boolean | undefined;
443
455
  readonly for?: string | undefined;
456
+ readonly labelPosition?: import('..').QLabelPosition | undefined;
444
457
  readonly size?: import('..').QFieldSize | undefined;
445
458
  readonly readonly?: boolean | undefined;
446
459
  readonly disabled?: boolean | undefined;
@@ -468,6 +481,7 @@ declare const QCombobox: {
468
481
  readonly label?: string | undefined;
469
482
  readonly required?: boolean | undefined;
470
483
  readonly for?: string | undefined;
484
+ readonly labelPosition?: import('..').QLabelPosition | undefined;
471
485
  readonly size?: import('..').QFieldSize | undefined;
472
486
  readonly readonly?: boolean | undefined;
473
487
  readonly disabled?: boolean | undefined;
@@ -493,6 +507,7 @@ declare const QCombobox: {
493
507
  fieldRef: Readonly<import('vue').ShallowRef<HTMLDivElement | null>>;
494
508
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
495
509
  size: import('..').QFieldSize;
510
+ labelPosition: import('..').QLabelPosition;
496
511
  }, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
497
512
  beforeCreate?: (() => void) | (() => void)[];
498
513
  created?: (() => void) | (() => void)[];
@@ -515,7 +530,8 @@ declare const QCombobox: {
515
530
  $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
516
531
  } & Readonly<{
517
532
  size: import('..').QFieldSize;
518
- }> & Omit<Readonly<import('..').QFieldProps> & Readonly<{}>, "size" | "fieldRef"> & import('vue').ShallowUnwrapRef<{
533
+ labelPosition: import('..').QLabelPosition;
534
+ }> & Omit<Readonly<import('..').QFieldProps> & Readonly<{}>, "fieldRef" | ("size" | "labelPosition")> & import('vue').ShallowUnwrapRef<{
519
535
  fieldRef: Readonly<import('vue').ShallowRef<HTMLDivElement | null>>;
520
536
  }> & {} & import('vue').ComponentCustomProperties & {} & {
521
537
  $slots: {
@@ -544,6 +560,7 @@ declare const QCombobox: {
544
560
  label?: string;
545
561
  required?: boolean;
546
562
  for?: string;
563
+ labelPosition?: import('..').QLabelPosition;
547
564
  } & {
548
565
  size?: import('..').QFieldSize;
549
566
  readonly?: boolean;
@@ -596,6 +613,7 @@ declare const QCombobox: {
596
613
  label?: string;
597
614
  required?: boolean;
598
615
  for?: string;
616
+ labelPosition?: import('..').QLabelPosition;
599
617
  } & {
600
618
  size?: import('..').QFieldSize;
601
619
  readonly?: boolean;
@@ -943,6 +961,7 @@ declare const QCombobox: {
943
961
  readonly label?: string | undefined;
944
962
  readonly required?: boolean | undefined;
945
963
  readonly for?: string | undefined;
964
+ readonly labelPosition?: import('..').QLabelPosition | undefined;
946
965
  readonly size?: import('..').QFieldSize | undefined;
947
966
  readonly readonly?: boolean | undefined;
948
967
  readonly disabled?: boolean | undefined;
@@ -970,6 +989,7 @@ declare const QCombobox: {
970
989
  readonly label?: string | undefined;
971
990
  readonly required?: boolean | undefined;
972
991
  readonly for?: string | undefined;
992
+ readonly labelPosition?: import('..').QLabelPosition | undefined;
973
993
  readonly size?: import('..').QFieldSize | undefined;
974
994
  readonly readonly?: boolean | undefined;
975
995
  readonly disabled?: boolean | undefined;
@@ -995,6 +1015,7 @@ declare const QCombobox: {
995
1015
  fieldRef: Readonly<import('vue').ShallowRef<HTMLDivElement | null>>;
996
1016
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
997
1017
  size: import('..').QFieldSize;
1018
+ labelPosition: import('..').QLabelPosition;
998
1019
  }, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
999
1020
  beforeCreate?: (() => void) | (() => void)[];
1000
1021
  created?: (() => void) | (() => void)[];
@@ -1017,7 +1038,8 @@ declare const QCombobox: {
1017
1038
  $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
1018
1039
  } & Readonly<{
1019
1040
  size: import('..').QFieldSize;
1020
- }> & Omit<Readonly<import('..').QFieldProps> & Readonly<{}>, "size" | "fieldRef"> & import('vue').ShallowUnwrapRef<{
1041
+ labelPosition: import('..').QLabelPosition;
1042
+ }> & Omit<Readonly<import('..').QFieldProps> & Readonly<{}>, "fieldRef" | ("size" | "labelPosition")> & import('vue').ShallowUnwrapRef<{
1021
1043
  fieldRef: Readonly<import('vue').ShallowRef<HTMLDivElement | null>>;
1022
1044
  }> & {} & import('vue').ComponentCustomProperties & {} & {
1023
1045
  $slots: {
@@ -1046,6 +1068,7 @@ declare const QCombobox: {
1046
1068
  label?: string;
1047
1069
  required?: boolean;
1048
1070
  for?: string;
1071
+ labelPosition?: import('..').QLabelPosition;
1049
1072
  } & {
1050
1073
  size?: import('..').QFieldSize;
1051
1074
  readonly?: boolean;
@@ -1098,6 +1121,7 @@ declare const QCombobox: {
1098
1121
  label?: string;
1099
1122
  required?: boolean;
1100
1123
  for?: string;
1124
+ labelPosition?: import('..').QLabelPosition;
1101
1125
  } & {
1102
1126
  size?: import('..').QFieldSize;
1103
1127
  readonly?: boolean;
@@ -1134,6 +1158,7 @@ declare const QCombobox: {
1134
1158
  readonly label?: string | undefined;
1135
1159
  readonly required?: boolean | undefined;
1136
1160
  readonly for?: string | undefined;
1161
+ readonly labelPosition?: import('..').QLabelPosition | undefined;
1137
1162
  readonly size?: import('..').QFieldSize | undefined;
1138
1163
  readonly readonly?: boolean | undefined;
1139
1164
  readonly disabled?: boolean | undefined;
@@ -1161,6 +1186,7 @@ declare const QCombobox: {
1161
1186
  readonly label?: string | undefined;
1162
1187
  readonly required?: boolean | undefined;
1163
1188
  readonly for?: string | undefined;
1189
+ readonly labelPosition?: import('..').QLabelPosition | undefined;
1164
1190
  readonly size?: import('..').QFieldSize | undefined;
1165
1191
  readonly readonly?: boolean | undefined;
1166
1192
  readonly disabled?: boolean | undefined;
@@ -1186,6 +1212,7 @@ declare const QCombobox: {
1186
1212
  fieldRef: Readonly<import('vue').ShallowRef<HTMLDivElement | null>>;
1187
1213
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
1188
1214
  size: import('..').QFieldSize;
1215
+ labelPosition: import('..').QLabelPosition;
1189
1216
  }, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
1190
1217
  beforeCreate?: (() => void) | (() => void)[];
1191
1218
  created?: (() => void) | (() => void)[];
@@ -1208,7 +1235,8 @@ declare const QCombobox: {
1208
1235
  $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
1209
1236
  } & Readonly<{
1210
1237
  size: import('..').QFieldSize;
1211
- }> & Omit<Readonly<import('..').QFieldProps> & Readonly<{}>, "size" | "fieldRef"> & import('vue').ShallowUnwrapRef<{
1238
+ labelPosition: import('..').QLabelPosition;
1239
+ }> & Omit<Readonly<import('..').QFieldProps> & Readonly<{}>, "fieldRef" | ("size" | "labelPosition")> & import('vue').ShallowUnwrapRef<{
1212
1240
  fieldRef: Readonly<import('vue').ShallowRef<HTMLDivElement | null>>;
1213
1241
  }> & {} & import('vue').ComponentCustomProperties & {} & {
1214
1242
  $slots: {
@@ -1237,6 +1265,7 @@ declare const QCombobox: {
1237
1265
  label?: string;
1238
1266
  required?: boolean;
1239
1267
  for?: string;
1268
+ labelPosition?: import('..').QLabelPosition;
1240
1269
  } & {
1241
1270
  size?: import('..').QFieldSize;
1242
1271
  readonly?: boolean;
@@ -1289,6 +1318,7 @@ declare const QCombobox: {
1289
1318
  label?: string;
1290
1319
  required?: boolean;
1291
1320
  for?: string;
1321
+ labelPosition?: import('..').QLabelPosition;
1292
1322
  } & {
1293
1323
  size?: import('..').QFieldSize;
1294
1324
  readonly?: boolean;
@@ -1369,6 +1399,7 @@ declare const QCombobox: {
1369
1399
  readonly label?: string | undefined;
1370
1400
  readonly required?: boolean | undefined;
1371
1401
  readonly for?: string | undefined;
1402
+ readonly labelPosition?: import('..').QLabelPosition | undefined;
1372
1403
  readonly size?: import('..').QFieldSize | undefined;
1373
1404
  readonly readonly?: boolean | undefined;
1374
1405
  readonly disabled?: boolean | undefined;
@@ -1396,6 +1427,7 @@ declare const QCombobox: {
1396
1427
  readonly label?: string | undefined;
1397
1428
  readonly required?: boolean | undefined;
1398
1429
  readonly for?: string | undefined;
1430
+ readonly labelPosition?: import('..').QLabelPosition | undefined;
1399
1431
  readonly size?: import('..').QFieldSize | undefined;
1400
1432
  readonly readonly?: boolean | undefined;
1401
1433
  readonly disabled?: boolean | undefined;
@@ -1421,6 +1453,7 @@ declare const QCombobox: {
1421
1453
  fieldRef: Readonly<import('vue').ShallowRef<HTMLDivElement | null>>;
1422
1454
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
1423
1455
  size: import('..').QFieldSize;
1456
+ labelPosition: import('..').QLabelPosition;
1424
1457
  }, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
1425
1458
  beforeCreate?: (() => void) | (() => void)[];
1426
1459
  created?: (() => void) | (() => void)[];
@@ -1443,7 +1476,8 @@ declare const QCombobox: {
1443
1476
  $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
1444
1477
  } & Readonly<{
1445
1478
  size: import('..').QFieldSize;
1446
- }> & Omit<Readonly<import('..').QFieldProps> & Readonly<{}>, "size" | "fieldRef"> & import('vue').ShallowUnwrapRef<{
1479
+ labelPosition: import('..').QLabelPosition;
1480
+ }> & Omit<Readonly<import('..').QFieldProps> & Readonly<{}>, "fieldRef" | ("size" | "labelPosition")> & import('vue').ShallowUnwrapRef<{
1447
1481
  fieldRef: Readonly<import('vue').ShallowRef<HTMLDivElement | null>>;
1448
1482
  }> & {} & import('vue').ComponentCustomProperties & {} & {
1449
1483
  $slots: {
@@ -1472,6 +1506,7 @@ declare const QCombobox: {
1472
1506
  label?: string;
1473
1507
  required?: boolean;
1474
1508
  for?: string;
1509
+ labelPosition?: import('..').QLabelPosition;
1475
1510
  } & {
1476
1511
  size?: import('..').QFieldSize;
1477
1512
  readonly?: boolean;
@@ -1524,6 +1559,7 @@ declare const QCombobox: {
1524
1559
  label?: string;
1525
1560
  required?: boolean;
1526
1561
  for?: string;
1562
+ labelPosition?: import('..').QLabelPosition;
1527
1563
  } & {
1528
1564
  size?: import('..').QFieldSize;
1529
1565
  readonly?: boolean;
@@ -1560,6 +1596,7 @@ declare const QCombobox: {
1560
1596
  readonly label?: string | undefined;
1561
1597
  readonly required?: boolean | undefined;
1562
1598
  readonly for?: string | undefined;
1599
+ readonly labelPosition?: import('..').QLabelPosition | undefined;
1563
1600
  readonly size?: import('..').QFieldSize | undefined;
1564
1601
  readonly readonly?: boolean | undefined;
1565
1602
  readonly disabled?: boolean | undefined;
@@ -1587,6 +1624,7 @@ declare const QCombobox: {
1587
1624
  readonly label?: string | undefined;
1588
1625
  readonly required?: boolean | undefined;
1589
1626
  readonly for?: string | undefined;
1627
+ readonly labelPosition?: import('..').QLabelPosition | undefined;
1590
1628
  readonly size?: import('..').QFieldSize | undefined;
1591
1629
  readonly readonly?: boolean | undefined;
1592
1630
  readonly disabled?: boolean | undefined;
@@ -1612,6 +1650,7 @@ declare const QCombobox: {
1612
1650
  fieldRef: Readonly<import('vue').ShallowRef<HTMLDivElement | null>>;
1613
1651
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
1614
1652
  size: import('..').QFieldSize;
1653
+ labelPosition: import('..').QLabelPosition;
1615
1654
  }, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
1616
1655
  beforeCreate?: (() => void) | (() => void)[];
1617
1656
  created?: (() => void) | (() => void)[];
@@ -1634,7 +1673,8 @@ declare const QCombobox: {
1634
1673
  $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
1635
1674
  } & Readonly<{
1636
1675
  size: import('..').QFieldSize;
1637
- }> & Omit<Readonly<import('..').QFieldProps> & Readonly<{}>, "size" | "fieldRef"> & import('vue').ShallowUnwrapRef<{
1676
+ labelPosition: import('..').QLabelPosition;
1677
+ }> & Omit<Readonly<import('..').QFieldProps> & Readonly<{}>, "fieldRef" | ("size" | "labelPosition")> & import('vue').ShallowUnwrapRef<{
1638
1678
  fieldRef: Readonly<import('vue').ShallowRef<HTMLDivElement | null>>;
1639
1679
  }> & {} & import('vue').ComponentCustomProperties & {} & {
1640
1680
  $slots: {
@@ -1663,6 +1703,7 @@ declare const QCombobox: {
1663
1703
  label?: string;
1664
1704
  required?: boolean;
1665
1705
  for?: string;
1706
+ labelPosition?: import('..').QLabelPosition;
1666
1707
  } & {
1667
1708
  size?: import('..').QFieldSize;
1668
1709
  readonly?: boolean;
@@ -1715,6 +1756,7 @@ declare const QCombobox: {
1715
1756
  label?: string;
1716
1757
  required?: boolean;
1717
1758
  for?: string;
1759
+ labelPosition?: import('..').QLabelPosition;
1718
1760
  } & {
1719
1761
  size?: import('..').QFieldSize;
1720
1762
  readonly?: boolean;
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/QCombobox/index.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/QCombobox/index.ts"],"names":[],"mappings":"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"}
@@ -1 +1 @@
1
- {"version":3,"file":"QDateTimePicker.vue.d.ts","sourceRoot":"","sources":["../../../src/components/QDateTimePicker/QDateTimePicker.vue"],"names":[],"mappings":"AAsEA;AA+MC,OAAO,EAAE,aAAa,EAAE,aAAa,EAAE,MAAM,aAAa,CAAA;AAc1D,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,SAAS,CAAA;AAQnD,KAAK,WAAW,GAAG,oBAAoB,CAAC;AAuHzC,KAAK,iBAAiB,GAAG;IACzB,UAAU,CAAC,EAAE,MAAM,GAAG,IAAI,GAAG,IAAI,EAAE,CAAC;CACnC,GAAG,WAAW,CAAC;AAKhB,iBAAS,cAAc;WA0KT,OAAO,IAA6B;;wBAZrB,GAAG;;;;;;EAiB/B;AA2BD,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
+ {"version":3,"file":"QDateTimePicker.vue.d.ts","sourceRoot":"","sources":["../../../src/components/QDateTimePicker/QDateTimePicker.vue"],"names":[],"mappings":"AAuEA;AAgNC,OAAO,EAAE,aAAa,EAAE,aAAa,EAAE,MAAM,aAAa,CAAA;AAc1D,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,SAAS,CAAA;AAQnD,KAAK,WAAW,GAAG,oBAAoB,CAAC;AAuHzC,KAAK,iBAAiB,GAAG;IACzB,UAAU,CAAC,EAAE,MAAM,GAAG,IAAI,GAAG,IAAI,EAAE,CAAC;CACnC,GAAG,WAAW,CAAC;AAKhB,iBAAS,cAAc;WA4KT,OAAO,IAA6B;;wBAZrB,GAAG;;;;;;EAiB/B;AA2BD,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 C, mergeModels as V, useModel as F, computed as t, ref as U, createBlock as w, openBlock as D, unref as n, normalizeClass as P, createSlots as E, withCtx as r, createVNode as s, createElementVNode as N, mergeProps as k, renderSlot as Q } from "vue";
1
+ import { defineComponent as C, mergeModels as V, useModel as P, computed as t, ref as F, createBlock as U, openBlock as w, unref as n, normalizeClass as D, createSlots as E, withCtx as i, createVNode as s, createElementVNode as N, mergeProps as k, renderSlot as Q } from "vue";
2
2
  import { DEFAULT_TEXTS as H, DEFAULT_ICONS as I } from "./constants.js";
3
3
  import { QClearButton as Z } from "../__internal__/QClearButton/index.js";
4
4
  import { QField as $ } from "../QField/index.js";
@@ -9,7 +9,7 @@ import { convertDatePatternToMask as X } from "../../utils/date/date.js";
9
9
  import { isTimeOnlyFormat as j } from "../../utils/date/tokens.js";
10
10
  import { formatUsesTime as W, formatUsesSeconds as G, uses12HourFormat as J } from "../../utils/time.js";
11
11
  import { useTheme as Y } from "../../composables/theme.js";
12
- const ee = ["value", "placeholder", "disabled", "readonly", "required", "onInput", "onBlur", "onFocus", "onKeypress", "onKeydown", "onPaste"], ce = /* @__PURE__ */ C({
12
+ const ee = ["value", "placeholder", "disabled", "readonly", "required", "onInput", "onBlur", "onFocus", "onKeypress", "onKeydown", "onPaste"], pe = /* @__PURE__ */ C({
13
13
  inheritAttrs: !1,
14
14
  __name: "QDateTimePicker",
15
15
  props: /* @__PURE__ */ V({
@@ -18,6 +18,7 @@ const ee = ["value", "placeholder", "disabled", "readonly", "required", "onInput
18
18
  label: {},
19
19
  required: { type: Boolean },
20
20
  for: {},
21
+ labelPosition: {},
21
22
  size: {},
22
23
  readonly: { type: Boolean },
23
24
  disabled: { type: Boolean },
@@ -38,13 +39,13 @@ const ee = ["value", "placeholder", "disabled", "readonly", "required", "onInput
38
39
  }),
39
40
  emits: ["update:modelValue"],
40
41
  setup(d) {
41
- const e = d, m = F(d, "modelValue"), u = t({
42
+ const e = d, m = P(d, "modelValue"), u = t({
42
43
  get: () => m.value,
43
44
  set: (o) => m.value = o || void 0
44
- }), v = t(() => i.value ? "format" : void 0), b = t(() => ({
45
+ }), b = t(() => r.value ? "format" : void 0), v = t(() => ({
45
46
  closeOnAutoApply: e.closeOnSelect,
46
47
  tabOutClosesMenu: !0
47
- })), c = Y(), T = t(() => c.current.value.mode === "dark"), x = t(() => W(e.format)), h = t(() => G(e.format)), i = t(() => j(e.format)), _ = t(() => J(e.format)), g = t(() => f(e.minTime)), q = t(() => f(e.maxTime)), B = t(() => i.value ? e.icons.clock : e.icons.calendar), S = t(() => ({
48
+ })), p = Y(), T = t(() => p.current.value.mode === "dark"), x = t(() => W(e.format)), h = t(() => G(e.format)), r = t(() => j(e.format)), _ = t(() => J(e.format)), g = t(() => f(e.minTime)), q = t(() => f(e.maxTime)), B = t(() => r.value ? e.icons.clock : e.icons.calendar), S = t(() => ({
48
49
  mask: X(e.format),
49
50
  tokens: {
50
51
  // Default tokens
@@ -72,8 +73,8 @@ const ee = ["value", "placeholder", "disabled", "readonly", "required", "onInput
72
73
  },
73
74
  eager: !0
74
75
  // Show static characters before the user types them
75
- })), p = U();
76
- R(p, S);
76
+ })), c = F();
77
+ R(c, S);
77
78
  function f(o) {
78
79
  if (!o) return;
79
80
  const a = o.split(":");
@@ -83,17 +84,18 @@ const ee = ["value", "placeholder", "disabled", "readonly", "required", "onInput
83
84
  seconds: a[2]
84
85
  };
85
86
  }
86
- return (o, a) => (D(), w(n($), {
87
+ return (o, a) => (w(), U(n($), {
87
88
  id: e.id,
88
- class: P(["q-date-time-picker", e.class]),
89
+ class: D(["q-date-time-picker", e.class]),
89
90
  label: e.label,
91
+ "label-position": e.labelPosition,
90
92
  readonly: e.readonly,
91
93
  disabled: e.disabled,
92
94
  required: e.required,
93
95
  size: e.size,
94
96
  invalid: e.invalid
95
97
  }, E({
96
- prepend: r(() => [
98
+ prepend: i(() => [
97
99
  s(
98
100
  n(K),
99
101
  k({ class: "q-date-time-picker__input-icon" }, B.value),
@@ -102,11 +104,11 @@ const ee = ["value", "placeholder", "disabled", "readonly", "required", "onInput
102
104
  /* FULL_PROPS */
103
105
  )
104
106
  ]),
105
- default: r(() => [
107
+ default: i(() => [
106
108
  s(n(L), {
107
109
  modelValue: u.value,
108
110
  "onUpdate:modelValue": a[0] || (a[0] = (l) => u.value = l),
109
- "model-type": v.value,
111
+ "model-type": b.value,
110
112
  "min-time": g.value,
111
113
  "max-time": q.value,
112
114
  disabled: e.disabled,
@@ -117,21 +119,21 @@ const ee = ["value", "placeholder", "disabled", "readonly", "required", "onInput
117
119
  locale: e.locale,
118
120
  "enable-time-picker": x.value,
119
121
  "enable-seconds": h.value,
120
- "time-picker": i.value,
121
- config: b.value,
122
+ "time-picker": r.value,
123
+ config: v.value,
122
124
  teleport: !e.inline,
123
125
  offset: 16,
124
126
  dark: T.value,
125
- ui: { menu: ["q-date-time-picker__menu", n(c).class.value] },
127
+ ui: { menu: ["q-date-time-picker__menu", n(p).class.value] },
126
128
  "text-input": { enterSubmit: !0 },
127
129
  "auto-apply": e.closeOnSelect,
128
130
  "hide-input-icon": "",
129
131
  clearable: ""
130
132
  }, {
131
- "dp-input": r(({ value: l, onInput: z, onBlur: M, onFocus: A, onKeypress: y, onPaste: O }) => [
133
+ "dp-input": i(({ value: l, onInput: z, onBlur: M, onFocus: A, onKeypress: y, onPaste: O }) => [
132
134
  N("input", k({
133
135
  ref_key: "inputRef",
134
- ref: p,
136
+ ref: c,
135
137
  "data-test-id": "dp-input",
136
138
  class: "dp__input",
137
139
  type: "text",
@@ -149,7 +151,7 @@ const ee = ["value", "placeholder", "disabled", "readonly", "required", "onInput
149
151
  onPaste: O
150
152
  }), null, 16, ee)
151
153
  ]),
152
- "clear-icon": r(({ clear: l }) => [
154
+ "clear-icon": i(({ clear: l }) => [
153
155
  s(n(Z), {
154
156
  texts: e.texts,
155
157
  onClick: l
@@ -164,14 +166,14 @@ const ee = ["value", "placeholder", "disabled", "readonly", "required", "onInput
164
166
  }, [
165
167
  o.$slots.extras ? {
166
168
  name: "extras",
167
- fn: r(() => [
169
+ fn: i(() => [
168
170
  Q(o.$slots, "extras")
169
171
  ]),
170
172
  key: "0"
171
173
  } : void 0
172
- ]), 1032, ["id", "class", "label", "readonly", "disabled", "required", "size", "invalid"]));
174
+ ]), 1032, ["id", "class", "label", "label-position", "readonly", "disabled", "required", "size", "invalid"]));
173
175
  }
174
176
  });
175
177
  export {
176
- ce as default
178
+ pe as default
177
179
  };
@@ -5,6 +5,7 @@ declare const QDateTimePicker: {
5
5
  label?: string;
6
6
  required?: boolean;
7
7
  for?: string;
8
+ labelPosition?: import('..').QLabelPosition;
8
9
  } & {
9
10
  size?: import('..').QFieldSize;
10
11
  readonly?: boolean;
@@ -46,6 +47,7 @@ declare const QDateTimePicker: {
46
47
  label?: string;
47
48
  required?: boolean;
48
49
  for?: string;
50
+ labelPosition?: import('..').QLabelPosition;
49
51
  } & {
50
52
  size?: import('..').QFieldSize;
51
53
  readonly?: boolean;
@@ -80,6 +82,7 @@ declare const QDateTimePicker: {
80
82
  label?: string;
81
83
  required?: boolean;
82
84
  for?: string;
85
+ labelPosition?: import('..').QLabelPosition;
83
86
  } & {
84
87
  size?: import('..').QFieldSize;
85
88
  readonly?: boolean;
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/QDateTimePicker/index.ts"],"names":[],"mappings":"AAMA,QAAA,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAAoC,CAAA;AAGzD,OAAO,EAAE,eAAe,EAAE,CAAA;AAG1B,cAAc,SAAS,CAAA"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/QDateTimePicker/index.ts"],"names":[],"mappings":"AAMA,QAAA,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAAoC,CAAA;AAGzD,OAAO,EAAE,eAAe,EAAE,CAAA;AAG1B,cAAc,SAAS,CAAA"}
@@ -20,6 +20,7 @@ declare const __VLS_component: import('vue').DefineComponent<QFieldProps, {
20
20
  fieldRef: Readonly<import('vue').ShallowRef<HTMLDivElement | null>>;
21
21
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<QFieldProps> & Readonly<{}>, {
22
22
  size: import('./types').QFieldSize;
23
+ labelPosition: import('..').QLabelPosition;
23
24
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
24
25
  field: HTMLDivElement;
25
26
  }, any>;
@@ -1 +1 @@
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;AAWD,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
+ {"version":3,"file":"QField.vue.d.ts","sourceRoot":"","sources":["../../../src/components/QField/QField.vue"],"names":[],"mappings":"AA2CA;AA4FC,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,SAAS,CAAA;AA+C3C,iBAAS,cAAc;WAgGT,OAAO,IAA6B;;iCAlBb,GAAG;gCACJ,GAAG;yBACV,GAAG;yBACH,GAAG;yBACF,GAAG;wBACJ,GAAG;wBACH,GAAG;;;;;;EAiB/B;AAWD,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"}