playbook_ui 14.4.0.pre.alpha.PLAY1546highchartsbump3822 → 14.4.0.pre.alpha.PLAY1546highchartsbump3831
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: 89173de0112714a686d3d368576a8181008c356eb20789db57783c8ee0c8760e
|
4
|
+
data.tar.gz: 1fe5c309cb2f0963d090d37ec3dae21921c627b2ba8e3681e0918be9aa523de4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5f984395028d84a82e3b95594c3b7ef845564c38f81e3aeb5177a55267fa32b64c8e8e676e61afb466c0269dd57e71113dbf2d799ecdac5ba9ef0a739d9fbacf
|
7
|
+
data.tar.gz: 351c2e20591f9637b8f4ae946d64f49b174eb9aa932d1edf9d1257081be43b11d79b725ef15e93301cf142d7268121afddd26279bd05ce9c260f54b425bd104b
|
@@ -3,11 +3,7 @@ import typography from '../tokens/exports/_typography.module.scss'
|
|
3
3
|
|
4
4
|
import { ThemeProps } from './themeTypes'
|
5
5
|
|
6
|
-
|
7
|
-
traverseUpButton?: {
|
8
|
-
position: { y: number };
|
9
|
-
};
|
10
|
-
}
|
6
|
+
import { PlotTreemapOptions } from "highcharts";
|
11
7
|
|
12
8
|
const highchartsDarkTheme: ThemeProps = {
|
13
9
|
lang: {
|
@@ -206,7 +202,7 @@ const highchartsDarkTheme: ThemeProps = {
|
|
206
202
|
traverseUpButton: {
|
207
203
|
position: { y: -50 },
|
208
204
|
},
|
209
|
-
} as
|
205
|
+
} as PlotTreemapOptions,
|
210
206
|
},
|
211
207
|
credits: {
|
212
208
|
enabled: false
|
@@ -3,12 +3,7 @@ import typography from '../tokens/exports/_typography.module.scss'
|
|
3
3
|
|
4
4
|
import { ThemeProps } from './themeTypes'
|
5
5
|
|
6
|
-
|
7
|
-
traverseUpButton?: {
|
8
|
-
position: { y: number };
|
9
|
-
};
|
10
|
-
}
|
11
|
-
|
6
|
+
import { PlotTreemapOptions } from "highcharts";
|
12
7
|
|
13
8
|
const highchartsTheme: ThemeProps = {
|
14
9
|
lang: {
|
@@ -206,7 +201,7 @@ const highchartsTheme: ThemeProps = {
|
|
206
201
|
traverseUpButton: {
|
207
202
|
position: { y: -50 },
|
208
203
|
},
|
209
|
-
} as
|
204
|
+
} as PlotTreemapOptions,
|
210
205
|
},
|
211
206
|
credits: {
|
212
207
|
enabled: false
|
data/lib/playbook/version.rb
CHANGED