@carbon/vue 2.35.0 → 2.37.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 +26 -0
- package/dist/carbon-vue.common.js +175 -141
- package/dist/carbon-vue.common.js.map +1 -1
- package/dist/carbon-vue.umd.js +175 -141
- 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 +5 -3
- package/src/components/cv-data-table/cv-data-table.vue +10 -2
- package/src/components/cv-date-picker/cv-date-picker.vue +1 -1
- package/src/components/cv-modal/cv-modal.vue +6 -3
- package/src/components/cv-multi-select/cv-multi-select.vue +1 -1
- package/src/components/cv-tabs/cv-tabs.vue +9 -1
- package/src/components/cv-tooltip/cv-definition-tooltip.vue +1 -1
- package/src/components/cv-tooltip/cv-interactive-tooltip.vue +7 -0
- package/src/components/cv-ui-shell/cv-side-nav-link.vue +10 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,31 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 2.37.1
|
|
4
|
+
|
|
5
|
+
chore: documentation correction for CvDataTable
|
|
6
|
+
chore: added Carbon Telemetry
|
|
7
|
+
|
|
8
|
+
## 2.37.0
|
|
9
|
+
|
|
10
|
+
fix: CvDatePicker use of range plugin
|
|
11
|
+
fix: CvMultiSelect hiding first option alternately on expand
|
|
12
|
+
feat: add show and hide events to CvTooltip
|
|
13
|
+
|
|
14
|
+
## 2.36.0
|
|
15
|
+
|
|
16
|
+
fix: use check slot patter in side nav
|
|
17
|
+
fix: cv-tabs fail during focus event
|
|
18
|
+
fix cv-data-table listener called after navigation
|
|
19
|
+
chore: update dependency
|
|
20
|
+
|
|
21
|
+
## 2.36.0-canary.0
|
|
22
|
+
|
|
23
|
+
fix: transition end after modal hidden
|
|
24
|
+
feat: add left right to tooltip direction
|
|
25
|
+
fix: data table listener called after navigation
|
|
26
|
+
fix: tab listener when called after nav
|
|
27
|
+
fix: use check slot pattern for side nav icons
|
|
28
|
+
|
|
3
29
|
## 2.35.0
|
|
4
30
|
|
|
5
31
|
feat: 10 23 1 update (#1058) - adds numerous minor changes to bring the library up to Carbon v10.23.1
|