@volverjs/ui-vue 0.0.1-beta.11 → 0.0.1-beta.12

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 (81) hide show
  1. package/dist/components/VvBadge/VvBadge.d.ts +1 -1
  2. package/dist/components/VvBadge/VvBadge.es.js +165 -12
  3. package/dist/components/VvBadge/VvBadge.umd.js +1 -1
  4. package/dist/components/VvBadge/VvBadge.vue.d.ts +4 -4
  5. package/dist/components/VvBreadcrumb/VvBreadcrumb.d.ts +1 -1
  6. package/dist/components/VvBreadcrumb/VvBreadcrumb.vue.d.ts +4 -4
  7. package/dist/components/VvButton/VvButton.d.ts +2 -33
  8. package/dist/components/VvButton/VvButton.es.js +183 -198
  9. package/dist/components/VvButton/VvButton.umd.js +1 -1
  10. package/dist/components/VvButton/VvButton.vue.d.ts +9 -44
  11. package/dist/components/VvButton/useButtonGroupProps.d.ts +1 -6
  12. package/dist/components/VvButtonGroup/VvButtonGroup.d.ts +2 -26
  13. package/dist/components/VvButtonGroup/VvButtonGroup.es.js +68 -78
  14. package/dist/components/VvButtonGroup/VvButtonGroup.umd.js +1 -1
  15. package/dist/components/VvButtonGroup/VvButtonGroup.vue.d.ts +9 -69
  16. package/dist/components/VvDropdown/VvDropdown.d.ts +1 -1
  17. package/dist/components/VvDropdown/VvDropdown.vue.d.ts +4 -4
  18. package/dist/components/VvInputText/VvInputText.d.ts +1 -1
  19. package/dist/components/VvInputText/VvInputText.vue.d.ts +4 -4
  20. package/dist/components/VvProgress/VvProgress.d.ts +1 -1
  21. package/dist/components/VvProgress/VvProgress.vue.d.ts +4 -4
  22. package/dist/components/VvSelect/VvSelect.d.ts +5 -1
  23. package/dist/components/VvSelect/VvSelect.es.js +395 -207
  24. package/dist/components/VvSelect/VvSelect.umd.js +2 -2
  25. package/dist/components/VvSelect/VvSelect.vue.d.ts +12 -5
  26. package/dist/components/VvTextarea/VvTextarea.d.ts +1 -1
  27. package/dist/components/VvTextarea/VvTextarea.vue.d.ts +4 -4
  28. package/dist/components/index.es.js +579 -610
  29. package/dist/components/index.umd.js +2 -2
  30. package/dist/composables/group/types/IButtonGroupState.d.ts +4 -0
  31. package/dist/icons.es.js +3 -3
  32. package/dist/icons.umd.js +1 -1
  33. package/dist/index.es.js +553 -585
  34. package/dist/index.umd.js +2 -2
  35. package/dist/props/index.d.ts +2 -1
  36. package/dist/stories/RadioGroup/RadioOption.test.d.ts +4 -0
  37. package/dist/stories/RadioGroup/RadioProperty.test.d.ts +1 -1
  38. package/dist/stories/RadioGroup/RadioSlots.test.d.ts +6 -0
  39. package/package.json +2 -2
  40. package/src/assets/icons/detailed.json +1 -1
  41. package/src/assets/icons/normal.json +1 -1
  42. package/src/assets/icons/simple.json +1 -1
  43. package/src/components/VvBadge/VvBadge.ts +4 -2
  44. package/src/components/VvBadge/VvBadge.vue +8 -3
  45. package/src/components/VvButton/VvButton.ts +4 -34
  46. package/src/components/VvButton/VvButton.vue +3 -12
  47. package/src/components/VvButton/useButtonGroupProps.ts +3 -11
  48. package/src/components/VvButtonGroup/VvButtonGroup.ts +4 -17
  49. package/src/components/VvButtonGroup/VvButtonGroup.vue +5 -16
  50. package/src/components/VvSelect/VvSelect.ts +5 -1
  51. package/src/components/VvSelect/VvSelect.vue +7 -1
  52. package/src/composables/group/types/IButtonGroupState.ts +4 -0
  53. package/src/props/index.ts +3 -1
  54. package/src/stories/Badge/BadgeColor.stories.mdx +4 -4
  55. package/src/stories/Badge/BadgeModifiers.stories.mdx +65 -0
  56. package/src/stories/Button/ButtonActive.stories.mdx +27 -0
  57. package/src/stories/Button/ButtonDisabled.stories.mdx +28 -0
  58. package/src/stories/Button/ButtonIconPosition.stories.mdx +0 -1
  59. package/src/stories/Button/ButtonModifiers.stories.mdx +103 -46
  60. package/src/stories/Button/ButtonSelected.stories.mdx +30 -0
  61. package/src/stories/ButtonGroup/ButtonGroupAction.stories.mdx +2 -2
  62. package/src/stories/ButtonGroup/ButtonGroupActionQuiet.stories.mdx +2 -2
  63. package/src/stories/ButtonGroup/ButtonGroupBlock.stories.mdx +1 -1
  64. package/src/stories/ButtonGroup/ButtonGroupRounded.stories.mdx +1 -1
  65. package/src/stories/RadioGroup/RadioGroupHintLabel.stories.mdx +6 -6
  66. package/src/stories/RadioGroup/RadioGroupLabel.stories.mdx +7 -2
  67. package/src/stories/RadioGroup/RadioGroupOptionLabel.stories.mdx +7 -19
  68. package/src/stories/RadioGroup/RadioGroupOptionValue.stories.mdx +7 -19
  69. package/src/stories/RadioGroup/RadioGroupOptions.stories.mdx +3 -17
  70. package/src/stories/RadioGroup/RadioGroupSlots.stories.mdx +10 -9
  71. package/src/stories/RadioGroup/RadioOption.test.ts +45 -0
  72. package/src/stories/RadioGroup/RadioProperty.test.ts +4 -4
  73. package/src/stories/RadioGroup/RadioSlots.test.ts +29 -0
  74. package/src/stories/Select/SelectNative.stories.mdx +45 -0
  75. package/src/stories/stories.scss +5 -27
  76. package/src/stories/Button/ButtonVariant.stories.mdx +0 -205
  77. package/src/stories/Button/test.js +0 -41
  78. package/src/stories/Radio/RadioTest.js +0 -90
  79. package/src/stories/RadioGroup/RadioOptionsTest.js +0 -78
  80. package/src/stories/RadioGroup/RadioPropertyTest.js +0 -131
  81. package/src/stories/RadioGroup/RadioSlotsTest.js +0 -20
