@semcore/d3-chart 3.61.0-prerelease.1 → 3.61.0-prerelease.4
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/lib/cjs/Area.js +11 -11
- package/lib/cjs/Bar.js +16 -16
- package/lib/cjs/Bubble.js +12 -12
- package/lib/cjs/CompactHorizontalBar.js +16 -16
- package/lib/cjs/Donut.js +9 -9
- package/lib/cjs/Dots.js +8 -8
- package/lib/cjs/HorizontalBar.js +16 -16
- package/lib/cjs/Line.js +9 -9
- package/lib/cjs/Plot.js +3 -3
- package/lib/cjs/Radar.js +19 -19
- package/lib/cjs/RadialTree.js +12 -12
- package/lib/cjs/ScatterPlot.js +9 -9
- package/lib/cjs/style/area.shadow.css +2 -2
- package/lib/cjs/style/bar.shadow.css +1 -1
- package/lib/cjs/style/bubble.shadow.css +3 -3
- package/lib/cjs/style/donut.shadow.css +1 -1
- package/lib/cjs/style/dot.shadow.css +1 -1
- package/lib/cjs/style/line.shadow.css +2 -2
- package/lib/cjs/style/plot.shadow.css +2 -2
- package/lib/cjs/style/radar.shadow.css +3 -3
- package/lib/cjs/style/radial-tree.shadow.css +2 -2
- package/lib/cjs/style/scatterplot.shadow.css +2 -2
- package/lib/es6/Area.js +11 -11
- package/lib/es6/Bar.js +16 -16
- package/lib/es6/Bubble.js +12 -12
- package/lib/es6/CompactHorizontalBar.js +16 -16
- package/lib/es6/Donut.js +9 -9
- package/lib/es6/Dots.js +8 -8
- package/lib/es6/HorizontalBar.js +16 -16
- package/lib/es6/Line.js +9 -9
- package/lib/es6/Plot.js +3 -3
- package/lib/es6/Radar.js +19 -19
- package/lib/es6/RadialTree.js +12 -12
- package/lib/es6/ScatterPlot.js +9 -9
- package/lib/es6/style/area.shadow.css +2 -2
- package/lib/es6/style/bar.shadow.css +1 -1
- package/lib/es6/style/bubble.shadow.css +3 -3
- package/lib/es6/style/donut.shadow.css +1 -1
- package/lib/es6/style/dot.shadow.css +1 -1
- package/lib/es6/style/line.shadow.css +2 -2
- package/lib/es6/style/plot.shadow.css +2 -2
- package/lib/es6/style/radar.shadow.css +3 -3
- package/lib/es6/style/radial-tree.shadow.css +2 -2
- package/lib/es6/style/scatterplot.shadow.css +2 -2
- package/lib/esm/Area.mjs +12 -12
- package/lib/esm/Bar.mjs +17 -17
- package/lib/esm/Bubble.mjs +13 -13
- package/lib/esm/CompactHorizontalBar.mjs +17 -17
- package/lib/esm/Donut.mjs +10 -10
- package/lib/esm/Dots.mjs +9 -9
- package/lib/esm/HorizontalBar.mjs +17 -17
- package/lib/esm/Line.mjs +10 -10
- package/lib/esm/Plot.mjs +4 -4
- package/lib/esm/Radar.mjs +20 -20
- package/lib/esm/RadialTree.mjs +13 -13
- package/lib/esm/ScatterPlot.mjs +10 -10
- package/lib/esm/style/area.shadow.css +2 -2
- package/lib/esm/style/bar.shadow.css +1 -1
- package/lib/esm/style/bubble.shadow.css +3 -3
- package/lib/esm/style/donut.shadow.css +1 -1
- package/lib/esm/style/dot.shadow.css +1 -1
- package/lib/esm/style/line.shadow.css +2 -2
- package/lib/esm/style/plot.shadow.css +2 -2
- package/lib/esm/style/radar.shadow.css +3 -3
- package/lib/esm/style/radial-tree.shadow.css +2 -2
- package/lib/esm/style/scatterplot.shadow.css +2 -2
- package/package.json +13 -13
|
@@ -9,7 +9,7 @@ SDots {
|
|
|
9
9
|
SDot {
|
|
10
10
|
stroke-width: 1px;
|
|
11
11
|
stroke: var(--intergalactic-chart-grid-border, #fff);
|
|
12
|
-
fill: var(--intergalactic-chart-palette-order-1, oklch(0.58 0.
|
|
12
|
+
fill: var(--intergalactic-chart-palette-order-1, oklch(0.58 0.168 278.2));
|
|
13
13
|
transition-property: cx, cy, x, y;
|
|
14
14
|
transition-timing-function: ease-in-out;
|
|
15
15
|
}
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
SLine {
|
|
4
4
|
fill: transparent;
|
|
5
5
|
stroke-width: 3;
|
|
6
|
-
stroke: var(--intergalactic-chart-palette-order-1, oklch(0.58 0.
|
|
6
|
+
stroke: var(--intergalactic-chart-palette-order-1, oklch(0.58 0.168 278.2));
|
|
7
7
|
transition-property: d;
|
|
8
8
|
transition-duration: var(--duration);
|
|
9
9
|
transition-timing-function: ease-in-out;
|
|
@@ -36,7 +36,7 @@ SLineArea {
|
|
|
36
36
|
transition-duration: var(--duration);
|
|
37
37
|
transition-timing-function: ease-in-out;
|
|
38
38
|
opacity: 0.3;
|
|
39
|
-
fill: var(--intergalactic-chart-palette-order-1, oklch(0.58 0.
|
|
39
|
+
fill: var(--intergalactic-chart-palette-order-1, oklch(0.58 0.168 278.2));
|
|
40
40
|
}
|
|
41
41
|
SLineArea[color] {
|
|
42
42
|
fill: var(--color);
|
|
@@ -14,6 +14,6 @@ foreignObject[data-aria-only] {
|
|
|
14
14
|
}
|
|
15
15
|
|
|
16
16
|
SPlot[keyboardFocused] {
|
|
17
|
-
border: 1px solid var(--intergalactic-chart-palette-order-9, oklch(0.53 0.
|
|
18
|
-
box-shadow: var(--intergalactic-keyboard-focus, 0px 0px 0px 3px oklch(0.
|
|
17
|
+
border: 1px solid var(--intergalactic-chart-palette-order-9, oklch(0.53 0.157 279.2));
|
|
18
|
+
box-shadow: var(--intergalactic-keyboard-focus, 0px 0px 0px 3px oklch(0.424 0.269 264.2 / 0.469));
|
|
19
19
|
}
|
|
@@ -31,7 +31,7 @@ SAxisLabel[yDirection] {
|
|
|
31
31
|
}
|
|
32
32
|
|
|
33
33
|
SPolygon {
|
|
34
|
-
fill: var(--intergalactic-chart-palette-order-1, oklch(0.58 0.
|
|
34
|
+
fill: var(--intergalactic-chart-palette-order-1, oklch(0.58 0.168 278.2));
|
|
35
35
|
opacity: 0.2;
|
|
36
36
|
}
|
|
37
37
|
|
|
@@ -49,7 +49,7 @@ SPolygonDot {
|
|
|
49
49
|
stroke-width: 2px;
|
|
50
50
|
stroke: var(--intergalactic-chart-grid-border, #fff);
|
|
51
51
|
r: 6px;
|
|
52
|
-
fill: var(--intergalactic-chart-palette-order-1, oklch(0.58 0.
|
|
52
|
+
fill: var(--intergalactic-chart-palette-order-1, oklch(0.58 0.168 278.2));
|
|
53
53
|
}
|
|
54
54
|
|
|
55
55
|
SPolygonDot[transparent] {
|
|
@@ -61,7 +61,7 @@ SPolygonDot[color] {
|
|
|
61
61
|
}
|
|
62
62
|
|
|
63
63
|
SPolygonLine {
|
|
64
|
-
stroke: var(--intergalactic-chart-palette-order-1, oklch(0.58 0.
|
|
64
|
+
stroke: var(--intergalactic-chart-palette-order-1, oklch(0.58 0.168 278.2));
|
|
65
65
|
stroke-width: 3;
|
|
66
66
|
fill: transparent;
|
|
67
67
|
}
|
|
@@ -2,11 +2,11 @@
|
|
|
2
2
|
|
|
3
3
|
SRadian {
|
|
4
4
|
cursor: pointer;
|
|
5
|
-
fill: var(--intergalactic-text-large-info, oklch(0.53 0.
|
|
5
|
+
fill: var(--intergalactic-text-large-info, oklch(0.53 0.157 279.2));
|
|
6
6
|
}
|
|
7
7
|
|
|
8
8
|
SLine {
|
|
9
|
-
stroke: var(--intergalactic-text-large-info, oklch(0.53 0.
|
|
9
|
+
stroke: var(--intergalactic-text-large-info, oklch(0.53 0.157 279.2));
|
|
10
10
|
}
|
|
11
11
|
|
|
12
12
|
SLine[stroke] {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
@import './var.css';
|
|
2
2
|
|
|
3
3
|
SScatterPlot {
|
|
4
|
-
fill: var(--intergalactic-chart-palette-order-1, oklch(0.58 0.
|
|
4
|
+
fill: var(--intergalactic-chart-palette-order-1, oklch(0.58 0.168 278.2));
|
|
5
5
|
transition-property: cx, cy;
|
|
6
6
|
transition-duration: var(--duration);
|
|
7
7
|
transition-timing-function: ease-in-out;
|
|
@@ -29,7 +29,7 @@ SScatterPlot[transparent] {
|
|
|
29
29
|
SValue {
|
|
30
30
|
text-anchor: middle;
|
|
31
31
|
font-size: var(--intergalactic-fs-50, 10px);
|
|
32
|
-
stroke: var(--intergalactic-chart-palette-order-9, oklch(0.53 0.
|
|
32
|
+
stroke: var(--intergalactic-chart-palette-order-9, oklch(0.53 0.157 279.2));
|
|
33
33
|
}
|
|
34
34
|
|
|
35
35
|
SValue[color] {
|
package/package.json
CHANGED
|
@@ -1,28 +1,28 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@semcore/d3-chart",
|
|
3
3
|
"description": "Semrush D3 Chart Component",
|
|
4
|
-
"version": "3.61.0-prerelease.
|
|
4
|
+
"version": "3.61.0-prerelease.4",
|
|
5
5
|
"main": "lib/cjs/index.js",
|
|
6
6
|
"module": "lib/esm/index.mjs",
|
|
7
|
-
"
|
|
7
|
+
"types": "lib/types/index.d.ts",
|
|
8
8
|
"sideEffects": false,
|
|
9
9
|
"author": "UI-kit team <ui-kit-team@semrush.com>",
|
|
10
10
|
"license": "MIT",
|
|
11
11
|
"exports": {
|
|
12
|
-
"
|
|
12
|
+
"types": "./lib/types/index.d.ts",
|
|
13
13
|
"import": "./lib/esm/index.mjs",
|
|
14
|
-
"
|
|
14
|
+
"require": "./lib/cjs/index.js"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
17
|
"@formatjs/intl": "2.3.0",
|
|
18
|
-
"@semcore/animation": "2.42.0-prerelease.
|
|
19
|
-
"@semcore/checkbox": "7.45.0-prerelease.
|
|
20
|
-
"@semcore/divider": "4.41.0-prerelease.
|
|
21
|
-
"@semcore/flex-box": "5.42.0-prerelease.
|
|
22
|
-
"@semcore/popper": "5.47.0-prerelease.
|
|
23
|
-
"@semcore/utils": "4.49.0-prerelease.
|
|
24
|
-
"@semcore/typography": "5.54.0-prerelease.
|
|
25
|
-
"@semcore/icon": "4.63.0-prerelease.
|
|
18
|
+
"@semcore/animation": "2.42.0-prerelease.4",
|
|
19
|
+
"@semcore/checkbox": "7.45.0-prerelease.4",
|
|
20
|
+
"@semcore/divider": "4.41.0-prerelease.4",
|
|
21
|
+
"@semcore/flex-box": "5.42.0-prerelease.4",
|
|
22
|
+
"@semcore/popper": "5.47.0-prerelease.4",
|
|
23
|
+
"@semcore/utils": "4.49.0-prerelease.4",
|
|
24
|
+
"@semcore/typography": "5.54.0-prerelease.4",
|
|
25
|
+
"@semcore/icon": "4.63.0-prerelease.4",
|
|
26
26
|
"@types/d3-shape": "^3.1.0",
|
|
27
27
|
"@upsetjs/venn.js": "1.4.2",
|
|
28
28
|
"d3-array": "3.1.6",
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
"hoist-non-react-statics": "3.3.2"
|
|
37
37
|
},
|
|
38
38
|
"peerDependencies": {
|
|
39
|
-
"@semcore/core": "^2.40.0-prerelease.
|
|
39
|
+
"@semcore/core": "^2.40.0-prerelease.4",
|
|
40
40
|
"react": "16.8 - 18",
|
|
41
41
|
"react-dom": "16.8 - 18"
|
|
42
42
|
},
|