@quidgest/ui 0.16.65 → 0.16.66
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 +23 -4
- package/dist/ui.js +5 -5
- package/dist/ui.min.css +1 -1
- package/dist/ui.min.js +18 -18
- 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.vue.js +8 -7
- 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.vue.js +6 -5
- 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 +17 -16
- 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 +1 -0
- 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.vue.js +3 -2
- 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 +22 -21
- 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.66",
|
|
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.66
|
|
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 },
|
|
@@ -3180,6 +3188,7 @@ const vd = ["id"], hd = ["role"], yd = /* @__PURE__ */ ue({
|
|
|
3180
3188
|
label: {},
|
|
3181
3189
|
required: { type: Boolean },
|
|
3182
3190
|
for: {},
|
|
3191
|
+
labelPosition: {},
|
|
3183
3192
|
size: {},
|
|
3184
3193
|
readonly: { type: Boolean },
|
|
3185
3194
|
disabled: { type: Boolean },
|
|
@@ -12264,6 +12273,7 @@ const rv = ["value", "placeholder", "disabled", "readonly", "required", "onInput
|
|
|
12264
12273
|
label: {},
|
|
12265
12274
|
required: { type: Boolean },
|
|
12266
12275
|
for: {},
|
|
12276
|
+
labelPosition: {},
|
|
12267
12277
|
size: {},
|
|
12268
12278
|
readonly: { type: Boolean },
|
|
12269
12279
|
disabled: { type: Boolean },
|
|
@@ -13023,6 +13033,7 @@ const Vv = ["id", "accept", "required", "readonly", "disabled"], Fv = {
|
|
|
13023
13033
|
label: {},
|
|
13024
13034
|
required: { type: Boolean },
|
|
13025
13035
|
for: {},
|
|
13036
|
+
labelPosition: {},
|
|
13026
13037
|
size: { default: "large" },
|
|
13027
13038
|
readonly: { type: Boolean },
|
|
13028
13039
|
disabled: { type: Boolean },
|
|
@@ -13297,6 +13308,7 @@ const rh = /* @__PURE__ */ th(ah, [["render", lh]]), Qa = we(Zv), vl = we(Jv), h
|
|
|
13297
13308
|
label: {},
|
|
13298
13309
|
required: { type: Boolean },
|
|
13299
13310
|
for: {},
|
|
13311
|
+
labelPosition: {},
|
|
13300
13312
|
size: { default: "large" },
|
|
13301
13313
|
readonly: { type: Boolean },
|
|
13302
13314
|
disabled: { type: Boolean },
|
|
@@ -13380,6 +13392,7 @@ const rh = /* @__PURE__ */ th(ah, [["render", lh]]), Qa = we(Zv), vl = we(Jv), h
|
|
|
13380
13392
|
label: {},
|
|
13381
13393
|
required: { type: Boolean },
|
|
13382
13394
|
for: {},
|
|
13395
|
+
labelPosition: {},
|
|
13383
13396
|
valueLabel: {},
|
|
13384
13397
|
color: {},
|
|
13385
13398
|
max: { default: 100 }
|
|
@@ -13536,6 +13549,7 @@ const rh = /* @__PURE__ */ th(ah, [["render", lh]]), Qa = we(Zv), vl = we(Jv), h
|
|
|
13536
13549
|
label: {},
|
|
13537
13550
|
required: { type: Boolean },
|
|
13538
13551
|
for: {},
|
|
13552
|
+
labelPosition: {},
|
|
13539
13553
|
size: {},
|
|
13540
13554
|
readonly: { type: Boolean },
|
|
13541
13555
|
disabled: { type: Boolean },
|
|
@@ -14010,6 +14024,7 @@ const rh = /* @__PURE__ */ th(ah, [["render", lh]]), Qa = we(Zv), vl = we(Jv), h
|
|
|
14010
14024
|
label: {},
|
|
14011
14025
|
required: { type: Boolean },
|
|
14012
14026
|
for: {},
|
|
14027
|
+
labelPosition: {},
|
|
14013
14028
|
value: {},
|
|
14014
14029
|
name: {},
|
|
14015
14030
|
labelPlacement: { default: "end" },
|
|
@@ -14100,6 +14115,7 @@ const rh = /* @__PURE__ */ th(ah, [["render", lh]]), Qa = we(Zv), vl = we(Jv), h
|
|
|
14100
14115
|
label: {},
|
|
14101
14116
|
required: { type: Boolean },
|
|
14102
14117
|
for: {},
|
|
14118
|
+
labelPosition: {},
|
|
14103
14119
|
name: {},
|
|
14104
14120
|
orientation: { default: "vertical" },
|
|
14105
14121
|
size: { default: "regular" },
|
|
@@ -14190,6 +14206,7 @@ const rh = /* @__PURE__ */ th(ah, [["render", lh]]), Qa = we(Zv), vl = we(Jv), h
|
|
|
14190
14206
|
label: {},
|
|
14191
14207
|
required: { type: Boolean },
|
|
14192
14208
|
for: {},
|
|
14209
|
+
labelPosition: {},
|
|
14193
14210
|
size: {},
|
|
14194
14211
|
readonly: { type: Boolean },
|
|
14195
14212
|
disabled: { type: Boolean },
|
|
@@ -14860,6 +14877,7 @@ const rh = /* @__PURE__ */ th(ah, [["render", lh]]), Qa = we(Zv), vl = we(Jv), h
|
|
|
14860
14877
|
class: {},
|
|
14861
14878
|
label: {},
|
|
14862
14879
|
required: { type: Boolean },
|
|
14880
|
+
labelPosition: {},
|
|
14863
14881
|
trueLabel: { default: "On" },
|
|
14864
14882
|
falseLabel: { default: "Off" },
|
|
14865
14883
|
showStateLabels: { type: Boolean },
|
|
@@ -15033,6 +15051,7 @@ const Ny = ["id", "required", "placeholder", "readonly", "disabled", "maxlength"
|
|
|
15033
15051
|
label: {},
|
|
15034
15052
|
required: { type: Boolean },
|
|
15035
15053
|
for: {},
|
|
15054
|
+
labelPosition: {},
|
|
15036
15055
|
size: {},
|
|
15037
15056
|
readonly: { type: Boolean },
|
|
15038
15057
|
disabled: { type: Boolean },
|