@carbon/vue 2.38.0 → 2.40.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 +21 -0
- package/dist/carbon-vue.common.js +213 -165
- package/dist/carbon-vue.common.js.map +1 -1
- package/dist/carbon-vue.umd.js +213 -165
- 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 +2 -2
- package/src/components/cv-data-table/cv-data-table.vue +81 -72
- package/src/components/cv-file-uploader/cv-file-uploader.vue +57 -24
- package/src/components/cv-inline-notification/cv-inline-notification.vue +2 -0
- package/src/components/cv-modal/cv-modal.vue +2 -2
- package/src/components/cv-progress/cv-progress-step.vue +1 -0
- package/src/components/cv-progress/cv-progress.vue +1 -0
- package/src/components/cv-toast-notification/cv-toast-notification.vue +2 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,26 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 2.40.0
|
|
4
|
+
|
|
5
|
+
feat: CvFileUploader mark dropped files of the wrong type as invalid
|
|
6
|
+
feat: CvInlineNotification add ability to hide close button
|
|
7
|
+
feat: CvToastNotification add ability to hide close button
|
|
8
|
+
|
|
9
|
+
## 2.39.0
|
|
10
|
+
|
|
11
|
+
feat: emit event on progress step click
|
|
12
|
+
feat: emit event on data table row expand
|
|
13
|
+
feat: add sticky header option to data table
|
|
14
|
+
feat: add static width option to data table
|
|
15
|
+
|
|
16
|
+
## 2.38.2
|
|
17
|
+
|
|
18
|
+
fix: modal primary button and storybook usage.
|
|
19
|
+
|
|
20
|
+
## 2.38.1
|
|
21
|
+
|
|
22
|
+
fix: correct secondary button on modal to raise a 'secondary-click'
|
|
23
|
+
|
|
3
24
|
## 2.38.0
|
|
4
25
|
|
|
5
26
|
chore: promote canary release
|