vueless 0.0.200 → 0.0.202

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 (69) hide show
  1. package/composable.ui/index.js +3 -2
  2. package/package.json +2 -2
  3. package/service.storybook/index.js +1 -1
  4. package/ui.button/composables/attrs.composable.js +6 -2
  5. package/ui.button/configs/default.config.js +14 -2
  6. package/ui.button/index.stories.js +27 -3
  7. package/ui.button/index.vue +70 -27
  8. package/ui.button-link/composables/attrs.composable.js +64 -130
  9. package/ui.button-link/index.stories.js +2 -4
  10. package/ui.button-link/index.vue +29 -4
  11. package/ui.button-toggle/composables/attrs.composable.js +21 -33
  12. package/ui.button-toggle/configs/default.config.js +2 -2
  13. package/ui.button-toggle/index.vue +8 -2
  14. package/ui.button-toggle-item/composables/attrs.composable.js +50 -40
  15. package/ui.button-toggle-item/configs/default.config.js +1 -1
  16. package/ui.button-toggle-item/index.stories.js +2 -4
  17. package/ui.button-toggle-item/index.vue +11 -3
  18. package/ui.dropdown-badge/composables/attrs.composable.js +45 -45
  19. package/ui.dropdown-badge/configs/default.config.js +3 -3
  20. package/ui.dropdown-badge/index.stories.js +2 -4
  21. package/ui.dropdown-badge/index.vue +8 -2
  22. package/ui.dropdown-button/composables/attrs.composable.js +45 -45
  23. package/ui.dropdown-button/configs/default.config.js +3 -3
  24. package/ui.dropdown-button/index.stories.js +2 -4
  25. package/ui.dropdown-button/index.vue +8 -2
  26. package/ui.dropdown-item/index.vue +7 -1
  27. package/ui.dropdown-link/composables/attrs.composable.js +43 -45
  28. package/ui.dropdown-link/configs/default.config.js +3 -3
  29. package/ui.dropdown-link/index.stories.js +2 -4
  30. package/ui.dropdown-link/index.vue +8 -2
  31. package/ui.dropdown-list/composables/attrs.composable.js +43 -67
  32. package/ui.dropdown-list/configs/default.config.js +2 -2
  33. package/ui.dropdown-list/index.vue +19 -3
  34. package/ui.form-calendar/components/DayView.vue +4 -4
  35. package/ui.form-calendar/composables/attrs.composable.js +5 -4
  36. package/ui.form-input/composables/attrs.composable.js +31 -48
  37. package/ui.form-input/configs/default.config.js +3 -3
  38. package/ui.form-input/index.stories.js +32 -9
  39. package/ui.form-input/index.vue +92 -41
  40. package/ui.navigation-progress/components/StepperProgress.vue +87 -0
  41. package/ui.navigation-progress/composables/attrs.composable.js +33 -56
  42. package/ui.navigation-progress/configs/default.config.js +34 -1
  43. package/ui.navigation-progress/constants/index.js +5 -0
  44. package/ui.navigation-progress/index.stories.js +3 -0
  45. package/ui.navigation-progress/index.vue +55 -9
  46. package/ui.text-alert/composables/attrs.composable.js +23 -39
  47. package/ui.text-alert/configs/default.config.js +3 -3
  48. package/ui.text-alert/index.vue +19 -8
  49. package/ui.text-badge/composables/attrs.composable.js +25 -36
  50. package/ui.text-badge/index.stories.js +2 -4
  51. package/ui.text-badge/index.vue +22 -2
  52. package/ui.text-block/composables/attrs.composable.js +24 -20
  53. package/ui.text-block/index.vue +1 -1
  54. package/ui.text-empty/composables/attrs.composable.js +17 -27
  55. package/ui.text-empty/configs/default.config.js +1 -1
  56. package/ui.text-empty/index.stories.js +2 -4
  57. package/ui.text-empty/index.vue +1 -1
  58. package/ui.text-header/composables/attrs.composable.js +28 -22
  59. package/ui.text-header/index.stories.js +1 -1
  60. package/ui.text-header/index.vue +1 -1
  61. package/ui.text-money/composables/attrs.composable.js +21 -48
  62. package/ui.text-money/index.stories.js +2 -4
  63. package/web-types.json +326 -145
  64. package/ui.navigation-stepper/Docs.mdx +0 -16
  65. package/ui.navigation-stepper/composables/attrs.composable.js +0 -25
  66. package/ui.navigation-stepper/configs/default.config.js +0 -13
  67. package/ui.navigation-stepper/constants/index.js +0 -5
  68. package/ui.navigation-stepper/index.stories.js +0 -33
  69. package/ui.navigation-stepper/index.vue +0 -126
