@carbon/charts 1.10.3 → 1.10.5
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/CHANGELOG.md +22 -0
- package/README.md +2 -2
- package/dist/demo/index.js +9 -9
- package/dist/demo/index.js.map +1 -1
- package/dist/demo/index.mjs +58 -56
- package/dist/demo/index.mjs.map +1 -1
- package/dist/demo/styles.css +1 -1
- package/dist/demo/styles.css.map +1 -1
- package/package.json +5 -3
- package/scss/demos.scss +1 -1
- package/styles.css +6345 -0
- package/styles.min.css +1 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@carbon/charts",
|
|
3
|
-
"version": "1.10.
|
|
3
|
+
"version": "1.10.5",
|
|
4
4
|
"description": "Carbon Charts component library",
|
|
5
5
|
"module": "./dist/index.mjs",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -52,6 +52,8 @@
|
|
|
52
52
|
"files": [
|
|
53
53
|
"dist",
|
|
54
54
|
"scss",
|
|
55
|
+
"styles.css",
|
|
56
|
+
"styles.min.css",
|
|
55
57
|
"CHANGELOG.md"
|
|
56
58
|
],
|
|
57
59
|
"scripts": {
|
|
@@ -61,7 +63,7 @@
|
|
|
61
63
|
"file:css:demo": "sass scss/demos.scss dist/demo/styles.css --load-path=./node_modules --load-path=../../node_modules",
|
|
62
64
|
"file:downlevel:dts": "downlevel-dts dist dist",
|
|
63
65
|
"postbundle": "concurrently \"yarn:file:*\"",
|
|
64
|
-
"build:package": "vite build && yarn postbundle",
|
|
66
|
+
"build:package": "vite build && yarn postbundle && cp dist/styles*.css ./",
|
|
65
67
|
"demo:docs": "typedoc ./src/index.ts --out ./demo/bundle/documentation",
|
|
66
68
|
"demo:storybook": "storybook build -o demo/bundle --quiet",
|
|
67
69
|
"build:demo": "concurrently \"yarn:demo:*\"",
|
|
@@ -193,5 +195,5 @@
|
|
|
193
195
|
"url": "https://github.com/theiliad"
|
|
194
196
|
}
|
|
195
197
|
],
|
|
196
|
-
"gitHead": "
|
|
198
|
+
"gitHead": "d51fd2e874d4f738d091e0cdf33620005628ec6e"
|
|
197
199
|
}
|