@volverjs/ui-vue 0.0.10-beta.6 → 0.0.10-beta.7

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 (38) hide show
  1. package/dist/components/VvAccordion/VvAccordion.vue.d.ts +4 -4
  2. package/dist/components/VvAccordionGroup/VvAccordionGroup.vue.d.ts +4 -4
  3. package/dist/components/VvAction/VvAction.vue.d.ts +4 -4
  4. package/dist/components/VvAlert/VvAlert.vue.d.ts +4 -4
  5. package/dist/components/VvAlertGroup/VvAlertGroup.vue.d.ts +4 -4
  6. package/dist/components/VvButton/VvButton.vue.d.ts +12 -6
  7. package/dist/components/VvButtonGroup/VvButtonGroup.vue.d.ts +4 -4
  8. package/dist/components/VvCheckbox/VvCheckbox.vue.d.ts +4 -4
  9. package/dist/components/VvCheckboxGroup/VvCheckboxGroup.vue.d.ts +4 -4
  10. package/dist/components/VvCombobox/VvCombobox.es.js +8 -4
  11. package/dist/components/VvCombobox/VvCombobox.umd.js +1 -1
  12. package/dist/components/VvCombobox/VvCombobox.vue.d.ts +4 -4
  13. package/dist/components/VvCombobox/index.d.ts +10 -5
  14. package/dist/components/VvDialog/VvDialog.vue.d.ts +4 -4
  15. package/dist/components/VvDropdown/VvDropdown.vue.d.ts +15 -1
  16. package/dist/components/VvInputText/VvInputText.vue.d.ts +4 -4
  17. package/dist/components/VvNav/VvNav.vue.d.ts +4 -4
  18. package/dist/components/VvRadio/VvRadio.vue.d.ts +4 -4
  19. package/dist/components/VvRadioGroup/VvRadioGroup.vue.d.ts +4 -4
  20. package/dist/components/VvSelect/VvSelect.vue.d.ts +4 -4
  21. package/dist/components/VvTab/VvTab.vue.d.ts +4 -4
  22. package/dist/components/VvTextarea/VvTextarea.vue.d.ts +4 -4
  23. package/dist/components/index.es.js +8 -4
  24. package/dist/components/index.umd.js +1 -1
  25. package/dist/icons.es.js +3 -3
  26. package/dist/icons.umd.js +1 -1
  27. package/dist/stories/AccordionGroup/AccordionGroup.stories.d.ts +46 -11
  28. package/dist/stories/AccordionGroup/AccordionGroupSlots.stories.d.ts +308 -59
  29. package/dist/stories/Combobox/Combobox.settings.d.ts +8 -0
  30. package/dist/stories/Tab/Tab.settings.d.ts +2 -15
  31. package/package.json +25 -25
  32. package/src/assets/icons/detailed.json +1 -1
  33. package/src/assets/icons/normal.json +1 -1
  34. package/src/assets/icons/simple.json +1 -1
  35. package/src/components/VvCombobox/VvCombobox.vue +7 -3
  36. package/src/components/VvCombobox/index.ts +4 -0
  37. package/src/stories/Combobox/Combobox.settings.ts +8 -0
  38. package/src/stories/Tab/Tab.settings.ts +2 -2
@@ -87,9 +87,13 @@
87
87
  searchText,
88
88
  computed(() => Number(props.debounceSearch)),
89
89
  )
90
- watch(debouncedSearchText, () =>
91
- emit('change:search', debouncedSearchText.value),
92
- )
90
+ watch(debouncedSearchText, () => {
91
+ emit('update:search', debouncedSearchText.value)
92
+ /**
93
+ * @deprecated change:search should not be used, use update:search instead
94
+ */
95
+ emit('change:search', debouncedSearchText.value)
96
+ })
93
97
 
94
98
  // expanded
95
99
  const expanded = ref(false)
@@ -20,6 +20,10 @@ import type { Option } from '../../types/generic'
20
20
 
21
21
  export const VvComboboxEvents = [
22
22
  'update:modelValue',
23
+ 'update:search',
24
+ /**
25
+ * @deprecated change:search should not be used, use update:search instead
26
+ */
23
27
  'change:search',
24
28
  'focus',
25
29
  'blur',
@@ -392,4 +392,12 @@ export const argTypes = {
392
392
  },
393
393
  },
394
394
  },
395
+ 'update:search': {
396
+ table: {
397
+ category: 'Events',
398
+ type: {
399
+ summary: 'string',
400
+ },
401
+ },
402
+ },
395
403
  }
@@ -1,4 +1,4 @@
1
- import type { Meta } from '@storybook/vue3'
1
+ import type { ArgTypes, Meta } from '@storybook/vue3'
2
2
  import type { VvTab } from '@/components'
3
3
  import { VvTabProps } from '@/components/VvTab'
4
4
 
@@ -25,7 +25,7 @@ export const defaultArgs: Meta<typeof VvTab>['args'] = {
25
25
  ],
26
26
  }
27
27
 
28
- export const defaultArgTypes = {
28
+ export const defaultArgTypes: ArgTypes = {
29
29
  tabId: {
30
30
  description: 'Slot by tab-id',
31
31
  control: {