package/web-types.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "framework": "vue",
3
3
  "name": "vueless",
4
- "version": "0.0.200",
4
+ "version": "0.0.202",
5
5
  "contributions": {
6
6
  "html": {
7
7
  "description-markup": "markdown",
@@ -181,6 +181,64 @@
181
181
  "symbol": "default"
182
182
  }
183
183
  },
184
+ {
185
+ "name": "StepperProgress",
186
+ "description": "",
187
+ "attributes": [
188
+ {
189
+ "name": "progressPercent",
190
+ "required": true,
191
+ "value": {
192
+ "kind": "expression",
193
+ "type": "string"
194
+ }
195
+ },
196
+ {
197
+ "name": "value",
198
+ "required": true,
199
+ "value": {
200
+ "kind": "expression",
201
+ "type": "number"
202
+ }
203
+ },
204
+ {
205
+ "name": "color",
206
+ "required": true,
207
+ "value": {
208
+ "kind": "expression",
209
+ "type": "string"
210
+ }
211
+ },
212
+ {
213
+ "name": "max",
214
+ "value": {
215
+ "kind": "expression",
216
+ "type": "number"
217
+ },
218
+ "default": "null"
219
+ },
220
+ {
221
+ "name": "config",
222
+ "value": {
223
+ "kind": "expression",
224
+ "type": "object"
225
+ },
226
+ "default": "{}"
227
+ },
228
+ {
229
+ "name": "dataCy",
230
+ "value": {
231
+ "kind": "expression",
232
+ "type": "string"
233
+ },
234
+ "default": "\"\""
235
+ }
236
+ ],
237
+ "source": {
238
+ "module": "./src/ui.navigation-progress/components/StepperProgress.vue",
239
+ "symbol": "default"
240
+ }
241
+ },
184
242
  {
185
243
  "name": "TableRow",
186
244
  "description": "",
@@ -454,19 +512,22 @@
454
512
  ],
455
513
  "events": [
456
514
  {
457
- "name": "hidden"
515
+ "name": "hidden",
516
+ "description": "Triggers when the alert is hidden."
458
517
  }
459
518
  ],
460
519
  "slots": [
461
520
  {
462
521
  "name": "top",
463
- "description": "Use it to add something above text."
522
+ "description": "Use it to add something above the text."
464
523
  },
465
524
  {
466
525
  "name": "title",
467
526
  "scoped": true,
527
+ "description": "Use it to add something instead of the title.",
468
528
  "bindings": [
469
529
  {
530
+ "type": "string",
470
531
  "name": "title"
471
532
  }
472
533
  ]
@@ -477,13 +538,14 @@
477
538
  "description": "Use it to add something instead of the description.",
478
539
  "bindings": [
479
540
  {
541
+ "type": "string",
480
542
  "name": "description"
481
543
  }
482
544
  ]
483
545
  },
484
546
  {
485
547
  "name": "left",
486
- "description": "Use it to add something before text."
548
+ "description": "Use it to add something before the text."
487
549
  },
488
550
  {
489
551
  "name": "default",
@@ -491,11 +553,11 @@
491
553
  },
492
554
  {
493
555
  "name": "right",
494
- "description": "Use it to add something after text."
556
+ "description": "Use it to add something after the text."
495
557
  },
496
558
  {
497
559
  "name": "bottom",
498
- "description": "Use it to add something under text."
560
+ "description": "Use it to add something under the text."
499
561
  }
500
562
  ],
501
563
  "source": {
@@ -670,16 +732,20 @@
670
732
  ],
671
733
  "events": [
672
734
  {
673
- "name": "focus"
735
+ "name": "focus",
736
+ "description": "Triggers when the badge is focused."
674
737
  },
675
738
  {
676
- "name": "keydown"
739
+ "name": "keydown",
740
+ "description": "Triggers when the badge is pressed."
677
741
  },
678
742
  {
679
- "name": "blur"
743
+ "name": "blur",
744
+ "description": "Triggers when the badge loses focus."
680
745
  },
681
746
  {
682
- "name": "click"
747
+ "name": "click",
748
+ "description": "Triggers when the badge is clicked."
683
749
  }
684
750
  ],
