@carbon/vue 2.6.0 → 2.8.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 +33 -0
- package/dist/carbon-vue.common.js +676 -158
- package/dist/carbon-vue.common.js.map +1 -1
- package/dist/carbon-vue.umd.js +676 -158
- package/dist/carbon-vue.umd.js.map +1 -1
- package/dist/carbon-vue.umd.min.js +3 -3
- package/dist/carbon-vue.umd.min.js.map +1 -1
- package/package.json +4 -4
- package/src/components/cv-checkbox/cv-checkbox.vue +2 -1
- package/src/components/cv-data-table/cv-data-table.vue +5 -2
- package/src/components/cv-dropdown/cv-dropdown.vue +2 -5
- package/src/components/cv-multi-select/cv-multi-select.vue +290 -0
- package/src/components/cv-pagination/cv-pagination.vue +26 -9
- package/src/components/cv-tag/cv-tag.vue +2 -2
- package/src/components/cv-text-input/cv-text-input.vue +12 -21
- package/src/components/cv-ui-shell/cv-header-menu-button.vue +3 -3
- package/src/components/cv-ui-shell/cv-side-nav-menu.vue +8 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,36 @@
|
|
|
1
|
+
## 2.8.0 (June 27, 2019)
|
|
2
|
+
|
|
3
|
+
### Feat
|
|
4
|
+
|
|
5
|
+
- Added scoped slots to table for constructed string.
|
|
6
|
+
|
|
7
|
+
## 2.7.0 (June 27, 2019)
|
|
8
|
+
|
|
9
|
+
### Feat
|
|
10
|
+
|
|
11
|
+
- Add multi select dropdown (without filter)
|
|
12
|
+
- Added scoped slots to pagination for constructed strings.
|
|
13
|
+
|
|
14
|
+
## 2.6.2 (June 24, 2019)
|
|
15
|
+
|
|
16
|
+
### Fixes
|
|
17
|
+
|
|
18
|
+
- Removed side nav sub menu close on focusout
|
|
19
|
+
- Removed spurious \ in header menu button
|
|
20
|
+
- Fixed active menu button status
|
|
21
|
+
- Temp CSS fix for Safari not moving following side nav chevrons on expand.
|
|
22
|
+
|
|
23
|
+
## 2.6.1 (June 21, 2019)
|
|
24
|
+
|
|
25
|
+
### Fixes
|
|
26
|
+
|
|
27
|
+
- Add page to pagination change event
|
|
28
|
+
- Fix text input password layout.
|
|
29
|
+
|
|
30
|
+
### Chores
|
|
31
|
+
|
|
32
|
+
- Update dependencies
|
|
33
|
+
|
|
1
34
|
## 2.6.0 (June 19, 2019)
|
|
2
35
|
|
|
3
36
|
### Features
|