@carbon/charts-react 1.16.10 → 1.17.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/README.md +3 -31
- package/dist/index.mjs +1 -7
- package/dist/index.mjs.map +1 -1
- package/dist/index.umd.cjs +1 -1
- package/dist/index.umd.cjs.map +1 -1
- package/dist/index.umd.js +119 -0
- package/dist/main.d.ts +0 -0
- package/package.json +15 -21
- package/dist/stories/1-charts.stories.d.ts +0 -1
- package/dist/stories/2a-diagrams-start-here.stories.d.ts +0 -1
- package/dist/stories/2b-diagrams-cards.stories.d.ts +0 -1
- /package/dist/{stories/0-docs-getting-started-welcome.stories.d.ts → all.test.d.ts} +0 -0
package/dist/main.d.ts
ADDED
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@carbon/charts-react",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.17.0",
|
|
4
4
|
"description": "Carbon Charts component library for React",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "./dist/index.mjs",
|
|
@@ -18,6 +18,7 @@
|
|
|
18
18
|
"./styles.css": "./dist/styles.css",
|
|
19
19
|
"./styles": "./dist/styles.css"
|
|
20
20
|
},
|
|
21
|
+
"styles": "./dist/styles.css",
|
|
21
22
|
"files": [
|
|
22
23
|
"dist",
|
|
23
24
|
"README.md",
|
|
@@ -28,22 +29,17 @@
|
|
|
28
29
|
"file:styles": "cp ../core/dist/styles.* dist",
|
|
29
30
|
"file:downlevel:dts": "downlevel-dts dist dist",
|
|
30
31
|
"postbundle": "concurrently \"yarn:file:*\"",
|
|
31
|
-
"build
|
|
32
|
-
"
|
|
33
|
-
"
|
|
34
|
-
"
|
|
35
|
-
"
|
|
36
|
-
"build": "yarn build:package && yarn build:demo",
|
|
37
|
-
"storybook": "storybook dev -p 9006",
|
|
38
|
-
"start": "yarn storybook",
|
|
32
|
+
"build": "vite build && cp dist/index.umd.cjs dist/index.umd.js && yarn postbundle",
|
|
33
|
+
"build:test": "vite build --config vite.test.config.ts --emptyOutDir",
|
|
34
|
+
"dev": "vite --port 3002",
|
|
35
|
+
"test:dom": "playwright test",
|
|
36
|
+
"test:dom:rebase": "playwright test --update-snapshots",
|
|
39
37
|
"lint": "eslint",
|
|
40
|
-
"format": "prettier . --write --ignore-path ../../.prettierignore"
|
|
41
|
-
"clean": "rm -rf dist demo/bundle",
|
|
42
|
-
"pub:demo": "cp -a demo/bundle/. ../../pages/react"
|
|
38
|
+
"format": "prettier . --write --ignore-path ../../.prettierignore"
|
|
43
39
|
},
|
|
44
40
|
"dependencies": {
|
|
45
|
-
"@carbon/charts": "1.
|
|
46
|
-
"@carbon/icons-react": "^11.
|
|
41
|
+
"@carbon/charts": "1.17.0",
|
|
42
|
+
"@carbon/icons-react": "^11.44.1",
|
|
47
43
|
"@ibm/telemetry-js": "^1.5.2"
|
|
48
44
|
},
|
|
49
45
|
"peerDependencies": {
|
|
@@ -51,10 +47,10 @@
|
|
|
51
47
|
"react-dom": "^16.8.6 || ^17.0.1 || ^18.2.0"
|
|
52
48
|
},
|
|
53
49
|
"devDependencies": {
|
|
54
|
-
"@
|
|
50
|
+
"@playwright/test": "^1.45.0",
|
|
55
51
|
"@types/react": "^18.3.3",
|
|
56
52
|
"@types/react-dom": "^18.3.0",
|
|
57
|
-
"@vitejs/plugin-react": "^
|
|
53
|
+
"@vitejs/plugin-react-swc": "^3.7.0",
|
|
58
54
|
"classnames": "^2.5.1",
|
|
59
55
|
"concurrently": "^8.2.2",
|
|
60
56
|
"downlevel-dts": "^0.11.0",
|
|
@@ -62,9 +58,7 @@
|
|
|
62
58
|
"prettier": "^3.3.2",
|
|
63
59
|
"react": "^18.3.1",
|
|
64
60
|
"react-dom": "^18.3.1",
|
|
65
|
-
"
|
|
66
|
-
"storybook": "^7.6.19",
|
|
67
|
-
"typescript": "^5.4.5",
|
|
61
|
+
"typescript": "^5.5.2",
|
|
68
62
|
"vite": "^5.3.1",
|
|
69
63
|
"vite-plugin-dts": "^3.9.1"
|
|
70
64
|
},
|
|
@@ -74,7 +68,7 @@
|
|
|
74
68
|
"repository": {
|
|
75
69
|
"type": "git",
|
|
76
70
|
"url": "git@github.com:carbon-design-system/carbon-charts.git",
|
|
77
|
-
"homepage": "https://charts.carbondesignsystem.com/
|
|
71
|
+
"homepage": "https://charts.carbondesignsystem.com/"
|
|
78
72
|
},
|
|
79
73
|
"license": "Apache-2.0",
|
|
80
74
|
"author": "IBM",
|
|
@@ -125,5 +119,5 @@
|
|
|
125
119
|
"url": "https://github.com/theiliad"
|
|
126
120
|
}
|
|
127
121
|
],
|
|
128
|
-
"gitHead": "
|
|
122
|
+
"gitHead": "1a982412fb8768d0a40a78a1fa3fec8833b8930f"
|
|
129
123
|
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
File without changes
|