685
751
  "slots": [
@@ -732,6 +798,24 @@
732
798
  },
733
799
  "default": "md"
734
800
  },
801
+ {
802
+ "name": "iconLeft",
803
+ "description": "Left side icon name.",
804
+ "value": {
805
+ "kind": "expression",
806
+ "type": "string"
807
+ },
808
+ "default": "\"\""
809
+ },
810
+ {
811
+ "name": "iconRight",
812
+ "description": "Right side icon name.",
813
+ "value": {
814
+ "kind": "expression",
815
+ "type": "string"
816
+ },
817
+ "default": "\"\""
818
+ },
735
819
  {
736
820
  "name": "label",
737
821
  "description": "Button label.",
@@ -830,38 +914,58 @@
830
914
  "type": "string"
831
915
  },
832
916
  "default": "\"\""
833
- },
834
- {
835
- "name": "iconLeft",
836
- "description": "Left side icon name.",
837
- "value": {
838
- "kind": "expression",
839
- "type": "string"
840
- },
841
- "default": "\"\""
842
- },
843
- {
844
- "name": "iconRight",
845
- "description": "Right side icon name.",
846
- "value": {
847
- "kind": "expression",
848
- "type": "string"
849
- },
850
- "default": "\"\""
851
917
  }
852
918
  ],
853
919
  "slots": [
920
+ {
921
+ "name": "icon-left",
922
+ "scoped": true,
923
+ "description": "Use it to add icon before the text.",
924
+ "bindings": [
925
+ {
926
+ "type": "string",
927
+ "name": "icon-name"
928
+ },
929
+ {
930
+ "type": "string",
931
+ "name": "icon-size"
932
+ },
933
+ {
934
+ "type": "string",
935
+ "name": "icon-color"
936
+ }
937
+ ]
938
+ },
854
939
  {
855
940
  "name": "left",
856
- "description": "Use it to add icon before text."
941
+ "description": "Use it to add something before the text."
857
942
  },
858
943
  {
859
944
  "name": "default",
860
- "description": "Use it to add something instead of text."
945
+ "description": "Use it to add something instead of the text."
861
946
  },
862
947
  {
863
948
  "name": "right",
864
- "description": "Use it to add icon after text."
949
+ "description": "Use it to add something after the text."
950
+ },
951
+ {
952
+ "name": "icon-right",
953
+ "scoped": true,
954
+ "description": "Use it to add icon after the text.",
955
+ "bindings": [
956
+ {
957
+ "type": "string",
958
+ "name": "icon-name"
959
+ },
960
+ {
961
+ "type": "string",
962
+ "name": "icon-size"
963
+ },
964
+ {
965
+ "type": "string",
966
+ "name": "icon-color"
967
+ }
968
+ ]
865
969
  }
866
970
  ],
867
971
  "source": {
@@ -2399,7 +2503,16 @@
2399
2503
  ],
2400
2504
  "events": [
2401
2505
  {
2402
- "name": "select"
2506
+ "name": "select",
2507
+ "description": "Triggers when dropdown option is selected.",
2508
+ "properties": [
2509
+ {
2510
+ "type": [
2511
+ "string"
2512
+ ],
2513
+ "name": "value"
2514
+ }
2515
+ ]
2403
2516
  }
2404
2517
  ],
2405
2518
  "slots": [
@@ -2582,7 +2695,16 @@
2582
2695
  ],
2583
2696
  "events": [
2584
2697
  {
2585
- "name": "select"
2698
+ "name": "select",
2699
+ "description": "Triggers when dropdown option is selected.",
2700
+ "properties": [
2701
+ {
2702
+ "type": [
2703
+ "string"
2704
+ ],
2705
+ "name": "value"
2706
+ }
2707
+ ]
2586
2708
  }
2587
2709
  ],
2588
2710
  "slots": [
@@ -2630,7 +2752,16 @@
2630
2752
  ],
2631
2753
  "events": [
2632
2754
  {
2633
- "name": "click"
2755
+ "name": "click",
2756
+ "description": "Triggers when dropdown item is clicked.",
2757
+ "properties": [
2758
+ {
2759
+ "type": [
2760
+ "string"
2761
+ ],
2762
+ "name": "value"
2763
+ }
2764
+ ]
2634
2765
  }
2635
2766
  ],
