@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.
- package/CHANGELOG.md +34 -2
- package/dist/carbon-vue.common.js +533 -297
- package/dist/carbon-vue.common.js.map +1 -1
- package/dist/carbon-vue.umd.js +533 -297
- package/dist/carbon-vue.umd.js.map +1 -1
- package/dist/carbon-vue.umd.min.js +4 -4
- package/dist/carbon-vue.umd.min.js.map +1 -1
- package/package.json +3 -3
- package/src/assets/images/example-icon-svg.js +10 -0
- package/src/assets/images/example-icon.svg +6 -0
- package/src/components/cv-accordion/_cv-accordion-item-skeleton.vue +16 -5
- package/src/components/cv-accordion/cv-accordion-item.vue +12 -15
- package/src/components/cv-accordion/cv-accordion-skeleton.vue +3 -1
- package/src/components/cv-accordion/cv-accordion.vue +4 -1
- package/src/components/cv-breadcrumb/_cv-breadcrumb-item-skeleton.vue +4 -2
- package/src/components/cv-breadcrumb/cv-breadcrumb-item.vue +10 -5
- package/src/components/cv-breadcrumb/cv-breadcrumb-skeleton.vue +3 -1
- package/src/components/cv-breadcrumb/cv-breadcrumb.vue +12 -5
- package/src/components/cv-button/cv-button.vue +3 -4
- package/src/components/cv-button/cv-icon-button.vue +3 -4
- package/src/components/cv-checkbox/cv-checkbox-skeleton.vue +4 -2
- package/src/components/cv-checkbox/cv-checkbox.vue +32 -11
- package/src/components/cv-code-snippet/_cv-code-snippet-inline.vue +1 -1
- package/src/components/cv-code-snippet/_cv-code-snippet-multiline.vue +1 -1
- package/src/components/cv-code-snippet/_cv-code-snippet-oneline.vue +1 -1
- package/src/components/cv-combo-box/cv-combo-box.vue +18 -7
- package/src/components/cv-content-switcher/cv-content-switcher-button.vue +4 -5
- package/src/components/cv-data-table/_cv-data-table-row-inner.vue +10 -2
- package/src/components/cv-data-table/cv-data-table.vue +1 -1
- package/src/components/cv-dropdown/cv-dropdown.vue +23 -8
- package/src/components/{cv-code-snippet → cv-feedback-button}/_cv-feedback-button.vue +2 -0
- package/src/components/cv-form/cv-form.vue +1 -1
- package/src/components/cv-inline-loading/cv-inline-loading.vue +20 -14
- package/src/components/cv-link/cv-link.vue +12 -8
- package/src/components/cv-multi-select/cv-multi-select.vue +2 -2
- package/src/components/cv-number-input/cv-number-input-skeleton.vue +5 -3
- package/src/components/cv-number-input/cv-number-input.vue +32 -23
- package/src/components/cv-overflow-menu/cv-overflow-menu.vue +1 -1
- package/src/components/cv-svg/_cv-svg.vue +41 -0
- package/src/components/cv-tabs/cv-tab.vue +1 -1
- package/src/components/cv-tabs/cv-tabs.vue +1 -1
- package/src/components/cv-tag/cv-tag.vue +7 -1
- package/src/components/cv-text-area/cv-text-area.vue +6 -0
- package/src/components/cv-text-input/cv-text-input.vue +5 -0
- package/src/components/cv-tooltip/cv-interactive-tooltip.vue +1 -1
- package/src/components/cv-ui-shell/cv-header-global-action.vue +1 -1
- package/src/components/cv-ui-shell/cv-header-menu-button.vue +1 -1
- package/src/components/cv-ui-shell/cv-header-panel.vue +1 -1
- 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
|
-
-
|
|
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
|
|