@hpcc-js/layout 3.5.7 → 3.5.10
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/LICENSE +43 -43
- package/README.md +83 -83
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.umd.cjs +1 -1
- package/dist/index.umd.cjs.map +1 -1
- package/package.json +8 -8
- package/src/AbsoluteSurface.css +8 -8
- package/src/AbsoluteSurface.ts +93 -93
- package/src/Accordion.css +101 -101
- package/src/Accordion.ts +146 -146
- package/src/Border.css +148 -148
- package/src/Border.ts +636 -636
- package/src/Border2.css +22 -22
- package/src/Border2.ts +391 -391
- package/src/Carousel.css +7 -7
- package/src/Carousel.ts +100 -100
- package/src/Cell.css +10 -10
- package/src/Cell.ts +94 -94
- package/src/ChartPanel.css +7 -7
- package/src/ChartPanel.ts +635 -635
- package/src/FlexGrid.css +8 -8
- package/src/FlexGrid.ts +140 -140
- package/src/Grid.css +89 -89
- package/src/Grid.ts +576 -576
- package/src/HorizontalList.ts +15 -15
- package/src/Layered.css +11 -11
- package/src/Layered.ts +132 -132
- package/src/Legend.ts +516 -516
- package/src/Modal.css +50 -50
- package/src/Modal.ts +289 -289
- package/src/Popup.ts +120 -120
- package/src/Surface.css +104 -104
- package/src/Surface.ts +223 -223
- package/src/Tabbed.css +23 -23
- package/src/Tabbed.ts +165 -165
- package/src/Toolbar.css +33 -33
- package/src/Toolbar.ts +127 -127
- package/src/VerticalList.ts +15 -15
- package/src/__package__.ts +3 -3
- package/src/index.ts +20 -20
package/src/Carousel.css
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
.layout_Carousel>div {
|
|
2
|
-
position: relative;
|
|
3
|
-
overflow: hidden;
|
|
4
|
-
}
|
|
5
|
-
|
|
6
|
-
.layout_Carousel>div>.carouselItem {
|
|
7
|
-
position: absolute;
|
|
1
|
+
.layout_Carousel>div {
|
|
2
|
+
position: relative;
|
|
3
|
+
overflow: hidden;
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
.layout_Carousel>div>.carouselItem {
|
|
7
|
+
position: absolute;
|
|
8
8
|
}
|
package/src/Carousel.ts
CHANGED
|
@@ -1,100 +1,100 @@
|
|
|
1
|
-
import { HTMLWidget, Widget } from "@hpcc-js/common";
|
|
2
|
-
import { select as d3Select } from "d3-selection";
|
|
3
|
-
import "d3-transition";
|
|
4
|
-
|
|
5
|
-
import "../src/Carousel.css";
|
|
6
|
-
|
|
7
|
-
export class Carousel extends HTMLWidget {
|
|
8
|
-
|
|
9
|
-
protected _prevActive: number = 0;
|
|
10
|
-
protected _root;
|
|
11
|
-
|
|
12
|
-
activeWidget(): Widget {
|
|
13
|
-
return this.widgets()[this.active()];
|
|
14
|
-
}
|
|
15
|
-
|
|
16
|
-
enter(domNode, element) {
|
|
17
|
-
super.enter(domNode, element);
|
|
18
|
-
this._root = element.append("div")
|
|
19
|
-
.attr("id", `${this.id()}_root`)
|
|
20
|
-
;
|
|
21
|
-
}
|
|
22
|
-
|
|
23
|
-
update(domNode, element) {
|
|
24
|
-
super.update(domNode, element);
|
|
25
|
-
const active = this.active();
|
|
26
|
-
const width = this.width();
|
|
27
|
-
this._root
|
|
28
|
-
.style("width", `${width}px`)
|
|
29
|
-
.style("height", `${this.height()}px`)
|
|
30
|
-
;
|
|
31
|
-
const widgetElements = this._root.selectAll(`#${this.id()}_root > .carouselItem`).data(this.widgets(), d => d.id());
|
|
32
|
-
const update = widgetElements.enter().append("div")
|
|
33
|
-
.attr("class", "carouselItem")
|
|
34
|
-
.each(function (w) {
|
|
35
|
-
w.target(this);
|
|
36
|
-
})
|
|
37
|
-
.merge(widgetElements)
|
|
38
|
-
.style("left", (d, i) => `${(i - this._prevActive) * width}px`)
|
|
39
|
-
.style("width", `${width}px`)
|
|
40
|
-
;
|
|
41
|
-
if (this._prevActive !== active) {
|
|
42
|
-
update
|
|
43
|
-
.style("display", (d, i) => i === this._prevActive || i === active ? null : "none") // Must be called before render callback (not inside transition)
|
|
44
|
-
.transition().duration(this.transitionDuration())
|
|
45
|
-
.style("left", (d, i) => `${(i - active) * width}px`)
|
|
46
|
-
.on("end", function (d, i) {
|
|
47
|
-
d3Select(this).style("display", () => i === active ? null : "none");
|
|
48
|
-
})
|
|
49
|
-
;
|
|
50
|
-
this._prevActive = active;
|
|
51
|
-
}
|
|
52
|
-
widgetElements.exit()
|
|
53
|
-
.each(function (w) {
|
|
54
|
-
w.target(null);
|
|
55
|
-
})
|
|
56
|
-
.remove()
|
|
57
|
-
;
|
|
58
|
-
}
|
|
59
|
-
|
|
60
|
-
exit(domNode, element) {
|
|
61
|
-
this.widgets().forEach(w => w.target(null));
|
|
62
|
-
super.exit(domNode, element);
|
|
63
|
-
}
|
|
64
|
-
|
|
65
|
-
render(callback): this {
|
|
66
|
-
return super.render(w => {
|
|
67
|
-
if (!this.visible() || this.isDOMHidden()) {
|
|
68
|
-
if (callback) {
|
|
69
|
-
callback(w);
|
|
70
|
-
}
|
|
71
|
-
} else {
|
|
72
|
-
const aw = this.activeWidget();
|
|
73
|
-
if (aw) {
|
|
74
|
-
aw
|
|
75
|
-
.resize(this.size())
|
|
76
|
-
.render(w2 => {
|
|
77
|
-
if (callback) {
|
|
78
|
-
callback(w);
|
|
79
|
-
}
|
|
80
|
-
})
|
|
81
|
-
;
|
|
82
|
-
}
|
|
83
|
-
}
|
|
84
|
-
});
|
|
85
|
-
}
|
|
86
|
-
}
|
|
87
|
-
Carousel.prototype._class += " layout_Carousel";
|
|
88
|
-
|
|
89
|
-
export interface Carousel {
|
|
90
|
-
widgets(): Widget[];
|
|
91
|
-
widgets(_: Widget[]): this;
|
|
92
|
-
active(): number;
|
|
93
|
-
active(_: number): this;
|
|
94
|
-
transitionDuration(): Widget[];
|
|
95
|
-
transitionDuration(_: Widget[]): this;
|
|
96
|
-
}
|
|
97
|
-
|
|
98
|
-
Carousel.prototype.publish("widgets", [], "widgetArray", "Widgets", null, { render: false });
|
|
99
|
-
Carousel.prototype.publish("active", 0, "number", "Active widget");
|
|
100
|
-
Carousel.prototype.publish("transitionDuration", 500, "number", "Transition duration");
|
|
1
|
+
import { HTMLWidget, Widget } from "@hpcc-js/common";
|
|
2
|
+
import { select as d3Select } from "d3-selection";
|
|
3
|
+
import "d3-transition";
|
|
4
|
+
|
|
5
|
+
import "../src/Carousel.css";
|
|
6
|
+
|
|
7
|
+
export class Carousel extends HTMLWidget {
|
|
8
|
+
|
|
9
|
+
protected _prevActive: number = 0;
|
|
10
|
+
protected _root;
|
|
11
|
+
|
|
12
|
+
activeWidget(): Widget {
|
|
13
|
+
return this.widgets()[this.active()];
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
enter(domNode, element) {
|
|
17
|
+
super.enter(domNode, element);
|
|
18
|
+
this._root = element.append("div")
|
|
19
|
+
.attr("id", `${this.id()}_root`)
|
|
20
|
+
;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
update(domNode, element) {
|
|
24
|
+
super.update(domNode, element);
|
|
25
|
+
const active = this.active();
|
|
26
|
+
const width = this.width();
|
|
27
|
+
this._root
|
|
28
|
+
.style("width", `${width}px`)
|
|
29
|
+
.style("height", `${this.height()}px`)
|
|
30
|
+
;
|
|
31
|
+
const widgetElements = this._root.selectAll(`#${this.id()}_root > .carouselItem`).data(this.widgets(), d => d.id());
|
|
32
|
+
const update = widgetElements.enter().append("div")
|
|
33
|
+
.attr("class", "carouselItem")
|
|
34
|
+
.each(function (w) {
|
|
35
|
+
w.target(this);
|
|
36
|
+
})
|
|
37
|
+
.merge(widgetElements)
|
|
38
|
+
.style("left", (d, i) => `${(i - this._prevActive) * width}px`)
|
|
39
|
+
.style("width", `${width}px`)
|
|
40
|
+
;
|
|
41
|
+
if (this._prevActive !== active) {
|
|
42
|
+
update
|
|
43
|
+
.style("display", (d, i) => i === this._prevActive || i === active ? null : "none") // Must be called before render callback (not inside transition)
|
|
44
|
+
.transition().duration(this.transitionDuration())
|
|
45
|
+
.style("left", (d, i) => `${(i - active) * width}px`)
|
|
46
|
+
.on("end", function (d, i) {
|
|
47
|
+
d3Select(this).style("display", () => i === active ? null : "none");
|
|
48
|
+
})
|
|
49
|
+
;
|
|
50
|
+
this._prevActive = active;
|
|
51
|
+
}
|
|
52
|
+
widgetElements.exit()
|
|
53
|
+
.each(function (w) {
|
|
54
|
+
w.target(null);
|
|
55
|
+
})
|
|
56
|
+
.remove()
|
|
57
|
+
;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
exit(domNode, element) {
|
|
61
|
+
this.widgets().forEach(w => w.target(null));
|
|
62
|
+
super.exit(domNode, element);
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
render(callback): this {
|
|
66
|
+
return super.render(w => {
|
|
67
|
+
if (!this.visible() || this.isDOMHidden()) {
|
|
68
|
+
if (callback) {
|
|
69
|
+
callback(w);
|
|
70
|
+
}
|
|
71
|
+
} else {
|
|
72
|
+
const aw = this.activeWidget();
|
|
73
|
+
if (aw) {
|
|
74
|
+
aw
|
|
75
|
+
.resize(this.size())
|
|
76
|
+
.render(w2 => {
|
|
77
|
+
if (callback) {
|
|
78
|
+
callback(w);
|
|
79
|
+
}
|
|
80
|
+
})
|
|
81
|
+
;
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
});
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
Carousel.prototype._class += " layout_Carousel";
|
|
88
|
+
|
|
89
|
+
export interface Carousel {
|
|
90
|
+
widgets(): Widget[];
|
|
91
|
+
widgets(_: Widget[]): this;
|
|
92
|
+
active(): number;
|
|
93
|
+
active(_: number): this;
|
|
94
|
+
transitionDuration(): Widget[];
|
|
95
|
+
transitionDuration(_: Widget[]): this;
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
Carousel.prototype.publish("widgets", [], "widgetArray", "Widgets", null, { render: false });
|
|
99
|
+
Carousel.prototype.publish("active", 0, "number", "Active widget");
|
|
100
|
+
Carousel.prototype.publish("transitionDuration", 500, "number", "Transition duration");
|
package/src/Cell.css
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
.layout_Cell .update-indicator {
|
|
2
|
-
box-sizing: border-box;
|
|
3
|
-
position: absolute;
|
|
4
|
-
top: 0px;
|
|
5
|
-
left: 0px;
|
|
6
|
-
padding: 0px;
|
|
7
|
-
z-index: 1000;
|
|
8
|
-
border-width: 0px;
|
|
9
|
-
border-style: solid;
|
|
10
|
-
pointer-events: none;
|
|
1
|
+
.layout_Cell .update-indicator {
|
|
2
|
+
box-sizing: border-box;
|
|
3
|
+
position: absolute;
|
|
4
|
+
top: 0px;
|
|
5
|
+
left: 0px;
|
|
6
|
+
padding: 0px;
|
|
7
|
+
z-index: 1000;
|
|
8
|
+
border-width: 0px;
|
|
9
|
+
border-style: solid;
|
|
10
|
+
pointer-events: none;
|
|
11
11
|
}
|
package/src/Cell.ts
CHANGED
|
@@ -1,94 +1,94 @@
|
|
|
1
|
-
import { Widget } from "@hpcc-js/common";
|
|
2
|
-
import { select as d3Select, selectAll as d3SelectAll } from "d3-selection";
|
|
3
|
-
import { Surface } from "./Surface.ts";
|
|
4
|
-
|
|
5
|
-
import "../src/Cell.css";
|
|
6
|
-
|
|
7
|
-
export class Cell extends Surface {
|
|
8
|
-
_indicateTheseIds;
|
|
9
|
-
|
|
10
|
-
constructor() {
|
|
11
|
-
super();
|
|
12
|
-
this._indicateTheseIds = [];
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
indicateTheseIds(): any[];
|
|
16
|
-
indicateTheseIds(_: any[]): Cell;
|
|
17
|
-
indicateTheseIds(_?: any[]): any[] | Cell {
|
|
18
|
-
if (!arguments.length) return this._indicateTheseIds;
|
|
19
|
-
this._indicateTheseIds = _;
|
|
20
|
-
return this;
|
|
21
|
-
}
|
|
22
|
-
|
|
23
|
-
enter(domNode, element) {
|
|
24
|
-
super.enter(domNode, element);
|
|
25
|
-
const context = this;
|
|
26
|
-
element
|
|
27
|
-
.classed("layout_Surface", true)
|
|
28
|
-
.on("mouseenter", function () { context.onMouseEnter(); })
|
|
29
|
-
.on("mouseleave", function () { context.onMouseLeave(); })
|
|
30
|
-
;
|
|
31
|
-
}
|
|
32
|
-
|
|
33
|
-
update(domNode, element) {
|
|
34
|
-
super.update(domNode, element);
|
|
35
|
-
}
|
|
36
|
-
|
|
37
|
-
onMouseEnter() {
|
|
38
|
-
const arr = this.indicateTheseIds();
|
|
39
|
-
const opacity = this.indicatorOpacity();
|
|
40
|
-
const indicatorBorderColor = this.indicatorBorderColor();
|
|
41
|
-
const indicatorGlowColor = this.indicatorGlowColor();
|
|
42
|
-
for (let i = 0; i < arr.length; i++) {
|
|
43
|
-
const otherElement = d3Select("#" + arr[i]);
|
|
44
|
-
const otherWidget: Widget = otherElement.datum() as Widget;
|
|
45
|
-
if (otherElement && otherWidget) {
|
|
46
|
-
otherElement.append("div")
|
|
47
|
-
.attr("class", "update-indicator")
|
|
48
|
-
.style("width", otherWidget.width() + "px")
|
|
49
|
-
.style("height", otherWidget.height() + "px")
|
|
50
|
-
.style("opacity", opacity)
|
|
51
|
-
.style("border-color", indicatorBorderColor)
|
|
52
|
-
.style("-webkit-box-shadow", "inset 0px 0px 30px 0px " + indicatorGlowColor)
|
|
53
|
-
.style("-moz-box-shadow", "inset 0px 0px 30px 0px " + indicatorGlowColor)
|
|
54
|
-
.style("box-shadow", "inset 0px 0px 30px 0px " + indicatorGlowColor)
|
|
55
|
-
;
|
|
56
|
-
}
|
|
57
|
-
}
|
|
58
|
-
}
|
|
59
|
-
|
|
60
|
-
onMouseLeave() {
|
|
61
|
-
const arr = this.indicateTheseIds();
|
|
62
|
-
for (let i = 0; i < arr.length; i++) {
|
|
63
|
-
d3SelectAll("#" + arr[i] + " > div.update-indicator").remove();
|
|
64
|
-
}
|
|
65
|
-
}
|
|
66
|
-
}
|
|
67
|
-
Cell.prototype._class += " layout_Cell";
|
|
68
|
-
|
|
69
|
-
export interface Cell {
|
|
70
|
-
gridRow(): number;
|
|
71
|
-
gridRow(_: number): this;
|
|
72
|
-
gridCol(): number;
|
|
73
|
-
gridCol(_: number): this;
|
|
74
|
-
gridRowSpan(): number;
|
|
75
|
-
gridRowSpan(_: number): this;
|
|
76
|
-
gridColSpan(): number;
|
|
77
|
-
gridColSpan(_: number): this;
|
|
78
|
-
|
|
79
|
-
indicatorGlowColor(): string;
|
|
80
|
-
indicatorGlowColor(_: string): this;
|
|
81
|
-
indicatorBorderColor(): string;
|
|
82
|
-
indicatorBorderColor(_: string): this;
|
|
83
|
-
indicatorOpacity(): number;
|
|
84
|
-
indicatorOpacity(_: number): this;
|
|
85
|
-
}
|
|
86
|
-
|
|
87
|
-
Cell.prototype.publish("gridRow", 0, "number", "Grid Row Position", null, { tags: ["Private"] });
|
|
88
|
-
Cell.prototype.publish("gridCol", 0, "number", "Grid Column Position", null, { tags: ["Private"] });
|
|
89
|
-
Cell.prototype.publish("gridRowSpan", 1, "number", "Grid Row Span", null, { tags: ["Private"] });
|
|
90
|
-
Cell.prototype.publish("gridColSpan", 1, "number", "Grid Column Span", null, { tags: ["Private"] });
|
|
91
|
-
|
|
92
|
-
Cell.prototype.publish("indicatorGlowColor", "#EEEE11", "html-color", "Glow color of update-indicator", null, { tags: ["Basic"] });
|
|
93
|
-
Cell.prototype.publish("indicatorBorderColor", "#F48A00", "html-color", "Border color of update-indicator", null, { tags: ["Basic"] });
|
|
94
|
-
Cell.prototype.publish("indicatorOpacity", 0.8, "number", "Opacity of update-indicator", null, { tags: ["Basic"] });
|
|
1
|
+
import { Widget } from "@hpcc-js/common";
|
|
2
|
+
import { select as d3Select, selectAll as d3SelectAll } from "d3-selection";
|
|
3
|
+
import { Surface } from "./Surface.ts";
|
|
4
|
+
|
|
5
|
+
import "../src/Cell.css";
|
|
6
|
+
|
|
7
|
+
export class Cell extends Surface {
|
|
8
|
+
_indicateTheseIds;
|
|
9
|
+
|
|
10
|
+
constructor() {
|
|
11
|
+
super();
|
|
12
|
+
this._indicateTheseIds = [];
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
indicateTheseIds(): any[];
|
|
16
|
+
indicateTheseIds(_: any[]): Cell;
|
|
17
|
+
indicateTheseIds(_?: any[]): any[] | Cell {
|
|
18
|
+
if (!arguments.length) return this._indicateTheseIds;
|
|
19
|
+
this._indicateTheseIds = _;
|
|
20
|
+
return this;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
enter(domNode, element) {
|
|
24
|
+
super.enter(domNode, element);
|
|
25
|
+
const context = this;
|
|
26
|
+
element
|
|
27
|
+
.classed("layout_Surface", true)
|
|
28
|
+
.on("mouseenter", function () { context.onMouseEnter(); })
|
|
29
|
+
.on("mouseleave", function () { context.onMouseLeave(); })
|
|
30
|
+
;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
update(domNode, element) {
|
|
34
|
+
super.update(domNode, element);
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
onMouseEnter() {
|
|
38
|
+
const arr = this.indicateTheseIds();
|
|
39
|
+
const opacity = this.indicatorOpacity();
|
|
40
|
+
const indicatorBorderColor = this.indicatorBorderColor();
|
|
41
|
+
const indicatorGlowColor = this.indicatorGlowColor();
|
|
42
|
+
for (let i = 0; i < arr.length; i++) {
|
|
43
|
+
const otherElement = d3Select("#" + arr[i]);
|
|
44
|
+
const otherWidget: Widget = otherElement.datum() as Widget;
|
|
45
|
+
if (otherElement && otherWidget) {
|
|
46
|
+
otherElement.append("div")
|
|
47
|
+
.attr("class", "update-indicator")
|
|
48
|
+
.style("width", otherWidget.width() + "px")
|
|
49
|
+
.style("height", otherWidget.height() + "px")
|
|
50
|
+
.style("opacity", opacity)
|
|
51
|
+
.style("border-color", indicatorBorderColor)
|
|
52
|
+
.style("-webkit-box-shadow", "inset 0px 0px 30px 0px " + indicatorGlowColor)
|
|
53
|
+
.style("-moz-box-shadow", "inset 0px 0px 30px 0px " + indicatorGlowColor)
|
|
54
|
+
.style("box-shadow", "inset 0px 0px 30px 0px " + indicatorGlowColor)
|
|
55
|
+
;
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
onMouseLeave() {
|
|
61
|
+
const arr = this.indicateTheseIds();
|
|
62
|
+
for (let i = 0; i < arr.length; i++) {
|
|
63
|
+
d3SelectAll("#" + arr[i] + " > div.update-indicator").remove();
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
Cell.prototype._class += " layout_Cell";
|
|
68
|
+
|
|
69
|
+
export interface Cell {
|
|
70
|
+
gridRow(): number;
|
|
71
|
+
gridRow(_: number): this;
|
|
72
|
+
gridCol(): number;
|
|
73
|
+
gridCol(_: number): this;
|
|
74
|
+
gridRowSpan(): number;
|
|
75
|
+
gridRowSpan(_: number): this;
|
|
76
|
+
gridColSpan(): number;
|
|
77
|
+
gridColSpan(_: number): this;
|
|
78
|
+
|
|
79
|
+
indicatorGlowColor(): string;
|
|
80
|
+
indicatorGlowColor(_: string): this;
|
|
81
|
+
indicatorBorderColor(): string;
|
|
82
|
+
indicatorBorderColor(_: string): this;
|
|
83
|
+
indicatorOpacity(): number;
|
|
84
|
+
indicatorOpacity(_: number): this;
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
Cell.prototype.publish("gridRow", 0, "number", "Grid Row Position", null, { tags: ["Private"] });
|
|
88
|
+
Cell.prototype.publish("gridCol", 0, "number", "Grid Column Position", null, { tags: ["Private"] });
|
|
89
|
+
Cell.prototype.publish("gridRowSpan", 1, "number", "Grid Row Span", null, { tags: ["Private"] });
|
|
90
|
+
Cell.prototype.publish("gridColSpan", 1, "number", "Grid Column Span", null, { tags: ["Private"] });
|
|
91
|
+
|
|
92
|
+
Cell.prototype.publish("indicatorGlowColor", "#EEEE11", "html-color", "Glow color of update-indicator", null, { tags: ["Basic"] });
|
|
93
|
+
Cell.prototype.publish("indicatorBorderColor", "#F48A00", "html-color", "Border color of update-indicator", null, { tags: ["Basic"] });
|
|
94
|
+
Cell.prototype.publish("indicatorOpacity", 0.8, "number", "Opacity of update-indicator", null, { tags: ["Basic"] });
|
package/src/ChartPanel.css
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
.layout_ChartPanel .series.highlight {
|
|
2
|
-
stroke-width: 2px;
|
|
3
|
-
opacity: 1;
|
|
4
|
-
}
|
|
5
|
-
|
|
6
|
-
.layout_ChartPanel .series.lowlight {
|
|
7
|
-
opacity: 0.3 !important;
|
|
1
|
+
.layout_ChartPanel .series.highlight {
|
|
2
|
+
stroke-width: 2px;
|
|
3
|
+
opacity: 1;
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
.layout_ChartPanel .series.lowlight {
|
|
7
|
+
opacity: 0.3 !important;
|
|
8
8
|
}
|