2636
2767
  "slots": [
@@ -2793,7 +2924,16 @@
2793
2924
  ],
2794
2925
  "events": [
2795
2926
  {
2796
- "name": "select"
2927
+ "name": "select",
2928
+ "description": "Triggers when dropdown option is selected.",
2929
+ "properties": [
2930
+ {
2931
+ "type": [
2932
+ "string"
2933
+ ],
2934
+ "name": "value"
2935
+ }
2936
+ ]
2797
2937
  }
2798
2938
  ],
2799
2939
  "slots": [
@@ -2912,19 +3052,18 @@
2912
3052
  ],
2913
3053
  "events": [
2914
3054
  {
2915
- "name": "update:modelValue"
2916
- },
2917
- {
2918
- "name": "addOption"
3055
+ "name": "addOption",
3056
+ "description": "Triggers when option is added."
2919
3057
  }
2920
3058
  ],
2921
3059
  "slots": [
2922
3060
  {
2923
3061
  "name": "before-option",
2924
3062
  "scoped": true,
2925
- "description": "Use it to add something before option.",
3063
+ "description": "Use it to add something before the option.",
2926
3064
  "bindings": [
2927
3065
  {
3066
+ "type": "other",
2928
3067
  "name": "option"
2929
3068
  }
2930
3069
  ]
@@ -2932,12 +3071,14 @@
2932
3071
  {
2933
3072
  "name": "option",
2934
3073
  "scoped": true,
2935
- "description": "Use it to add something before option.",
3074
+ "description": "Use it to add something instead of the option.",
2936
3075
  "bindings": [
2937
3076
  {
3077
+ "type": "other",
2938
3078
  "name": "option"
2939
3079
  },
2940
3080
  {
3081
+ "type": "number",
2941
3082
  "name": "index"
2942
3083
  }
2943
3084
  ]
@@ -2945,9 +3086,10 @@
2945
3086
  {
2946
3087
  "name": "after-option",
2947
3088
  "scoped": true,
2948
- "description": "Use it to add something after option.",
3089
+ "description": "Use it to add something after the option.",
2949
3090
  "bindings": [
2950
3091
  {
3092
+ "type": "other",
2951
3093
  "name": "option"
2952
3094
  }
2953
3095
  ]
@@ -3639,6 +3781,24 @@
3639
3781
  },
3640
3782
  "default": "md"
3641
3783
  },
3784
+ {
3785
+ "name": "iconLeft",
3786
+ "description": "Left side icon name.",
3787
+ "value": {
3788
+ "kind": "expression",
3789
+ "type": "string"
3790
+ },
3791
+ "default": "\"\""
3792
+ },
3793
+ {
3794
+ "name": "iconRight",
3795
+ "description": "Right side icon name.",
3796
+ "value": {
3797
+ "kind": "expression",
3798
+ "type": "string"
3799
+ },
3800
+ "default": "\"\""
3801
+ },
3642
3802
  {
3643
3803
  "name": "maxLength",
3644
3804
  "description": "Maximum character length.",
@@ -3728,57 +3888,98 @@
3728
3888
  "type": "string"
3729
3889
  },
3730
3890
  "default": "\"\""
3731
- },
3732
- {
3733
- "name": "iconLeft",
3734
- "description": "Left side icon name.",
3735
- "value": {
3736
- "kind": "expression",
3737
- "type": "string"
3738
- },
3739
- "default": "\"\""
3740
- },
3741
- {
3742
- "name": "iconRight",
3743
- "description": "Right side icon name.",
3744
- "value": {
3745
- "kind": "expression",
3746
- "type": "string"
3747
- },
3748
- "default": "\"\""
3749
3891
  }
3750
3892
  ],
