@carbon/vue 3.0.17 → 3.0.18
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-3.common.js +1 -0
- package/dist/carbon-vue-3.common.js.map +1 -1
- package/dist/carbon-vue-3.umd.js +1 -0
- package/dist/carbon-vue-3.umd.js.map +1 -1
- package/dist/carbon-vue-3.umd.min.js +1 -1
- package/dist/carbon-vue-3.umd.min.js.map +1 -1
- package/dist/web-types.json +1 -1
- package/package.json +7 -5
- package/src/components/CvAspectRatio/index.js +1 -1
- package/src/components/CvFileUploader/CvFileUploader.vue +1 -0
- package/src/components/CvForm/index.js +3 -3
- package/src/components/CvGrid/index.js +6 -0
- package/src/components/CvNotification/index.js +2 -2
- package/src/components/CvTextArea/index.js +1 -1
package/dist/web-types.json
CHANGED
package/package.json
CHANGED
|
@@ -1,15 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@carbon/vue",
|
|
3
3
|
"license": "Apache-2.0",
|
|
4
|
-
"version": "3.0.
|
|
4
|
+
"version": "3.0.18",
|
|
5
5
|
"description": "A collection of components for the Carbon Design System built using Vue.js",
|
|
6
6
|
"packageManager": "yarn@3.2.0",
|
|
7
7
|
"main": "dist/carbon-vue-3.umd.min.js",
|
|
8
8
|
"types": "src/index.d.ts",
|
|
9
9
|
"web-types": "dist/web-types.json",
|
|
10
|
+
"packrat": {
|
|
11
|
+
"prod_setup": "npx ibmtelemetry --config=telemetry.yml || true",
|
|
12
|
+
"dev_setup": "node devPreinstall.js && node .storybook/postinstall.js"
|
|
13
|
+
},
|
|
10
14
|
"scripts": {
|
|
11
15
|
"postinstall": "npx ibmtelemetry --config=telemetry.yml || true",
|
|
12
|
-
"pack_postinstall": "echo removed by packrat.js",
|
|
13
16
|
"prepack": "node packrat.js --disable",
|
|
14
17
|
"postpack": "node packrat.js --enable",
|
|
15
18
|
"build": "vue-cli-service build --target lib --name carbon-vue-3 ./src/index.js --no-clean",
|
|
@@ -24,8 +27,7 @@
|
|
|
24
27
|
"lint:es": "eslint src/**/*.{js,vue}",
|
|
25
28
|
"lint:style": "vue-cli-service lint:style",
|
|
26
29
|
"serve:storybook": "cd ./storybook && yarn run serve",
|
|
27
|
-
"test": "vue-cli-service test:unit --no-coverage"
|
|
28
|
-
"dev_postinstall": "node devPreinstall.js && node .storybook/postinstall.js"
|
|
30
|
+
"test": "vue-cli-service test:unit --no-coverage"
|
|
29
31
|
},
|
|
30
32
|
"workspaces": [
|
|
31
33
|
"storybook"
|
|
@@ -179,5 +181,5 @@
|
|
|
179
181
|
"url": "git+https://github.com/carbon-design-system/carbon-components-vue.git"
|
|
180
182
|
},
|
|
181
183
|
"sideEffects": true,
|
|
182
|
-
"gitHead": "
|
|
184
|
+
"gitHead": "11aa621428639292309124047e27963a8c0d016a"
|
|
183
185
|
}
|
|
@@ -204,6 +204,7 @@ function addFiles(files) {
|
|
|
204
204
|
internalFile.state = newFile.state;
|
|
205
205
|
internalFile.invalidMessageTitle = newFile.invalidMessageTitle;
|
|
206
206
|
internalFile.invalidMessage = newFile.invalidMessage;
|
|
207
|
+
internalFile.file = file;
|
|
207
208
|
} else {
|
|
208
209
|
internalFiles.value.push(newFile);
|
|
209
210
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import CvForm from './CvForm';
|
|
2
|
-
import CvFormGroup from './CvFormGroup';
|
|
3
|
-
import CvFormItem from './CvFormItem';
|
|
1
|
+
import CvForm from './CvForm.vue';
|
|
2
|
+
import CvFormGroup from './CvFormGroup.vue';
|
|
3
|
+
import CvFormItem from './CvFormItem.vue';
|
|
4
4
|
|
|
5
5
|
export { CvForm, CvFormGroup, CvFormItem };
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import CvInlineNotification from './CvInlineNotification';
|
|
2
|
-
import CvToastNotification from './CvToastNotification';
|
|
1
|
+
import CvInlineNotification from './CvInlineNotification.vue';
|
|
2
|
+
import CvToastNotification from './CvToastNotification.vue';
|
|
3
3
|
import CvNotificationConsts from './consts';
|
|
4
4
|
export { CvInlineNotification, CvToastNotification, CvNotificationConsts };
|
|
5
5
|
export default CvInlineNotification;
|