@volverjs/ui-vue 0.0.10-beta.33 → 0.0.10-beta.34

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 (62) hide show
  1. package/dist/components/VvAvatar/VvAvatar.es.js +6 -1
  2. package/dist/components/VvAvatar/VvAvatar.umd.js +1 -1
  3. package/dist/components/VvAvatarGroup/VvAvatarGroup.es.js +7 -2
  4. package/dist/components/VvAvatarGroup/VvAvatarGroup.umd.js +1 -1
  5. package/dist/components/VvBadge/VvBadge.es.js +6 -1
  6. package/dist/components/VvBadge/VvBadge.umd.js +1 -1
  7. package/dist/components/VvBreadcrumb/VvBreadcrumb.es.js +6 -1
  8. package/dist/components/VvBreadcrumb/VvBreadcrumb.umd.js +1 -1
  9. package/dist/components/VvButton/VvButton.es.js +22 -0
  10. package/dist/components/VvButton/VvButton.umd.js +1 -1
  11. package/dist/components/VvButtonGroup/VvButtonGroup.es.js +6 -1
  12. package/dist/components/VvButtonGroup/VvButtonGroup.umd.js +1 -1
  13. package/dist/components/VvCard/VvCard.es.js +6 -1
  14. package/dist/components/VvCard/VvCard.umd.js +1 -1
  15. package/dist/components/VvCheckbox/VvCheckbox.es.js +22 -0
  16. package/dist/components/VvCheckbox/VvCheckbox.umd.js +1 -1
  17. package/dist/components/VvCheckboxGroup/VvCheckboxGroup.es.js +22 -0
  18. package/dist/components/VvCheckboxGroup/VvCheckboxGroup.umd.js +1 -1
  19. package/dist/components/VvCombobox/VvCombobox.es.js +22 -0
  20. package/dist/components/VvCombobox/VvCombobox.umd.js +1 -1
  21. package/dist/components/VvCombobox/VvCombobox.vue.d.ts +23 -23
  22. package/dist/components/VvCombobox/index.d.ts +7 -7
  23. package/dist/components/VvDialog/VvDialog.es.js +6 -1
  24. package/dist/components/VvDialog/VvDialog.umd.js +1 -1
  25. package/dist/components/VvDropdown/VvDropdown.vue.d.ts +23 -23
  26. package/dist/components/VvDropdown/index.d.ts +7 -7
  27. package/dist/components/VvDropdownAction/VvDropdownAction.es.js +5 -0
  28. package/dist/components/VvDropdownAction/VvDropdownAction.umd.js +1 -1
  29. package/dist/components/VvIcon/VvIcon.es.js +6 -1
  30. package/dist/components/VvIcon/VvIcon.umd.js +1 -1
  31. package/dist/components/VvInputFile/VvInputFile.es.js +22 -0
  32. package/dist/components/VvInputFile/VvInputFile.umd.js +1 -1
  33. package/dist/components/VvInputText/VvInputText.es.js +1 -1
  34. package/dist/components/VvInputText/VvInputText.umd.js +1 -1
  35. package/dist/components/VvNav/VvNav.es.js +5 -0
  36. package/dist/components/VvNav/VvNav.umd.js +1 -1
  37. package/dist/components/VvRadio/VvRadio.es.js +22 -0
  38. package/dist/components/VvRadio/VvRadio.umd.js +1 -1
  39. package/dist/components/VvRadioGroup/VvRadioGroup.es.js +22 -0
  40. package/dist/components/VvRadioGroup/VvRadioGroup.umd.js +1 -1
  41. package/dist/components/VvTab/VvTab.es.js +5 -0
  42. package/dist/components/VvTab/VvTab.umd.js +1 -1
  43. package/dist/components/index.es.js +23 -1
  44. package/dist/components/index.umd.js +1 -1
  45. package/dist/icons.es.js +3 -3
  46. package/dist/icons.umd.js +1 -1
  47. package/dist/props/index.d.ts +7 -7
  48. package/package.json +4 -4
  49. package/src/assets/icons/detailed.json +1 -1
  50. package/src/assets/icons/normal.json +1 -1
  51. package/src/assets/icons/simple.json +1 -1
  52. package/src/components/VvAlert/index.ts +1 -1
  53. package/src/components/VvInputText/VvInputText.vue +1 -1
  54. package/src/stories/Avatar/AvatarModifiers.stories.ts +1 -2
  55. package/src/stories/AvatarGroup/AvatarGroupModifiers.stories.ts +0 -1
  56. package/src/stories/Button/Button.settings.ts +0 -1
  57. package/src/stories/ButtonGroup/ButtonGroup.settings.ts +0 -1
  58. package/src/stories/Checkbox/Checkbox.settings.ts +0 -1
  59. package/src/stories/InputText/InputText.settings.ts +1 -0
  60. package/src/stories/Textarea/Textarea.settings.ts +1 -0
  61. package/src/stories/Tooltip/Tooltip.settings.ts +0 -1
  62. package/src/stories/argTypes.ts +1 -0