3751
3893
  "events": [
3752
3894
  {
3753
- "name": "update:modelValue"
3895
+ "name": "update:modelValue",
3896
+ "description": "Triggers when the input value is updated.",
3897
+ "properties": [
3898
+ {
3899
+ "type": [
3900
+ "string"
3901
+ ],
3902
+ "name": "modelValue"
3903
+ },
3904
+ {
3905
+ "type": [
3906
+ "number"
3907
+ ],
3908
+ "name": "modelValue"
3909
+ }
3910
+ ]
3754
3911
  },
3755
3912
  {
3756
- "name": "change"
3913
+ "name": "change",
3914
+ "description": "Triggers when the input value changes."
3757
3915
  },
3758
3916
  {
3759
- "name": "click"
3917
+ "name": "click",
3918
+ "description": "Triggers when the input is clicked."
3760
3919
  },
3761
3920
  {
3762
- "name": "focus"
3921
+ "name": "focus",
3922
+ "description": "Triggers when the input gains focus."
3763
3923
  },
3764
3924
  {
3765
- "name": "mousedown"
3925
+ "name": "mousedown",
3926
+ "description": "Triggers when the mouse is pressed down on the input."
3766
3927
  },
3767
3928
  {
3768
- "name": "blur"
3929
+ "name": "blur",
3930
+ "description": "Triggers when the input loses focus."
3769
3931
  },
3770
3932
  {
3771
- "name": "input"
3933
+ "name": "input",
3934
+ "description": "Triggers when any validation rules are applied to input value.",
3935
+ "properties": [
3936
+ {
3937
+ "type": [
3938
+ "string"
3939
+ ],
3940
+ "name": "value"
3941
+ }
3942
+ ]
3772
3943
  }
3773
3944
  ],
3774
3945
  "slots": [
3946
+ {
3947
+ "name": "icon-left",
3948
+ "scoped": true,
3949
+ "description": "Use it to add icon before the text.",
3950
+ "bindings": [
3951
+ {
3952
+ "type": "string",
3953
+ "name": "icon-name"
3954
+ },
3955
+ {
3956
+ "type": "string",
3957
+ "name": "icon-size"
3958
+ }
3959
+ ]
3960
+ },
3775
3961
  {
3776
3962
  "name": "left",
3777
- "description": "Use it to add icon before text."
3963
+ "description": "Use it to add something before the text."
3778
3964
  },
3779
3965
  {
3780
3966
  "name": "right",
3781
- "description": "Use it to add icon after text."
3967
+ "description": "Use it to add something after the text."
3968
+ },
3969
+ {
3970
+ "name": "icon-right",
3971
+ "scoped": true,
3972
+ "description": "Use it to add icon after the text.",
3973
+ "bindings": [
3974
+ {
3975
+ "type": "string",
3976
+ "name": "icon-name"
3977
+ },
3978
+ {
3979
+ "type": "string",
3980
+ "name": "icon-size"
3981
+ }
3982
+ ]
3782
3983
  }
3783
3984
  ],
3784
3985
  "source": {
@@ -4818,25 +5019,30 @@
4818
5019
  ],
4819
5020
  "events": [
4820
5021
  {
4821
- "name": "click"
5022
+ "name": "click",
5023
+ "description": "Triggers when link is clicked."
4822
5024
  },
4823
5025
  {
4824
- "name": "mouseover"
5026
+ "name": "mouseover",
5027
+ "description": "Triggers when cursor is on the link."
4825
5028
  },
4826
5029
  {
4827
- "name": "focus"
5030
+ "name": "focus",
5031
+ "description": "Triggers when link is focused."
4828
5032
  },
4829
5033
  {
4830
- "name": "blur"
5034
+ "name": "blur",
5035
+ "description": "Triggers when link loses focus."
4831
5036
  },
4832
5037
  {
4833
- "name": "keydown"
5038
+ "name": "keydown",
5039
+ "description": "Triggers when link is clicked."
4834
5040
  }
4835
5041
  ],
4836
5042
  "slots": [
4837
5043
  {
4838
5044
  "name": "left",
4839
- "description": "Use it to add something before text."
5045
+ "description": "Use it to add something before the text."
4840
5046
  },
4841
5047
  {
4842
5048
  "name": "default",
@@ -4844,7 +5050,7 @@
4844
5050
  },
4845
5051
  {
4846
5052
  "name": "right",
4847
- "description": "Use it to add something after text."
5053
+ "description": "Use it to add something after the text."
4848
5054
  }
4849
5055
  ],
4850
5056
  "source": {
@@ -5804,6 +6010,15 @@
5804
6010
  },
5805
6011
  "default": "brand"
5806
6012
  },
6013
+ {
6014
+ "name": "variant",
6015
+ "description": "Progress variant.",
6016
+ "value": {
6017
+ "kind": "expression",
6018
+ "type": "'stepper' | 'progress'"
6019
+ },
6020
+ "default": "progress"
6021
+ },
5807
6022
  {
5808
6023
  "name": "indicator",
5809
6024
  "description": "Progress indicator visibility.",
@@ -5812,6 +6027,15 @@
5812
6027
  "type": "boolean"
5813
6028
  },
