vueless 0.0.513 → 0.0.515

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (105) hide show
  1. package/package.json +1 -1
  2. package/types.ts +26 -0
  3. package/ui.button-link/types.ts +3 -1
  4. package/ui.button-link/useAttrs.ts +2 -2
  5. package/ui.container-accordion/UAccordion.vue +33 -69
  6. package/ui.container-accordion/storybook/Docs.mdx +2 -2
  7. package/ui.container-accordion/storybook/{stories.js → stories.ts} +10 -3
  8. package/ui.container-accordion/types.ts +35 -0
  9. package/ui.container-accordion/{useAttrs.js → useAttrs.ts} +14 -3
  10. package/ui.container-card/UCard.vue +43 -71
  11. package/ui.container-card/storybook/Docs.mdx +2 -2
  12. package/ui.container-card/storybook/{stories.js → stories.ts} +9 -2
  13. package/ui.container-card/types.ts +25 -0
  14. package/ui.container-card/useAttrs.ts +18 -0
  15. package/ui.container-col/UCol.vue +21 -79
  16. package/ui.container-col/storybook/Docs.mdx +2 -2
  17. package/ui.container-col/storybook/{stories.js → stories.ts} +9 -2
  18. package/ui.container-col/types.ts +54 -0
  19. package/ui.container-col/useAttrs.ts +18 -0
  20. package/ui.container-divider/UDivider.vue +22 -94
  21. package/ui.container-divider/storybook/Docs.mdx +2 -2
  22. package/ui.container-divider/storybook/{stories.js → stories.ts} +13 -5
  23. package/ui.container-divider/types.ts +55 -0
  24. package/ui.container-divider/useAttrs.ts +23 -0
  25. package/ui.container-group/UGroup.vue +31 -73
  26. package/ui.container-group/storybook/Docs.mdx +2 -2
  27. package/ui.container-group/storybook/{stories.js → stories.ts} +9 -2
  28. package/ui.container-group/types.ts +36 -0
  29. package/ui.container-group/useAttrs.ts +18 -0
  30. package/ui.container-modal/UModal.vue +122 -232
  31. package/ui.container-modal/storybook/Docs.mdx +2 -2
  32. package/ui.container-modal/storybook/{stories.js → stories.ts} +16 -6
  33. package/ui.container-modal/types.ts +82 -0
  34. package/ui.container-modal/useAttrs.ts +22 -0
  35. package/ui.container-modal-confirm/UModalConfirm.vue +82 -199
  36. package/ui.container-modal-confirm/storybook/Docs.mdx +2 -2
  37. package/ui.container-modal-confirm/storybook/{stories.js → stories.ts} +14 -3
  38. package/ui.container-modal-confirm/types.ts +106 -0
  39. package/ui.container-modal-confirm/useAttrs.ts +18 -0
  40. package/ui.container-page/UPage.vue +79 -153
  41. package/ui.container-page/storybook/Docs.mdx +2 -2
  42. package/ui.container-page/storybook/{stories.js → stories.ts} +9 -2
  43. package/ui.container-page/types.ts +57 -0
  44. package/ui.container-page/{useAttrs.js → useAttrs.ts} +14 -3
  45. package/ui.container-row/URow.vue +22 -87
  46. package/ui.container-row/storybook/Docs.mdx +2 -2
  47. package/ui.container-row/storybook/{stories.js → stories.ts} +11 -3
  48. package/ui.container-row/types.ts +59 -0
  49. package/ui.container-row/useAttrs.ts +18 -0
  50. package/ui.dropdown-badge/UDropdownBadge.vue +70 -167
  51. package/ui.dropdown-badge/storybook/Docs.mdx +2 -2
  52. package/ui.dropdown-badge/storybook/{stories.js → stories.ts} +16 -5
  53. package/ui.dropdown-badge/types.ts +93 -0
  54. package/ui.dropdown-badge/{useAttrs.js → useAttrs.ts} +13 -2
  55. package/ui.dropdown-button/UDropdownButton.vue +85 -203
  56. package/ui.dropdown-button/storybook/Docs.mdx +2 -2
  57. package/ui.dropdown-button/storybook/{stories.js → stories.ts} +25 -11
  58. package/ui.dropdown-button/types.ts +108 -0
  59. package/ui.dropdown-button/{useAttrs.js → useAttrs.ts} +14 -3
  60. package/ui.dropdown-link/UDropdownLink.vue +84 -194
  61. package/ui.dropdown-link/storybook/Docs.mdx +2 -2
  62. package/ui.dropdown-link/storybook/{stories.js → stories.ts} +20 -9
  63. package/ui.dropdown-link/types.ts +103 -0
  64. package/ui.dropdown-link/{useAttrs.js → useAttrs.ts} +14 -3
  65. package/ui.dropdown-list/UDropdownList.vue +112 -177
  66. package/ui.dropdown-list/storybook/Docs.mdx +2 -2
  67. package/ui.dropdown-list/storybook/{stories.js → stories.ts} +23 -7
  68. package/ui.dropdown-list/types.ts +52 -0
  69. package/ui.dropdown-list/{useAttrs.js → useAttrs.ts} +6 -3
  70. package/ui.dropdown-list/usePointer.ts +111 -0
  71. package/web-types.json +298 -146
  72. package/ui.container-card/useAttrs.js +0 -15
  73. package/ui.container-col/useAttrs.js +0 -15
  74. package/ui.container-divider/useAttrs.js +0 -20
  75. package/ui.container-group/useAttrs.js +0 -15
  76. package/ui.container-modal/useAttrs.js +0 -19
  77. package/ui.container-modal-confirm/useAttrs.js +0 -15
  78. package/ui.container-row/useAttrs.js +0 -15
  79. package/ui.dropdown-list/usePointer.js +0 -86
  80. /package/ui.container-accordion/{config.js → config.ts} +0 -0
  81. /package/ui.container-accordion/{constants.js → constants.ts} +0 -0
  82. /package/ui.container-card/{config.js → config.ts} +0 -0
  83. /package/ui.container-card/{constants.js → constants.ts} +0 -0
  84. /package/ui.container-col/{config.js → config.ts} +0 -0
  85. /package/ui.container-col/{constants.js → constants.ts} +0 -0
  86. /package/ui.container-divider/{config.js → config.ts} +0 -0
  87. /package/ui.container-divider/{constants.js → constants.ts} +0 -0
  88. /package/ui.container-group/{config.js → config.ts} +0 -0
  89. /package/ui.container-group/{constants.js → constants.ts} +0 -0
  90. /package/ui.container-modal/{config.js → config.ts} +0 -0
  91. /package/ui.container-modal/{constants.js → constants.ts} +0 -0
  92. /package/ui.container-modal-confirm/{config.js → config.ts} +0 -0
  93. /package/ui.container-modal-confirm/{constants.js → constants.ts} +0 -0
  94. /package/ui.container-page/{config.js → config.ts} +0 -0
  95. /package/ui.container-page/{constants.js → constants.ts} +0 -0
  96. /package/ui.container-row/{config.js → config.ts} +0 -0
  97. /package/ui.container-row/{constants.js → constants.ts} +0 -0
  98. /package/ui.dropdown-badge/{config.js → config.ts} +0 -0
  99. /package/ui.dropdown-badge/{constants.js → constants.ts} +0 -0
  100. /package/ui.dropdown-button/{config.js → config.ts} +0 -0
  101. /package/ui.dropdown-button/{constants.js → constants.ts} +0 -0
  102. /package/ui.dropdown-link/{config.js → config.ts} +0 -0
  103. /package/ui.dropdown-link/{constants.js → constants.ts} +0 -0
  104. /package/ui.dropdown-list/{config.js → config.ts} +0 -0
  105. /package/ui.dropdown-list/{constants.js → constants.ts} +0 -0
