vueless 0.0.178 → 0.0.180
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.data-table/configs/default.config.js +2 -2
- package/ui.form-calendar/components/DayView.vue +6 -6
- package/ui.form-calendar/components/MonthView.vue +9 -5
- package/ui.form-calendar/components/YearView.vue +8 -4
- package/ui.form-calendar/composables/attrs.composable.js +23 -18
- package/ui.form-calendar/configs/default.config.js +12 -17
- package/ui.form-calendar/index.vue +4 -4
- package/ui.form-checkbox-group/configs/default.config.js +2 -0
- package/ui.form-checkbox-group/index.vue +39 -22
- package/ui.form-color-picker/composables/attrs.composable.js +19 -14
- package/ui.form-color-picker/configs/default.config.js +21 -15
- package/ui.form-color-picker/index.stories.js +1 -1
- package/ui.form-color-picker/index.vue +78 -59
- package/ui.form-date-picker/index.vue +4 -3
- package/ui.form-date-picker-range/index.vue +16 -4
- package/ui.form-input/index.stories.js +15 -5
- package/ui.form-input/index.vue +56 -28
- package/ui.form-radio/index.stories.js +4 -4
- package/ui.form-radio/index.vue +8 -4
- package/ui.form-radio-group/composables/attrs.composable.js +2 -0
- package/ui.form-radio-group/configs/default.config.js +3 -3
- package/ui.form-radio-group/index.stories.js +3 -3
- package/ui.form-radio-group/index.vue +29 -8
- package/ui.loader-top/Docs.mdx +8 -10
- package/ui.loader-top/composables/useLoaderTop.js +22 -11
- package/ui.loader-top/index.vue +17 -35
- package/ui.loader-top/services/loaderTop.service.js +6 -0
- package/ui.navigation-progress/composables/attrs.composable.js +38 -2
- package/ui.navigation-progress/configs/default.config.js +32 -0
- package/ui.navigation-progress/index.stories.js +127 -2
- package/ui.navigation-progress/index.vue +53 -5
- package/ui.text-alert/configs/default.config.js +7 -7
- package/ui.text-block/composables/attrs.composable.js +2 -0
- package/ui.text-block/configs/default.config.js +7 -7
- package/ui.text-block/index.stories.js +16 -16
- package/ui.text-block/index.vue +4 -4
- package/web-types.json +111 -45
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.180",
|
|
5
5
|
"contributions": {
|
|
6
6
|
"html": {
|
|
7
7
|
"description-markup": "markdown",
|
|
@@ -1234,15 +1234,6 @@
|
|
|
1234
1234
|
"name": "UCheckboxGroup",
|
|
1235
1235
|
"description": "",
|
|
1236
1236
|
"attributes": [
|
|
1237
|
-
{
|
|
1238
|
-
"name": "label",
|
|
1239
|
-
"description": "Checkbox group label.",
|
|
1240
|
-
"value": {
|
|
1241
|
-
"kind": "expression",
|
|
1242
|
-
"type": "string"
|
|
1243
|
-
},
|
|
1244
|
-
"default": "\"\""
|
|
1245
|
-
},
|
|
1246
1237
|
{
|
|
1247
1238
|
"name": "modelValue",
|
|
1248
1239
|
"description": "Checkbox group value.",
|
|
@@ -1261,15 +1252,51 @@
|
|
|
1261
1252
|
},
|
|
1262
1253
|
"default": "[]"
|
|
1263
1254
|
},
|
|
1255
|
+
{
|
|
1256
|
+
"name": "label",
|
|
1257
|
+
"description": "Checkbox group label.",
|
|
1258
|
+
"value": {
|
|
1259
|
+
"kind": "expression",
|
|
1260
|
+
"type": "string"
|
|
1261
|
+
},
|
|
1262
|
+
"default": "\"\""
|
|
1263
|
+
},
|
|
1264
|
+
{
|
|
1265
|
+
"name": "description",
|
|
1266
|
+
"description": "Checkbox group description.",
|
|
1267
|
+
"value": {
|
|
1268
|
+
"kind": "expression",
|
|
1269
|
+
"type": "string"
|
|
1270
|
+
},
|
|
1271
|
+
"default": "\"\""
|
|
1272
|
+
},
|
|
1264
1273
|
{
|
|
1265
1274
|
"name": "error",
|
|
1266
|
-
"description": "
|
|
1275
|
+
"description": "Checkbox group error message.",
|
|
1267
1276
|
"value": {
|
|
1268
1277
|
"kind": "expression",
|
|
1269
1278
|
"type": "string"
|
|
1270
1279
|
},
|
|
1271
1280
|
"default": "\"\""
|
|
1272
1281
|
},
|
|
1282
|
+
{
|
|
1283
|
+
"name": "size",
|
|
1284
|
+
"description": "Radio size.",
|
|
1285
|
+
"value": {
|
|
1286
|
+
"kind": "expression",
|
|
1287
|
+
"type": "'xs' | 'sm' | 'md' | 'lg' | 'xl'"
|
|
1288
|
+
},
|
|
1289
|
+
"default": "md"
|
|
1290
|
+
},
|
|
1291
|
+
{
|
|
1292
|
+
"name": "color",
|
|
1293
|
+
"description": "Radio group color.",
|
|
1294
|
+
"value": {
|
|
1295
|
+
"kind": "expression",
|
|
1296
|
+
"type": "'brand' | 'grayscale' | 'gray' | 'red' | 'orange' | 'amber' | 'yellow' | 'lime' | 'green' | 'emerald' | 'teal' | 'cyan' | 'sky' | 'blue' | 'indigo' | 'violet' | 'purple' | 'fuchsia' | 'pink' | 'rose'"
|
|
1297
|
+
},
|
|
1298
|
+
"default": "brand"
|
|
1299
|
+
},
|
|
1273
1300
|
{
|
|
1274
1301
|
"name": "name",
|
|
1275
1302
|
"description": "Name for each checkbox.",
|
|
@@ -1288,15 +1315,6 @@
|
|
|
1288
1315
|
},
|
|
1289
1316
|
"default": "false"
|
|
1290
1317
|
},
|
|
1291
|
-
{
|
|
1292
|
-
"name": "id",
|
|
1293
|
-
"description": "@ignore: Generates unique element id.",
|
|
1294
|
-
"value": {
|
|
1295
|
-
"kind": "expression",
|
|
1296
|
-
"type": "string"
|
|
1297
|
-
},
|
|
1298
|
-
"default": "() => getRandomId()"
|
|
1299
|
-
},
|
|
1300
1318
|
{
|
|
1301
1319
|
"name": "config",
|
|
1302
1320
|
"description": "Component ui config object.",
|
|
@@ -1441,13 +1459,13 @@
|
|
|
1441
1459
|
"default": "\"\""
|
|
1442
1460
|
},
|
|
1443
1461
|
{
|
|
1444
|
-
"name": "
|
|
1445
|
-
"description": "Color picker
|
|
1462
|
+
"name": "name",
|
|
1463
|
+
"description": "Color picker name.",
|
|
1446
1464
|
"value": {
|
|
1447
1465
|
"kind": "expression",
|
|
1448
|
-
"type": "
|
|
1466
|
+
"type": "string"
|
|
1449
1467
|
},
|
|
1450
|
-
"default": "
|
|
1468
|
+
"default": "UColorPicker"
|
|
1451
1469
|
},
|
|
1452
1470
|
{
|
|
1453
1471
|
"name": "label",
|
|
@@ -1481,19 +1499,18 @@
|
|
|
1481
1499
|
"description": "Color picker size.",
|
|
1482
1500
|
"value": {
|
|
1483
1501
|
"kind": "expression",
|
|
1484
|
-
"type": "'sm' | 'md' | 'lg'"
|
|
1502
|
+
"type": "'xs' | 'sm' | 'md' | 'lg' | 'xl'"
|
|
1485
1503
|
},
|
|
1486
1504
|
"default": "md"
|
|
1487
1505
|
},
|
|
1488
1506
|
{
|
|
1489
|
-
"name": "
|
|
1490
|
-
"
|
|
1491
|
-
"description": "Color picker name.",
|
|
1507
|
+
"name": "colorOptions",
|
|
1508
|
+
"description": "Color picker color list.",
|
|
1492
1509
|
"value": {
|
|
1493
1510
|
"kind": "expression",
|
|
1494
|
-
"type": "
|
|
1511
|
+
"type": "array"
|
|
1495
1512
|
},
|
|
1496
|
-
"default": "
|
|
1513
|
+
"default": "red,orange,amber,yellow,lime,green,emerald,teal,cyan,sky,blue,indigo,violet,purple,fuchsia,pink,rose"
|
|
1497
1514
|
},
|
|
1498
1515
|
{
|
|
1499
1516
|
"name": "disabled",
|
|
@@ -1504,6 +1521,15 @@
|
|
|
1504
1521
|
},
|
|
1505
1522
|
"default": "false"
|
|
1506
1523
|
},
|
|
1524
|
+
{
|
|
1525
|
+
"name": "id",
|
|
1526
|
+
"description": "@ignore: Generates unique element id.",
|
|
1527
|
+
"value": {
|
|
1528
|
+
"kind": "expression",
|
|
1529
|
+
"type": "string"
|
|
1530
|
+
},
|
|
1531
|
+
"default": "() => getRandomId()"
|
|
1532
|
+
},
|
|
1507
1533
|
{
|
|
1508
1534
|
"name": "config",
|
|
1509
1535
|
"description": "Component ui config object.",
|
|
@@ -3620,6 +3646,24 @@
|
|
|
3620
3646
|
"type": "string"
|
|
3621
3647
|
},
|
|
3622
3648
|
"default": "\"\""
|
|
3649
|
+
},
|
|
3650
|
+
{
|
|
3651
|
+
"name": "iconLeft",
|
|
3652
|
+
"description": "Left side icon name.",
|
|
3653
|
+
"value": {
|
|
3654
|
+
"kind": "expression",
|
|
3655
|
+
"type": "string"
|
|
3656
|
+
},
|
|
3657
|
+
"default": "\"\""
|
|
3658
|
+
},
|
|
3659
|
+
{
|
|
3660
|
+
"name": "iconRight",
|
|
3661
|
+
"description": "Right side icon name.",
|
|
3662
|
+
"value": {
|
|
3663
|
+
"kind": "expression",
|
|
3664
|
+
"type": "string"
|
|
3665
|
+
},
|
|
3666
|
+
"default": "\"\""
|
|
3623
3667
|
}
|
|
3624
3668
|
],
|
|
3625
3669
|
"events": [
|
|
@@ -3648,15 +3692,11 @@
|
|
|
3648
3692
|
"slots": [
|
|
3649
3693
|
{
|
|
3650
3694
|
"name": "left",
|
|
3651
|
-
"description": "Use it to add
|
|
3652
|
-
},
|
|
3653
|
-
{
|
|
3654
|
-
"name": "right-icon",
|
|
3655
|
-
"description": "Use it to add icon after text."
|
|
3695
|
+
"description": "Use it to add icon before text."
|
|
3656
3696
|
},
|
|
3657
3697
|
{
|
|
3658
3698
|
"name": "right",
|
|
3659
|
-
"description": "Use it to add
|
|
3699
|
+
"description": "Use it to add icon after text."
|
|
3660
3700
|
}
|
|
3661
3701
|
],
|
|
3662
3702
|
"source": {
|
|
@@ -5698,7 +5738,7 @@
|
|
|
5698
5738
|
"description": "Progress max amount of steps.",
|
|
5699
5739
|
"value": {
|
|
5700
5740
|
"kind": "expression",
|
|
5701
|
-
"type": "number"
|
|
5741
|
+
"type": "number|array"
|
|
5702
5742
|
},
|
|
5703
5743
|
"default": "100"
|
|
5704
5744
|
},
|
|
@@ -5719,6 +5759,23 @@
|
|
|
5719
5759
|
"type": "'brand' | 'grayscale' | 'gray' | 'red' | 'orange' | 'amber' | 'yellow' | 'lime' | 'green' | 'emerald' | 'teal' | 'cyan' | 'sky' | 'blue' | 'indigo' | 'violet' | 'purple' | 'fuchsia' | 'pink' | 'rose' | 'white'"
|
|
5720
5760
|
},
|
|
5721
5761
|
"default": "brand"
|
|
5762
|
+
},
|
|
5763
|
+
{
|
|
5764
|
+
"name": "indicator",
|
|
5765
|
+
"description": "Progress indicator visibility.",
|
|
5766
|
+
"value": {
|
|
5767
|
+
"kind": "expression",
|
|
5768
|
+
"type": "boolean"
|
|
5769
|
+
},
|
|
5770
|
+
"default": "UIService.get(defaultConfig, UProgress).default.indicator"
|
|
5771
|
+
}
|
|
5772
|
+
],
|
|
5773
|
+
"slots": [
|
|
5774
|
+
{
|
|
5775
|
+
"name": "indicator"
|
|
5776
|
+
},
|
|
5777
|
+
{
|
|
5778
|
+
"name": "`step-${index}`"
|
|
5722
5779
|
}
|
|
5723
5780
|
],
|
|
5724
5781
|
"source": {
|
|
@@ -5732,10 +5789,10 @@
|
|
|
5732
5789
|
"attributes": [
|
|
5733
5790
|
{
|
|
5734
5791
|
"name": "value",
|
|
5735
|
-
"description": "
|
|
5792
|
+
"description": "Native value attribute.",
|
|
5736
5793
|
"value": {
|
|
5737
5794
|
"kind": "expression",
|
|
5738
|
-
"type": "string|number"
|
|
5795
|
+
"type": "boolean|string|number|array|object"
|
|
5739
5796
|
},
|
|
5740
5797
|
"default": "\"\""
|
|
5741
5798
|
},
|
|
@@ -5866,10 +5923,19 @@
|
|
|
5866
5923
|
"description": "Radio group selected value.",
|
|
5867
5924
|
"value": {
|
|
5868
5925
|
"kind": "expression",
|
|
5869
|
-
"type": "string|number"
|
|
5926
|
+
"type": "boolean|string|number|array|object"
|
|
5870
5927
|
},
|
|
5871
5928
|
"default": "\"\""
|
|
5872
5929
|
},
|
|
5930
|
+
{
|
|
5931
|
+
"name": "options",
|
|
5932
|
+
"description": "Radio group options.",
|
|
5933
|
+
"value": {
|
|
5934
|
+
"kind": "expression",
|
|
5935
|
+
"type": "array"
|
|
5936
|
+
},
|
|
5937
|
+
"default": "[]"
|
|
5938
|
+
},
|
|
5873
5939
|
{
|
|
5874
5940
|
"name": "label",
|
|
5875
5941
|
"description": "Radio group label.",
|
|
@@ -5881,7 +5947,7 @@
|
|
|
5881
5947
|
},
|
|
5882
5948
|
{
|
|
5883
5949
|
"name": "description",
|
|
5884
|
-
"description": "
|
|
5950
|
+
"description": "Radio group description.",
|
|
5885
5951
|
"value": {
|
|
5886
5952
|
"kind": "expression",
|
|
5887
5953
|
"type": "string"
|
|
@@ -5890,7 +5956,7 @@
|
|
|
5890
5956
|
},
|
|
5891
5957
|
{
|
|
5892
5958
|
"name": "error",
|
|
5893
|
-
"description": "
|
|
5959
|
+
"description": "Radio group error message.",
|
|
5894
5960
|
"value": {
|
|
5895
5961
|
"kind": "expression",
|
|
5896
5962
|
"type": "string"
|
|
@@ -5902,7 +5968,7 @@
|
|
|
5902
5968
|
"description": "Radio size.",
|
|
5903
5969
|
"value": {
|
|
5904
5970
|
"kind": "expression",
|
|
5905
|
-
"type": "'sm' | 'md' | 'lg'"
|
|
5971
|
+
"type": "'xs' | 'sm' | 'md' | 'lg' | 'xl'"
|
|
5906
5972
|
},
|
|
5907
5973
|
"default": "md"
|
|
5908
5974
|
},
|
|
@@ -6821,7 +6887,7 @@
|
|
|
6821
6887
|
},
|
|
6822
6888
|
{
|
|
6823
6889
|
"name": "line",
|
|
6824
|
-
"description": "Remove line height.",
|
|
6890
|
+
"description": "Remove line height (useful for 1-line text).",
|
|
6825
6891
|
"value": {
|
|
6826
6892
|
"kind": "expression",
|
|
6827
6893
|
"type": "boolean"
|
|
@@ -6850,7 +6916,7 @@
|
|
|
6850
6916
|
"slots": [
|
|
6851
6917
|
{
|
|
6852
6918
|
"name": "default",
|
|
6853
|
-
"description": "Use it to add something."
|
|
6919
|
+
"description": "Use it to add something inside."
|
|
6854
6920
|
}
|
|
6855
6921
|
],
|
|
6856
6922
|
"source": {
|