5814
6029
  "default": "false"
6030
+ },
6031
+ {
6032
+ "name": "dataCy",
6033
+ "description": "Sets data-cy attribute for automated testing.",
6034
+ "value": {
6035
+ "kind": "expression",
6036
+ "type": "string"
6037
+ },
6038
+ "default": "\"\""
5815
6039
  }
5816
6040
  ],
5817
6041
  "slots": [
@@ -6602,70 +6826,6 @@
6602
6826
  "symbol": "default"
6603
6827
  }
6604
6828
  },
6605
- {
6606
- "name": "UStepper",
6607
- "description": "",
6608
- "attributes": [
6609
- {
6610
- "name": "title",
6611
- "description": "Set component title.",
6612
- "value": {
6613
- "kind": "expression",
6614
- "type": "string"
6615
- },
6616
- "default": "\"\""
6617
- },
6618
- {
6619
- "name": "step",
6620
- "description": "Set step number.",
6621
- "value": {
6622
- "kind": "expression",
6623
- "type": "number"
6624
- },
6625
- "default": "1"
6626
- },
6627
- {
6628
- "name": "color",
6629
- "description": "Icon color.",
6630
- "value": {
6631
- "kind": "expression",
6632
- "type": "'brand' | 'grayscale' | 'gray' | 'red' | 'orange' | 'amber' | 'yellow' | 'lime' | 'green' | 'emerald' | 'teal' | 'cyan' | 'sky' | 'blue' | 'indigo' | 'violet' | 'purple' | 'fuchsia' | 'pink' | 'rose' | 'white'"
6633
- },
6634
- "default": "brand"
6635
- },
6636
- {
6637
- "name": "totalSteps",
6638
- "description": "Set total number of steps.",
6639
- "value": {
6640
- "kind": "expression",
6641
- "type": "number"
6642
- },
6643
- "default": "null"
6644
- },
6645
- {
6646
- "name": "config",
6647
- "description": "Component ui config object.",
6648
- "value": {
6649
- "kind": "expression",
6650
- "type": "object"
6651
- },
6652
- "default": "{}"
6653
- },
6654
- {
6655
- "name": "dataCy",
6656
- "description": "Sets data-cy attribute for automated testing.",
6657
- "value": {
6658
- "kind": "expression",
6659
- "type": "string"
6660
- },
6661
- "default": "\"\""
6662
- }
6663
- ],
6664
- "source": {
6665
- "module": "./src/ui.navigation-stepper/index.vue",
6666
- "symbol": "default"
6667
- }
6668
- },
6669
6829
  {
6670
6830
  "name": "USwitch",
6671
6831
  "description": "",
@@ -7513,7 +7673,16 @@
7513
7673
  ],
7514
7674
  "events": [
7515
7675
  {
7516
- "name": "update:modelValue"
7676
+ "name": "update:modelValue",
7677
+ "description": "Triggers when toggle item is selected.",
7678
+ "properties": [
7679
+ {
7680
+ "type": [
7681
+ "string"
7682
+ ],
7683
+ "name": "modelValue"
7684
+ }
7685
+ ]
7517
7686
  }
7518
7687
  ],
7519
7688
  "slots": [
@@ -7597,18 +7766,30 @@
7597
7766
  ],
7598
7767
  "events": [
7599
7768
  {
7600
- "name": "update:modelValue"
7769
+ "name": "update:modelValue",
7770
+ "description": "Triggers when new value is set.",
7771
+ "properties": [
7772
+ {
7773
+ "type": [
7774
+ "string"
7775
+ ],
7776
+ "name": "modelValue"
7777
+ }
7778
+ ]
7601
7779
  }
7602
7780
  ],
7603
7781
  "slots": [
7604
7782
  {
7605
- "name": "left"
7783
+ "name": "left",
7784
+ "description": "Use it to add something before the text."
7606
7785
  },
7607
7786
  {
7608
- "name": "default"
7787
+ "name": "default",
7788
+ "description": "Use it to add something instead of the text."
7609
7789
  },
7610
7790
  {
7611
- "name": "right"
7791
+ "name": "right",
7792
+ "description": "Use it to add something after the text."
7612
7793
  }
7613
7794
  ],
7614
7795
  "source": {