playbook_ui 14.4.0.pre.alpha.PLAY1546highchartsbump3831 → 14.4.0.pre.alpha.PLAY1562highchartsbump3819
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: 97228845b448a163135025419bb6c223b4c4b0f37f4aad4cf239f9d3bf21639a
|
4
|
+
data.tar.gz: cbb30004b258be8f9bf2cc04e0f4d594bc90f94d89aeb97b57e8927c590d4daf
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a95c812b64ce4a792bbb8f5b433cef7cb74b20b4224ae8e81ba83d6379c60f839f2c089afc077f9ca189a2ba9e074a9e5943318cd6e54c66df71080fe401294d
|
7
|
+
data.tar.gz: 10edc2d87a52fab3c7de13169df6606146410f83fd47e3bc2c0497856166dd9283444b44c5119e4978c2c30dbaf2884375a16f7122f336f623733da1c6a6b243
|
@@ -3,7 +3,11 @@ import typography from '../tokens/exports/_typography.module.scss'
|
|
3
3
|
|
4
4
|
import { ThemeProps } from './themeTypes'
|
5
5
|
|
6
|
-
|
6
|
+
interface CustomTreemapOptions extends Highcharts.SeriesTreemapOptions {
|
7
|
+
traverseUpButton?: {
|
8
|
+
position: { y: number };
|
9
|
+
};
|
10
|
+
}
|
7
11
|
|
8
12
|
const highchartsDarkTheme: ThemeProps = {
|
9
13
|
lang: {
|
@@ -202,7 +206,7 @@ const highchartsDarkTheme: ThemeProps = {
|
|
202
206
|
traverseUpButton: {
|
203
207
|
position: { y: -50 },
|
204
208
|
},
|
205
|
-
} as
|
209
|
+
} as CustomTreemapOptions,
|
206
210
|
},
|
207
211
|
credits: {
|
208
212
|
enabled: false
|
@@ -3,7 +3,12 @@ import typography from '../tokens/exports/_typography.module.scss'
|
|
3
3
|
|
4
4
|
import { ThemeProps } from './themeTypes'
|
5
5
|
|
6
|
-
|
6
|
+
interface CustomTreemapOptions extends Highcharts.SeriesTreemapOptions {
|
7
|
+
traverseUpButton?: {
|
8
|
+
position: { y: number };
|
9
|
+
};
|
10
|
+
}
|
11
|
+
|
7
12
|
|
8
13
|
const highchartsTheme: ThemeProps = {
|
9
14
|
lang: {
|
@@ -201,7 +206,7 @@ const highchartsTheme: ThemeProps = {
|
|
201
206
|
traverseUpButton: {
|
202
207
|
position: { y: -50 },
|
203
208
|
},
|
204
|
-
} as
|
209
|
+
} as CustomTreemapOptions,
|
205
210
|
},
|
206
211
|
credits: {
|
207
212
|
enabled: false
|
data/lib/playbook/version.rb
CHANGED