@carbon/vue 2.16.0 → 2.17.1
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 +25 -0
- package/dist/carbon-vue.common.js +244 -175
- package/dist/carbon-vue.common.js.map +1 -1
- package/dist/carbon-vue.umd.js +244 -175
- package/dist/carbon-vue.umd.js.map +1 -1
- package/dist/carbon-vue.umd.min.js +2 -2
- package/dist/carbon-vue.umd.min.js.map +1 -1
- package/package.json +3 -3
- package/src/components/cv-dropdown/cv-dropdown.vue +25 -13
- package/src/components/cv-inline-notification/cv-inline-notification.vue +9 -0
- package/src/components/cv-loading/cv-loading.vue +5 -2
- package/src/components/cv-multi-select/cv-multi-select.vue +11 -5
- package/src/components/cv-overflow-menu/cv-overflow-menu.vue +1 -1
- package/src/components/cv-tabs/cv-tabs.vue +70 -38
- package/src/components/cv-tag/cv-tag.vue +9 -2
- package/src/components/cv-tag/__snapshots__/cv-tag.test.js.snap +0 -13
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,30 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 2.17.1 (Nov 6th 2019)
|
|
4
|
+
|
|
5
|
+
### Fix
|
|
6
|
+
|
|
7
|
+
- CvTabs not closing lower indexed tabs
|
|
8
|
+
|
|
9
|
+
## 2.17.0 (Nov 4th 2019)
|
|
10
|
+
|
|
11
|
+
### Feat
|
|
12
|
+
|
|
13
|
+
- Tests added or updated for
|
|
14
|
+
- CvAccordion
|
|
15
|
+
- CvWrapper
|
|
16
|
+
- CvCheckbox
|
|
17
|
+
- CvToggle
|
|
18
|
+
- CvTag
|
|
19
|
+
- CvRadioButton
|
|
20
|
+
- CvTabs
|
|
21
|
+
- Updated CvTabs behaviour when tab list is dynamic
|
|
22
|
+
|
|
23
|
+
### Fix
|
|
24
|
+
|
|
25
|
+
- Dropdown workingn when disabled
|
|
26
|
+
- Overflow not closing on button click
|
|
27
|
+
|
|
3
28
|
## 2.16.0 (Oct 28th 2019)
|
|
4
29
|
|
|
5
30
|
### Feat
|