@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.
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "framework": "vue",
3
3
  "name": "@carbon/vue",
4
- "version": "3.0.16",
4
+ "version": "3.0.17",
5
5
  "contributions": {
6
6
  "html": {
7
7
  "description-markup": "markdown",
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.17",
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": "087b0c47cb2368713fa1c27079f0462afefe497b"
184
+ "gitHead": "11aa621428639292309124047e27963a8c0d016a"
183
185
  }
@@ -1,4 +1,4 @@
1
- import CvAspectRatio from './CvAspectRatio';
1
+ import CvAspectRatio from './CvAspectRatio.vue';
2
2
  import CvAspectRatioConsts from './consts';
3
3
  export { CvAspectRatio, CvAspectRatioConsts };
4
4
  export default CvAspectRatio;
@@ -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 };
@@ -0,0 +1,6 @@
1
+ import CvColumn from './CvColumn.vue';
2
+ import CvGrid from './CvGrid.vue';
3
+ import CvRow from './CvRow.vue';
4
+
5
+ export { CvColumn, CvGrid, CvRow };
6
+ export default CvGrid;
@@ -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;
@@ -1,5 +1,5 @@
1
1
  import CvTextArea from './CvTextArea.vue';
2
- import CvTextAreaSkeleton from './CvTextAreaSkeleton';
2
+ import CvTextAreaSkeleton from './CvTextAreaSkeleton.vue';
3
3
 
4
4
  export { CvTextArea, CvTextAreaSkeleton };
5
5
  export default CvTextArea;