@@ -60,7 +60,7 @@ declare const _default: {
60
60
  default: boolean;
61
61
  validator: (value: string) => boolean;
62
62
  };
63
- modifiers: (StringConstructor | ArrayConstructor)[];
63
+ modifiers: import("vue").PropType<string | string[]>;
64
64
  loading: BooleanConstructor;
65
65
  loadingLabel: StringConstructor;
66
66
  hintLabel: {
@@ -130,7 +130,7 @@ declare const _default: {
130
130
  default: boolean;
131
131
  validator: (value: string) => boolean;
132
132
  };
133
- modifiers: (StringConstructor | ArrayConstructor)[];
133
+ modifiers: import("vue").PropType<string | string[]>;
134
134
  loading: BooleanConstructor;
135
135
  loadingLabel: StringConstructor;
136
136
  hintLabel: {
@@ -221,7 +221,7 @@ declare const _default: {
221
221
  default: boolean;
222
222
  validator: (value: string) => boolean;
223
223
  };
224
- modifiers: (StringConstructor | ArrayConstructor)[];
224
+ modifiers: import("vue").PropType<string | string[]>;
225
225
  loading: BooleanConstructor;
226
226
  loadingLabel: StringConstructor;
227
227
  hintLabel: {
@@ -281,7 +281,7 @@ declare const _default: {
281
281
  default: boolean;
282
282
  validator: (value: string) => boolean;
283
283
  };
284
- modifiers: (StringConstructor | ArrayConstructor)[];
284
+ modifiers: import("vue").PropType<string | string[]>;
285
285
  loading: BooleanConstructor;
286
286
  loadingLabel: StringConstructor;
287
287
  hintLabel: {
@@ -25,5 +25,5 @@ export declare const VvProgressProps: {
25
25
  type: BooleanConstructor;
26
26
  default: boolean;
27
27
  };
28
- modifiers: (StringConstructor | ArrayConstructor)[];
28
+ modifiers: import("vue").PropType<string | string[]>;
29
29
  };
@@ -20,7 +20,7 @@ declare const _default: {
20
20
  type: BooleanConstructor;
21
21
  default: boolean;
22
22
  };
23
- modifiers: (StringConstructor | ArrayConstructor)[];
23
+ modifiers: import("vue").PropType<string | string[]>;
24
24
  }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "ariaLabel" | "determinate">;
25
25
  $attrs: {
26
26
  [x: string]: unknown;
@@ -50,7 +50,7 @@ declare const _default: {
50
50
  type: BooleanConstructor;
51
51
  default: boolean;
52
52
  };
53
- modifiers: (StringConstructor | ArrayConstructor)[];
53
+ modifiers: import("vue").PropType<string | string[]>;
54
54
  }>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
55
55
  ariaLabel: string;
56
56
  determinate: boolean;
@@ -89,7 +89,7 @@ declare const _default: {
89
89
  type: BooleanConstructor;
90
90
  default: boolean;
91
91
  };
92
- modifiers: (StringConstructor | ArrayConstructor)[];
92
+ modifiers: import("vue").PropType<string | string[]>;
93
93
  }>> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
94
94
  __isFragment?: undefined;
95
95
  __isTeleport?: undefined;
@@ -109,7 +109,7 @@ declare const _default: {
109
109
  type: BooleanConstructor;
110
110
  default: boolean;
111
111
  };
112
- modifiers: (StringConstructor | ArrayConstructor)[];
112
+ modifiers: import("vue").PropType<string | string[]>;
113
113
  }>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
114
114
  ariaLabel: string;
115
115
  determinate: boolean;
@@ -83,7 +83,11 @@ export declare const VvSelectProps: {
83
83
  * Icon name of icon in right position
84
84
  */
85
85
  iconRight: StringConstructor;
86
- modifiers: (StringConstructor | ArrayConstructor)[];
86
+ /**
87
+ * Icon name of icon in right position
88
+ */
89
+ native: BooleanConstructor;
90
+ modifiers: PropType<string | string[]>;
87
91
  readonly: BooleanConstructor;
88
92
  disabled: BooleanConstructor;
89
93
  loading: BooleanConstructor;