vueless 0.0.210 → 0.0.211
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/package.json +1 -1
- package/ui.container-group/configs/default.config.js +19 -1
- package/ui.container-group/index.vue +26 -1
- package/ui.container-row/configs/default.config.js +21 -3
- package/ui.container-row/index.vue +27 -2
- package/ui.data-list/composables/attrs.composable.js +39 -36
- package/ui.data-list/configs/default.config.js +6 -4
- package/ui.data-list/index.stories.js +2 -4
- package/ui.data-list/index.vue +34 -5
- package/ui.data-table/composables/attrs.composable.js +180 -245
- package/ui.data-table/configs/default.config.js +10 -10
- package/ui.data-table/index.vue +52 -12
- package/ui.form-checkbox/composables/attrs.composable.js +28 -43
- package/ui.form-checkbox/configs/default.config.js +2 -2
- package/ui.form-checkbox/index.stories.js +2 -4
- package/ui.form-checkbox/index.vue +16 -4
- package/ui.form-checkbox-group/composables/attrs.composable.js +24 -9
- package/ui.form-checkbox-group/configs/default.config.js +2 -2
- package/ui.form-checkbox-group/index.vue +8 -2
- package/ui.form-checkbox-multi-state/composables/attrs.composable.js +34 -12
- package/ui.form-checkbox-multi-state/configs/default.config.js +1 -1
- package/ui.form-checkbox-multi-state/index.vue +8 -2
- package/ui.form-input-file/composables/attrs.composable.js +19 -62
- package/ui.form-input-file/configs/default.config.js +7 -7
- package/ui.form-input-file/index.vue +15 -3
- package/ui.form-input-money/composables/attrs.composable.js +23 -4
- package/ui.form-input-money/configs/default.config.js +1 -1
- package/ui.form-input-money/index.stories.js +2 -4
- package/ui.form-input-number/composables/attrs.composable.js +22 -36
- package/ui.form-input-number/configs/default.config.js +4 -4
- package/ui.form-input-number/index.vue +8 -2
- package/ui.form-input-rating/composables/attrs.composable.js +10 -11
- package/ui.form-input-rating/index.vue +2 -2
- package/ui.form-input-search/composables/attrs.composable.js +26 -11
- package/ui.form-input-search/configs/default.config.js +4 -4
- package/ui.form-input-search/index.stories.js +2 -4
- package/ui.form-input-search/index.vue +21 -4
- package/ui.form-label/composables/attrs.composable.js +22 -49
- package/ui.form-label/index.vue +9 -2
- package/ui.form-radio/composables/attrs.composable.js +29 -22
- package/ui.form-radio/configs/default.config.js +1 -1
- package/ui.form-radio/index.stories.js +2 -4
- package/ui.form-radio/index.vue +8 -2
- package/ui.form-radio-group/composables/attrs.composable.js +20 -15
- package/ui.form-radio-group/configs/default.config.js +2 -1
- package/ui.form-radio-group/index.vue +8 -2
- package/ui.form-switch/composables/attrs.composable.js +25 -61
- package/ui.form-switch/configs/default.config.js +2 -2
- package/ui.form-switch/index.vue +8 -2
- package/ui.form-textarea/composables/attrs.composable.js +25 -36
- package/ui.form-textarea/configs/default.config.js +1 -1
- package/ui.form-textarea/index.stories.js +3 -5
- package/ui.form-textarea/index.vue +35 -4
- package/ui.navigation-pagination/composables/attrs.composable.js +41 -31
- package/ui.navigation-pagination/configs/default.config.js +2 -2
- package/ui.navigation-pagination/index.vue +22 -6
- package/ui.navigation-progress/components/StepperProgress.vue +1 -1
- package/ui.navigation-progress/composables/attrs.composable.js +19 -22
- package/ui.navigation-progress/index.vue +14 -1
- package/ui.navigation-tab/composables/attrs.composable.js +25 -20
- package/ui.navigation-tab/index.vue +1 -1
- package/ui.navigation-tabs/composables/attrs.composable.js +19 -13
- package/ui.navigation-tabs/configs/default.config.js +1 -1
- package/ui.navigation-tabs/index.vue +9 -2
- package/ui.text-file/configs/default.config.js +3 -0
- package/ui.text-file/index.vue +36 -25
- package/ui.text-files/index.vue +8 -0
- package/ui.text-header/configs/default.config.js +1 -0
- package/ui.text-header/index.stories.js +2 -2
- package/ui.text-header/index.vue +16 -12
- package/web-types.json +383 -62
package/web-types.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"framework": "vue",
|
|
3
3
|
"name": "vueless",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.211",
|
|
5
5
|
"contributions": {
|
|
6
6
|
"html": {
|
|
7
7
|
"description-markup": "markdown",
|
|
@@ -1347,10 +1347,28 @@
|
|
|
1347
1347
|
],
|
|
1348
1348
|
"events": [
|
|
1349
1349
|
{
|
|
1350
|
-
"name": "update:modelValue"
|
|
1350
|
+
"name": "update:modelValue",
|
|
1351
|
+
"description": "Triggers when checkbox is toggled.",
|
|
1352
|
+
"properties": [
|
|
1353
|
+
{
|
|
1354
|
+
"type": [
|
|
1355
|
+
"Boolean"
|
|
1356
|
+
],
|
|
1357
|
+
"name": "newModelValue"
|
|
1358
|
+
}
|
|
1359
|
+
]
|
|
1351
1360
|
},
|
|
1352
1361
|
{
|
|
1353
|
-
"name": "input"
|
|
1362
|
+
"name": "input",
|
|
1363
|
+
"description": "Triggers when checkbox is toggled.",
|
|
1364
|
+
"properties": [
|
|
1365
|
+
{
|
|
1366
|
+
"type": [
|
|
1367
|
+
"Boolean"
|
|
1368
|
+
],
|
|
1369
|
+
"name": "newModelValue"
|
|
1370
|
+
}
|
|
1371
|
+
]
|
|
1354
1372
|
}
|
|
1355
1373
|
],
|
|
1356
1374
|
"slots": [
|
|
@@ -1469,7 +1487,16 @@
|
|
|
1469
1487
|
],
|
|
1470
1488
|
"events": [
|
|
1471
1489
|
{
|
|
1472
|
-
"name": "update:modelValue"
|
|
1490
|
+
"name": "update:modelValue",
|
|
1491
|
+
"description": "Triggers when checkbox value changes.",
|
|
1492
|
+
"properties": [
|
|
1493
|
+
{
|
|
1494
|
+
"type": [
|
|
1495
|
+
"object"
|
|
1496
|
+
],
|
|
1497
|
+
"name": "value"
|
|
1498
|
+
}
|
|
1499
|
+
]
|
|
1473
1500
|
}
|
|
1474
1501
|
],
|
|
1475
1502
|
"slots": [
|
|
@@ -1570,7 +1597,16 @@
|
|
|
1570
1597
|
],
|
|
1571
1598
|
"events": [
|
|
1572
1599
|
{
|
|
1573
|
-
"name": "update:modelValue"
|
|
1600
|
+
"name": "update:modelValue",
|
|
1601
|
+
"description": "Triggers when checkbox value changes.",
|
|
1602
|
+
"properties": [
|
|
1603
|
+
{
|
|
1604
|
+
"type": [
|
|
1605
|
+
"number"
|
|
1606
|
+
],
|
|
1607
|
+
"name": "value"
|
|
1608
|
+
}
|
|
1609
|
+
]
|
|
1574
1610
|
}
|
|
1575
1611
|
],
|
|
1576
1612
|
"source": {
|
|
@@ -1807,13 +1843,52 @@
|
|
|
1807
1843
|
],
|
|
1808
1844
|
"events": [
|
|
1809
1845
|
{
|
|
1810
|
-
"name": "dragSort"
|
|
1846
|
+
"name": "dragSort",
|
|
1847
|
+
"description": "Triggers when item is sorted (after drag).",
|
|
1848
|
+
"properties": [
|
|
1849
|
+
{
|
|
1850
|
+
"type": [
|
|
1851
|
+
"array"
|
|
1852
|
+
],
|
|
1853
|
+
"name": "sortData"
|
|
1854
|
+
}
|
|
1855
|
+
]
|
|
1811
1856
|
},
|
|
1812
1857
|
{
|
|
1813
|
-
"name": "clickEdit"
|
|
1858
|
+
"name": "clickEdit",
|
|
1859
|
+
"description": "Triggers when edit button is clicked.",
|
|
1860
|
+
"properties": [
|
|
1861
|
+
{
|
|
1862
|
+
"type": [
|
|
1863
|
+
"number"
|
|
1864
|
+
],
|
|
1865
|
+
"name": "value"
|
|
1866
|
+
},
|
|
1867
|
+
{
|
|
1868
|
+
"type": [
|
|
1869
|
+
"string"
|
|
1870
|
+
],
|
|
1871
|
+
"name": "label"
|
|
1872
|
+
}
|
|
1873
|
+
]
|
|
1814
1874
|
},
|
|
1815
1875
|
{
|
|
1816
|
-
"name": "clickDelete"
|
|
1876
|
+
"name": "clickDelete",
|
|
1877
|
+
"description": "Triggers when delete button is clicked.",
|
|
1878
|
+
"properties": [
|
|
1879
|
+
{
|
|
1880
|
+
"type": [
|
|
1881
|
+
"number"
|
|
1882
|
+
],
|
|
1883
|
+
"name": "value"
|
|
1884
|
+
},
|
|
1885
|
+
{
|
|
1886
|
+
"type": [
|
|
1887
|
+
"string"
|
|
1888
|
+
],
|
|
1889
|
+
"name": "label"
|
|
1890
|
+
}
|
|
1891
|
+
]
|
|
1817
1892
|
}
|
|
1818
1893
|
],
|
|
1819
1894
|
"slots": [
|
|
@@ -1833,6 +1908,7 @@
|
|
|
1833
1908
|
"description": "Use it to add custom actions.",
|
|
1834
1909
|
"bindings": [
|
|
1835
1910
|
{
|
|
1911
|
+
"type": "object",
|
|
1836
1912
|
"name": "item"
|
|
1837
1913
|
}
|
|
1838
1914
|
]
|
|
@@ -3194,7 +3270,7 @@
|
|
|
3194
3270
|
"attributes": [
|
|
3195
3271
|
{
|
|
3196
3272
|
"name": "url",
|
|
3197
|
-
"description": "
|
|
3273
|
+
"description": "File url.",
|
|
3198
3274
|
"value": {
|
|
3199
3275
|
"kind": "expression",
|
|
3200
3276
|
"type": "string"
|
|
@@ -3203,7 +3279,7 @@
|
|
|
3203
3279
|
},
|
|
3204
3280
|
{
|
|
3205
3281
|
"name": "imageUrl",
|
|
3206
|
-
"description": "
|
|
3282
|
+
"description": "Image url.",
|
|
3207
3283
|
"value": {
|
|
3208
3284
|
"kind": "expression",
|
|
3209
3285
|
"type": "string"
|
|
@@ -3212,13 +3288,22 @@
|
|
|
3212
3288
|
},
|
|
3213
3289
|
{
|
|
3214
3290
|
"name": "label",
|
|
3215
|
-
"description": "
|
|
3291
|
+
"description": "File label.",
|
|
3216
3292
|
"value": {
|
|
3217
3293
|
"kind": "expression",
|
|
3218
3294
|
"type": "string"
|
|
3219
3295
|
},
|
|
3220
3296
|
"default": "\"\""
|
|
3221
3297
|
},
|
|
3298
|
+
{
|
|
3299
|
+
"name": "size",
|
|
3300
|
+
"description": "File size.",
|
|
3301
|
+
"value": {
|
|
3302
|
+
"kind": "expression",
|
|
3303
|
+
"type": "'sm' | 'md' | 'lg'"
|
|
3304
|
+
},
|
|
3305
|
+
"default": "md"
|
|
3306
|
+
},
|
|
3222
3307
|
{
|
|
3223
3308
|
"name": "id",
|
|
3224
3309
|
"description": "@ignore: Generates unique element id.",
|
|
@@ -3229,17 +3314,17 @@
|
|
|
3229
3314
|
"default": "() => getRandomId()"
|
|
3230
3315
|
},
|
|
3231
3316
|
{
|
|
3232
|
-
"name": "
|
|
3233
|
-
"description": "
|
|
3317
|
+
"name": "config",
|
|
3318
|
+
"description": "Component ui config object.",
|
|
3234
3319
|
"value": {
|
|
3235
3320
|
"kind": "expression",
|
|
3236
|
-
"type": "
|
|
3321
|
+
"type": "object"
|
|
3237
3322
|
},
|
|
3238
|
-
"default": "
|
|
3323
|
+
"default": "{}"
|
|
3239
3324
|
},
|
|
3240
3325
|
{
|
|
3241
3326
|
"name": "dataCy",
|
|
3242
|
-
"description": "
|
|
3327
|
+
"description": "Data-cy attribute for automated testing.",
|
|
3243
3328
|
"value": {
|
|
3244
3329
|
"kind": "expression",
|
|
3245
3330
|
"type": "string"
|
|
@@ -3257,6 +3342,15 @@
|
|
|
3257
3342
|
}
|
|
3258
3343
|
]
|
|
3259
3344
|
},
|
|
3345
|
+
{
|
|
3346
|
+
"name": "default",
|
|
3347
|
+
"scoped": true,
|
|
3348
|
+
"bindings": [
|
|
3349
|
+
{
|
|
3350
|
+
"name": "file"
|
|
3351
|
+
}
|
|
3352
|
+
]
|
|
3353
|
+
},
|
|
3260
3354
|
{
|
|
3261
3355
|
"name": "right",
|
|
3262
3356
|
"scoped": true,
|
|
@@ -3321,6 +3415,15 @@
|
|
|
3321
3415
|
},
|
|
3322
3416
|
"default": "md"
|
|
3323
3417
|
},
|
|
3418
|
+
{
|
|
3419
|
+
"name": "config",
|
|
3420
|
+
"description": "Component ui config object.",
|
|
3421
|
+
"value": {
|
|
3422
|
+
"kind": "expression",
|
|
3423
|
+
"type": "object"
|
|
3424
|
+
},
|
|
3425
|
+
"default": "{}"
|
|
3426
|
+
},
|
|
3324
3427
|
{
|
|
3325
3428
|
"name": "dataCy",
|
|
3326
3429
|
"description": "Sets data-cy attribute for automated testing.",
|
|
@@ -3369,7 +3472,7 @@
|
|
|
3369
3472
|
"attributes": [
|
|
3370
3473
|
{
|
|
3371
3474
|
"name": "title",
|
|
3372
|
-
"description": "
|
|
3475
|
+
"description": "Header title.",
|
|
3373
3476
|
"value": {
|
|
3374
3477
|
"kind": "expression",
|
|
3375
3478
|
"type": "string"
|
|
@@ -3392,7 +3495,34 @@
|
|
|
3392
3495
|
"kind": "expression",
|
|
3393
3496
|
"type": "'start' | 'end' | 'center' | 'stretch' | 'baseline'"
|
|
3394
3497
|
},
|
|
3395
|
-
"default": "
|
|
3498
|
+
"default": "start"
|
|
3499
|
+
},
|
|
3500
|
+
{
|
|
3501
|
+
"name": "justify",
|
|
3502
|
+
"description": "Nested items horizontally align (flex justify-content).",
|
|
3503
|
+
"value": {
|
|
3504
|
+
"kind": "expression",
|
|
3505
|
+
"type": "'start' | 'end' | 'center' | 'around' | 'evenly' | 'between'"
|
|
3506
|
+
},
|
|
3507
|
+
"default": "start"
|
|
3508
|
+
},
|
|
3509
|
+
{
|
|
3510
|
+
"name": "reverse",
|
|
3511
|
+
"description": "Reverse nested items order.",
|
|
3512
|
+
"value": {
|
|
3513
|
+
"kind": "expression",
|
|
3514
|
+
"type": "boolean"
|
|
3515
|
+
},
|
|
3516
|
+
"default": "false"
|
|
3517
|
+
},
|
|
3518
|
+
{
|
|
3519
|
+
"name": "wrap",
|
|
3520
|
+
"description": "Allow items to wrap (flex flex-wrap).",
|
|
3521
|
+
"value": {
|
|
3522
|
+
"kind": "expression",
|
|
3523
|
+
"type": "boolean"
|
|
3524
|
+
},
|
|
3525
|
+
"default": "false"
|
|
3396
3526
|
},
|
|
3397
3527
|
{
|
|
3398
3528
|
"name": "upperlined",
|
|
@@ -3516,7 +3646,7 @@
|
|
|
3516
3646
|
"attributes": [
|
|
3517
3647
|
{
|
|
3518
3648
|
"name": "label",
|
|
3519
|
-
"description": "
|
|
3649
|
+
"description": "Header label.",
|
|
3520
3650
|
"value": {
|
|
3521
3651
|
"kind": "expression",
|
|
3522
3652
|
"type": "string"
|
|
@@ -3525,7 +3655,7 @@
|
|
|
3525
3655
|
},
|
|
3526
3656
|
{
|
|
3527
3657
|
"name": "size",
|
|
3528
|
-
"description": "
|
|
3658
|
+
"description": "Header size.",
|
|
3529
3659
|
"value": {
|
|
3530
3660
|
"kind": "expression",
|
|
3531
3661
|
"type": "'xs' | 'sm' | 'md' | 'lg' | 'xl' | '2xl'"
|
|
@@ -3534,7 +3664,7 @@
|
|
|
3534
3664
|
},
|
|
3535
3665
|
{
|
|
3536
3666
|
"name": "weight",
|
|
3537
|
-
"description": "
|
|
3667
|
+
"description": "Header weight.",
|
|
3538
3668
|
"value": {
|
|
3539
3669
|
"kind": "expression",
|
|
3540
3670
|
"type": "'regular' | 'medium' | 'bold'"
|
|
@@ -3550,6 +3680,15 @@
|
|
|
3550
3680
|
},
|
|
3551
3681
|
"default": "grayscale"
|
|
3552
3682
|
},
|
|
3683
|
+
{
|
|
3684
|
+
"name": "tag",
|
|
3685
|
+
"description": "Allows changing button html tag.",
|
|
3686
|
+
"value": {
|
|
3687
|
+
"kind": "expression",
|
|
3688
|
+
"type": "string"
|
|
3689
|
+
},
|
|
3690
|
+
"default": "div"
|
|
3691
|
+
},
|
|
3553
3692
|
{
|
|
3554
3693
|
"name": "multiline",
|
|
3555
3694
|
"description": "Return default line height to the component (it may be useful for multiline headers).",
|
|
@@ -3570,7 +3709,7 @@
|
|
|
3570
3709
|
},
|
|
3571
3710
|
{
|
|
3572
3711
|
"name": "config",
|
|
3573
|
-
"description": "
|
|
3712
|
+
"description": "Component ui config object.",
|
|
3574
3713
|
"value": {
|
|
3575
3714
|
"kind": "expression",
|
|
3576
3715
|
"type": "object"
|
|
@@ -3579,7 +3718,7 @@
|
|
|
3579
3718
|
},
|
|
3580
3719
|
{
|
|
3581
3720
|
"name": "dataCy",
|
|
3582
|
-
"description": "
|
|
3721
|
+
"description": "Data-cy attribute for automated testing.",
|
|
3583
3722
|
"value": {
|
|
3584
3723
|
"kind": "expression",
|
|
3585
3724
|
"type": "string"
|
|
@@ -4116,16 +4255,34 @@
|
|
|
4116
4255
|
],
|
|
4117
4256
|
"events": [
|
|
4118
4257
|
{
|
|
4119
|
-
"name": "update:modelValue"
|
|
4258
|
+
"name": "update:modelValue",
|
|
4259
|
+
"description": "Triggers when a file is updated.",
|
|
4260
|
+
"properties": [
|
|
4261
|
+
{
|
|
4262
|
+
"type": [
|
|
4263
|
+
"array"
|
|
4264
|
+
],
|
|
4265
|
+
"name": "value"
|
|
4266
|
+
}
|
|
4267
|
+
]
|
|
4120
4268
|
},
|
|
4121
4269
|
{
|
|
4122
|
-
"name": "update:error"
|
|
4270
|
+
"name": "update:error",
|
|
4271
|
+
"description": "Triggers when the input has not passed validation.",
|
|
4272
|
+
"properties": [
|
|
4273
|
+
{
|
|
4274
|
+
"type": [
|
|
4275
|
+
"string"
|
|
4276
|
+
],
|
|
4277
|
+
"name": "value"
|
|
4278
|
+
}
|
|
4279
|
+
]
|
|
4123
4280
|
}
|
|
4124
4281
|
],
|
|
4125
4282
|
"slots": [
|
|
4126
4283
|
{
|
|
4127
4284
|
"name": "left",
|
|
4128
|
-
"description": "Use it to add something before placeholder."
|
|
4285
|
+
"description": "Use it to add something before the placeholder."
|
|
4129
4286
|
}
|
|
4130
4287
|
],
|
|
4131
4288
|
"source": {
|
|
@@ -4421,7 +4578,16 @@
|
|
|
4421
4578
|
],
|
|
4422
4579
|
"events": [
|
|
4423
4580
|
{
|
|
4424
|
-
"name": "update:modelValue"
|
|
4581
|
+
"name": "update:modelValue",
|
|
4582
|
+
"description": "Triggers when the input value changes.",
|
|
4583
|
+
"properties": [
|
|
4584
|
+
{
|
|
4585
|
+
"type": [
|
|
4586
|
+
"number"
|
|
4587
|
+
],
|
|
4588
|
+
"name": "modelValue"
|
|
4589
|
+
}
|
|
4590
|
+
]
|
|
4425
4591
|
}
|
|
4426
4592
|
],
|
|
4427
4593
|
"source": {
|
|
@@ -4545,7 +4711,7 @@
|
|
|
4545
4711
|
"events": [
|
|
4546
4712
|
{
|
|
4547
4713
|
"name": "update:modelValue",
|
|
4548
|
-
"description": "Triggers when the rating
|
|
4714
|
+
"description": "Triggers when the rating value changes.",
|
|
4549
4715
|
"properties": [
|
|
4550
4716
|
{
|
|
4551
4717
|
"type": [
|
|
@@ -4708,23 +4874,42 @@
|
|
|
4708
4874
|
],
|
|
4709
4875
|
"events": [
|
|
4710
4876
|
{
|
|
4711
|
-
"name": "update:modelValue"
|
|
4877
|
+
"name": "update:modelValue",
|
|
4878
|
+
"description": "Triggers when the input value changes.",
|
|
4879
|
+
"properties": [
|
|
4880
|
+
{
|
|
4881
|
+
"type": [
|
|
4882
|
+
"string"
|
|
4883
|
+
],
|
|
4884
|
+
"name": "value"
|
|
4885
|
+
}
|
|
4886
|
+
]
|
|
4712
4887
|
},
|
|
4713
4888
|
{
|
|
4714
|
-
"name": "clear"
|
|
4889
|
+
"name": "clear",
|
|
4890
|
+
"description": "Triggers when the input value is cleared."
|
|
4715
4891
|
},
|
|
4716
4892
|
{
|
|
4717
|
-
"name": "search"
|
|
4893
|
+
"name": "search",
|
|
4894
|
+
"description": "Triggers when the search button is clicked.",
|
|
4895
|
+
"properties": [
|
|
4896
|
+
{
|
|
4897
|
+
"type": [
|
|
4898
|
+
"string"
|
|
4899
|
+
],
|
|
4900
|
+
"name": "value"
|
|
4901
|
+
}
|
|
4902
|
+
]
|
|
4718
4903
|
}
|
|
4719
4904
|
],
|
|
4720
4905
|
"slots": [
|
|
4721
4906
|
{
|
|
4722
4907
|
"name": "left",
|
|
4723
|
-
"description": "Use it to add something before text."
|
|
4908
|
+
"description": "Use it to add something before the text."
|
|
4724
4909
|
},
|
|
4725
4910
|
{
|
|
4726
4911
|
"name": "right",
|
|
4727
|
-
"description": "Use it to add something
|
|
4912
|
+
"description": "Use it to add something after the text."
|
|
4728
4913
|
}
|
|
4729
4914
|
],
|
|
4730
4915
|
"source": {
|
|
@@ -4820,10 +5005,8 @@
|
|
|
4820
5005
|
],
|
|
4821
5006
|
"events": [
|
|
4822
5007
|
{
|
|
4823
|
-
"name": "click"
|
|
4824
|
-
|
|
4825
|
-
{
|
|
4826
|
-
"name": "mousedown"
|
|
5008
|
+
"name": "click",
|
|
5009
|
+
"description": "Triggers when the label is clicked."
|
|
4827
5010
|
}
|
|
4828
5011
|
],
|
|
4829
5012
|
"slots": [
|
|
@@ -4831,7 +5014,8 @@
|
|
|
4831
5014
|
"name": "default"
|
|
4832
5015
|
},
|
|
4833
5016
|
{
|
|
4834
|
-
"name": "footer"
|
|
5017
|
+
"name": "footer",
|
|
5018
|
+
"description": "Use it to add something to the label's footer"
|
|
4835
5019
|
}
|
|
4836
5020
|
],
|
|
4837
5021
|
"source": {
|
|
@@ -5983,21 +6167,46 @@
|
|
|
5983
6167
|
],
|
|
5984
6168
|
"events": [
|
|
5985
6169
|
{
|
|
5986
|
-
"name": "change"
|
|
6170
|
+
"name": "change",
|
|
6171
|
+
"description": "Triggers when current page changes.",
|
|
6172
|
+
"properties": [
|
|
6173
|
+
{
|
|
6174
|
+
"type": [
|
|
6175
|
+
"number"
|
|
6176
|
+
],
|
|
6177
|
+
"name": "value"
|
|
6178
|
+
}
|
|
6179
|
+
]
|
|
5987
6180
|
},
|
|
5988
6181
|
{
|
|
5989
|
-
"name": "update:modelValue"
|
|
6182
|
+
"name": "update:modelValue",
|
|
6183
|
+
"description": "Triggers when current page changes.",
|
|
6184
|
+
"properties": [
|
|
6185
|
+
{
|
|
6186
|
+
"type": [
|
|
6187
|
+
"number"
|
|
6188
|
+
],
|
|
6189
|
+
"name": "value"
|
|
6190
|
+
}
|
|
6191
|
+
]
|
|
5990
6192
|
}
|
|
5991
6193
|
],
|
|
5992
6194
|
"slots": [
|
|
5993
6195
|
{
|
|
5994
|
-
"name": "first
|
|
6196
|
+
"name": "first",
|
|
6197
|
+
"description": "Use it to add something instead of the \"first\" label."
|
|
5995
6198
|
},
|
|
5996
6199
|
{
|
|
5997
|
-
"name": "prev
|
|
6200
|
+
"name": "prev",
|
|
6201
|
+
"description": "Use it to add something instead of the \"prev\" label."
|
|
5998
6202
|
},
|
|
5999
6203
|
{
|
|
6000
|
-
"name": "next
|
|
6204
|
+
"name": "next",
|
|
6205
|
+
"description": "Use it to add something instead of the \"next\" label."
|
|
6206
|
+
},
|
|
6207
|
+
{
|
|
6208
|
+
"name": "last",
|
|
6209
|
+
"description": "Use it to add something instead of the \"last\" label."
|
|
6001
6210
|
}
|
|
6002
6211
|
],
|
|
6003
6212
|
"source": {
|
|
@@ -6087,14 +6296,18 @@
|
|
|
6087
6296
|
{
|
|
6088
6297
|
"name": "indicator",
|
|
6089
6298
|
"scoped": true,
|
|
6299
|
+
"description": "Use it to add something instead of the progress indicator.",
|
|
6090
6300
|
"bindings": [
|
|
6091
6301
|
{
|
|
6302
|
+
"type": "number",
|
|
6092
6303
|
"name": "percent"
|
|
6093
6304
|
},
|
|
6094
6305
|
{
|
|
6306
|
+
"type": "number",
|
|
6095
6307
|
"name": "value"
|
|
6096
6308
|
},
|
|
6097
6309
|
{
|
|
6310
|
+
"type": "number",
|
|
6098
6311
|
"name": "max"
|
|
6099
6312
|
}
|
|
6100
6313
|
]
|
|
@@ -6102,17 +6315,22 @@
|
|
|
6102
6315
|
{
|
|
6103
6316
|
"name": "`step-${index}`",
|
|
6104
6317
|
"scoped": true,
|
|
6318
|
+
"description": "Use it to add something instead of the progress step label.",
|
|
6105
6319
|
"bindings": [
|
|
6106
6320
|
{
|
|
6321
|
+
"type": "string",
|
|
6107
6322
|
"name": "name"
|
|
6108
6323
|
},
|
|
6109
6324
|
{
|
|
6325
|
+
"type": "number",
|
|
6110
6326
|
"name": "step"
|
|
6111
6327
|
},
|
|
6112
6328
|
{
|
|
6329
|
+
"type": "number",
|
|
6113
6330
|
"name": "value"
|
|
6114
6331
|
},
|
|
6115
6332
|
{
|
|
6333
|
+
"type": "number",
|
|
6116
6334
|
"name": "max"
|
|
6117
6335
|
}
|
|
6118
6336
|
]
|
|
@@ -6247,7 +6465,16 @@
|
|
|
6247
6465
|
],
|
|
6248
6466
|
"events": [
|
|
6249
6467
|
{
|
|
6250
|
-
"name": "update:modelValue"
|
|
6468
|
+
"name": "update:modelValue",
|
|
6469
|
+
"description": "Triggers when the value attribute changes.",
|
|
6470
|
+
"properties": [
|
|
6471
|
+
{
|
|
6472
|
+
"type": [
|
|
6473
|
+
"string"
|
|
6474
|
+
],
|
|
6475
|
+
"name": "value"
|
|
6476
|
+
}
|
|
6477
|
+
]
|
|
6251
6478
|
}
|
|
6252
6479
|
],
|
|
6253
6480
|
"slots": [
|
|
@@ -6369,7 +6596,16 @@
|
|
|
6369
6596
|
],
|
|
6370
6597
|
"events": [
|
|
6371
6598
|
{
|
|
6372
|
-
"name": "update:modelValue"
|
|
6599
|
+
"name": "update:modelValue",
|
|
6600
|
+
"description": "Triggers when the value attribute changes.",
|
|
6601
|
+
"properties": [
|
|
6602
|
+
{
|
|
6603
|
+
"type": [
|
|
6604
|
+
"string"
|
|
6605
|
+
],
|
|
6606
|
+
"name": "value"
|
|
6607
|
+
}
|
|
6608
|
+
]
|
|
6373
6609
|
}
|
|
6374
6610
|
],
|
|
6375
6611
|
"slots": [
|
|
@@ -6388,7 +6624,7 @@
|
|
|
6388
6624
|
"attributes": [
|
|
6389
6625
|
{
|
|
6390
6626
|
"name": "gap",
|
|
6391
|
-
"description": "
|
|
6627
|
+
"description": "The distance between nested elements.",
|
|
6392
6628
|
"value": {
|
|
6393
6629
|
"kind": "expression",
|
|
6394
6630
|
"type": "'none' | '2xs' | 'xs' | 'sm' | 'md' | 'lg' | 'xl' | '2xl'"
|
|
@@ -6397,13 +6633,40 @@
|
|
|
6397
6633
|
},
|
|
6398
6634
|
{
|
|
6399
6635
|
"name": "align",
|
|
6400
|
-
"description": "Nested items align (flex align-items).",
|
|
6636
|
+
"description": "Nested items vertical align (flex align-items).",
|
|
6401
6637
|
"value": {
|
|
6402
6638
|
"kind": "expression",
|
|
6403
6639
|
"type": "'start' | 'end' | 'center' | 'stretch' | 'baseline'"
|
|
6404
6640
|
},
|
|
6405
6641
|
"default": "start"
|
|
6406
6642
|
},
|
|
6643
|
+
{
|
|
6644
|
+
"name": "justify",
|
|
6645
|
+
"description": "Nested items horizontally align (flex justify-content).",
|
|
6646
|
+
"value": {
|
|
6647
|
+
"kind": "expression",
|
|
6648
|
+
"type": "'start' | 'end' | 'center' | 'around' | 'evenly' | 'between'"
|
|
6649
|
+
},
|
|
6650
|
+
"default": "start"
|
|
6651
|
+
},
|
|
6652
|
+
{
|
|
6653
|
+
"name": "reverse",
|
|
6654
|
+
"description": "Reverse nested items order.",
|
|
6655
|
+
"value": {
|
|
6656
|
+
"kind": "expression",
|
|
6657
|
+
"type": "boolean"
|
|
6658
|
+
},
|
|
6659
|
+
"default": "false"
|
|
6660
|
+
},
|
|
6661
|
+
{
|
|
6662
|
+
"name": "wrap",
|
|
6663
|
+
"description": "Allow items to wrap (flex flex-wrap).",
|
|
6664
|
+
"value": {
|
|
6665
|
+
"kind": "expression",
|
|
6666
|
+
"type": "boolean"
|
|
6667
|
+
},
|
|
6668
|
+
"default": "false"
|
|
6669
|
+
},
|
|
6407
6670
|
{
|
|
6408
6671
|
"name": "noMobile",
|
|
6409
6672
|
"description": "Disables mobile adaptivity.",
|
|
@@ -6986,7 +7249,16 @@
|
|
|
6986
7249
|
],
|
|
6987
7250
|
"events": [
|
|
6988
7251
|
{
|
|
6989
|
-
"name": "update:modelValue"
|
|
7252
|
+
"name": "update:modelValue",
|
|
7253
|
+
"description": "Triggers when switch value changes.",
|
|
7254
|
+
"properties": [
|
|
7255
|
+
{
|
|
7256
|
+
"type": [
|
|
7257
|
+
"Boolean"
|
|
7258
|
+
],
|
|
7259
|
+
"name": "value"
|
|
7260
|
+
}
|
|
7261
|
+
]
|
|
6990
7262
|
}
|
|
6991
7263
|
],
|
|
6992
7264
|
"source": {
|
|
@@ -7152,10 +7424,28 @@
|
|
|
7152
7424
|
],
|
|
7153
7425
|
"events": [
|
|
7154
7426
|
{
|
|
7155
|
-
"name": "clickRow"
|
|
7427
|
+
"name": "clickRow",
|
|
7428
|
+
"description": "Triggers when the row is clicked.",
|
|
7429
|
+
"properties": [
|
|
7430
|
+
{
|
|
7431
|
+
"type": [
|
|
7432
|
+
"object"
|
|
7433
|
+
],
|
|
7434
|
+
"name": "row"
|
|
7435
|
+
}
|
|
7436
|
+
]
|
|
7156
7437
|
},
|
|
7157
7438
|
{
|
|
7158
|
-
"name": "update:rows"
|
|
7439
|
+
"name": "update:rows",
|
|
7440
|
+
"description": "Triggers when table rows are updated.",
|
|
7441
|
+
"properties": [
|
|
7442
|
+
{
|
|
7443
|
+
"type": [
|
|
7444
|
+
"array"
|
|
7445
|
+
],
|
|
7446
|
+
"name": "tableRows"
|
|
7447
|
+
}
|
|
7448
|
+
]
|
|
7159
7449
|
}
|
|
7160
7450
|
],
|
|
7161
7451
|
"slots": [
|
|
@@ -7165,6 +7455,7 @@
|
|
|
7165
7455
|
"description": "Use it to add action buttons instead of table row when some rows are selected.",
|
|
7166
7456
|
"bindings": [
|
|
7167
7457
|
{
|
|
7458
|
+
"type": "array",
|
|
7168
7459
|
"name": "selected-rows"
|
|
7169
7460
|
}
|
|
7170
7461
|
]
|
|
@@ -7175,9 +7466,11 @@
|
|
|
7175
7466
|
"description": "Use it to customise table column.",
|
|
7176
7467
|
"bindings": [
|
|
7177
7468
|
{
|
|
7469
|
+
"type": "string",
|
|
7178
7470
|
"name": "name"
|
|
7179
7471
|
},
|
|
7180
7472
|
{
|
|
7473
|
+
"type": "number",
|
|
7181
7474
|
"name": "column"
|
|
7182
7475
|
}
|
|
7183
7476
|
]
|
|
@@ -7185,12 +7478,14 @@
|
|
|
7185
7478
|
{
|
|
7186
7479
|
"name": "`header-${column.key}-after`",
|
|
7187
7480
|
"scoped": true,
|
|
7188
|
-
"description": "Use it to add
|
|
7481
|
+
"description": "Use it to add something after the table column.",
|
|
7189
7482
|
"bindings": [
|
|
7190
7483
|
{
|
|
7484
|
+
"type": "string",
|
|
7191
7485
|
"name": "name"
|
|
7192
7486
|
},
|
|
7193
7487
|
{
|
|
7488
|
+
"type": "number",
|
|
7194
7489
|
"name": "column"
|
|
7195
7490
|
}
|
|
7196
7491
|
]
|
|
@@ -7201,6 +7496,7 @@
|
|
|
7201
7496
|
"description": "Use it to add something before header row.",
|
|
7202
7497
|
"bindings": [
|
|
7203
7498
|
{
|
|
7499
|
+
"type": "number",
|
|
7204
7500
|
"name": "cols-count"
|
|
7205
7501
|
}
|
|
7206
7502
|
]
|
|
@@ -7235,9 +7531,10 @@
|
|
|
7235
7531
|
{
|
|
7236
7532
|
"name": "footer",
|
|
7237
7533
|
"scoped": true,
|
|
7238
|
-
"description": "Use it to add something
|
|
7534
|
+
"description": "Use it to add something into the table footer.",
|
|
7239
7535
|
"bindings": [
|
|
7240
7536
|
{
|
|
7537
|
+
"type": "number",
|
|
7241
7538
|
"name": "cols-count"
|
|
7242
7539
|
}
|
|
7243
7540
|
]
|
|
@@ -7309,12 +7606,22 @@
|
|
|
7309
7606
|
],
|
|
7310
7607
|
"events": [
|
|
7311
7608
|
{
|
|
7312
|
-
"name": "update:modelValue"
|
|
7609
|
+
"name": "update:modelValue",
|
|
7610
|
+
"description": "Triggers when the selected tab changes.",
|
|
7611
|
+
"properties": [
|
|
7612
|
+
{
|
|
7613
|
+
"type": [
|
|
7614
|
+
"string"
|
|
7615
|
+
],
|
|
7616
|
+
"name": "modelValue"
|
|
7617
|
+
}
|
|
7618
|
+
]
|
|
7313
7619
|
}
|
|
7314
7620
|
],
|
|
7315
7621
|
"slots": [
|
|
7316
7622
|
{
|
|
7317
|
-
"name": "default"
|
|
7623
|
+
"name": "default",
|
|
7624
|
+
"description": "Use it to add the UTab component."
|
|
7318
7625
|
}
|
|
7319
7626
|
],
|
|
7320
7627
|
"source": {
|
|
@@ -7534,32 +7841,46 @@
|
|
|
7534
7841
|
],
|
|
7535
7842
|
"events": [
|
|
7536
7843
|
{
|
|
7537
|
-
"name": "
|
|
7844
|
+
"name": "update:modelValue",
|
|
7845
|
+
"description": "Triggers when the textarea value changes.",
|
|
7846
|
+
"properties": [
|
|
7847
|
+
{
|
|
7848
|
+
"type": [
|
|
7849
|
+
"string"
|
|
7850
|
+
],
|
|
7851
|
+
"name": "value"
|
|
7852
|
+
}
|
|
7853
|
+
]
|
|
7538
7854
|
},
|
|
7539
7855
|
{
|
|
7540
|
-
"name": "
|
|
7856
|
+
"name": "change",
|
|
7857
|
+
"description": "Triggers when the textarea value changes."
|
|
7541
7858
|
},
|
|
7542
7859
|
{
|
|
7543
|
-
"name": "
|
|
7860
|
+
"name": "click",
|
|
7861
|
+
"description": "Triggers when the textarea is clicked."
|
|
7544
7862
|
},
|
|
7545
7863
|
{
|
|
7546
|
-
"name": "
|
|
7864
|
+
"name": "focus",
|
|
7865
|
+
"description": "Triggers when the textarea is focused."
|
|
7547
7866
|
},
|
|
7548
7867
|
{
|
|
7549
|
-
"name": "
|
|
7868
|
+
"name": "blur",
|
|
7869
|
+
"description": "Triggers when the textarea loses focus."
|
|
7550
7870
|
},
|
|
7551
7871
|
{
|
|
7552
|
-
"name": "mousedown"
|
|
7872
|
+
"name": "mousedown",
|
|
7873
|
+
"description": "Triggers when mouse button is released over the element."
|
|
7553
7874
|
}
|
|
7554
7875
|
],
|
|
7555
7876
|
"slots": [
|
|
7556
7877
|
{
|
|
7557
7878
|
"name": "left",
|
|
7558
|
-
"description": "Use it to add
|
|
7879
|
+
"description": "Use it to add something before the text."
|
|
7559
7880
|
},
|
|
7560
7881
|
{
|
|
7561
7882
|
"name": "right",
|
|
7562
|
-
"description": "Use it to add
|
|
7883
|
+
"description": "Use it to add something after the text."
|
|
7563
7884
|
}
|
|
7564
7885
|
],
|
|
7565
7886
|
"source": {
|