playbook_ui 14.4.0.pre.alpha.stephenagreerpatch13908 → 14.4.0.pre.alpha.stephenagreerpatch13909
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/pb_kits/playbook/pb_gantt_chart/_gantt_chart.tsx +3 -2
- data/dist/chunks/_weekday_stacked-DOACe6hl.js +45 -0
- data/dist/chunks/vendor.js +1 -1
- data/dist/playbook-doc.js +1 -1
- data/lib/playbook/version.rb +1 -1
- metadata +2 -2
- data/dist/chunks/_weekday_stacked-CBMwwJbo.js +0 -45
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c7a4586d236dd9febe4da317ebd2be3f529db1e450b44c70ccb07219b641118d
|
4
|
+
data.tar.gz: 6525dec6853524950f4de356c655a69f12b7cc2358536838d8a07448a7790b1c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 05de3c61ab1c8051936fb16042edb884052f80f827ac073d5afe1bdddb27850aae95b619a956fe97cb5a05d1e095a3aa400a678d0e71f9205be4554973130d8a
|
7
|
+
data.tar.gz: a1849f2bc5aa09240afbd9bd427a07e4550870e07226d3adad5a50872b8b0184aaf4ced88a177a8bcf45efb2fd8672b23a91757c78262f3d8829b37a65f73d1f
|
@@ -2,7 +2,7 @@ import React, { useState, useEffect } from "react";
|
|
2
2
|
import classnames from "classnames";
|
3
3
|
import { buildAriaProps, buildCss, buildDataProps, buildHtmlProps } from "../utilities/props";
|
4
4
|
import { globalProps } from "../utilities/globalProps";
|
5
|
-
import HighchartsReact
|
5
|
+
import HighchartsReact from "highcharts-react-official";
|
6
6
|
import Highcharts from "highcharts/highcharts-gantt";
|
7
7
|
|
8
8
|
import { highchartsTheme } from "../pb_dashboard/pbChartsLightTheme";
|
@@ -16,7 +16,7 @@ type GanttChartProps = {
|
|
16
16
|
data?: { [key: string]: string };
|
17
17
|
htmlOptions?: { [key: string]: string | number | boolean | (() => void) };
|
18
18
|
id?: string;
|
19
|
-
ref?:
|
19
|
+
ref?: HighchartsReact.RefObject;
|
20
20
|
};
|
21
21
|
|
22
22
|
const GanttChart = (props: GanttChartProps) => {
|
@@ -28,6 +28,7 @@ const GanttChart = (props: GanttChartProps) => {
|
|
28
28
|
data = {},
|
29
29
|
htmlOptions = {},
|
30
30
|
id,
|
31
|
+
ref,
|
31
32
|
} = props;
|
32
33
|
|
33
34
|
const ariaProps = buildAriaProps(aria);
|