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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 296511fa627c7244c6800792f275f2fa7f3381ce08dbfe4f3b779e0d1c05de2a
4
- data.tar.gz: 66c56a9286406e505c88073a4f58054c5f6c90ee2cdb2e6c8f1cc22de5c4dd85
3
+ metadata.gz: c7a4586d236dd9febe4da317ebd2be3f529db1e450b44c70ccb07219b641118d
4
+ data.tar.gz: 6525dec6853524950f4de356c655a69f12b7cc2358536838d8a07448a7790b1c
5
5
  SHA512:
6
- metadata.gz: a401fb65fc99a34e09688477399df5e8b862e2c096815001f0d0c08e8c906bc03a80bb22b31f8e9318b5881bc49110e521ad00872aea214af5394d2d09d61a22
7
- data.tar.gz: 00fb9ae82588a9aeb50ba582efda41a369b673602bbecafa22e6fffcac5f806f13719f4cf573a78f320a439dbf00d4eaaf5dc5028b0c91bed13533ddf0a33679
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, { HighchartsReactRefObject } from "highcharts-react-official";
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?: HighchartsReactRefObject;
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);