@carbon/charts 1.13.6 → 1.13.8
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 +18 -0
- package/dist/{choropleth-bfa2bf81.mjs → choropleth-d532597d.mjs} +6 -4
- package/dist/choropleth-d532597d.mjs.map +1 -0
- package/dist/components/essentials/modal.d.ts +1 -0
- package/dist/components/index.mjs +1 -1
- package/dist/demo/index.mjs +94 -93
- package/dist/demo/index.mjs.map +1 -1
- package/dist/demo/styles.css +674 -45
- package/dist/demo/styles.css.map +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.mjs +2 -2
- package/dist/interfaces/index.d.ts +1 -1
- package/dist/styles.css +48 -0
- package/dist/styles.css.map +1 -1
- package/dist/styles.min.css +1 -1
- package/dist/styles.min.css.map +1 -1
- package/dist/umd/bundle.umd.js +9 -9
- package/dist/umd/bundle.umd.js.map +1 -1
- package/package.json +24 -24
- package/styles.css +48 -0
- package/styles.min.css +1 -1
- package/dist/choropleth-bfa2bf81.mjs.map +0 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@carbon/charts",
|
|
3
|
-
"version": "1.13.
|
|
3
|
+
"version": "1.13.8",
|
|
4
4
|
"description": "Carbon Charts component library",
|
|
5
5
|
"module": "./dist/index.mjs",
|
|
6
6
|
"main": "./dist/umd/bundle.umd.js",
|
|
@@ -59,7 +59,7 @@
|
|
|
59
59
|
"file:downlevel:dts": "downlevel-dts dist dist",
|
|
60
60
|
"postbundle": "concurrently \"yarn:file:*\"",
|
|
61
61
|
"build:package": "vite build && vite build -c ./vite.umd.config.ts && yarn postbundle && cp dist/styles*.css* ./",
|
|
62
|
-
"demo:docs": "typedoc ./src/index.ts --out ./demo/bundle/documentation",
|
|
62
|
+
"demo:docs": "typedoc ./src/index.ts --excludeExternals --out ./demo/bundle/documentation",
|
|
63
63
|
"demo:storybook": "storybook build -o demo/bundle --quiet",
|
|
64
64
|
"build:demo": "concurrently \"yarn:demo:*\"",
|
|
65
65
|
"build": "yarn build:package && yarn build:demo",
|
|
@@ -78,10 +78,10 @@
|
|
|
78
78
|
"homepage": "https://carbon-design-system.github.io/carbon-charts/"
|
|
79
79
|
},
|
|
80
80
|
"dependencies": {
|
|
81
|
-
"@carbon/colors": "^11.
|
|
81
|
+
"@carbon/colors": "^11.20.1",
|
|
82
82
|
"@carbon/telemetry": "~0.1.0",
|
|
83
83
|
"@carbon/utils-position": "^1.1.4",
|
|
84
|
-
"carbon-components": "^10.58.
|
|
84
|
+
"carbon-components": "^10.58.12",
|
|
85
85
|
"d3": "^7.8.5",
|
|
86
86
|
"d3-cloud": "^1.2.7",
|
|
87
87
|
"d3-sankey": "^0.12.3",
|
|
@@ -106,31 +106,31 @@
|
|
|
106
106
|
},
|
|
107
107
|
"devDependencies": {
|
|
108
108
|
"@carbon/import-once": "^10.7.0",
|
|
109
|
-
"@carbon/layout": "^11.
|
|
110
|
-
"@carbon/styles": "
|
|
111
|
-
"@carbon/themes": "^11.
|
|
112
|
-
"@rollup/plugin-replace": "^5.0.
|
|
113
|
-
"@rushstack/eslint-patch": "^1.5.
|
|
109
|
+
"@carbon/layout": "^11.20.1",
|
|
110
|
+
"@carbon/styles": "1.42.1",
|
|
111
|
+
"@carbon/themes": "^11.27.1",
|
|
112
|
+
"@rollup/plugin-replace": "^5.0.5",
|
|
113
|
+
"@rushstack/eslint-patch": "^1.5.1",
|
|
114
114
|
"@stackblitz/sdk": "^1.9.0",
|
|
115
|
-
"@types/d3": "^7.4.
|
|
116
|
-
"@types/d3-cloud": "^1.2.
|
|
117
|
-
"@types/d3-sankey": "^0.12.
|
|
118
|
-
"@types/lodash-es": "^4.17.
|
|
119
|
-
"@types/topojson": "^3.2.
|
|
120
|
-
"@typescript-eslint/eslint-plugin": "^6.
|
|
121
|
-
"@typescript-eslint/parser": "^6.
|
|
122
|
-
"concurrently": "^8.2.
|
|
115
|
+
"@types/d3": "^7.4.3",
|
|
116
|
+
"@types/d3-cloud": "^1.2.8",
|
|
117
|
+
"@types/d3-sankey": "^0.12.4",
|
|
118
|
+
"@types/lodash-es": "^4.17.11",
|
|
119
|
+
"@types/topojson": "^3.2.6",
|
|
120
|
+
"@typescript-eslint/eslint-plugin": "^6.11.0",
|
|
121
|
+
"@typescript-eslint/parser": "^6.11.0",
|
|
122
|
+
"concurrently": "^8.2.2",
|
|
123
123
|
"downlevel-dts": "^0.11.0",
|
|
124
|
-
"eslint": "^8.
|
|
124
|
+
"eslint": "^8.53.0",
|
|
125
125
|
"eslint-config-prettier": "^9.0.0",
|
|
126
126
|
"jsdom": "^22.1.0",
|
|
127
127
|
"resize-observer-polyfill": "^1.5.1",
|
|
128
|
-
"sass": "^1.
|
|
129
|
-
"storybook": "^7.
|
|
130
|
-
"typedoc": "^0.25.
|
|
128
|
+
"sass": "^1.69.5",
|
|
129
|
+
"storybook": "^7.5.3",
|
|
130
|
+
"typedoc": "^0.25.3",
|
|
131
131
|
"typescript": "^5.2.2",
|
|
132
|
-
"vite": "^4.
|
|
133
|
-
"vite-plugin-dts": "^3.6.
|
|
132
|
+
"vite": "^4.5.0",
|
|
133
|
+
"vite-plugin-dts": "^3.6.3",
|
|
134
134
|
"vitest": "^0.34.6"
|
|
135
135
|
},
|
|
136
136
|
"publishConfig": {
|
|
@@ -180,5 +180,5 @@
|
|
|
180
180
|
"url": "https://github.com/theiliad"
|
|
181
181
|
}
|
|
182
182
|
],
|
|
183
|
-
"gitHead": "
|
|
183
|
+
"gitHead": "e245ce169ec76140f6465be1e1db3fb38a83d1d2"
|
|
184
184
|
}
|
package/styles.css
CHANGED
|
@@ -5139,6 +5139,9 @@ div.cds--cc--legend.clickable div.legend-item:not(.additional):hover div.checkbo
|
|
|
5139
5139
|
}
|
|
5140
5140
|
|
|
5141
5141
|
.cds--chart-holder {
|
|
5142
|
+
--cds-ai-gradient-end: rgba(255, 255, 255, 0);
|
|
5143
|
+
--cds-ai-gradient-start-01: rgba(242, 244, 248, 0.5);
|
|
5144
|
+
--cds-ai-gradient-start-02: rgba(237, 245, 255, 0.5);
|
|
5142
5145
|
--cds-background: #ffffff;
|
|
5143
5146
|
--cds-background-active: rgba(141, 141, 141, 0.5);
|
|
5144
5147
|
--cds-background-brand: #0f62fe;
|
|
@@ -5218,6 +5221,15 @@ div.cds--cc--legend.clickable div.legend-item:not(.additional):hover div.checkbo
|
|
|
5218
5221
|
--cds-shadow: rgba(0, 0, 0, 0.3);
|
|
5219
5222
|
--cds-skeleton-background: #e8e8e8;
|
|
5220
5223
|
--cds-skeleton-element: #c6c6c6;
|
|
5224
|
+
--cds-slug-background: #525252;
|
|
5225
|
+
--cds-slug-background-hover: #6f6f6f;
|
|
5226
|
+
--cds-slug-callout-aura-end: rgba(255, 255, 255, 0);
|
|
5227
|
+
--cds-slug-callout-aura-start: rgba(237, 245, 255, 0.6);
|
|
5228
|
+
--cds-slug-callout-gradient-bottom: rgba(224, 224, 224, 0.85);
|
|
5229
|
+
--cds-slug-callout-gradient-top: rgba(244, 244, 244, 0.85);
|
|
5230
|
+
--cds-slug-gradient: #161616 linear-gradient(135deg, #a8a8a8 0%, rgba(255, 255, 255, 0) 100%);
|
|
5231
|
+
--cds-slug-gradient-hover: #161616 linear-gradient(135deg, #d1d1d1 0%, rgba(255, 255, 255, 0) 100%);
|
|
5232
|
+
--cds-slug-hollow-hover: #474747;
|
|
5221
5233
|
--cds-support-caution-major: #ff832b;
|
|
5222
5234
|
--cds-support-caution-minor: #f1c21b;
|
|
5223
5235
|
--cds-support-caution-undefined: #8a3ffc;
|
|
@@ -5525,6 +5537,9 @@ div.cds--cc--legend.clickable div.legend-item:not(.additional):hover div.checkbo
|
|
|
5525
5537
|
}
|
|
5526
5538
|
|
|
5527
5539
|
.cds--chart-holder[data-carbon-theme=g10] {
|
|
5540
|
+
--cds-ai-gradient-end: rgba(255, 255, 255, 0);
|
|
5541
|
+
--cds-ai-gradient-start-01: rgba(242, 244, 248, 0.5);
|
|
5542
|
+
--cds-ai-gradient-start-02: rgba(237, 245, 255, 0.5);
|
|
5528
5543
|
--cds-background: #f4f4f4;
|
|
5529
5544
|
--cds-background-active: rgba(141, 141, 141, 0.5);
|
|
5530
5545
|
--cds-background-brand: #0f62fe;
|
|
@@ -5604,6 +5619,15 @@ div.cds--cc--legend.clickable div.legend-item:not(.additional):hover div.checkbo
|
|
|
5604
5619
|
--cds-shadow: rgba(0, 0, 0, 0.3);
|
|
5605
5620
|
--cds-skeleton-background: #e8e8e8;
|
|
5606
5621
|
--cds-skeleton-element: #c6c6c6;
|
|
5622
|
+
--cds-slug-background: #525252;
|
|
5623
|
+
--cds-slug-background-hover: #6f6f6f;
|
|
5624
|
+
--cds-slug-callout-aura-end: rgba(255, 255, 255, 0);
|
|
5625
|
+
--cds-slug-callout-aura-start: rgba(237, 245, 255, 0.6);
|
|
5626
|
+
--cds-slug-callout-gradient-bottom: rgba(224, 224, 224, 0.85);
|
|
5627
|
+
--cds-slug-callout-gradient-top: rgba(244, 244, 244, 0.85);
|
|
5628
|
+
--cds-slug-gradient: #161616 linear-gradient(135deg, #a8a8a8 0%, rgba(255, 255, 255, 0) 100%);
|
|
5629
|
+
--cds-slug-gradient-hover: #161616 linear-gradient(135deg, #d1d1d1 0%, rgba(255, 255, 255, 0) 100%);
|
|
5630
|
+
--cds-slug-hollow-hover: #474747;
|
|
5607
5631
|
--cds-support-caution-major: #ff832b;
|
|
5608
5632
|
--cds-support-caution-minor: #f1c21b;
|
|
5609
5633
|
--cds-support-caution-undefined: #8a3ffc;
|
|
@@ -5911,6 +5935,9 @@ div.cds--cc--legend.clickable div.legend-item:not(.additional):hover div.checkbo
|
|
|
5911
5935
|
}
|
|
5912
5936
|
|
|
5913
5937
|
.cds--chart-holder[data-carbon-theme=g90] {
|
|
5938
|
+
--cds-ai-gradient-end: rgba(38, 38, 38, 0);
|
|
5939
|
+
--cds-ai-gradient-start-01: rgba(208, 226, 255, 0.2);
|
|
5940
|
+
--cds-ai-gradient-start-02: transparent;
|
|
5914
5941
|
--cds-background: #262626;
|
|
5915
5942
|
--cds-background-active: rgba(141, 141, 141, 0.4);
|
|
5916
5943
|
--cds-background-brand: #0f62fe;
|
|
@@ -5990,6 +6017,15 @@ div.cds--cc--legend.clickable div.legend-item:not(.additional):hover div.checkbo
|
|
|
5990
6017
|
--cds-shadow: rgba(0, 0, 0, 0.8);
|
|
5991
6018
|
--cds-skeleton-background: #333333;
|
|
5992
6019
|
--cds-skeleton-element: #525252;
|
|
6020
|
+
--cds-slug-background: #c6c6c6;
|
|
6021
|
+
--cds-slug-background-hover: #e0e0e0;
|
|
6022
|
+
--cds-slug-callout-aura-end: rgba(22, 22, 22, 0);
|
|
6023
|
+
--cds-slug-callout-aura-start: rgba(208, 226, 255, 0.2);
|
|
6024
|
+
--cds-slug-callout-gradient-bottom: rgba(38, 38, 38, 0.85);
|
|
6025
|
+
--cds-slug-callout-gradient-top: rgba(22, 22, 22, 0.85);
|
|
6026
|
+
--cds-slug-gradient: #8d8d8d linear-gradient(135deg, #f4f4f4 0%, rgba(255, 255, 255, 0) 100%);
|
|
6027
|
+
--cds-slug-gradient-hover: #a8a8a8 linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
|
|
6028
|
+
--cds-slug-hollow-hover: #b5b5b5;
|
|
5993
6029
|
--cds-support-caution-major: #ff832b;
|
|
5994
6030
|
--cds-support-caution-minor: #f1c21b;
|
|
5995
6031
|
--cds-support-caution-undefined: #a56eff;
|
|
@@ -6297,6 +6333,9 @@ div.cds--cc--legend.clickable div.legend-item:not(.additional):hover div.checkbo
|
|
|
6297
6333
|
}
|
|
6298
6334
|
|
|
6299
6335
|
.cds--chart-holder[data-carbon-theme=g100] {
|
|
6336
|
+
--cds-ai-gradient-end: rgba(38, 38, 38, 0);
|
|
6337
|
+
--cds-ai-gradient-start-01: rgba(208, 226, 255, 0.2);
|
|
6338
|
+
--cds-ai-gradient-start-02: transparent;
|
|
6300
6339
|
--cds-background: #161616;
|
|
6301
6340
|
--cds-background-active: rgba(141, 141, 141, 0.4);
|
|
6302
6341
|
--cds-background-brand: #0f62fe;
|
|
@@ -6376,6 +6415,15 @@ div.cds--cc--legend.clickable div.legend-item:not(.additional):hover div.checkbo
|
|
|
6376
6415
|
--cds-shadow: rgba(0, 0, 0, 0.8);
|
|
6377
6416
|
--cds-skeleton-background: #292929;
|
|
6378
6417
|
--cds-skeleton-element: #393939;
|
|
6418
|
+
--cds-slug-background: #c6c6c6;
|
|
6419
|
+
--cds-slug-background-hover: #e0e0e0;
|
|
6420
|
+
--cds-slug-callout-aura-end: rgba(22, 22, 22, 0);
|
|
6421
|
+
--cds-slug-callout-aura-start: rgba(208, 226, 255, 0.2);
|
|
6422
|
+
--cds-slug-callout-gradient-bottom: rgba(38, 38, 38, 0.85);
|
|
6423
|
+
--cds-slug-callout-gradient-top: rgba(22, 22, 22, 0.85);
|
|
6424
|
+
--cds-slug-gradient: #8d8d8d linear-gradient(135deg, #f4f4f4 0%, rgba(255, 255, 255, 0) 100%);
|
|
6425
|
+
--cds-slug-gradient-hover: #a8a8a8 linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
|
|
6426
|
+
--cds-slug-hollow-hover: #b5b5b5;
|
|
6379
6427
|
--cds-support-caution-major: #ff832b;
|
|
6380
6428
|
--cds-support-caution-minor: #f1c21b;
|
|
6381
6429
|
--cds-support-caution-undefined: #a56eff;
|