@semcore/d3-chart 2.8.5 → 2.8.6
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 +2 -2
- package/lib/cjs/Area.js +10 -10
- package/lib/cjs/Axis.js +14 -14
- package/lib/cjs/Bar.js +9 -9
- package/lib/cjs/Bubble.js +11 -11
- package/lib/cjs/Donut.js +8 -8
- package/lib/cjs/Dots.js +10 -10
- package/lib/cjs/HorizontalBar.js +9 -9
- package/lib/cjs/Hover.js +4 -4
- package/lib/cjs/Line.js +9 -9
- package/lib/cjs/Plot.js +4 -4
- package/lib/cjs/RadialTree.js +13 -13
- package/lib/cjs/ReferenceLine.js +10 -10
- package/lib/cjs/ScatterPlot.js +8 -8
- package/lib/cjs/Tooltip.js +8 -8
- package/lib/cjs/Venn.js +8 -8
- package/lib/cjs/a11y/PlotA11yModule.js +3 -3
- package/lib/cjs/a11y/PlotA11yView.js +4 -4
- 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 +1 -1
- package/lib/cjs/style/plot.shadow.css +1 -1
- package/lib/cjs/style/radial-tree.shadow.css +2 -2
- package/lib/cjs/style/scatterplot.shadow.css +2 -2
- package/lib/cjs/style/venn.shadow.css +1 -1
- package/lib/es6/Area.js +10 -10
- package/lib/es6/Axis.js +14 -14
- package/lib/es6/Bar.js +9 -9
- package/lib/es6/Bubble.js +11 -11
- package/lib/es6/Donut.js +8 -8
- package/lib/es6/Dots.js +10 -10
- package/lib/es6/HorizontalBar.js +9 -9
- package/lib/es6/Hover.js +4 -4
- package/lib/es6/Line.js +9 -9
- package/lib/es6/Plot.js +4 -4
- package/lib/es6/RadialTree.js +13 -13
- package/lib/es6/ReferenceLine.js +10 -10
- package/lib/es6/ScatterPlot.js +8 -8
- package/lib/es6/Tooltip.js +8 -8
- package/lib/es6/Venn.js +8 -8
- package/lib/es6/a11y/PlotA11yModule.js +3 -3
- package/lib/es6/a11y/PlotA11yView.js +4 -4
- 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 +1 -1
- package/lib/es6/style/plot.shadow.css +1 -1
- package/lib/es6/style/radial-tree.shadow.css +2 -2
- package/lib/es6/style/scatterplot.shadow.css +2 -2
- package/lib/es6/style/venn.shadow.css +1 -1
- package/package.json +1 -1
|
@@ -10,7 +10,7 @@ SDot {
|
|
|
10
10
|
stroke-width: 2px;
|
|
11
11
|
stroke: var(--intergalactic-chart-grid-border, #ffffff);
|
|
12
12
|
r: 6px;
|
|
13
|
-
fill: var(--intergalactic-chart-palette-order-
|
|
13
|
+
fill: var(--intergalactic-chart-palette-order-1, #2bb3ff);
|
|
14
14
|
transition-property: cx, cy;
|
|
15
15
|
transition-timing-function: ease-in-out;
|
|
16
16
|
}
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
SLine {
|
|
4
4
|
fill: transparent;
|
|
5
5
|
stroke-width: 3;
|
|
6
|
-
stroke: var(--intergalactic-chart-palette-order-
|
|
6
|
+
stroke: var(--intergalactic-chart-palette-order-1, #2bb3ff);
|
|
7
7
|
transition-property: d;
|
|
8
8
|
transition-duration: var(--duration);
|
|
9
9
|
transition-timing-function: ease-in-out;
|
|
@@ -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-
|
|
17
|
+
border: 1px solid var(--intergalactic-chart-palette-order-9, #008ff8);
|
|
18
18
|
box-shadow: var(--intergalactic-keyboard-focus, 0px 0px 0px 3px rgba(0, 143, 248, 0.3));
|
|
19
19
|
}
|
|
@@ -2,11 +2,11 @@
|
|
|
2
2
|
|
|
3
3
|
SRadian {
|
|
4
4
|
cursor: pointer;
|
|
5
|
-
fill: var(--intergalactic-chart-palette-order-
|
|
5
|
+
fill: var(--intergalactic-chart-palette-order-9, #008ff8);
|
|
6
6
|
}
|
|
7
7
|
|
|
8
8
|
SLine {
|
|
9
|
-
stroke: var(--intergalactic-chart-palette-order-
|
|
9
|
+
stroke: var(--intergalactic-chart-palette-order-9, #008ff8);
|
|
10
10
|
}
|
|
11
11
|
|
|
12
12
|
SLine[color] {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
@import './var.css';
|
|
2
2
|
|
|
3
3
|
SScatterPlot {
|
|
4
|
-
fill: var(--intergalactic-chart-palette-order-
|
|
4
|
+
fill: var(--intergalactic-chart-palette-order-1, #2bb3ff);
|
|
5
5
|
transition-property: cx, cy;
|
|
6
6
|
transition-duration: var(--duration);
|
|
7
7
|
transition-timing-function: ease-in-out;
|
|
@@ -22,7 +22,7 @@ SScatterPlot[transparent] {
|
|
|
22
22
|
SValue {
|
|
23
23
|
text-anchor: middle;
|
|
24
24
|
font-size: var(--intergalactic-fs-50, 10px);
|
|
25
|
-
stroke: var(--intergalactic-chart-palette-order-
|
|
25
|
+
stroke: var(--intergalactic-chart-palette-order-9, #008ff8);
|
|
26
26
|
}
|
|
27
27
|
|
|
28
28
|
SValue[color] {
|