@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.
- package/dist/json/api.json +226 -1
- package/dist/ui.css +14 -0
- package/dist/ui.esm.js +35 -10
- package/dist/ui.js +5 -5
- package/dist/ui.min.css +1 -1
- package/dist/ui.min.js +154 -154
- package/dist/ui.scss +15 -1
- package/esm/components/QCheckbox/QCheckbox.vue.js +4 -3
- package/esm/components/QCheckbox/QCheckboxLabel.vue.js +7 -6
- package/esm/components/QCheckbox/index.d.ts +3 -0
- package/esm/components/QCheckbox/index.d.ts.map +1 -1
- package/esm/components/QCombobox/QCombobox.d.ts +28 -4
- package/esm/components/QCombobox/QCombobox.d.ts.map +1 -1
- package/esm/components/QCombobox/QCombobox.vue.js +6 -5
- package/esm/components/QCombobox/index.d.ts +49 -7
- package/esm/components/QCombobox/index.d.ts.map +1 -1
- package/esm/components/QDateTimePicker/QDateTimePicker.d.ts.map +1 -1
- package/esm/components/QDateTimePicker/QDateTimePicker.vue.js +23 -21
- 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 +1 -0
- package/esm/components/QField/QField.d.ts.map +1 -1
- package/esm/components/QField/QField.vue.js +23 -20
- package/esm/components/QField/index.d.ts +3 -0
- package/esm/components/QField/index.d.ts.map +1 -1
- package/esm/components/QFileUpload/QFileUpload.d.ts.map +1 -1
- package/esm/components/QFileUpload/QFileUpload.vue.js +18 -16
- package/esm/components/QFileUpload/index.d.ts +3 -0
- package/esm/components/QFileUpload/index.d.ts.map +1 -1
- package/esm/components/QInputGroup/QInputGroup.d.ts.map +1 -1
- package/esm/components/QInputGroup/QInputGroup.vue.js +27 -25
- package/esm/components/QLabel/QLabel.d.ts.map +1 -1
- package/esm/components/QLabel/QLabel.vue.js +15 -13
- package/esm/components/QLabel/types.d.ts +12 -0
- package/esm/components/QLabel/types.d.ts.map +1 -1
- package/esm/components/QMeter/QMeter.vue.js +8 -7
- 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 -2
- package/esm/components/QPasswordField/QPasswordField.d.ts.map +1 -1
- package/esm/components/QPasswordField/QPasswordField.vue.js +5 -4
- package/esm/components/QPasswordField/index.d.ts +7 -1
- package/esm/components/QPasswordField/index.d.ts.map +1 -1
- package/esm/components/QRadioGroup/QRadioButton.vue.js +13 -12
- package/esm/components/QRadioGroup/QRadioGroup.vue.js +8 -7
- package/esm/components/QRadioGroup/index.d.ts +3 -0
- package/esm/components/QRadioGroup/index.d.ts.map +1 -1
- package/esm/components/QSelect/QSelect.d.ts +8 -2
- package/esm/components/QSelect/QSelect.d.ts.map +1 -1
- package/esm/components/QSelect/QSelect.vue.js +9 -7
- package/esm/components/QSelect/index.d.ts +7 -1
- package/esm/components/QSelect/index.d.ts.map +1 -1
- package/esm/components/QSwitch/QSwitch.vue.js +15 -14
- package/esm/components/QTextArea/QTextArea.d.ts.map +1 -1
- package/esm/components/QTextArea/QTextArea.vue.js +21 -19
- 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 +8 -2
- package/esm/components/QTextField/QTextField.d.ts.map +1 -1
- package/esm/components/QTextField/QTextField.vue.js +28 -26
- package/esm/components/QTextField/index.d.ts +7 -1
- package/esm/components/QTextField/index.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/json/api.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "0.16.
|
|
2
|
+
"version": "0.16.67",
|
|
3
3
|
"components": [
|
|
4
4
|
{
|
|
5
5
|
"name": "QAccordion",
|
|
@@ -1342,6 +1342,22 @@
|
|
|
1342
1342
|
"required": false,
|
|
1343
1343
|
"category": "Accessibility"
|
|
1344
1344
|
},
|
|
1345
|
+
{
|
|
1346
|
+
"name": "labelPosition",
|
|
1347
|
+
"type": {
|
|
1348
|
+
"kind": "enum",
|
|
1349
|
+
"values": [
|
|
1350
|
+
"right",
|
|
1351
|
+
"left",
|
|
1352
|
+
"center",
|
|
1353
|
+
"topleft",
|
|
1354
|
+
"topright"
|
|
1355
|
+
]
|
|
1356
|
+
},
|
|
1357
|
+
"description": "Position of the label relative to the input field.\n- 'left': Label appears to the left of the input\n- 'center': Label appears above the input, centered\n- 'right': Label appears to the right of the input\n- 'topleft': Label appears above the input, aligned to the left\n- 'topright': Label appears above the input, aligned to the right",
|
|
1358
|
+
"required": false,
|
|
1359
|
+
"category": "Presentation"
|
|
1360
|
+
},
|
|
1345
1361
|
{
|
|
1346
1362
|
"name": "labelPlacement",
|
|
1347
1363
|
"type": {
|
|
@@ -1976,6 +1992,22 @@
|
|
|
1976
1992
|
"required": false,
|
|
1977
1993
|
"category": "Accessibility"
|
|
1978
1994
|
},
|
|
1995
|
+
{
|
|
1996
|
+
"name": "labelPosition",
|
|
1997
|
+
"type": {
|
|
1998
|
+
"kind": "enum",
|
|
1999
|
+
"values": [
|
|
2000
|
+
"right",
|
|
2001
|
+
"left",
|
|
2002
|
+
"center",
|
|
2003
|
+
"topleft",
|
|
2004
|
+
"topright"
|
|
2005
|
+
]
|
|
2006
|
+
},
|
|
2007
|
+
"description": "Position of the label relative to the input field.\n- 'left': Label appears to the left of the input\n- 'center': Label appears above the input, centered\n- 'right': Label appears to the right of the input\n- 'topleft': Label appears above the input, aligned to the left\n- 'topright': Label appears above the input, aligned to the right",
|
|
2008
|
+
"required": false,
|
|
2009
|
+
"category": "Presentation"
|
|
2010
|
+
},
|
|
1979
2011
|
{
|
|
1980
2012
|
"name": "readonly",
|
|
1981
2013
|
"type": {
|
|
@@ -2324,6 +2356,22 @@
|
|
|
2324
2356
|
"required": false,
|
|
2325
2357
|
"category": "Accessibility"
|
|
2326
2358
|
},
|
|
2359
|
+
{
|
|
2360
|
+
"name": "labelPosition",
|
|
2361
|
+
"type": {
|
|
2362
|
+
"kind": "enum",
|
|
2363
|
+
"values": [
|
|
2364
|
+
"right",
|
|
2365
|
+
"left",
|
|
2366
|
+
"center",
|
|
2367
|
+
"topleft",
|
|
2368
|
+
"topright"
|
|
2369
|
+
]
|
|
2370
|
+
},
|
|
2371
|
+
"description": "Position of the label relative to the input field.\n- 'left': Label appears to the left of the input\n- 'center': Label appears above the input, centered\n- 'right': Label appears to the right of the input\n- 'topleft': Label appears above the input, aligned to the left\n- 'topright': Label appears above the input, aligned to the right",
|
|
2372
|
+
"required": false,
|
|
2373
|
+
"category": "Presentation"
|
|
2374
|
+
},
|
|
2327
2375
|
{
|
|
2328
2376
|
"name": "size",
|
|
2329
2377
|
"type": {
|
|
@@ -3389,6 +3437,23 @@
|
|
|
3389
3437
|
"required": false,
|
|
3390
3438
|
"category": "Accessibility"
|
|
3391
3439
|
},
|
|
3440
|
+
{
|
|
3441
|
+
"name": "labelPosition",
|
|
3442
|
+
"type": {
|
|
3443
|
+
"kind": "enum",
|
|
3444
|
+
"values": [
|
|
3445
|
+
"right",
|
|
3446
|
+
"left",
|
|
3447
|
+
"center",
|
|
3448
|
+
"topleft",
|
|
3449
|
+
"topright"
|
|
3450
|
+
]
|
|
3451
|
+
},
|
|
3452
|
+
"description": "Position of the label relative to the input field.\n- 'left': Label appears to the left of the input\n- 'center': Label appears above the input, centered\n- 'right': Label appears to the right of the input\n- 'topleft': Label appears above the input, aligned to the left\n- 'topright': Label appears above the input, aligned to the right",
|
|
3453
|
+
"default": "topleft",
|
|
3454
|
+
"required": false,
|
|
3455
|
+
"category": "Presentation"
|
|
3456
|
+
},
|
|
3392
3457
|
{
|
|
3393
3458
|
"name": "size",
|
|
3394
3459
|
"type": {
|
|
@@ -3527,6 +3592,22 @@
|
|
|
3527
3592
|
"required": false,
|
|
3528
3593
|
"category": "Accessibility"
|
|
3529
3594
|
},
|
|
3595
|
+
{
|
|
3596
|
+
"name": "labelPosition",
|
|
3597
|
+
"type": {
|
|
3598
|
+
"kind": "enum",
|
|
3599
|
+
"values": [
|
|
3600
|
+
"right",
|
|
3601
|
+
"left",
|
|
3602
|
+
"center",
|
|
3603
|
+
"topleft",
|
|
3604
|
+
"topright"
|
|
3605
|
+
]
|
|
3606
|
+
},
|
|
3607
|
+
"description": "Position of the label relative to the input field.\n- 'left': Label appears to the left of the input\n- 'center': Label appears above the input, centered\n- 'right': Label appears to the right of the input\n- 'topleft': Label appears above the input, aligned to the left\n- 'topright': Label appears above the input, aligned to the right",
|
|
3608
|
+
"required": false,
|
|
3609
|
+
"category": "Presentation"
|
|
3610
|
+
},
|
|
3530
3611
|
{
|
|
3531
3612
|
"name": "size",
|
|
3532
3613
|
"type": {
|
|
@@ -4005,6 +4086,22 @@
|
|
|
4005
4086
|
"required": false,
|
|
4006
4087
|
"category": "Accessibility"
|
|
4007
4088
|
},
|
|
4089
|
+
{
|
|
4090
|
+
"name": "labelPosition",
|
|
4091
|
+
"type": {
|
|
4092
|
+
"kind": "enum",
|
|
4093
|
+
"values": [
|
|
4094
|
+
"right",
|
|
4095
|
+
"left",
|
|
4096
|
+
"center",
|
|
4097
|
+
"topleft",
|
|
4098
|
+
"topright"
|
|
4099
|
+
]
|
|
4100
|
+
},
|
|
4101
|
+
"description": "Position of the label relative to the input field.\n- 'left': Label appears to the left of the input\n- 'center': Label appears above the input, centered\n- 'right': Label appears to the right of the input\n- 'topleft': Label appears above the input, aligned to the left\n- 'topright': Label appears above the input, aligned to the right",
|
|
4102
|
+
"required": false,
|
|
4103
|
+
"category": "Presentation"
|
|
4104
|
+
},
|
|
4008
4105
|
{
|
|
4009
4106
|
"name": "size",
|
|
4010
4107
|
"type": {
|
|
@@ -4200,6 +4297,22 @@
|
|
|
4200
4297
|
"description": "The form field associated with the label.",
|
|
4201
4298
|
"required": false,
|
|
4202
4299
|
"category": "Accessibility"
|
|
4300
|
+
},
|
|
4301
|
+
{
|
|
4302
|
+
"name": "labelPosition",
|
|
4303
|
+
"type": {
|
|
4304
|
+
"kind": "enum",
|
|
4305
|
+
"values": [
|
|
4306
|
+
"right",
|
|
4307
|
+
"left",
|
|
4308
|
+
"center",
|
|
4309
|
+
"topleft",
|
|
4310
|
+
"topright"
|
|
4311
|
+
]
|
|
4312
|
+
},
|
|
4313
|
+
"description": "Position of the label relative to the input field.\n- 'left': Label appears to the left of the input\n- 'center': Label appears above the input, centered\n- 'right': Label appears to the right of the input\n- 'topleft': Label appears above the input, aligned to the left\n- 'topright': Label appears above the input, aligned to the right",
|
|
4314
|
+
"required": false,
|
|
4315
|
+
"category": "Presentation"
|
|
4203
4316
|
}
|
|
4204
4317
|
],
|
|
4205
4318
|
"events": [],
|
|
@@ -4552,6 +4665,22 @@
|
|
|
4552
4665
|
"required": false,
|
|
4553
4666
|
"category": "Accessibility"
|
|
4554
4667
|
},
|
|
4668
|
+
{
|
|
4669
|
+
"name": "labelPosition",
|
|
4670
|
+
"type": {
|
|
4671
|
+
"kind": "enum",
|
|
4672
|
+
"values": [
|
|
4673
|
+
"right",
|
|
4674
|
+
"left",
|
|
4675
|
+
"center",
|
|
4676
|
+
"topleft",
|
|
4677
|
+
"topright"
|
|
4678
|
+
]
|
|
4679
|
+
},
|
|
4680
|
+
"description": "Position of the label relative to the input field.\n- 'left': Label appears to the left of the input\n- 'center': Label appears above the input, centered\n- 'right': Label appears to the right of the input\n- 'topleft': Label appears above the input, aligned to the left\n- 'topright': Label appears above the input, aligned to the right",
|
|
4681
|
+
"required": false,
|
|
4682
|
+
"category": "Presentation"
|
|
4683
|
+
},
|
|
4555
4684
|
{
|
|
4556
4685
|
"name": "valueLabel",
|
|
4557
4686
|
"type": {
|
|
@@ -5085,6 +5214,22 @@
|
|
|
5085
5214
|
"required": false,
|
|
5086
5215
|
"category": "Accessibility"
|
|
5087
5216
|
},
|
|
5217
|
+
{
|
|
5218
|
+
"name": "labelPosition",
|
|
5219
|
+
"type": {
|
|
5220
|
+
"kind": "enum",
|
|
5221
|
+
"values": [
|
|
5222
|
+
"right",
|
|
5223
|
+
"left",
|
|
5224
|
+
"center",
|
|
5225
|
+
"topleft",
|
|
5226
|
+
"topright"
|
|
5227
|
+
]
|
|
5228
|
+
},
|
|
5229
|
+
"description": "Position of the label relative to the input field.\n- 'left': Label appears to the left of the input\n- 'center': Label appears above the input, centered\n- 'right': Label appears to the right of the input\n- 'topleft': Label appears above the input, aligned to the left\n- 'topright': Label appears above the input, aligned to the right",
|
|
5230
|
+
"required": false,
|
|
5231
|
+
"category": "Presentation"
|
|
5232
|
+
},
|
|
5088
5233
|
{
|
|
5089
5234
|
"name": "readonly",
|
|
5090
5235
|
"type": {
|
|
@@ -5707,6 +5852,22 @@
|
|
|
5707
5852
|
"required": false,
|
|
5708
5853
|
"category": "Accessibility"
|
|
5709
5854
|
},
|
|
5855
|
+
{
|
|
5856
|
+
"name": "labelPosition",
|
|
5857
|
+
"type": {
|
|
5858
|
+
"kind": "enum",
|
|
5859
|
+
"values": [
|
|
5860
|
+
"right",
|
|
5861
|
+
"left",
|
|
5862
|
+
"center",
|
|
5863
|
+
"topleft",
|
|
5864
|
+
"topright"
|
|
5865
|
+
]
|
|
5866
|
+
},
|
|
5867
|
+
"description": "Position of the label relative to the input field.\n- 'left': Label appears to the left of the input\n- 'center': Label appears above the input, centered\n- 'right': Label appears to the right of the input\n- 'topleft': Label appears above the input, aligned to the left\n- 'topright': Label appears above the input, aligned to the right",
|
|
5868
|
+
"required": false,
|
|
5869
|
+
"category": "Presentation"
|
|
5870
|
+
},
|
|
5710
5871
|
{
|
|
5711
5872
|
"name": "name",
|
|
5712
5873
|
"type": {
|
|
@@ -5995,6 +6156,22 @@
|
|
|
5995
6156
|
"required": false,
|
|
5996
6157
|
"category": "Accessibility"
|
|
5997
6158
|
},
|
|
6159
|
+
{
|
|
6160
|
+
"name": "labelPosition",
|
|
6161
|
+
"type": {
|
|
6162
|
+
"kind": "enum",
|
|
6163
|
+
"values": [
|
|
6164
|
+
"right",
|
|
6165
|
+
"left",
|
|
6166
|
+
"center",
|
|
6167
|
+
"topleft",
|
|
6168
|
+
"topright"
|
|
6169
|
+
]
|
|
6170
|
+
},
|
|
6171
|
+
"description": "Position of the label relative to the input field.\n- 'left': Label appears to the left of the input\n- 'center': Label appears above the input, centered\n- 'right': Label appears to the right of the input\n- 'topleft': Label appears above the input, aligned to the left\n- 'topright': Label appears above the input, aligned to the right",
|
|
6172
|
+
"required": false,
|
|
6173
|
+
"category": "Presentation"
|
|
6174
|
+
},
|
|
5998
6175
|
{
|
|
5999
6176
|
"name": "size",
|
|
6000
6177
|
"type": {
|
|
@@ -6587,6 +6764,22 @@
|
|
|
6587
6764
|
"required": false,
|
|
6588
6765
|
"category": "State"
|
|
6589
6766
|
},
|
|
6767
|
+
{
|
|
6768
|
+
"name": "labelPosition",
|
|
6769
|
+
"type": {
|
|
6770
|
+
"kind": "enum",
|
|
6771
|
+
"values": [
|
|
6772
|
+
"right",
|
|
6773
|
+
"left",
|
|
6774
|
+
"center",
|
|
6775
|
+
"topleft",
|
|
6776
|
+
"topright"
|
|
6777
|
+
]
|
|
6778
|
+
},
|
|
6779
|
+
"description": "Position of the label relative to the input field.\n- 'left': Label appears to the left of the input\n- 'center': Label appears above the input, centered\n- 'right': Label appears to the right of the input\n- 'topleft': Label appears above the input, aligned to the left\n- 'topright': Label appears above the input, aligned to the right",
|
|
6780
|
+
"required": false,
|
|
6781
|
+
"category": "Presentation"
|
|
6782
|
+
},
|
|
6590
6783
|
{
|
|
6591
6784
|
"name": "trueLabel",
|
|
6592
6785
|
"type": {
|
|
@@ -6786,6 +6979,22 @@
|
|
|
6786
6979
|
"required": false,
|
|
6787
6980
|
"category": "Accessibility"
|
|
6788
6981
|
},
|
|
6982
|
+
{
|
|
6983
|
+
"name": "labelPosition",
|
|
6984
|
+
"type": {
|
|
6985
|
+
"kind": "enum",
|
|
6986
|
+
"values": [
|
|
6987
|
+
"right",
|
|
6988
|
+
"left",
|
|
6989
|
+
"center",
|
|
6990
|
+
"topleft",
|
|
6991
|
+
"topright"
|
|
6992
|
+
]
|
|
6993
|
+
},
|
|
6994
|
+
"description": "Position of the label relative to the input field.\n- 'left': Label appears to the left of the input\n- 'center': Label appears above the input, centered\n- 'right': Label appears to the right of the input\n- 'topleft': Label appears above the input, aligned to the left\n- 'topright': Label appears above the input, aligned to the right",
|
|
6995
|
+
"required": false,
|
|
6996
|
+
"category": "Presentation"
|
|
6997
|
+
},
|
|
6789
6998
|
{
|
|
6790
6999
|
"name": "size",
|
|
6791
7000
|
"type": {
|
|
@@ -7059,6 +7268,22 @@
|
|
|
7059
7268
|
"required": false,
|
|
7060
7269
|
"category": "Accessibility"
|
|
7061
7270
|
},
|
|
7271
|
+
{
|
|
7272
|
+
"name": "labelPosition",
|
|
7273
|
+
"type": {
|
|
7274
|
+
"kind": "enum",
|
|
7275
|
+
"values": [
|
|
7276
|
+
"right",
|
|
7277
|
+
"left",
|
|
7278
|
+
"center",
|
|
7279
|
+
"topleft",
|
|
7280
|
+
"topright"
|
|
7281
|
+
]
|
|
7282
|
+
},
|
|
7283
|
+
"description": "Position of the label relative to the input field.\n- 'left': Label appears to the left of the input\n- 'center': Label appears above the input, centered\n- 'right': Label appears to the right of the input\n- 'topleft': Label appears above the input, aligned to the left\n- 'topright': Label appears above the input, aligned to the right",
|
|
7284
|
+
"required": false,
|
|
7285
|
+
"category": "Presentation"
|
|
7286
|
+
},
|
|
7062
7287
|
{
|
|
7063
7288
|
"name": "size",
|
|
7064
7289
|
"type": {
|
package/dist/ui.css
CHANGED
|
@@ -3176,6 +3176,14 @@ body *::-webkit-scrollbar-track {
|
|
|
3176
3176
|
.q-field--invalid .q-field__control:not(:focus-within) {
|
|
3177
3177
|
border-color: var(--q-theme-danger);
|
|
3178
3178
|
}
|
|
3179
|
+
.q-field--label-left {
|
|
3180
|
+
flex-direction: row;
|
|
3181
|
+
gap: 0.25rem;
|
|
3182
|
+
}
|
|
3183
|
+
.q-field--label-right {
|
|
3184
|
+
flex-direction: row-reverse;
|
|
3185
|
+
gap: 0.25rem;
|
|
3186
|
+
}
|
|
3179
3187
|
.q-field:not(.q-field--disabled) .q-field__control:focus-within {
|
|
3180
3188
|
outline: 2px solid rgb(var(--q-theme-info-rgb)/50%);
|
|
3181
3189
|
}
|
|
@@ -3918,6 +3926,12 @@ body *::-webkit-scrollbar-track {
|
|
|
3918
3926
|
font-weight: 700;
|
|
3919
3927
|
color: var(--q-theme-danger);
|
|
3920
3928
|
}
|
|
3929
|
+
.q-label--topright {
|
|
3930
|
+
align-self: flex-end;
|
|
3931
|
+
}
|
|
3932
|
+
.q-label--center {
|
|
3933
|
+
align-self: center;
|
|
3934
|
+
}
|
|
3921
3935
|
|
|
3922
3936
|
.q-line-loader {
|
|
3923
3937
|
--q-line-loader-height: 4px;
|
package/dist/ui.esm.js
CHANGED
|
@@ -3,7 +3,7 @@ var vs = (t, e, a) => e in t ? ms(t, e, { enumerable: !0, configurable: !0, writ
|
|
|
3
3
|
var _e = (t, e, a) => vs(t, typeof e != "symbol" ? e + "" : e, a);
|
|
4
4
|
import { getCurrentInstance as wn, computed as w, ref as j, toValue as ya, provide as yl, inject as Ga, unref as u, isRef as vn, watch as De, defineComponent as ue, mergeModels as Ve, toRef as Ce, useModel as We, createElementBlock as _, openBlock as p, normalizeClass as oe, renderSlot as D, normalizeStyle as Qe, withModifiers as at, createCommentVNode as S, createElementVNode as Z, createVNode as me, createTextVNode as je, toDisplayString as ke, useAttrs as gl, createBlock as te, resolveDynamicComponent as Nt, withCtx as z, Fragment as ye, h as Jn, mergeProps as $e, normalizeProps as Oe, guardReactiveProps as Ne, useSlots as Zt, onMounted as Je, onUnmounted as Dt, renderList as Re, nextTick as Be, useTemplateRef as Tt, createSlots as He, withKeys as el, withDirectives as Ut, vModelDynamic as hs, vModelText as bl, useId as ys, onBeforeUnmount as _l, reactive as ra, Teleport as Rr, Transition as jt, render as ar, getCurrentScope as Er, onScopeDispose as Vr, onBeforeUpdate as gs, vShow as pn, resolveComponent as bs, vModelCheckbox as _s, readonly as ws, customRef as ks, shallowRef as tl, toHandlers as $s, watchEffect as xs, TransitionGroup as Ts } from "vue";
|
|
5
5
|
/*!
|
|
6
|
-
* Quidgest UI v0.16.
|
|
6
|
+
* Quidgest UI v0.16.67
|
|
7
7
|
* (c) 2026 Quidgest - Consultores de Gestão, S.A.
|
|
8
8
|
* Released under the MIT License.
|
|
9
9
|
*/
|
|
@@ -1631,6 +1631,7 @@ const ki = /* @__PURE__ */ ue({
|
|
|
1631
1631
|
label: {},
|
|
1632
1632
|
required: { type: Boolean },
|
|
1633
1633
|
for: {},
|
|
1634
|
+
labelPosition: {},
|
|
1634
1635
|
labelPlacement: { default: "right" },
|
|
1635
1636
|
color: { default: "primary" },
|
|
1636
1637
|
size: { default: "regular" },
|
|
@@ -1741,11 +1742,13 @@ const ki = /* @__PURE__ */ ue({
|
|
|
1741
1742
|
class: {},
|
|
1742
1743
|
label: {},
|
|
1743
1744
|
required: { type: Boolean },
|
|
1744
|
-
for: {}
|
|
1745
|
+
for: {},
|
|
1746
|
+
labelPosition: {}
|
|
1745
1747
|
},
|
|
1746
1748
|
setup(t) {
|
|
1747
1749
|
const e = t, a = w(() => [
|
|
1748
1750
|
"q-label",
|
|
1751
|
+
e.labelPosition ? `q-label--${e.labelPosition}` : "",
|
|
1749
1752
|
{
|
|
1750
1753
|
"q-label--required": e.required
|
|
1751
1754
|
},
|
|
@@ -1776,7 +1779,8 @@ const ki = /* @__PURE__ */ ue({
|
|
|
1776
1779
|
class: {},
|
|
1777
1780
|
label: {},
|
|
1778
1781
|
required: { type: Boolean },
|
|
1779
|
-
for: {}
|
|
1782
|
+
for: {},
|
|
1783
|
+
labelPosition: {}
|
|
1780
1784
|
},
|
|
1781
1785
|
setup(t) {
|
|
1782
1786
|
const e = t;
|
|
@@ -1816,6 +1820,7 @@ const ki = /* @__PURE__ */ ue({
|
|
|
1816
1820
|
label: {},
|
|
1817
1821
|
required: { type: Boolean },
|
|
1818
1822
|
for: {},
|
|
1823
|
+
labelPosition: { default: "topleft" },
|
|
1819
1824
|
size: { default: "medium" },
|
|
1820
1825
|
readonly: { type: Boolean },
|
|
1821
1826
|
disabled: { type: Boolean },
|
|
@@ -1825,6 +1830,7 @@ const ki = /* @__PURE__ */ ue({
|
|
|
1825
1830
|
const a = t, n = Tt("field"), l = w(() => a.required && !a.readonly && !a.disabled), r = w(() => [
|
|
1826
1831
|
"q-field",
|
|
1827
1832
|
`q-field--${a.size}`,
|
|
1833
|
+
`q-field--label-${a.labelPosition}`,
|
|
1828
1834
|
{
|
|
1829
1835
|
"q-field--readonly": a.readonly,
|
|
1830
1836
|
"q-field--disabled": a.disabled,
|
|
@@ -1843,6 +1849,7 @@ const ki = /* @__PURE__ */ ue({
|
|
|
1843
1849
|
key: 0,
|
|
1844
1850
|
class: "q-field__label",
|
|
1845
1851
|
label: a.label,
|
|
1852
|
+
"label-position": a.labelPosition,
|
|
1846
1853
|
for: a.for,
|
|
1847
1854
|
required: a.required
|
|
1848
1855
|
}, {
|
|
@@ -1853,7 +1860,7 @@ const ki = /* @__PURE__ */ ue({
|
|
|
1853
1860
|
D(o.$slots, "label.append")
|
|
1854
1861
|
]),
|
|
1855
1862
|
_: 3
|
|
1856
|
-
}, 8, ["label", "for", "required"])) : S("", !0),
|
|
1863
|
+
}, 8, ["label", "label-position", "for", "required"])) : S("", !0),
|
|
1857
1864
|
D(o.$slots, "control", {}, () => [
|
|
1858
1865
|
Z("div", $e({
|
|
1859
1866
|
ref: "field",
|
|
@@ -1918,6 +1925,7 @@ const ki = /* @__PURE__ */ ue({
|
|
|
1918
1925
|
label: {},
|
|
1919
1926
|
required: { type: Boolean },
|
|
1920
1927
|
for: {},
|
|
1928
|
+
labelPosition: {},
|
|
1921
1929
|
size: {},
|
|
1922
1930
|
readonly: { type: Boolean },
|
|
1923
1931
|
disabled: { type: Boolean },
|
|
@@ -1959,6 +1967,7 @@ const ki = /* @__PURE__ */ ue({
|
|
|
1959
1967
|
class: oe(["q-text-field", n.class]),
|
|
1960
1968
|
for: u(s),
|
|
1961
1969
|
label: n.label,
|
|
1970
|
+
"label-position": n.labelPosition,
|
|
1962
1971
|
size: n.size,
|
|
1963
1972
|
readonly: n.readonly,
|
|
1964
1973
|
disabled: n.disabled,
|
|
@@ -2017,7 +2026,7 @@ const ki = /* @__PURE__ */ ue({
|
|
|
2017
2026
|
]),
|
|
2018
2027
|
key: "2"
|
|
2019
2028
|
} : void 0
|
|
2020
|
-
]), 1032, ["class", "for", "label", "size", "readonly", "disabled", "required", "invalid"]));
|
|
2029
|
+
]), 1032, ["class", "for", "label", "label-position", "size", "readonly", "disabled", "required", "invalid"]));
|
|
2021
2030
|
}
|
|
2022
2031
|
}), Tu = {
|
|
2023
2032
|
...tn
|
|
@@ -3180,6 +3189,7 @@ const vd = ["id"], hd = ["role"], yd = /* @__PURE__ */ ue({
|
|
|
3180
3189
|
label: {},
|
|
3181
3190
|
required: { type: Boolean },
|
|
3182
3191
|
for: {},
|
|
3192
|
+
labelPosition: {},
|
|
3183
3193
|
size: {},
|
|
3184
3194
|
readonly: { type: Boolean },
|
|
3185
3195
|
disabled: { type: Boolean },
|
|
@@ -12264,6 +12274,7 @@ const rv = ["value", "placeholder", "disabled", "readonly", "required", "onInput
|
|
|
12264
12274
|
label: {},
|
|
12265
12275
|
required: { type: Boolean },
|
|
12266
12276
|
for: {},
|
|
12277
|
+
labelPosition: {},
|
|
12267
12278
|
size: {},
|
|
12268
12279
|
readonly: { type: Boolean },
|
|
12269
12280
|
disabled: { type: Boolean },
|
|
@@ -12333,6 +12344,7 @@ const rv = ["value", "placeholder", "disabled", "readonly", "required", "onInput
|
|
|
12333
12344
|
id: e.id,
|
|
12334
12345
|
class: oe(["q-date-time-picker", e.class]),
|
|
12335
12346
|
label: e.label,
|
|
12347
|
+
"label-position": e.labelPosition,
|
|
12336
12348
|
readonly: e.readonly,
|
|
12337
12349
|
disabled: e.disabled,
|
|
12338
12350
|
required: e.required,
|
|
@@ -12407,7 +12419,7 @@ const rv = ["value", "placeholder", "disabled", "readonly", "required", "onInput
|
|
|
12407
12419
|
]),
|
|
12408
12420
|
key: "0"
|
|
12409
12421
|
} : void 0
|
|
12410
|
-
]), 1032, ["id", "class", "label", "readonly", "disabled", "required", "size", "invalid"]));
|
|
12422
|
+
]), 1032, ["id", "class", "label", "label-position", "readonly", "disabled", "required", "size", "invalid"]));
|
|
12411
12423
|
}
|
|
12412
12424
|
}), sv = we(ov), iv = /* @__PURE__ */ ue({
|
|
12413
12425
|
__name: "QDefaultsProvider",
|
|
@@ -13023,6 +13035,7 @@ const Vv = ["id", "accept", "required", "readonly", "disabled"], Fv = {
|
|
|
13023
13035
|
label: {},
|
|
13024
13036
|
required: { type: Boolean },
|
|
13025
13037
|
for: {},
|
|
13038
|
+
labelPosition: {},
|
|
13026
13039
|
size: { default: "large" },
|
|
13027
13040
|
readonly: { type: Boolean },
|
|
13028
13041
|
disabled: { type: Boolean },
|
|
@@ -13081,6 +13094,7 @@ const Vv = ["id", "accept", "required", "readonly", "disabled"], Fv = {
|
|
|
13081
13094
|
return (x, F) => (p(), te(u(ba), {
|
|
13082
13095
|
for: u(n),
|
|
13083
13096
|
label: e.label,
|
|
13097
|
+
"label-position": e.labelPosition,
|
|
13084
13098
|
size: e.size,
|
|
13085
13099
|
readonly: e.readonly,
|
|
13086
13100
|
disabled: e.disabled,
|
|
@@ -13164,7 +13178,7 @@ const Vv = ["id", "accept", "required", "readonly", "disabled"], Fv = {
|
|
|
13164
13178
|
]),
|
|
13165
13179
|
key: "0"
|
|
13166
13180
|
} : void 0
|
|
13167
|
-
]), 1032, ["for", "label", "size", "readonly", "disabled", "required", "invalid"]));
|
|
13181
|
+
]), 1032, ["for", "label", "label-position", "size", "readonly", "disabled", "required", "invalid"]));
|
|
13168
13182
|
}
|
|
13169
13183
|
}), Kv = we(Gv), Zv = /* @__PURE__ */ ue({
|
|
13170
13184
|
__name: "QCol",
|
|
@@ -13297,6 +13311,7 @@ const rh = /* @__PURE__ */ th(ah, [["render", lh]]), Qa = we(Zv), vl = we(Jv), h
|
|
|
13297
13311
|
label: {},
|
|
13298
13312
|
required: { type: Boolean },
|
|
13299
13313
|
for: {},
|
|
13314
|
+
labelPosition: {},
|
|
13300
13315
|
size: { default: "large" },
|
|
13301
13316
|
readonly: { type: Boolean },
|
|
13302
13317
|
disabled: { type: Boolean },
|
|
@@ -13314,6 +13329,7 @@ const rh = /* @__PURE__ */ th(ah, [["render", lh]]), Qa = we(Zv), vl = we(Jv), h
|
|
|
13314
13329
|
id: e.id,
|
|
13315
13330
|
class: oe(["q-input-group", e.class]),
|
|
13316
13331
|
label: e.label,
|
|
13332
|
+
"label-position": e.labelPosition,
|
|
13317
13333
|
required: e.required,
|
|
13318
13334
|
size: e.size,
|
|
13319
13335
|
invalid: e.invalid
|
|
@@ -13348,7 +13364,7 @@ const rh = /* @__PURE__ */ th(ah, [["render", lh]]), Qa = we(Zv), vl = we(Jv), h
|
|
|
13348
13364
|
]),
|
|
13349
13365
|
key: "0"
|
|
13350
13366
|
} : void 0
|
|
13351
|
-
]), 1032, ["id", "class", "label", "required", "size", "invalid"]));
|
|
13367
|
+
]), 1032, ["id", "class", "label", "label-position", "required", "size", "invalid"]));
|
|
13352
13368
|
}
|
|
13353
13369
|
}), yh = we(hh), gh = ["id"], bh = /* @__PURE__ */ ue({
|
|
13354
13370
|
__name: "QLineLoader",
|
|
@@ -13380,6 +13396,7 @@ const rh = /* @__PURE__ */ th(ah, [["render", lh]]), Qa = we(Zv), vl = we(Jv), h
|
|
|
13380
13396
|
label: {},
|
|
13381
13397
|
required: { type: Boolean },
|
|
13382
13398
|
for: {},
|
|
13399
|
+
labelPosition: {},
|
|
13383
13400
|
valueLabel: {},
|
|
13384
13401
|
color: {},
|
|
13385
13402
|
max: { default: 100 }
|
|
@@ -13536,6 +13553,7 @@ const rh = /* @__PURE__ */ th(ah, [["render", lh]]), Qa = we(Zv), vl = we(Jv), h
|
|
|
13536
13553
|
label: {},
|
|
13537
13554
|
required: { type: Boolean },
|
|
13538
13555
|
for: {},
|
|
13556
|
+
labelPosition: {},
|
|
13539
13557
|
size: {},
|
|
13540
13558
|
readonly: { type: Boolean },
|
|
13541
13559
|
disabled: { type: Boolean },
|
|
@@ -14010,6 +14028,7 @@ const rh = /* @__PURE__ */ th(ah, [["render", lh]]), Qa = we(Zv), vl = we(Jv), h
|
|
|
14010
14028
|
label: {},
|
|
14011
14029
|
required: { type: Boolean },
|
|
14012
14030
|
for: {},
|
|
14031
|
+
labelPosition: {},
|
|
14013
14032
|
value: {},
|
|
14014
14033
|
name: {},
|
|
14015
14034
|
labelPlacement: { default: "end" },
|
|
@@ -14100,6 +14119,7 @@ const rh = /* @__PURE__ */ th(ah, [["render", lh]]), Qa = we(Zv), vl = we(Jv), h
|
|
|
14100
14119
|
label: {},
|
|
14101
14120
|
required: { type: Boolean },
|
|
14102
14121
|
for: {},
|
|
14122
|
+
labelPosition: {},
|
|
14103
14123
|
name: {},
|
|
14104
14124
|
orientation: { default: "vertical" },
|
|
14105
14125
|
size: { default: "regular" },
|
|
@@ -14190,6 +14210,7 @@ const rh = /* @__PURE__ */ th(ah, [["render", lh]]), Qa = we(Zv), vl = we(Jv), h
|
|
|
14190
14210
|
label: {},
|
|
14191
14211
|
required: { type: Boolean },
|
|
14192
14212
|
for: {},
|
|
14213
|
+
labelPosition: {},
|
|
14193
14214
|
size: {},
|
|
14194
14215
|
readonly: { type: Boolean },
|
|
14195
14216
|
disabled: { type: Boolean },
|
|
@@ -14310,6 +14331,7 @@ const rh = /* @__PURE__ */ th(ah, [["render", lh]]), Qa = we(Zv), vl = we(Jv), h
|
|
|
14310
14331
|
id: u(r),
|
|
14311
14332
|
ref: "trigger",
|
|
14312
14333
|
label: a.label,
|
|
14334
|
+
"label-position": a.labelPosition,
|
|
14313
14335
|
required: a.required,
|
|
14314
14336
|
class: oe([
|
|
14315
14337
|
"q-select",
|
|
@@ -14472,7 +14494,7 @@ const rh = /* @__PURE__ */ th(ah, [["render", lh]]), Qa = we(Zv), vl = we(Jv), h
|
|
|
14472
14494
|
]),
|
|
14473
14495
|
key: "1"
|
|
14474
14496
|
} : void 0
|
|
14475
|
-
]), 1032, ["id", "label", "required", "class", "readonly", "disabled", "data-loading", "size", "invalid"]),
|
|
14497
|
+
]), 1032, ["id", "label", "label-position", "required", "class", "readonly", "disabled", "data-loading", "size", "invalid"]),
|
|
14476
14498
|
me(u(sa), {
|
|
14477
14499
|
modelValue: s.value,
|
|
14478
14500
|
"onUpdate:modelValue": K[1] || (K[1] = (B) => s.value = B),
|
|
@@ -14860,6 +14882,7 @@ const rh = /* @__PURE__ */ th(ah, [["render", lh]]), Qa = we(Zv), vl = we(Jv), h
|
|
|
14860
14882
|
class: {},
|
|
14861
14883
|
label: {},
|
|
14862
14884
|
required: { type: Boolean },
|
|
14885
|
+
labelPosition: {},
|
|
14863
14886
|
trueLabel: { default: "On" },
|
|
14864
14887
|
falseLabel: { default: "Off" },
|
|
14865
14888
|
showStateLabels: { type: Boolean },
|
|
@@ -15033,6 +15056,7 @@ const Ny = ["id", "required", "placeholder", "readonly", "disabled", "maxlength"
|
|
|
15033
15056
|
label: {},
|
|
15034
15057
|
required: { type: Boolean },
|
|
15035
15058
|
for: {},
|
|
15059
|
+
labelPosition: {},
|
|
15036
15060
|
size: {},
|
|
15037
15061
|
readonly: { type: Boolean },
|
|
15038
15062
|
disabled: { type: Boolean },
|
|
@@ -15068,6 +15092,7 @@ const Ny = ["id", "required", "placeholder", "readonly", "disabled", "maxlength"
|
|
|
15068
15092
|
class: oe(["q-text-area", e.class]),
|
|
15069
15093
|
for: u(l),
|
|
15070
15094
|
label: e.label,
|
|
15095
|
+
"label-position": e.labelPosition,
|
|
15071
15096
|
size: e.size,
|
|
15072
15097
|
readonly: e.readonly,
|
|
15073
15098
|
disabled: e.disabled,
|
|
@@ -15122,7 +15147,7 @@ const Ny = ["id", "required", "placeholder", "readonly", "disabled", "maxlength"
|
|
|
15122
15147
|
]),
|
|
15123
15148
|
key: "2"
|
|
15124
15149
|
} : void 0
|
|
15125
|
-
]), 1032, ["class", "for", "label", "size", "readonly", "disabled", "required"]));
|
|
15150
|
+
]), 1032, ["class", "for", "label", "label-position", "size", "readonly", "disabled", "required"]));
|
|
15126
15151
|
}
|
|
15127
15152
|
}), Wy = we(Qy), Hy = ["id"], Uy = /* @__PURE__ */ ue({
|
|
15128
15153
|
__name: "QThemeProvider",
|