@carbon/vue 2.44.2 → 2.45.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/dist/carbon-vue.common.js +1079 -4146
- package/dist/carbon-vue.common.js.map +1 -1
- package/dist/carbon-vue.umd.js +1079 -4146
- 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 +12 -8
- package/src/components/cv-combo-box/cv-combo-box.vue +1 -1
- package/src/components/cv-data-table/cv-data-table.vue +1 -1
- package/src/components/cv-overflow-menu/cv-overflow-menu.vue +2 -0
- package/src/components/cv-tabs/cv-tabs.vue +1 -0
- package/src/components/cv-tag/cv-tag.vue +1 -0
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@carbon/vue",
|
|
3
3
|
"description": "A collection of components for the Carbon Design System built using Vue.js",
|
|
4
|
-
"version": "2.
|
|
4
|
+
"version": "2.45.0",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
@@ -57,23 +57,27 @@
|
|
|
57
57
|
"scripts": {
|
|
58
58
|
"build": "vue-cli-service build --target lib --name carbon-vue ./src/index.js --no-clean",
|
|
59
59
|
"clean": "rimraf dist node_modules/.cache",
|
|
60
|
-
"postinstall": "carbon-telemetry collect --install"
|
|
60
|
+
"postinstall": "carbon-telemetry collect --install",
|
|
61
|
+
"upgrade:dependencies": "run-s -s 'upgrade:dependencies:*'",
|
|
62
|
+
"upgrade:dependencies:carbon": "npm-check-updates -u --dep dev,peer,prod --filter '/carbon/' --target minor",
|
|
63
|
+
"upgrade:dependencies:other": "npm-check-updates -u --dep dev,peer,prod --color --reject '/(carbon|^vue$|^@vue)/'",
|
|
64
|
+
"upgrade:dependencies:yarn": "yarn set version latest"
|
|
61
65
|
},
|
|
62
66
|
"engines": {
|
|
63
67
|
"node": ">=10.x"
|
|
64
68
|
},
|
|
65
69
|
"sideEffects": true,
|
|
66
70
|
"dependencies": {
|
|
67
|
-
"@carbon/icons-vue": "10.
|
|
71
|
+
"@carbon/icons-vue": "10.63.0",
|
|
68
72
|
"@carbon/telemetry": "^0.1.0",
|
|
69
|
-
"carbon-components": "10.58.
|
|
73
|
+
"carbon-components": "10.58.5",
|
|
70
74
|
"flatpickr": "4.6.13",
|
|
71
75
|
"vue": "^2.7.10"
|
|
72
76
|
},
|
|
73
77
|
"devDependencies": {
|
|
74
|
-
"@vue/cli-service": "
|
|
75
|
-
"eslint-plugin-prettier": "^
|
|
76
|
-
"vue-template-compiler": "^2.7.
|
|
78
|
+
"@vue/cli-service": "~4.5.19",
|
|
79
|
+
"eslint-plugin-prettier": "^4.2.1",
|
|
80
|
+
"vue-template-compiler": "^2.7.14"
|
|
77
81
|
},
|
|
78
|
-
"gitHead": "
|
|
82
|
+
"gitHead": "46ff5b12ef6af76bf521bef0ceaa6ab7dcc181fb"
|
|
79
83
|
}
|
|
@@ -182,7 +182,7 @@ export default {
|
|
|
182
182
|
this.updateOptions();
|
|
183
183
|
},
|
|
184
184
|
mounted() {
|
|
185
|
-
this.
|
|
185
|
+
this.internalUpdateValue(this.value);
|
|
186
186
|
this.highlighted = this.value ? this.value : this.highlight; // override highlight with value if provided
|
|
187
187
|
this.checkSlots();
|
|
188
188
|
},
|
|
@@ -15,6 +15,7 @@
|
|
|
15
15
|
:aria-expanded="open ? 'true' : 'false'"
|
|
16
16
|
:aria-controls="`${uid}-menu`"
|
|
17
17
|
:aria-labelledby="`${uid}`"
|
|
18
|
+
:aria-label="ariaLabel"
|
|
18
19
|
:id="`${uid}-trigger`"
|
|
19
20
|
ref="trigger"
|
|
20
21
|
@click="doToggle"
|
|
@@ -76,6 +77,7 @@ export default {
|
|
|
76
77
|
mixins: [uidMixin, carbonPrefixMixin, methodsMixin({ trigger: ['blur', 'focus'] })],
|
|
77
78
|
props: {
|
|
78
79
|
label: String,
|
|
80
|
+
ariaLabel: String,
|
|
79
81
|
flipMenu: Boolean,
|
|
80
82
|
up: Boolean,
|
|
81
83
|
offset: {
|