@@ -1,4 +1,4 @@
1
- import { type ExtractPropTypes, type PropType, withModifiers } from 'vue'
1
+ import { type ExtractPropTypes, type PropType } from 'vue'
2
2
  import { AlertRole } from '@/constants'
3
3
  import { IconProps, IdProps } from '@/props'
4
4
  import type { AlertModifier } from '@/types'
@@ -165,7 +165,7 @@
165
165
  },
166
166
  )
167
167
  const updateMaskValue = (newValue: string | number | undefined) => {
168
- if (iMask) {
168
+ if (iMask?.value) {
169
169
  if (newValue === undefined) {
170
170
  typed.value = ''
171
171
  unmasked.value = ''
@@ -94,8 +94,7 @@ export const CustomColor: Story = {
94
94
  ...argTypes,
95
95
  modifiers: {
96
96
  ...argTypes.modifiers,
97
- //@ts-ignore
98
- options: [...argTypes.modifiers.options, 'accent'],
97
+ options: [...(argTypes.modifiers.options ?? []), 'accent'],
99
98
  },
100
99
  },
101
100
  }
@@ -7,7 +7,6 @@ const meta: Meta<typeof VvAvatarGroup> = {
7
7
  title: 'Components/AvatarGroup/Modifiers',
8
8
  component: VvAvatarGroup,
9
9
  args: defaultArgs,
10
- // @ts-ignore
11
10
  argTypes,
12
11
  }
13
12
 
@@ -23,7 +23,6 @@ export const defaultArgs: Meta<typeof VvButton>['args'] = {
23
23
  icon: undefined,
24
24
  }
25
25
 
26
- // @ts-ignore
27
26
  export const argTypes: ArgTypes = {
28
27
  modifiers: {
29
28
  ...ModifiersArgTypes.modifiers,
@@ -12,7 +12,6 @@ export const defaultArgs = {
12
12
  modifiers: [],
13
13
  }
14
14
 
15
- // @ts-ignore
16
15
  export const argTypes: ArgTypes = {
17
16
  modelValue: {
18
17
  table: {
@@ -15,7 +15,6 @@ export const defaultArgs = {
15
15
  uncheckedValue: undefined,
16
16
  }
17
17
 
18
- // @ts-ignore
19
18
  export const argTypes: ArgTypes = {
20
19
  ...CheckboxRadioArgTypes,
21
20
  indeterminate: {
@@ -14,6 +14,7 @@ export const defaultArgs = {
14
14
  maxlength: undefined,
15
15
  }
16
16
 
17
+ // eslint-disable-next-line @typescript-eslint/ban-ts-comment
17
18
  // @ts-ignore
18
19
  export const argTypes: ArgTypes = {
19
20
  ...InputTextareaArgTypes,
@@ -11,6 +11,7 @@ export const defaultArgs = {
11
11
  maxlength: undefined,
12
12
  }
13
13
 
14
+ // eslint-disable-next-line @typescript-eslint/ban-ts-comment
14
15
  // @ts-ignore
15
16
  export const argTypes: ArgTypes = {
16
17
  ...InputTextareaArgTypes,
@@ -7,7 +7,6 @@ export const defaultArgs = {
7
7
  value: "I'm a tooltip",
8
8
  }
9
9
 
10
- // @ts-ignore
11
10
  export const argTypes: ArgTypes = {
12
11
  ...ModifiersArgTypes,
13
12
  ...DefaultSlotArgTypes,
@@ -110,6 +110,7 @@ export const OptionsArgTypes: ArgTypes = {
110
110
  options: {
111
111
  description: 'List of options',
112
112
  control: {
113
+ // eslint-disable-next-line @typescript-eslint/ban-ts-comment
113
114
  // @ts-ignore
114
115
  type: 'array',
115
116
  },