playbook_ui 14.4.0.pre.alpha.stephenagreerpatch13910 → 14.4.0.pre.alpha.stephenagreerpatch13922
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 857a05393d1d990bd238946ee66a80e05caff948a91b5e9b93cfdb5e1fb170f3
|
4
|
+
data.tar.gz: 37531091a2059af2146fbf9a4f5c0c5bc1c2da5767f973c7635e0e17d8479ee8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cad254215f961f4045ff47af3296ac73caad396b93b07613fd45a1f28c93c6c62b3dd0b2483b312466cf764587ad19cd888f14a6020f77745c1c77365939ed66
|
7
|
+
data.tar.gz: 72a25a842824ccf2f46d0c214a91de57389eef641d9443f0b785431bec2e2f44775b62b8e69cae828b736f7a359dd8154a4c07d35372d0533819d5e73f0a3fd1
|
@@ -10,13 +10,13 @@ import { highchartsDarkTheme } from "../pb_dashboard/pbChartsDarkTheme";
|
|
10
10
|
|
11
11
|
type GanttChartProps = {
|
12
12
|
aria?: { [key: string]: string };
|
13
|
+
chartRef?: any;
|
13
14
|
className?: string;
|
14
15
|
customOptions: Partial<Highcharts.Options>;
|
15
16
|
dark?: boolean;
|
16
17
|
data?: { [key: string]: string };
|
17
18
|
htmlOptions?: { [key: string]: string | number | boolean | (() => void) };
|
18
19
|
id?: string;
|
19
|
-
ref?: any
|
20
20
|
};
|
21
21
|
|
22
22
|
const GanttChart = (props: GanttChartProps) => {
|
@@ -28,7 +28,7 @@ const GanttChart = (props: GanttChartProps) => {
|
|
28
28
|
data = {},
|
29
29
|
htmlOptions = {},
|
30
30
|
id,
|
31
|
-
|
31
|
+
chartRef,
|
32
32
|
} = props;
|
33
33
|
|
34
34
|
const ariaProps = buildAriaProps(aria);
|
@@ -66,7 +66,7 @@ const GanttChart = (props: GanttChartProps) => {
|
|
66
66
|
}}
|
67
67
|
highcharts={Highcharts}
|
68
68
|
options={options}
|
69
|
-
ref={
|
69
|
+
ref={chartRef}
|
70
70
|
/>
|
71
71
|
</div>
|
72
72
|
);
|