@carbon/vue 2.40.0 → 2.43.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/README.md +24 -2
- package/dist/carbon-vue.common.js +922 -817
- package/dist/carbon-vue.common.js.map +1 -1
- package/dist/carbon-vue.umd.js +922 -817
- 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 +7 -7
- package/src/components/cv-accordion/cv-accordion-skeleton.vue +1 -1
- package/src/components/cv-accordion/cv-accordion.vue +1 -1
- package/src/components/cv-aspect-ratio/cv-aspect-ratio.vue +3 -2
- package/src/components/cv-aspect-ratio/index.js +2 -2
- package/src/components/cv-breadcrumb/cv-breadcrumb-skeleton.vue +8 -1
- package/src/components/cv-button/button-mixin.js +7 -4
- package/src/components/cv-button/consts.js +14 -0
- package/src/components/cv-button/cv-icon-button.vue +1 -1
- package/src/components/cv-code-snippet/cv-code-snippet-skeleton.vue +1 -1
- package/src/components/cv-code-snippet/cv-code-snippet.vue +1 -1
- package/src/components/cv-data-table/cv-data-table-heading.vue +1 -1
- package/src/components/cv-data-table/cv-data-table-skeleton.vue +1 -2
- package/src/components/cv-data-table/cv-data-table.vue +47 -44
- package/src/components/cv-date-picker/cv-date-picker.vue +11 -10
- package/src/components/cv-feedback-button/_cv-feedback-button.vue +1 -1
- package/src/components/cv-file-uploader/cv-file-uploader.vue +22 -12
- package/src/components/cv-inline-loading/cv-inline-loading.vue +1 -0
- package/src/components/cv-link/cv-link.vue +8 -1
- package/src/components/cv-loading/cv-loading.vue +4 -1
- package/src/components/cv-multi-select/cv-multi-select.vue +17 -11
- package/src/components/cv-number-input/cv-number-input.vue +38 -30
- package/src/components/cv-overflow-menu/cv-overflow-menu.vue +3 -3
- package/src/components/cv-search/cv-search.vue +17 -13
- package/src/components/cv-tabs/cv-tabs-skeleton.vue +7 -19
- package/src/components/cv-tabs/cv-tabs.vue +1 -1
- package/src/components/cv-tag/cv-tag-skeleton.vue +1 -3
- package/src/components/cv-tag/cv-tag.vue +6 -7
- package/src/components/cv-tag/index.js +3 -2
- package/src/components/cv-tile/_cv-tile-selectable.vue +0 -1
- package/src/components/cv-toast-notification/cv-toast-notification.vue +1 -1
- package/src/components/cv-tooltip/consts.js +2 -0
- package/src/components/cv-tooltip/cv-definition-tooltip.vue +5 -5
- package/src/components/cv-tooltip/cv-interactive-tooltip.vue +7 -7
- package/src/components/cv-tooltip/cv-tooltip.vue +5 -5
- package/src/components/cv-tooltip/index.js +1 -0
- package/src/components/cv-ui-shell/cv-header-global-action.vue +1 -1
- package/CHANGELOG.md +0 -1197
package/README.md
CHANGED
|
@@ -1,7 +1,19 @@
|
|
|
1
1
|
# carbon-components-vue
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
|
|
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
|