@carbon/vue 2.27.1 → 2.28.0

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 (39) hide show
  1. package/CHANGELOG.md +10 -0
  2. package/dist/carbon-vue.common.js +332 -154
  3. package/dist/carbon-vue.common.js.map +1 -1
  4. package/dist/carbon-vue.umd.js +332 -154
  5. package/dist/carbon-vue.umd.js.map +1 -1
  6. package/dist/carbon-vue.umd.min.js +4 -4
  7. package/dist/carbon-vue.umd.min.js.map +1 -1
  8. package/package.json +2 -2
  9. package/src/assets/images/example-icon-svg.js +10 -0
  10. package/src/assets/images/example-icon.svg +6 -0
  11. package/src/components/cv-accordion/cv-accordion-item.vue +1 -1
  12. package/src/components/cv-breadcrumb/_cv-breadcrumb-item-skeleton.vue +4 -2
  13. package/src/components/cv-breadcrumb/cv-breadcrumb-item.vue +10 -5
  14. package/src/components/cv-breadcrumb/cv-breadcrumb-skeleton.vue +3 -1
  15. package/src/components/cv-breadcrumb/cv-breadcrumb.vue +12 -5
  16. package/src/components/cv-button/cv-button.vue +3 -4
  17. package/src/components/cv-button/cv-icon-button.vue +3 -4
  18. package/src/components/cv-checkbox/cv-checkbox-skeleton.vue +4 -2
  19. package/src/components/cv-checkbox/cv-checkbox.vue +32 -11
  20. package/src/components/cv-combo-box/cv-combo-box.vue +3 -3
  21. package/src/components/cv-content-switcher/cv-content-switcher-button.vue +4 -5
  22. package/src/components/cv-dropdown/cv-dropdown.vue +10 -4
  23. package/src/components/cv-form/cv-form.vue +1 -1
  24. package/src/components/cv-inline-loading/cv-inline-loading.vue +20 -14
  25. package/src/components/cv-link/cv-link.vue +12 -8
  26. package/src/components/cv-multi-select/cv-multi-select.vue +2 -2
  27. package/src/components/cv-number-input/cv-number-input-skeleton.vue +5 -3
  28. package/src/components/cv-number-input/cv-number-input.vue +32 -23
  29. package/src/components/cv-overflow-menu/cv-overflow-menu.vue +1 -1
  30. package/src/components/cv-svg/_cv-svg.vue +41 -0
  31. package/src/components/cv-tabs/cv-tab.vue +1 -1
  32. package/src/components/cv-tabs/cv-tabs.vue +1 -1
  33. package/src/components/cv-text-area/cv-text-area.vue +6 -0
  34. package/src/components/cv-text-input/cv-text-input.vue +5 -0
  35. package/src/components/cv-tooltip/cv-interactive-tooltip.vue +1 -1
  36. package/src/components/cv-ui-shell/cv-header-global-action.vue +1 -1
  37. package/src/components/cv-ui-shell/cv-header-menu-button.vue +1 -1
  38. package/src/components/cv-ui-shell/cv-header-panel.vue +1 -1
  39. package/src/components/cv-ui-shell/cv-side-nav.vue +1 -1
package/CHANGELOG.md CHANGED
@@ -1,3 +1,13 @@
1
+ # Changelog 2.28.0
2
+
3
+ - chore: added carbonPrefix to inline-loading, link, number input, breadcrumb and checkbox
4
+ - fix: combobox typoe v-bind="$attr" -> v-bind="$attrs"
5
+ - fix: add \$listeners to CvForm to allow @submit
6
+ - fix: return focus on dropdown to dropdown component after item click
7
+ - feat: add focus methods to CvDropdown, CvTextInput, CvTextArea
8
+ - fix: improvve SVG icon support in buttons, now possible to specify component (e.g. @carbon/icons-vue), SVG path, SVG symbol path or raw SVG. NOTE: Until SVG2 using SVG path does not style.
9
+ - fix: aria-hidden, aria-selected and aria-expanded false values. These do not default to false on undefined. Instead undefined means not applicable, false as a result implies true is possible.
10
+
1
11
  # Changelog 2.27.1
2
12
 
3
13
  - fix: lower node requirement to 10