package/web-types.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "framework": "vue",
3
3
  "name": "vueless",
4
- "version": "0.0.513",
4
+ "version": "0.0.515",
5
5
  "contributions": {
6
6
  "html": {
7
7
  "description-markup": "markdown",
@@ -64,7 +64,7 @@
64
64
  "attributes": [
65
65
  {
66
66
  "name": "title",
67
- "required": true,
67
+ "required": false,
68
68
  "description": "Accordion title.",
69
69
  "value": {
70
70
  "kind": "expression",
@@ -73,7 +73,7 @@
73
73
  },
74
74
  {
75
75
  "name": "description",
76
- "required": true,
76
+ "required": false,
77
77
  "description": "Accordion description.",
78
78
  "value": {
79
79
  "kind": "expression",
@@ -82,6 +82,7 @@
82
82
  },
83
83
  {
84
84
  "name": "size",
85
+ "required": false,
85
86
  "description": "Accordion size.",
86
87
  "enum": [
87
88
  "sm",
@@ -90,21 +91,34 @@
90
91
  ],
91
92
  "value": {
92
93
  "kind": "expression",
93
- "type": "string"
94
+ "type": "union"
94
95
  },
95
96
  "default": "md"
96
97
  },
97
98
  {
98
99
  "name": "id",
100
+ "required": false,
99
101
  "description": "Unique element id.",
100
102
  "value": {
101
103
  "kind": "expression",
102
104
  "type": "string"
103
- },
104
- "default": "\"\""
105
+ }
106
+ },
107
+ {
108
+ "name": "config",
109
+ "required": false,
110
+ "description": "Component config object.",
111
+ "enum": [
112
+ "TSTypeQuery"
113
+ ],
114
+ "value": {
115
+ "kind": "expression",
116
+ "type": "Partial"
117
+ }
105
118
  },
106
119
  {
107
120
  "name": "dataTest",
121
+ "required": false,
108
122
  "description": "Data-test attribute for automated testing.",
109
123
  "value": {
110
124
  "kind": "expression",
@@ -1706,33 +1720,37 @@
1706
1720
  "attributes": [
1707
1721
  {
1708
1722
  "name": "title",
1723
+ "required": false,
1709
1724
  "description": "Card title.",
1710
1725
  "value": {
1711
1726
  "kind": "expression",
1712
1727
  "type": "string"
1713
- },
1714
- "default": "\"\""
1728
+ }
1715
1729
  },
1716
1730
  {
1717
1731
  "name": "description",
1732
+ "required": false,
1718
1733
  "description": "Card description.",
1719
1734
  "value": {
1720
1735
  "kind": "expression",
1721
1736
  "type": "string"
1722
- },
1723
- "default": "\"\""
1737
+ }
1724
1738
  },
1725
1739
  {
1726
1740
  "name": "config",
1741
+ "required": false,
1727
1742
  "description": "Component config object.",
1743
+ "enum": [
1744
+ "TSTypeQuery"
1745
+ ],
1728
1746
  "value": {
1729
1747
  "kind": "expression",
1730
- "type": "object"
1731
- },
1732
- "default": "{}"
1748
+ "type": "Partial"
1749
+ }
1733
1750
  },
1734
1751
  {
1735
1752
  "name": "dataTest",
1753
+ "required": false,
1736
1754
  "description": "Data-test attribute for automated testing.",
1737
1755
  "value": {
1738
1756
  "kind": "expression",
@@ -2289,6 +2307,7 @@
2289
2307
  "attributes": [
2290
2308
  {
2291
2309
  "name": "gap",
2310
+ "required": false,
2292
2311
  "description": "The distance between nested elements.",
2293
2312
  "enum": [
2294
2313
  "none",
@@ -2304,12 +2323,13 @@
2304
2323
  ],
2305
2324
  "value": {
2306
2325
  "kind": "expression",
2307
- "type": "string"
2326
+ "type": "union"
2308
2327
  },
2309
2328
  "default": "md"
2310
2329
  },
2311
2330
  {
2312
2331
  "name": "align",
2332
+ "required": false,
2313
2333
  "description": "Items horizontal align (align-items).",
2314
2334
  "enum": [
2315
2335
  "start",
@@ -2320,12 +2340,13 @@
2320
2340
  ],
2321
2341
  "value": {
2322
2342
  "kind": "expression",
2323
- "type": "string"
2343
+ "type": "union"
2324
2344
  },
2325
2345
  "default": "start"
2326
2346
  },
2327
2347
  {
2328
2348
  "name": "content",
2349
+ "required": false,
2329
2350
  "description": "Items horizontal align for multi-row flex containers (align-content).",
2330
2351
  "enum": [
2331
2352
  "start",
@@ -2340,12 +2361,13 @@
2340
2361
  ],
2341
2362
  "value": {
2342
2363
  "kind": "expression",
2343
- "type": "string"
2364
+ "type": "union"
2344
2365
  },
2345
2366
  "default": "start"
2346
2367
  },
2347
2368
  {
2348
2369
  "name": "justify",
2370
+ "required": false,
2349
2371
  "description": "Items vertical align (justify-content).",
2350
2372
  "enum": [
2351
2373
  "start",
@@ -2357,12 +2379,13 @@
2357
2379
  ],
2358
2380
  "value": {
2359
2381
  "kind": "expression",
2360
- "type": "string"
2382
+ "type": "union"
2361
2383
  },
2362
2384
  "default": "start"
2363
2385
  },
2364
2386
  {
2365
2387
  "name": "reverse",
2388
+ "required": false,
2366
2389
  "description": "Reverse nested items order.",
2367
2390
  "value": {
2368
2391
  "kind": "expression",
@@ -2372,6 +2395,7 @@
2372
2395
  },
2373
2396
  {
2374
2397
  "name": "wrap",
2398
+ "required": false,
2375
2399
  "description": "Allow items to wrap (flex flex-wrap).",
2376
2400
  "value": {
2377
2401
  "kind": "expression",
@@ -2381,15 +2405,19 @@
2381
2405
  },
2382
2406
  {
2383
2407
  "name": "config",
2408
+ "required": false,
2384
2409
  "description": "Component config object.",
2410
+ "enum": [
2411
+ "TSTypeQuery"
2412
+ ],
2385
2413
  "value": {
2386
2414
  "kind": "expression",
2387
- "type": "object"
2388
- },
2389
- "default": "{}"
2415
+ "type": "Partial"
2416
+ }
2390
2417
  },
2391
2418
  {
2392
2419
  "name": "dataTest",
2420
+ "required": false,
2393
2421
  "description": "Data-test attribute for automated testing.",
2394
2422
  "value": {
2395
2423
  "kind": "expression",
@@ -3661,15 +3689,16 @@
3661
3689
  "attributes": [
3662
3690
  {
3663
3691
  "name": "label",
3692
+ "required": false,
3664
3693
  "description": "Divider label.",
3665
3694
  "value": {
3666
3695
  "kind": "expression",
3667
3696
  "type": "string"
3668
- },
3669
- "default": "\"\""
3697
+ }
3670
3698
  },
3671
3699
  {
3672
3700
  "name": "size",
3701
+ "required": false,
3673
3702
  "description": "Divider padding size.",
3674
3703
  "enum": [
3675
3704
  "xs",
@@ -3680,12 +3709,13 @@
3680
3709
  ],
3681
3710
  "value": {
3682
3711
  "kind": "expression",
3683
- "type": "string"
3712
+ "type": "union"
3684
3713
  },
3685
3714
  "default": "md"
3686
3715
  },
3687
3716
  {
3688
3717
  "name": "variant",
3718
+ "required": false,
3689
3719
  "description": "Divider color.",
3690
3720
  "enum": [
3691
3721
  "light",
@@ -3694,12 +3724,13 @@
3694
3724
  ],
3695
3725
  "value": {
3696
3726
  "kind": "expression",
3697
- "type": "string"
3727
+ "type": "union"
3698
3728
  },
3699
3729
  "default": "default"
3700
3730
  },
3701
3731
  {
3702
3732
  "name": "padding",
3733
+ "required": false,
3703
3734
  "description": "Set padding around the Divider.",
3704
3735
  "enum": [
3705
3736
  "none",
@@ -3709,12 +3740,13 @@
3709
3740
  ],
3710
3741
  "value": {
3711
3742
  "kind": "expression",
3712
- "type": "string"
3743
+ "type": "union"
3713
3744
  },
3714
3745
  "default": "all"
3715
3746
  },
3716
3747
  {
3717
3748
  "name": "dashed",
3749
+ "required": false,
3718
3750
  "description": "Set line dashed.",
3719
3751
  "value": {
3720
3752
  "kind": "expression",
@@ -3724,6 +3756,7 @@
3724
3756
  },
3725
3757
  {
3726
3758
  "name": "dotted",
3759
+ "required": false,
3727
3760
  "description": "Set line dotted.",
3728
3761
  "value": {
3729
3762
  "kind": "expression",
@@ -3733,6 +3766,7 @@
3733
3766
  },
3734
3767
  {
3735
3768
  "name": "vertical",
3769
+ "required": false,
3736
3770
  "description": "Set divider vertically orientated.",
3737
3771
  "value": {
3738
3772
  "kind": "expression",
@@ -3742,6 +3776,7 @@
3742
3776
  },
3743
3777
  {
3744
3778
  "name": "noBorder",
3779
+ "required": false,
3745
3780
  "description": "Remove border (keeps only spacings).",
3746
3781
  "value": {
3747
3782
  "kind": "expression",
@@ -3751,15 +3786,19 @@
3751
3786
  },
3752
3787
  {
3753
3788
  "name": "config",
3789
+ "required": false,
3754
3790
  "description": "Component config object.",
3791
+ "enum": [
3792
+ "TSTypeQuery"
3793
+ ],
3755
3794
  "value": {
3756
3795
  "kind": "expression",
3757
- "type": "object"
3758
- },
3759
- "default": "{}"
3796
+ "type": "Partial"
3797
+ }
3760
3798
  },
3761
3799
  {
3762
3800
  "name": "dataTest",
3801
+ "required": false,
3763
3802
  "description": "Data-test attribute for automated testing.",
3764
3803
  "value": {
3765
3804
  "kind": "expression",
@@ -3861,24 +3900,28 @@
3861
3900
  "attributes": [
3862
3901
  {
3863
3902
  "name": "label",
3903
+ "required": false,
3864
3904
  "description": "Badge label.",
3865
3905
  "value": {
3866
3906
  "kind": "expression",
3867
3907
  "type": "string"
3868
- },
3869
- "default": "\"\""
3908
+ }
3870
3909
  },
3871
3910
  {
3872
3911
  "name": "options",
3912
+ "required": false,
3873
3913
  "description": "Options list.",
3914
+ "enum": [
3915
+ "UnknownObject"
3916
+ ],
3874
3917
  "value": {
3875
3918
  "kind": "expression",
3876
- "type": "array"
3877
- },
3878
- "default": "[]"
3919
+ "type": "Array"
3920
+ }
3879
3921
  },
3880
3922
  {
3881
3923
  "name": "labelKey",
3924
+ "required": false,
3882
3925
  "description": "Label key in the item object of options.",
3883
3926
  "value": {
3884
3927
  "kind": "expression",
@@ -3888,6 +3931,7 @@
3888
3931
  },
3889
3932
  {
3890
3933
  "name": "variant",
3934
+ "required": false,
3891
3935
  "description": "Badge variant.",
3892
3936
  "enum": [
3893
3937
  "primary",
@@ -3896,12 +3940,13 @@
3896
3940
  ],
3897
3941
  "value": {
3898
3942
  "kind": "expression",
3899
- "type": "string"
3943
+ "type": "union"
3900
3944
  },
3901
3945
  "default": "primary"
3902
3946
  },
3903
3947
  {
3904
3948
  "name": "color",
3949
+ "required": false,
3905
3950
  "description": "Badge color.",
3906
3951
  "enum": [
3907
3952
  "brand",
@@ -3928,12 +3973,13 @@
3928
3973
  ],
3929
3974
  "value": {
3930
3975
  "kind": "expression",
3931
- "type": "string"
3976
+ "type": "union"
3932
3977
  },
3933
3978
  "default": "brand"
3934
3979
  },
3935
3980
  {
3936
3981
  "name": "size",
3982
+ "required": false,
3937
3983
  "description": "Badge size.",
3938
3984
  "enum": [
3939
3985
  "sm",
@@ -3942,12 +3988,13 @@
3942
3988
  ],
3943
3989
  "value": {
3944
3990
  "kind": "expression",
3945
- "type": "string"
3991
+ "type": "union"
3946
3992
  },
3947
3993
  "default": "md"
3948
3994
  },
3949
3995
  {
3950
3996
  "name": "round",
3997
+ "required": false,
3951
3998
  "description": "Set badge corners rounded.",
3952
3999
  "value": {
3953
4000
  "kind": "expression",
@@ -3957,6 +4004,7 @@
3957
4004
  },
3958
4005
  {
3959
4006
  "name": "noIcon",
4007
+ "required": false,
3960
4008
  "description": "Hide dropdown icon.",
3961
4009
  "value": {
3962
4010
  "kind": "expression",
@@ -3966,6 +4014,7 @@
3966
4014
  },
3967
4015
  {
3968
4016
  "name": "yPosition",
4017
+ "required": false,
3969
4018
  "description": "The position of dropdown list on the y-axis.",
3970
4019
  "enum": [
3971
4020
  "top",
@@ -3973,12 +4022,13 @@
3973
4022
  ],
3974
4023
  "value": {
3975
4024
  "kind": "expression",
3976
- "type": "string"
4025
+ "type": "union"
3977
4026
  },
3978
4027
  "default": "bottom"
3979
4028
  },
3980
4029
  {
3981
4030
  "name": "xPosition",
4031
+ "required": false,
3982
4032
  "description": "The position of dropdown list on the x-axis.",
3983
4033
  "enum": [
3984
4034
  "left",
@@ -3986,30 +4036,34 @@
3986
4036
  ],
3987
4037
  "value": {
3988
4038
  "kind": "expression",
3989
- "type": "string"
4039
+ "type": "union"
3990
4040
  },
3991
4041
  "default": "left"
3992
4042
  },
3993
4043
  {
3994
4044
  "name": "id",
4045
+ "required": false,
3995
4046
  "description": "Unique element id.",
3996
4047
  "value": {
3997
4048
  "kind": "expression",
3998
4049
  "type": "string"
3999
- },
4000
- "default": "\"\""
4050
+ }
4001
4051
  },
4002
4052
  {
4003
4053
  "name": "config",
4054
+ "required": false,
4004
4055
  "description": "Component config object.",
4056
+ "enum": [
4057
+ "TSTypeQuery"
4058
+ ],
4005
4059
  "value": {
4006
4060
  "kind": "expression",
4007
- "type": "object"
4008
- },
4009
- "default": "{}"
4061
+ "type": "Partial"
4062
+ }
4010
4063
  },
4011
4064
  {
4012
4065
  "name": "dataTest",
4066
+ "required": false,
4013
4067
  "description": "Data-test attribute for automated testing.",
4014
4068
  "value": {
4015
4069
  "kind": "expression",
@@ -4081,24 +4135,28 @@
4081
4135
  "attributes": [
4082
4136
  {
4083
4137
  "name": "label",
4138
+ "required": false,
4084
4139
  "description": "Button label.",
4085
4140
  "value": {
4086
4141
  "kind": "expression",
4087
4142
  "type": "string"
4088
- },
4089
- "default": "\"\""
4143
+ }
4090
4144
  },
4091
4145
  {
4092
4146
  "name": "options",
4147
+ "required": false,
4093
4148
  "description": "Options list.",
4149
+ "enum": [
4150
+ "UnknownObject"
4151
+ ],
4094
4152
  "value": {
4095
4153
  "kind": "expression",
4096
- "type": "array"
4097
- },
4098
- "default": "[]"
4154
+ "type": "Array"
4155
+ }
4099
4156
  },
4100
4157
  {
4101
4158
  "name": "labelKey",
4159
+ "required": false,
4102
4160
  "description": "Label key in the item object of options.",
4103
4161
  "value": {
4104
4162
  "kind": "expression",
@@ -4108,6 +4166,7 @@
4108
4166
  },
4109
4167
  {
4110
4168
  "name": "variant",
4169
+ "required": false,
4111
4170
  "description": "Button variant.",
4112
4171
  "enum": [
4113
4172
  "primary",
@@ -4116,12 +4175,13 @@
4116
4175
  ],
4117
4176
  "value": {
4118
4177
  "kind": "expression",
4119
- "type": "string"
4178
+ "type": "union"
4120
4179
  },
4121
4180
  "default": "primary"
4122
4181
  },
4123
4182
  {
4124
4183
  "name": "filled",
4184
+ "required": false,
4125
4185
  "description": "Fill the background for thirdary variant.",
4126
4186
  "value": {
4127
4187
  "kind": "expression",
@@ -4131,6 +4191,7 @@
4131
4191
  },
4132
4192
  {
4133
4193
  "name": "color",
4194
+ "required": false,
4134
4195
  "description": "Button color.",
4135
4196
  "enum": [
4136
4197
  "brand",
@@ -4157,12 +4218,13 @@
4157
4218
  ],
4158
4219
  "value": {
4159
4220
  "kind": "expression",
4160
- "type": "string"
4221
+ "type": "union"
4161
4222
  },
4162
4223
  "default": "brand"
4163
4224
  },
4164
4225
  {
4165
4226
  "name": "size",
4227
+ "required": false,
4166
4228
  "description": "Button size.",
4167
4229
  "enum": [
4168
4230
  "2xs",
@@ -4174,12 +4236,13 @@
4174
4236
  ],
4175
4237
  "value": {
4176
4238
  "kind": "expression",
4177
- "type": "string"
4239
+ "type": "union"
4178
4240
  },
4179
4241
  "default": "md"
4180
4242
  },
4181
4243
  {
4182
4244
  "name": "round",
4245
+ "required": false,
4183
4246
  "description": "Set button corners rounded.",
4184
4247
  "value": {
4185
4248
  "kind": "expression",
@@ -4189,6 +4252,7 @@
4189
4252
  },
4190
4253
  {
4191
4254
  "name": "square",
4255
+ "required": false,
4192
4256
  "description": "Set the same paddings for the button.",
4193
4257
  "value": {
4194
4258
  "kind": "expression",
@@ -4198,6 +4262,7 @@
4198
4262
  },
4199
4263
  {
4200
4264
  "name": "disabled",
4265
+ "required": false,
4201
4266
  "description": "Disable the link.",
4202
4267
  "value": {
4203
4268
  "kind": "expression",
@@ -4207,6 +4272,7 @@
4207
4272
  },
4208
4273
  {
4209
4274
  "name": "noIcon",
4275
+ "required": false,
4210
4276
  "description": "Hide dropdown icon.",
4211
4277
  "value": {
4212
4278
  "kind": "expression",
@@ -4216,6 +4282,7 @@
4216
4282
  },
4217
4283
  {
4218
4284
  "name": "yPosition",
4285
+ "required": false,
4219
4286
  "description": "The position of dropdown list on the y-axis.",
4220
4287
  "enum": [
4221
4288
  "top",
@@ -4223,12 +4290,13 @@
4223
4290
  ],
4224
4291
  "value": {
4225
4292
  "kind": "expression",
4226
- "type": "string"
4293
+ "type": "union"
4227
4294
  },
4228
4295
  "default": "bottom"
4229
4296
  },
4230
4297
  {
4231
4298
  "name": "xPosition",
4299
+ "required": false,
4232
4300
  "description": "The position of dropdown list on the x-axis.",
4233
4301
  "enum": [
4234
4302
  "left",
@@ -4236,30 +4304,34 @@
4236
4304
  ],
4237
4305
  "value": {
4238
4306
  "kind": "expression",
4239
- "type": "string"
4307
+ "type": "union"
4240
4308
  },
4241
4309
  "default": "left"
4242
4310
  },
4243
4311
  {
4244
4312
  "name": "id",
4313
+ "required": false,
4245
4314
  "description": "Unique element id.",
4246
4315
  "value": {
4247
4316
  "kind": "expression",
4248
4317
  "type": "string"
4249
- },
4250
- "default": "\"\""
4318
+ }
4251
4319
  },
4252
4320
  {
4253
4321
  "name": "config",
4322
+ "required": false,
4254
4323
  "description": "Component config object.",
4324
+ "enum": [
4325
+ "TSTypeQuery"
4326
+ ],
4255
4327
  "value": {
4256
4328
  "kind": "expression",
4257
- "type": "object"
4258
- },
4259
- "default": "{}"
4329
+ "type": "Partial"
4330
+ }
4260
4331
  },
4261
4332
  {
4262
4333
  "name": "dataTest",
4334
+ "required": false,
4263
4335
  "description": "Data-test attribute for automated testing.",
4264
4336
  "value": {
4265
4337
  "kind": "expression",
@@ -4332,24 +4404,28 @@
4332
4404
  "attributes": [
4333
4405
  {
4334
4406
  "name": "label",
4407
+ "required": false,
4335
4408
  "description": "Link label.",
4336
4409
  "value": {
4337
4410
  "kind": "expression",
4338
4411
  "type": "string"
4339
- },
4340
- "default": "\"\""
4412
+ }
4341
4413
  },
4342
4414
  {
4343
4415
  "name": "options",
4416
+ "required": false,
4344
4417
  "description": "Options list.",
4418
+ "enum": [
4419
+ "UnknownObject"
4420
+ ],
4345
4421
  "value": {
4346
4422
  "kind": "expression",
4347
- "type": "array"
4348
- },
4349
- "default": "[]"
4423
+ "type": "Array"
4424
+ }
4350
4425
  },
4351
4426
  {
4352
4427
  "name": "labelKey",
4428
+ "required": false,
4353
4429
  "description": "Label key in the item object of options.",
4354
4430
  "value": {
4355
4431
  "kind": "expression",
@@ -4359,6 +4435,7 @@
4359
4435
  },
4360
4436
  {
4361
4437
  "name": "color",
4438
+ "required": false,
4362
4439
  "description": "Link color.",
4363
4440
  "enum": [
4364
4441
  "brand",
@@ -4385,12 +4462,13 @@
4385
4462
  ],
4386
4463
  "value": {
4387
4464
  "kind": "expression",
4388
- "type": "string"
4465
+ "type": "union"
4389
4466
  },
4390
4467
  "default": "brand"
4391
4468
  },
4392
4469
  {
4393
4470
  "name": "size",
4471
+ "required": false,
4394
4472
  "description": "Link size.",
4395
4473
  "enum": [
4396
4474
  "sm",
@@ -4399,12 +4477,13 @@
4399
4477
  ],
4400
4478
  "value": {
4401
4479
  "kind": "expression",
4402
- "type": "string"
4480
+ "type": "union"
4403
4481
  },
4404
4482
  "default": "md"
4405
4483
  },
4406
4484
  {
4407
4485
  "name": "underlined",
4486
+ "required": false,
4408
4487
  "description": "Add underline.",
4409
4488
  "value": {
4410
4489
  "kind": "expression",
@@ -4413,6 +4492,7 @@
4413
4492
  },
4414
4493
  {
4415
4494
  "name": "dashed",
4495
+ "required": false,
4416
4496
  "description": "Set dashed underline style.",
4417
4497
  "value": {
4418
4498
  "kind": "expression",
@@ -4422,6 +4502,7 @@
4422
4502
  },
4423
4503
  {
4424
4504
  "name": "disabled",
4505
+ "required": false,
4425
4506
  "description": "Disable the link.",
4426
4507
  "value": {
4427
4508
  "kind": "expression",
@@ -4431,6 +4512,7 @@
4431
4512
  },
4432
4513
  {
4433
4514
  "name": "noRing",
4515
+ "required": false,
4434
4516
  "description": "Hide focus ring.",
4435
4517
  "value": {
4436
4518
  "kind": "expression",
@@ -4440,6 +4522,7 @@
4440
4522
  },
4441
4523
  {
4442
4524
  "name": "noIcon",
4525
+ "required": false,
4443
4526
  "description": "Hide dropdown icon.",
4444
4527
  "value": {
4445
4528
  "kind": "expression",
@@ -4449,6 +4532,7 @@
4449
4532
  },
4450
4533
  {
4451
4534
  "name": "yPosition",
4535
+ "required": false,
4452
4536
  "description": "The position of dropdown list on the y-axis.",
4453
4537
  "enum": [
4454
4538
  "top",
@@ -4456,12 +4540,13 @@
4456
4540
  ],
4457
4541
  "value": {
4458
4542
  "kind": "expression",
4459
- "type": "string"
4543
+ "type": "union"
4460
4544
  },
4461
4545
  "default": "bottom"
4462
4546
  },
4463
4547
  {
4464
4548
  "name": "xPosition",
4549
+ "required": false,
4465
4550
  "description": "The position of dropdown list on the x-axis.",
4466
4551
  "enum": [
4467
4552
  "left",
@@ -4469,30 +4554,34 @@
4469
4554
  ],
4470
4555
  "value": {
4471
4556
  "kind": "expression",
4472
- "type": "string"
4557
+ "type": "union"
4473
4558
  },
4474
4559
  "default": "left"
4475
4560
  },
4476
4561
  {
4477
4562
  "name": "id",
4563
+ "required": false,
4478
4564
  "description": "Unique element id.",
4479
4565
  "value": {
4480
4566
  "kind": "expression",
4481
4567
  "type": "string"
4482
- },
4483
- "default": "\"\""
4568
+ }
4484
4569
  },
4485
4570
  {
4486
4571
  "name": "config",
4572
+ "required": false,
4487
4573
  "description": "Component config object.",
4574
+ "enum": [
4575
+ "TSTypeQuery"
4576
+ ],
4488
4577
  "value": {
4489
4578
  "kind": "expression",
4490
- "type": "object"
4491
- },
4492
- "default": "{}"
4579
+ "type": "Partial"
4580
+ }
4493
4581
  },
4494
4582
  {
4495
4583
  "name": "dataTest",
4584
+ "required": false,
4496
4585
  "description": "Data-test attribute for automated testing.",
4497
4586
  "value": {
4498
4587
  "kind": "expression",
@@ -4565,15 +4654,19 @@
4565
4654
  "attributes": [
4566
4655
  {
4567
4656
  "name": "options",
4568
- "description": "List options.",
4657
+ "required": false,
4658
+ "description": "List of options.",
4659
+ "enum": [
4660
+ "UnknownObject"
4661
+ ],
4569
4662
  "value": {
4570
4663
  "kind": "expression",
4571
- "type": "array"
4572
- },
4573
- "default": "[]"
4664
+ "type": "Array"
4665
+ }
4574
4666
  },
4575
4667
  {
4576
4668
  "name": "labelKey",
4669
+ "required": false,
4577
4670
  "description": "Label key in the item object of options.",
4578
4671
  "value": {
4579
4672
  "kind": "expression",
@@ -4583,6 +4676,7 @@
4583
4676
  },
4584
4677
  {
4585
4678
  "name": "valueKey",
4679
+ "required": false,
4586
4680
  "description": "Value key in the item object of options.",
4587
4681
  "value": {
4588
4682
  "kind": "expression",
@@ -4592,6 +4686,7 @@
4592
4686
  },
4593
4687
  {
4594
4688
  "name": "addOption",
4689
+ "required": false,
4595
4690
  "description": "Show add option button.",
4596
4691
  "value": {
4597
4692
  "kind": "expression",
@@ -4601,6 +4696,7 @@
4601
4696
  },
4602
4697
  {
4603
4698
  "name": "disabled",
4699
+ "required": false,
4604
4700
  "description": "Disable the list.",
4605
4701
  "value": {
4606
4702
  "kind": "expression",
@@ -4610,6 +4706,7 @@
4610
4706
  },
4611
4707
  {
4612
4708
  "name": "size",
4709
+ "required": false,
4613
4710
  "description": "List size.",
4614
4711
  "enum": [
4615
4712
  "sm",
@@ -4618,12 +4715,13 @@
4618
4715
  ],
4619
4716
  "value": {
4620
4717
  "kind": "expression",
4621
- "type": "string"
4718
+ "type": "union"
4622
4719
  },
4623
4720
  "default": "md"
4624
4721
  },
4625
4722
  {
4626
4723
  "name": "visibleOptions",
4724
+ "required": false,
4627
4725
  "description": "Number of options to show without a scroll.",
4628
4726
  "value": {
4629
4727
  "kind": "expression",
@@ -4632,21 +4730,24 @@
4632
4730
  },
4633
4731
  {
4634
4732
  "name": "id",
4733
+ "required": false,
4635
4734
  "description": "Unique element id.",
4636
4735
  "value": {
4637
4736
  "kind": "expression",
4638
4737
  "type": "string"
4639
- },
4640
- "default": "\"\""
4738
+ }
4641
4739
  },
4642
4740
  {
4643
4741
  "name": "config",
4742
+ "required": false,
4644
4743
  "description": "Component config object.",
4744
+ "enum": [
4745
+ "TSTypeQuery"
4746
+ ],
4645
4747
  "value": {
4646
4748
  "kind": "expression",
4647
- "type": "object"
4648
- },
4649
- "default": "{}"
4749
+ "type": "Partial"
4750
+ }
4650
4751
  }
4651
4752
  ],
4652
4753
  "events": [
@@ -5150,15 +5251,16 @@
5150
5251
  "attributes": [
5151
5252
  {
5152
5253
  "name": "title",
5254
+ "required": false,
5153
5255
  "description": "Group title.",
5154
5256
  "value": {
5155
5257
  "kind": "expression",
5156
5258
  "type": "string"
5157
- },
5158
- "default": "\"\""
5259
+ }
5159
5260
  },
5160
5261
  {
5161
5262
  "name": "gap",
5263
+ "required": false,
5162
5264
  "description": "The distance between nested elements.",
5163
5265
  "enum": [
5164
5266
  "none",
@@ -5170,12 +5272,13 @@
5170
5272
  ],
5171
5273
  "value": {
5172
5274
  "kind": "expression",
5173
- "type": "string"
5275
+ "type": "union"
5174
5276
  },
5175
5277
  "default": "md"
5176
5278
  },
5177
5279
  {
5178
5280
  "name": "upperlined",
5281
+ "required": false,
5179
5282
  "description": "Show line above the header.",
5180
5283
  "value": {
5181
5284
  "kind": "expression",
@@ -5185,6 +5288,7 @@
5185
5288
  },
5186
5289
  {
5187
5290
  "name": "underlined",
5291
+ "required": false,
5188
5292
  "description": "Show line under the header.",
5189
5293
  "value": {
5190
5294
  "kind": "expression",
@@ -5194,15 +5298,19 @@
5194
5298
  },
5195
5299
  {
5196
5300
  "name": "config",
5301
+ "required": false,
5197
5302
  "description": "Component config object.",
5303
+ "enum": [
5304
+ "TSTypeQuery"
5305
+ ],
5198
5306
  "value": {
5199
5307
  "kind": "expression",
5200
- "type": "object"
5201
- },
5202
- "default": "{}"
5308
+ "type": "Partial"
5309
+ }
5203
5310
  },
5204
5311
  {
5205
5312
  "name": "dataTest",
5313
+ "required": false,
5206
5314
  "description": "Data-test attribute for automated testing.",
5207
5315
  "value": {
5208
5316
  "kind": "expression",
@@ -7049,7 +7157,7 @@
7049
7157
  "description": "Vue-router route object.",
7050
7158
  "value": {
7051
7159
  "kind": "expression",
7052
- "type": "object"
7160
+ "type": "RouteLocationRaw"
7053
7161
  }
7054
7162
  },
7055
7163
  {
@@ -7514,33 +7622,34 @@
7514
7622
  "attributes": [
7515
7623
  {
7516
7624
  "name": "modelValue",
7517
- "description": "Set modal state (hidden / shown).",
7625
+ "required": false,
7626
+ "description": "Modal state (shown / hidden).",
7518
7627
  "value": {
7519
7628
  "kind": "expression",
7520
7629
  "type": "boolean"
7521
- },
7522
- "default": "false"
7630
+ }
7523
7631
  },
7524
7632
  {
7525
7633
  "name": "title",
7634
+ "required": false,
7526
7635
  "description": "Modal title.",
7527
7636
  "value": {
7528
7637
  "kind": "expression",
7529
7638
  "type": "string"
7530
- },
7531
- "default": "\"\""
7639
+ }
7532
7640
  },
7533
7641
  {
7534
7642
  "name": "description",
7643
+ "required": false,
7535
7644
  "description": "Modal description.",
7536
7645
  "value": {
7537
7646
  "kind": "expression",
7538
7647
  "type": "string"
7539
- },
7540
- "default": "\"\""
7648
+ }
7541
7649
  },
7542
7650
  {
7543
7651
  "name": "size",
7652
+ "required": false,
7544
7653
  "description": "Modal size (width).",
7545
7654
  "enum": [
7546
7655
  "xs",
@@ -7555,30 +7664,31 @@
7555
7664
  ],
7556
7665
  "value": {
7557
7666
  "kind": "expression",
7558
- "type": "string"
7667
+ "type": "union"
7559
7668
  },
7560
7669
  "default": "sm"
7561
7670
  },
7562
7671
  {
7563
7672
  "name": "backTo",
7673
+ "required": false,
7564
7674
  "description": "Back link vue-router route object.",
7565
7675
  "value": {
7566
7676
  "kind": "expression",
7567
- "type": "object"
7568
- },
7569
- "default": "{}"
7677
+ "type": "RouteLocationRaw"
7678
+ }
7570
7679
  },
7571
7680
  {
7572
7681
  "name": "backLabel",
7682
+ "required": false,
7573
7683
  "description": "Back link label.",
7574
7684
  "value": {
7575
7685
  "kind": "expression",
7576
7686
  "type": "string"
7577
- },
7578
- "default": "\"\""
7687
+ }
7579
7688
  },
7580
7689
  {
7581
7690
  "name": "closeOnCross",
7691
+ "required": false,
7582
7692
  "description": "Allow closing modal by clicking on close cross.",
7583
7693
  "value": {
7584
7694
  "kind": "expression",
@@ -7588,6 +7698,7 @@
7588
7698
  },
7589
7699
  {
7590
7700
  "name": "closeOnOverlay",
7701
+ "required": false,
7591
7702
  "description": "Allow closing modal by clicking on overlay.",
7592
7703
  "value": {
7593
7704
  "kind": "expression",
@@ -7597,6 +7708,7 @@
7597
7708
  },
7598
7709
  {
7599
7710
  "name": "closeOnEsc",
7711
+ "required": false,
7600
7712
  "description": "Allow closing modal by pressing escape (esc) on the keyboard.",
7601
7713
  "value": {
7602
7714
  "kind": "expression",
@@ -7606,6 +7718,7 @@
7606
7718
  },
7607
7719
  {
7608
7720
  "name": "inner",
7721
+ "required": false,
7609
7722
  "description": "Add extra top margin for modal inside another modal.",
7610
7723
  "value": {
7611
7724
  "kind": "expression",
@@ -7615,6 +7728,7 @@
7615
7728
  },
7616
7729
  {
7617
7730
  "name": "noDivider",
7731
+ "required": false,
7618
7732
  "description": "Hide divider between content end footer.",
7619
7733
  "value": {
7620
7734
  "kind": "expression",
@@ -7624,6 +7738,7 @@
7624
7738
  },
7625
7739
  {
7626
7740
  "name": "mobileStickBottom",
7741
+ "required": false,
7627
7742
  "description": "Attach small modal to the bottom of the screen (mobile version only).",
7628
7743
  "value": {
7629
7744
  "kind": "expression",
@@ -7633,25 +7748,29 @@
7633
7748
  },
7634
7749
  {
7635
7750
  "name": "id",
7751
+ "required": false,
7636
7752
  "description": "Unique element id.",
7637
7753
  "value": {
7638
7754
  "kind": "expression",
7639
7755
  "type": "string"
7640
- },
7641
- "default": "\"\""
7756
+ }
7642
7757
  },
7643
7758
  {
7644
7759
  "name": "config",
7760
+ "required": false,
7645
7761
  "description": "Component config object.",
7762
+ "enum": [
7763
+ "TSTypeQuery"
7764
+ ],
7646
7765
  "value": {
7647
7766
  "kind": "expression",
7648
- "type": "object"
7649
- },
7650
- "default": "{}"
7767
+ "type": "Partial"
7768
+ }
7651
7769
  },
7652
7770
  {
7653
7771
  "name": "dataTest",
7654
- "description": "Set data-test attribute for automated testing.",
7772
+ "required": false,
7773
+ "description": "Data-test attribute for automated testing.",
7655
7774
  "value": {
7656
7775
  "kind": "expression",
7657
7776
  "type": "string"
@@ -7729,42 +7848,43 @@
7729
7848
  "attributes": [
7730
7849
  {
7731
7850
  "name": "modelValue",
7732
- "description": "Set modal state (hidden / shown).",
7851
+ "required": false,
7852
+ "description": "Modal state (shown / hidden).",
7733
7853
  "value": {
7734
7854
  "kind": "expression",
7735
7855
  "type": "boolean"
7736
- },
7737
- "default": "false"
7856
+ }
7738
7857
  },
7739
7858
  {
7740
7859
  "name": "title",
7860
+ "required": false,
7741
7861
  "description": "Modal title.",
7742
7862
  "value": {
7743
7863
  "kind": "expression",
7744
7864
  "type": "string"
7745
- },
7746
- "default": "\"\""
7865
+ }
7747
7866
  },
7748
7867
  {
7749
7868
  "name": "description",
7869
+ "required": false,
7750
7870
  "description": "Modal description.",
7751
7871
  "value": {
7752
7872
  "kind": "expression",
7753
7873
  "type": "string"
7754
- },
7755
- "default": "\"\""
7874
+ }
7756
7875
  },
7757
7876
  {
7758
7877
  "name": "confirmLabel",
7878
+ "required": false,
7759
7879
  "description": "Confirm button label.",
7760
7880
  "value": {
7761
7881
  "kind": "expression",
7762
7882
  "type": "string"
7763
- },
7764
- "default": "\"\""
7883
+ }
7765
7884
  },
7766
7885
  {
7767
7886
  "name": "confirmColor",
7887
+ "required": false,
7768
7888
  "description": "Confirm button color.",
7769
7889
  "enum": [
7770
7890
  "brand",
@@ -7786,16 +7906,18 @@
7786
7906
  "purple",
7787
7907
  "fuchsia",
7788
7908
  "pink",
7789
- "rose"
7909
+ "rose",
7910
+ "white"
7790
7911
  ],
7791
7912
  "value": {
7792
7913
  "kind": "expression",
7793
- "type": "string"
7914
+ "type": "union"
7794
7915
  },
7795
7916
  "default": "brand"
7796
7917
  },
7797
7918
  {
7798
7919
  "name": "confirmDisabled",
7920
+ "required": false,
7799
7921
  "description": "Set the disabled accept-button.",
7800
7922
  "value": {
7801
7923
  "kind": "expression",
@@ -7805,6 +7927,7 @@
7805
7927
  },
7806
7928
  {
7807
7929
  "name": "cancelHidden",
7930
+ "required": false,
7808
7931
  "description": "Hide cancel button.",
7809
7932
  "value": {
7810
7933
  "kind": "expression",
@@ -7814,6 +7937,7 @@
7814
7937
  },
7815
7938
  {
7816
7939
  "name": "size",
7940
+ "required": false,
7817
7941
  "description": "Modal size (width).",
7818
7942
  "enum": [
7819
7943
  "xs",
@@ -7828,12 +7952,13 @@
7828
7952
  ],
7829
7953
  "value": {
7830
7954
  "kind": "expression",
7831
- "type": "string"
7955
+ "type": "union"
7832
7956
  },
7833
7957
  "default": "sm"
7834
7958
  },
7835
7959
  {
7836
7960
  "name": "closeOnCross",
7961
+ "required": false,
7837
7962
  "description": "Allow closing modal by clicking on close cross.",
7838
7963
  "value": {
7839
7964
  "kind": "expression",
@@ -7843,6 +7968,7 @@
7843
7968
  },
7844
7969
  {
7845
7970
  "name": "closeOnOverlay",
7971
+ "required": false,
7846
7972
  "description": "Allow closing modal by clicking on overlay.",
7847
7973
  "value": {
7848
7974
  "kind": "expression",
@@ -7852,6 +7978,7 @@
7852
7978
  },
7853
7979
  {
7854
7980
  "name": "closeOnEsc",
7981
+ "required": false,
7855
7982
  "description": "Allow closing modal by pressing escape (esc) on the keyboard.",
7856
7983
  "value": {
7857
7984
  "kind": "expression",
@@ -7861,6 +7988,7 @@
7861
7988
  },
7862
7989
  {
7863
7990
  "name": "inner",
7991
+ "required": false,
7864
7992
  "description": "Add extra top margin for modal inside another modal.",
7865
7993
  "value": {
7866
7994
  "kind": "expression",
@@ -7870,6 +7998,7 @@
7870
7998
  },
7871
7999
  {
7872
8000
  "name": "mobileStickBottom",
8001
+ "required": false,
7873
8002
  "description": "Attach small modal to the bottom of the screen (mobile version only).",
7874
8003
  "value": {
7875
8004
  "kind": "expression",
@@ -7879,24 +8008,28 @@
7879
8008
  },
7880
8009
  {
7881
8010
  "name": "id",
8011
+ "required": false,
7882
8012
  "description": "Unique element id.",
7883
8013
  "value": {
7884
8014
  "kind": "expression",
7885
8015
  "type": "string"
7886
- },
7887
- "default": "\"\""
8016
+ }
7888
8017
  },
7889
8018
  {
7890
8019
  "name": "config",
8020
+ "required": false,
7891
8021
  "description": "Component config object.",
8022
+ "enum": [
8023
+ "TSTypeQuery"
8024
+ ],
7892
8025
  "value": {
7893
8026
  "kind": "expression",
7894
- "type": "object"
7895
- },
7896
- "default": "{}"
8027
+ "type": "Partial"
8028
+ }
7897
8029
  },
7898
8030
  {
7899
8031
  "name": "dataTest",
8032
+ "required": false,
7900
8033
  "description": "Data-test attribute for automated testing.",
7901
8034
  "value": {
7902
8035
  "kind": "expression",
@@ -8264,6 +8397,7 @@
8264
8397
  "attributes": [
8265
8398
  {
8266
8399
  "name": "size",
8400
+ "required": false,
8267
8401
  "description": "Page size (width).",
8268
8402
  "enum": [
8269
8403
  "xs",
@@ -8279,21 +8413,22 @@
8279
8413
  ],
8280
8414
  "value": {
8281
8415
  "kind": "expression",
8282
- "type": "string"
8416
+ "type": "union"
8283
8417
  },
8284
8418
  "default": "wide"
8285
8419
  },
8286
8420
  {
8287
8421
  "name": "title",
8422
+ "required": false,
8288
8423
  "description": "Page title.",
8289
8424
  "value": {
8290
8425
  "kind": "expression",
8291
8426
  "type": "string"
8292
- },
8293
- "default": "\"\""
8427
+ }
8294
8428
  },
8295
8429
  {
8296
8430
  "name": "titleSize",
8431
+ "required": false,
8297
8432
  "description": "Page title size.",
8298
8433
  "enum": [
8299
8434
  "xs",
@@ -8305,39 +8440,40 @@
8305
8440
  ],
8306
8441
  "value": {
8307
8442
  "kind": "expression",
8308
- "type": "string"
8443
+ "type": "union"
8309
8444
  },
8310
8445
  "default": "md"
8311
8446
  },
8312
8447
  {
8313
8448
  "name": "description",
8449
+ "required": false,
8314
8450
  "description": "Set page description.",
8315
8451
  "value": {
8316
8452
  "kind": "expression",
8317
8453
  "type": "string"
8318
- },
8319
- "default": "\"\""
8454
+ }
8320
8455
  },
8321
8456
  {
8322
8457
  "name": "backTo",
8458
+ "required": false,
8323
8459
  "description": "Back link vue-router route object.",
8324
8460
  "value": {
8325
8461
  "kind": "expression",
8326
- "type": "object"
8327
- },
8328
- "default": "{}"
8462
+ "type": "RouteLocationRaw"
8463
+ }
8329
8464
  },
8330
8465
  {
8331
8466
  "name": "backLabel",
8467
+ "required": false,
8332
8468
  "description": "Back link label.",
8333
8469
  "value": {
8334
8470
  "kind": "expression",
8335
8471
  "type": "string"
8336
- },
8337
- "default": "\"\""
8472
+ }
8338
8473
  },
8339
8474
  {
8340
8475
  "name": "gray",
8476
+ "required": false,
8341
8477
  "description": "Sets background light gray (useful if the page contains nested cards).",
8342
8478
  "value": {
8343
8479
  "kind": "expression",
@@ -8347,6 +8483,7 @@
8347
8483
  },
8348
8484
  {
8349
8485
  "name": "fixedRounding",
8486
+ "required": false,
8350
8487
  "description": "Stick right page rounding.",
8351
8488
  "value": {
8352
8489
  "kind": "expression",
@@ -8356,15 +8493,19 @@
8356
8493
  },
8357
8494
  {
8358
8495
  "name": "config",
8496
+ "required": false,
8359
8497
  "description": "Component config object.",
8498
+ "enum": [
8499
+ "TSTypeQuery"
8500
+ ],
8360
8501
  "value": {
8361
8502
  "kind": "expression",
8362
- "type": "object"
8363
- },
8364
- "default": "{}"
8503
+ "type": "Partial"
8504
+ }
8365
8505
  },
8366
8506
  {
8367
8507
  "name": "dataTest",
8508
+ "required": false,
8368
8509
  "description": "Data-test attribute for automated testing.",
8369
8510
  "value": {
8370
8511
  "kind": "expression",
@@ -9148,6 +9289,7 @@
9148
9289
  "attributes": [
9149
9290
  {
9150
9291
  "name": "gap",
9292
+ "required": false,
9151
9293
  "description": "The distance between nested elements.",
9152
9294
  "enum": [
9153
9295
  "none",
@@ -9161,12 +9303,13 @@
9161
9303
  ],
9162
9304
  "value": {
9163
9305
  "kind": "expression",
9164
- "type": "string"
9306
+ "type": "union"
9165
9307
  },
9166
9308
  "default": "md"
9167
9309
  },
9168
9310
  {
9169
9311
  "name": "align",
9312
+ "required": false,
9170
9313
  "description": "Items vertical align (align-items).",
9171
9314
  "enum": [
9172
9315
  "start",
@@ -9177,12 +9320,13 @@
9177
9320
  ],
9178
9321
  "value": {
9179
9322
  "kind": "expression",
9180
- "type": "string"
9323
+ "type": "union"
9181
9324
  },
9182
9325
  "default": "start"
9183
9326
  },
9184
9327
  {
9185
9328
  "name": "content",
9329
+ "required": false,
9186
9330
  "description": "Items vertical align for multi-row flex containers (align-content).",
9187
9331
  "enum": [
9188
9332
  "start",
@@ -9197,12 +9341,13 @@
9197
9341
  ],
9198
9342
  "value": {
9199
9343
  "kind": "expression",
9200
- "type": "string"
9344
+ "type": "union"
9201
9345
  },
9202
9346
  "default": "start"
9203
9347
  },
9204
9348
  {
9205
9349
  "name": "justify",
9350
+ "required": false,
9206
9351
  "description": "Items horizontally align (justify-content).",
9207
9352
  "enum": [
9208
9353
  "start",
@@ -9214,12 +9359,13 @@
9214
9359
  ],
9215
9360
  "value": {
9216
9361
  "kind": "expression",
9217
- "type": "string"
9362
+ "type": "union"
9218
9363
  },
9219
9364
  "default": "start"
9220
9365
  },
9221
9366
  {
9222
9367
  "name": "reverse",
9368
+ "required": false,
9223
9369
  "description": "Reverse nested items order.",
9224
9370
  "value": {
9225
9371
  "kind": "expression",
@@ -9229,6 +9375,7 @@
9229
9375
  },
9230
9376
  {
9231
9377
  "name": "wrap",
9378
+ "required": false,
9232
9379
  "description": "Allow items to wrap (flex flex-wrap).",
9233
9380
  "value": {
9234
9381
  "kind": "expression",
@@ -9238,6 +9385,7 @@
9238
9385
  },
9239
9386
  {
9240
9387
  "name": "noMobile",
9388
+ "required": false,
9241
9389
  "description": "Disables mobile adaptivity.",
9242
9390
  "value": {
9243
9391
  "kind": "expression",
@@ -9247,15 +9395,19 @@
9247
9395
  },
9248
9396
  {
9249
9397
  "name": "config",
9398
+ "required": false,
9250
9399
  "description": "Component config object.",
9400
+ "enum": [
9401
+ "TSTypeQuery"
9402
+ ],
9251
9403
  "value": {
9252
9404
  "kind": "expression",
9253
- "type": "object"
9254
- },
9255
- "default": "{}"
9405
+ "type": "Partial"
9406
+ }
9256
9407
  },
9257
9408
  {
9258
9409
  "name": "dataTest",
9410
+ "required": false,
9259
9411
  "description": "Data-test attribute for automated testing.",
9260
9412
  "value": {
9261
9413
  "kind": "expression",