@carbon/vue 2.42.0 → 2.44.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.
Files changed (54) hide show
  1. package/README.md +24 -2
  2. package/dist/carbon-vue.common.js +1103 -1007
  3. package/dist/carbon-vue.common.js.map +1 -1
  4. package/dist/carbon-vue.umd.js +1103 -1007
  5. package/dist/carbon-vue.umd.js.map +1 -1
  6. package/dist/carbon-vue.umd.min.js +3 -3
  7. package/dist/carbon-vue.umd.min.js.map +1 -1
  8. package/package.json +5 -5
  9. package/src/carbon.yml +388 -0
  10. package/src/components/cv-accordion/cv-accordion-skeleton.vue +1 -1
  11. package/src/components/cv-accordion/cv-accordion.vue +1 -1
  12. package/src/components/cv-aspect-ratio/cv-aspect-ratio.vue +3 -2
  13. package/src/components/cv-aspect-ratio/index.js +2 -2
  14. package/src/components/cv-breadcrumb/cv-breadcrumb-skeleton.vue +8 -1
  15. package/src/components/cv-button/button-mixin.js +7 -4
  16. package/src/components/cv-button/consts.js +14 -0
  17. package/src/components/cv-button/cv-icon-button.vue +2 -2
  18. package/src/components/cv-checkbox/cv-checkbox.vue +0 -1
  19. package/src/components/cv-code-snippet/_cv-code-snippet-inline.vue +2 -1
  20. package/src/components/cv-code-snippet/_cv-code-snippet-multiline.vue +2 -1
  21. package/src/components/cv-code-snippet/_cv-code-snippet-oneline.vue +2 -1
  22. package/src/components/cv-code-snippet/cv-code-snippet-skeleton.vue +1 -1
  23. package/src/components/cv-code-snippet/cv-code-snippet.vue +2 -1
  24. package/src/components/cv-data-table/cv-data-table-heading.vue +1 -1
  25. package/src/components/cv-data-table/cv-data-table-skeleton.vue +1 -2
  26. package/src/components/cv-data-table/cv-data-table.vue +45 -43
  27. package/src/components/cv-date-picker/plugins/monthSelectPlugin.js +1 -1
  28. package/src/components/cv-feedback-button/_cv-feedback-button.vue +1 -1
  29. package/src/components/cv-file-uploader/cv-file-uploader.vue +22 -12
  30. package/src/components/cv-inline-loading/cv-inline-loading.vue +1 -0
  31. package/src/components/cv-link/cv-link.vue +8 -1
  32. package/src/components/cv-loading/cv-loading.vue +4 -1
  33. package/src/components/cv-modal/cv-modal.vue +4 -3
  34. package/src/components/cv-multi-select/cv-multi-select.vue +9 -2
  35. package/src/components/cv-number-input/cv-number-input.vue +39 -31
  36. package/src/components/cv-overflow-menu/cv-overflow-menu.vue +3 -3
  37. package/src/components/cv-search/cv-search.vue +30 -14
  38. package/src/components/cv-slider/cv-slider.vue +1 -0
  39. package/src/components/cv-tabs/cv-tabs-skeleton.vue +7 -19
  40. package/src/components/cv-tabs/cv-tabs.vue +0 -2
  41. package/src/components/cv-tag/cv-tag-skeleton.vue +1 -3
  42. package/src/components/cv-tag/cv-tag.vue +6 -7
  43. package/src/components/cv-tag/index.js +3 -2
  44. package/src/components/cv-tile/_cv-tile-selectable.vue +0 -1
  45. package/src/components/cv-toggle/cv-toggle.vue +0 -1
  46. package/src/components/cv-tooltip/consts.js +2 -0
  47. package/src/components/cv-tooltip/cv-definition-tooltip.vue +5 -5
  48. package/src/components/cv-tooltip/cv-interactive-tooltip.vue +7 -7
  49. package/src/components/cv-tooltip/cv-tooltip.vue +5 -5
  50. package/src/components/cv-tooltip/index.js +1 -0
  51. package/src/components/cv-ui-shell/cv-header-global-action.vue +1 -1
  52. package/src/thumbnails/inline-notification.svg +23 -0
  53. package/src/thumbnails/skeleton-text.svg +15 -0
  54. package/src/thumbnails/toast-notification.svg +34 -0
package/README.md CHANGED
@@ -1,7 +1,19 @@
1
1
  # carbon-components-vue
2
2
 
3
- [![Carbon Components Vue is released under the Apache-2.0 license](https://img.shields.io/badge/license-Apache--2.0-blue.svg)](./LICENSE)
4
- [![CircleCI](https://circleci.com/gh/carbon-design-system/carbon-components-vue.svg?style=shield)](https://circleci.com/gh/carbon-design-system/carbon-components-vue)
3
+ <p align="center">
4
+ <a href="https://github.com/carbon-design-system/carbon/blob/master/LICENSE">
5
+ <img src="https://img.shields.io/badge/license-Apache--2.0-blue.svg" alt="Carbon is released under the Apache-2.0 license" />
6
+ </a>
7
+ <a href="https://github.com/carbon-design-system/carbon/actions/workflows/ci.yml">
8
+ <img src="https://github.com/carbon-design-system/carbon/actions/workflows/ci.yml/badge.svg" alt="CI workflow status" />
9
+ </a>
10
+ <a href="https://lerna.js.org/">
11
+ <img src="https://img.shields.io/badge/maintained%20with-lerna-cc00ff.svg" alt="Maintained with Lerna" />
12
+ </a>
13
+ <a href="https://github.com/carbon-design-system/carbon/blob/master/.github/CONTRIBUTING.md">
14
+ <img src="https://img.shields.io/badge/PRs-welcome-brightgreen.svg" alt="PRs welcome" />
15
+ </a>
16
+ </p>
5
17
 
6
18
  > Vue implementation of the Carbon Design System
7
19
  > A collection of [Carbon Components](https://github.com/carbon-design-system/carbon-components) implemented using <img src="https://vuejs.org/images/logo.png" width="20" alt="Vue logo"> [Vue.js](https://vuejs.org/).
@@ -36,6 +48,16 @@ Please refer to the [Contribution Guidelines](../../.github/CONTRIBUTING.md) bef
36
48
 
37
49
  Fork this repository, create a new branch, and submit a pull request to this repository. The PR will be used as part of a review process.
38
50
 
51
+ NOTE: PR titles need to conform to sematic versioning pattern described <https://github.com/amannn/action-semantic-pull-request>
52
+
53
+ e.g.
54
+ Examples for valid PR titles:
55
+
56
+ - fix: Correct typo.
57
+ - feat: Add support for Node 12.
58
+ - refactor!: Drop support for Node 6.
59
+ - feat(ui): Add Button component.
60
+
39
61
  ## Usage
40
62
 
41
63
  ### General