@carbon/vue 3.0.17 → 3.0.19
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 +19 -0
- 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 -8
- package/postinstall.js +9 -0
- 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/README.md
CHANGED
|
@@ -112,6 +112,25 @@ If you just want to build an individual package you can limit the scope:
|
|
|
112
112
|
|
|
113
113
|
To start the storybook in a local server use `yarn start`.
|
|
114
114
|
|
|
115
|
+
## Test publish
|
|
116
|
+
|
|
117
|
+
To test publishing to a npm registry:
|
|
118
|
+
|
|
119
|
+
```shell
|
|
120
|
+
cd local-dev
|
|
121
|
+
docker-compose up
|
|
122
|
+
# open a new terminal
|
|
123
|
+
yarn build
|
|
124
|
+
npm add-user --registry http://0.0.0.0:4873/
|
|
125
|
+
# any username, password, & email will work
|
|
126
|
+
# try: carbon, vue, & carbon-vue@example.com
|
|
127
|
+
yarn test:publish
|
|
128
|
+
# maybe change some things and try again
|
|
129
|
+
yarn build
|
|
130
|
+
yarn test:unpublish
|
|
131
|
+
yarn test:publish
|
|
132
|
+
```
|
|
133
|
+
|
|
115
134
|
## How to run the storybook
|
|
116
135
|
|
|
117
136
|
Just follow the steps listed below and you will be able to run the storybook.
|
|
@@ -10736,6 +10736,7 @@ var __default__ = {
|
|
|
10736
10736
|
internalFile.state = newFile.state;
|
|
10737
10737
|
internalFile.invalidMessageTitle = newFile.invalidMessageTitle;
|
|
10738
10738
|
internalFile.invalidMessage = newFile.invalidMessage;
|
|
10739
|
+
internalFile.file = file;
|
|
10739
10740
|
} else {
|
|
10740
10741
|
internalFiles.value.push(newFile);
|
|
10741
10742
|
}
|