@carbon/vue 2.27.0-canary.0 → 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 (49) hide show
  1. package/CHANGELOG.md +34 -2
  2. package/dist/carbon-vue.common.js +533 -297
  3. package/dist/carbon-vue.common.js.map +1 -1
  4. package/dist/carbon-vue.umd.js +533 -297
  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 +3 -3
  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-skeleton.vue +16 -5
  12. package/src/components/cv-accordion/cv-accordion-item.vue +12 -15
  13. package/src/components/cv-accordion/cv-accordion-skeleton.vue +3 -1
  14. package/src/components/cv-accordion/cv-accordion.vue +4 -1
  15. package/src/components/cv-breadcrumb/_cv-breadcrumb-item-skeleton.vue +4 -2
  16. package/src/components/cv-breadcrumb/cv-breadcrumb-item.vue +10 -5
  17. package/src/components/cv-breadcrumb/cv-breadcrumb-skeleton.vue +3 -1
  18. package/src/components/cv-breadcrumb/cv-breadcrumb.vue +12 -5
  19. package/src/components/cv-button/cv-button.vue +3 -4
  20. package/src/components/cv-button/cv-icon-button.vue +3 -4
  21. package/src/components/cv-checkbox/cv-checkbox-skeleton.vue +4 -2
  22. package/src/components/cv-checkbox/cv-checkbox.vue +32 -11
  23. package/src/components/cv-code-snippet/_cv-code-snippet-inline.vue +1 -1
  24. package/src/components/cv-code-snippet/_cv-code-snippet-multiline.vue +1 -1
  25. package/src/components/cv-code-snippet/_cv-code-snippet-oneline.vue +1 -1
  26. package/src/components/cv-combo-box/cv-combo-box.vue +18 -7
  27. package/src/components/cv-content-switcher/cv-content-switcher-button.vue +4 -5
  28. package/src/components/cv-data-table/_cv-data-table-row-inner.vue +10 -2
  29. package/src/components/cv-data-table/cv-data-table.vue +1 -1
  30. package/src/components/cv-dropdown/cv-dropdown.vue +23 -8
  31. package/src/components/{cv-code-snippet → cv-feedback-button}/_cv-feedback-button.vue +2 -0
  32. package/src/components/cv-form/cv-form.vue +1 -1
  33. package/src/components/cv-inline-loading/cv-inline-loading.vue +20 -14
  34. package/src/components/cv-link/cv-link.vue +12 -8
  35. package/src/components/cv-multi-select/cv-multi-select.vue +2 -2
  36. package/src/components/cv-number-input/cv-number-input-skeleton.vue +5 -3
  37. package/src/components/cv-number-input/cv-number-input.vue +32 -23
  38. package/src/components/cv-overflow-menu/cv-overflow-menu.vue +1 -1
  39. package/src/components/cv-svg/_cv-svg.vue +41 -0
  40. package/src/components/cv-tabs/cv-tab.vue +1 -1
  41. package/src/components/cv-tabs/cv-tabs.vue +1 -1
  42. package/src/components/cv-tag/cv-tag.vue +7 -1
  43. package/src/components/cv-text-area/cv-text-area.vue +6 -0
  44. package/src/components/cv-text-input/cv-text-input.vue +5 -0
  45. package/src/components/cv-tooltip/cv-interactive-tooltip.vue +1 -1
  46. package/src/components/cv-ui-shell/cv-header-global-action.vue +1 -1
  47. package/src/components/cv-ui-shell/cv-header-menu-button.vue +1 -1
  48. package/src/components/cv-ui-shell/cv-header-panel.vue +1 -1
  49. package/src/components/cv-ui-shell/cv-side-nav.vue +1 -1
package/CHANGELOG.md CHANGED
@@ -1,4 +1,34 @@
1
- # Changelog
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
+
11
+ # Changelog 2.27.1
12
+
13
+ - fix: lower node requirement to 10
14
+ - chore: make accordion class prefix use carbon prefix
15
+
16
+ # Changelog 2.27.0
17
+
18
+ Release previuos canarys
19
+
20
+ # Changelog 2.27.0-canary-2
21
+
22
+ - chore: fix aria label on template view
23
+ - fix: table skeleton appearance
24
+ - fix: dropdown aria warning with no label
25
+ - feat: add table oveflow options
26
+
27
+ ## 2.27.0-canary.1
28
+
29
+ - Fix combobox disable to fully disable
30
+ - Fix dropdown disable to fully disable
31
+ - Fix tag filter disable to fully disable
2
32
 
3
33
  ## 2.27.0-canary.0
4
34
 
@@ -7,7 +37,9 @@
7
37
 
8
38
  ## 2.26.0
9
39
 
10
- - Some animation fixes
40
+ - Fix animation issues in data table and accordion
41
+ - Fix combo box expansion.
42
+ - Release slotted header updates
11
43
 
12
44
  ## 2.26.0-canary.0
13
45