playbook_ui 13.12.0.pre.alpha.PLAY1051removinghighchartsdependency1551 → 13.12.0.pre.alpha.PLAY1081exportingtypes1626
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/app/pb_kits/playbook/pb_bar_graph/_bar_graph.tsx +32 -36
- data/app/pb_kits/playbook/pb_circle_chart/_circle_chart.tsx +63 -67
- data/app/pb_kits/playbook/pb_gauge/_gauge.tsx +46 -57
- data/app/pb_kits/playbook/pb_line_graph/_line_graph.tsx +34 -39
- data/app/pb_kits/playbook/pb_multiple_users/docs/_multiple_users_default_swift.md +11 -0
- data/app/pb_kits/playbook/pb_multiple_users/docs/_multiple_users_props_swift.md +7 -0
- data/app/pb_kits/playbook/pb_multiple_users/docs/_multiple_users_reverse_swift.md +13 -0
- data/app/pb_kits/playbook/pb_multiple_users/docs/_multiple_users_size_swift.md +11 -0
- data/app/pb_kits/playbook/pb_multiple_users/docs/example.yml +6 -0
- data/app/pb_kits/playbook/pb_multiple_users_stacked/docs/_multiple_users_stacked_default_swift.md +15 -0
- data/app/pb_kits/playbook/pb_multiple_users_stacked/docs/_multiple_users_stacked_props_swift.md +5 -0
- data/app/pb_kits/playbook/pb_multiple_users_stacked/docs/_multiple_users_stacked_small_swift.md +15 -0
- data/app/pb_kits/playbook/pb_multiple_users_stacked/docs/_multiple_users_stacked_xsmall_swift.md +15 -0
- data/app/pb_kits/playbook/pb_multiple_users_stacked/docs/example.yml +6 -0
- data/app/pb_kits/playbook/pb_text_input/docs/_text_input_add_on_swift.md +35 -0
- data/app/pb_kits/playbook/pb_text_input/docs/_text_input_default_swift.md +29 -0
- data/app/pb_kits/playbook/pb_text_input/docs/_text_input_disabled_swift.md +13 -0
- data/app/pb_kits/playbook/pb_text_input/docs/_text_input_error_swift.md +24 -0
- data/app/pb_kits/playbook/pb_text_input/docs/_text_input_props_swift.md +13 -0
- data/app/pb_kits/playbook/pb_text_input/docs/example.yml +7 -0
- data/app/pb_kits/playbook/pb_toggle/docs/_toggle_default_swift.md +11 -0
- data/app/pb_kits/playbook/pb_toggle/docs/_toggle_name_swift.md +10 -0
- data/app/pb_kits/playbook/pb_toggle/docs/_toggle_props_swift.md +6 -0
- data/app/pb_kits/playbook/pb_toggle/docs/example.yml +4 -0
- data/app/pb_kits/playbook/pb_treemap_chart/_treemap_chart.tsx +28 -33
- data/dist/playbook-rails.js +7 -7
- data/lib/playbook/version.rb +1 -1
- metadata +18 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7ee605d1466a2a7ba9a7b05901fc8b1a083d0ffec0d02dedca675ebe5446cd09
|
4
|
+
data.tar.gz: 136ae5d6bf922f8ba660a633bd86001cc62e5f6db06812bbe281fedebedf8752
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1535ad95338169cda8d1dfea974a6ca5e42e9a68c992dbb1b6ef82f186d39442b0693e3324a0bfe65071b081396b5f448bf7e9b5b1e7d32ad13d824f24b0dd4f
|
7
|
+
data.tar.gz: c49ffebb22ba2f15eff141a070b6c69ba998f7d19830103cb4267633a62489098f48b1d49f42ad801a87c5a102db5f160ee7636255daa0d1f3d121bd06078642
|
@@ -3,6 +3,7 @@ import { globalProps } from "../utilities/globalProps";
|
|
3
3
|
import { buildAriaProps, buildDataProps } from "../utilities/props";
|
4
4
|
|
5
5
|
import HighchartsReact from "highcharts-react-official";
|
6
|
+
import Highcharts from "highcharts";
|
6
7
|
import { highchartsTheme } from "../pb_dashboard/pbChartsLightTheme";
|
7
8
|
import { highchartsDarkTheme } from "../pb_dashboard/pbChartsDarkTheme";
|
8
9
|
import mapColors from "../pb_dashboard/pbChartsColorsHelper";
|
@@ -10,31 +11,32 @@ import mapColors from "../pb_dashboard/pbChartsColorsHelper";
|
|
10
11
|
import classnames from "classnames";
|
11
12
|
|
12
13
|
type BarGraphProps = {
|
13
|
-
align?: "left" | "right" | "center"
|
14
|
-
axisTitle: string
|
15
|
-
dark?: boolean
|
16
|
-
xAxisCategories: []
|
17
|
-
yAxisMin: number
|
18
|
-
yAxisMax: number
|
19
|
-
chartData: { name: string
|
20
|
-
className?: string
|
21
|
-
id: any
|
22
|
-
pointStart: number | any
|
23
|
-
subTitle?: string
|
24
|
-
title: string
|
25
|
-
type?: string
|
26
|
-
legend?: boolean
|
27
|
-
toggleLegendClick?: boolean
|
28
|
-
height?: string
|
29
|
-
colors: string[]
|
30
|
-
layout?: "horizontal" | "vertical" | "proximate"
|
31
|
-
verticalAlign?: "top" | "middle" | "bottom"
|
32
|
-
x?: number
|
33
|
-
y?: number
|
34
|
-
aria?: { [key: string]: string }
|
35
|
-
data?: { [key: string]: string }
|
14
|
+
align?: "left" | "right" | "center";
|
15
|
+
axisTitle: string;
|
16
|
+
dark?: boolean;
|
17
|
+
xAxisCategories: [];
|
18
|
+
yAxisMin: number;
|
19
|
+
yAxisMax: number;
|
20
|
+
chartData: { name: string; data: number[] }[];
|
21
|
+
className?: string;
|
22
|
+
id: any;
|
23
|
+
pointStart: number | any;
|
24
|
+
subTitle?: string;
|
25
|
+
title: string;
|
26
|
+
type?: string;
|
27
|
+
legend?: boolean;
|
28
|
+
toggleLegendClick?: boolean;
|
29
|
+
height?: string;
|
30
|
+
colors: string[];
|
31
|
+
layout?: "horizontal" | "vertical" | "proximate";
|
32
|
+
verticalAlign?: "top" | "middle" | "bottom";
|
33
|
+
x?: number;
|
34
|
+
y?: number;
|
35
|
+
aria?: { [key: string]: string };
|
36
|
+
data?: { [key: string]: string };
|
36
37
|
};
|
37
38
|
|
39
|
+
|
38
40
|
const BarGraph = ({
|
39
41
|
aria = {},
|
40
42
|
data = {},
|
@@ -63,6 +65,12 @@ const BarGraph = ({
|
|
63
65
|
}: BarGraphProps): React.ReactElement => {
|
64
66
|
const ariaProps = buildAriaProps(aria);
|
65
67
|
const dataProps = buildDataProps(data);
|
68
|
+
const setupTheme = () => {
|
69
|
+
dark
|
70
|
+
? Highcharts.setOptions(highchartsDarkTheme)
|
71
|
+
: Highcharts.setOptions(highchartsTheme);
|
72
|
+
};
|
73
|
+
setupTheme();
|
66
74
|
|
67
75
|
const staticOptions = {
|
68
76
|
title: {
|
@@ -115,24 +123,12 @@ const BarGraph = ({
|
|
115
123
|
}
|
116
124
|
|
117
125
|
const [options, setOptions] = useState({});
|
118
|
-
const [isHighchartsLoaded, setIsHighchartsLoaded] = useState(false)
|
119
126
|
|
120
127
|
useEffect(() => {
|
121
128
|
setOptions({ ...staticOptions });
|
122
|
-
|
123
|
-
const interval = setInterval(() => {
|
124
|
-
if (window.Highcharts) {
|
125
|
-
clearInterval(interval)
|
126
|
-
dark
|
127
|
-
? window.Highcharts.setOptions(highchartsDarkTheme)
|
128
|
-
: window.Highcharts.setOptions(highchartsTheme)
|
129
|
-
setIsHighchartsLoaded(true)
|
130
|
-
}
|
131
|
-
}, 0)
|
132
129
|
}, [chartData]);
|
133
130
|
|
134
131
|
return (
|
135
|
-
isHighchartsLoaded &&
|
136
132
|
<HighchartsReact
|
137
133
|
containerProps={{
|
138
134
|
className: classnames(globalProps(props), className),
|
@@ -140,7 +136,7 @@ const BarGraph = ({
|
|
140
136
|
...ariaProps,
|
141
137
|
...dataProps,
|
142
138
|
}}
|
143
|
-
highcharts={
|
139
|
+
highcharts={Highcharts}
|
144
140
|
options={options}
|
145
141
|
/>
|
146
142
|
);
|
@@ -3,6 +3,8 @@ import classnames from "classnames";
|
|
3
3
|
import HighchartsReact from "highcharts-react-official";
|
4
4
|
import highchartsMore from "highcharts/highcharts-more";
|
5
5
|
|
6
|
+
import Highcharts from "highcharts";
|
7
|
+
|
6
8
|
import { highchartsTheme } from "../pb_dashboard/pbChartsLightTheme";
|
7
9
|
import { highchartsDarkTheme } from "../pb_dashboard/pbChartsDarkTheme";
|
8
10
|
import mapColors from "../pb_dashboard/pbChartsColorsHelper";
|
@@ -10,35 +12,35 @@ import { globalProps } from "../utilities/globalProps";
|
|
10
12
|
import { buildAriaProps, buildDataProps } from "../utilities/props";
|
11
13
|
|
12
14
|
type CircleChartProps = {
|
13
|
-
align?: "left" | "right" | "center"
|
14
|
-
aria: { [key: string]: string }
|
15
|
-
chartData?: []
|
16
|
-
children?: Node
|
17
|
-
className?: string
|
18
|
-
colors?: string[]
|
19
|
-
dark?: Boolean
|
20
|
-
data?: Object
|
21
|
-
dataLabelHtml?: string
|
22
|
-
dataLabels?: boolean
|
23
|
-
height?: string
|
24
|
-
id?: string
|
25
|
-
innerSize?: "sm" | "md" | "lg" | "none"
|
26
|
-
legend?: boolean
|
27
|
-
maxPointSize?: number
|
28
|
-
minPointSize?: number
|
29
|
-
rounded?: boolean
|
30
|
-
startAngle?: number
|
31
|
-
style?: string
|
32
|
-
title?: string
|
33
|
-
tooltipHtml: string
|
34
|
-
useHtml?: boolean
|
35
|
-
zMin?: number
|
36
|
-
layout?: "horizontal" | "vertical" | "proximate"
|
37
|
-
verticalAlign?: "top" | "middle" | "bottom"
|
38
|
-
x?: number
|
39
|
-
y?: number
|
40
|
-
borderColor?: string
|
41
|
-
borderWidth?: number
|
15
|
+
align?: "left" | "right" | "center";
|
16
|
+
aria: { [key: string]: string };
|
17
|
+
chartData?: [];
|
18
|
+
children?: Node;
|
19
|
+
className?: string;
|
20
|
+
colors?: string[];
|
21
|
+
dark?: Boolean;
|
22
|
+
data?: Object;
|
23
|
+
dataLabelHtml?: string;
|
24
|
+
dataLabels?: boolean;
|
25
|
+
height?: string;
|
26
|
+
id?: string;
|
27
|
+
innerSize?: "sm" | "md" | "lg" | "none";
|
28
|
+
legend?: boolean;
|
29
|
+
maxPointSize?: number;
|
30
|
+
minPointSize?: number;
|
31
|
+
rounded?: boolean;
|
32
|
+
startAngle?: number;
|
33
|
+
style?: string;
|
34
|
+
title?: string;
|
35
|
+
tooltipHtml: string;
|
36
|
+
useHtml?: boolean;
|
37
|
+
zMin?: number;
|
38
|
+
layout?: "horizontal" | "vertical" | "proximate";
|
39
|
+
verticalAlign?: "top" | "middle" | "bottom";
|
40
|
+
x?: number;
|
41
|
+
y?: number;
|
42
|
+
borderColor?: string;
|
43
|
+
borderWidth?: number;
|
42
44
|
};
|
43
45
|
|
44
46
|
// Adjust Circle Chart Block Kit Dimensions to Match the Chart for Centering
|
@@ -88,11 +90,29 @@ const CircleChart = ({
|
|
88
90
|
}: CircleChartProps) => {
|
89
91
|
const ariaProps = buildAriaProps(aria);
|
90
92
|
const dataProps = buildDataProps(data);
|
93
|
+
highchartsMore(Highcharts);
|
94
|
+
|
95
|
+
const setupTheme = () => {
|
96
|
+
dark
|
97
|
+
? Highcharts.setOptions(highchartsDarkTheme)
|
98
|
+
: Highcharts.setOptions(highchartsTheme);
|
99
|
+
};
|
100
|
+
setupTheme();
|
101
|
+
|
102
|
+
Highcharts.setOptions({
|
103
|
+
tooltip: {
|
104
|
+
headerFormat: null,
|
105
|
+
pointFormat: tooltipHtml ? tooltipHtml : '<span style="font-weight: bold; color:{point.color};">●</span>{point.name}: ' + "<b>{point.y}</b>",
|
106
|
+
useHTML: useHtml,
|
107
|
+
},
|
108
|
+
});
|
109
|
+
|
91
110
|
const innerSizes = { sm: "35%", md: "50%", lg: "85%", none: "0%" };
|
92
|
-
const innerSizeFormat = (size: "sm" | "md" | "lg" | "none") =>
|
111
|
+
const innerSizeFormat = (size: "sm" | "md" | "lg" | "none") =>
|
112
|
+
innerSizes[size];
|
113
|
+
|
93
114
|
|
94
115
|
const [options, setOptions] = useState({});
|
95
|
-
const [isHighchartsLoaded, setIsHighchartsLoaded] = useState(false);
|
96
116
|
|
97
117
|
useEffect(() => {
|
98
118
|
const formattedChartData = chartData.map((obj: any) => {
|
@@ -149,50 +169,26 @@ const CircleChart = ({
|
|
149
169
|
credits: false,
|
150
170
|
};
|
151
171
|
setOptions({ ...staticOptions });
|
152
|
-
|
153
|
-
const interval = setInterval(() => {
|
154
|
-
if (window.Highcharts) {
|
155
|
-
clearInterval(interval)
|
156
|
-
dark
|
157
|
-
? window.Highcharts.setOptions(highchartsDarkTheme)
|
158
|
-
: window.Highcharts.setOptions(highchartsTheme)
|
159
|
-
|
160
|
-
highchartsMore(window.Highcharts);
|
161
|
-
|
162
|
-
window.Highcharts.setOptions({
|
163
|
-
tooltip: {
|
164
|
-
headerFormat: null,
|
165
|
-
pointFormat: tooltipHtml ? tooltipHtml : '<span style="font-weight: bold; color:{point.color};">●</span>{point.name}: ' + "<b>{point.y}</b>",
|
166
|
-
useHTML: useHtml,
|
167
|
-
},
|
168
|
-
});
|
169
|
-
|
170
|
-
setIsHighchartsLoaded(true)
|
171
|
-
}
|
172
|
-
}, 0)
|
173
172
|
}, [chartData]);
|
174
173
|
|
174
|
+
|
175
175
|
return (
|
176
176
|
<>
|
177
177
|
{children ? (
|
178
178
|
<div id={`wrapper-circle-chart-${id}`}>
|
179
|
-
|
180
|
-
|
181
|
-
|
182
|
-
|
183
|
-
|
184
|
-
|
185
|
-
|
186
|
-
|
187
|
-
|
188
|
-
|
189
|
-
options={options}
|
190
|
-
/>
|
191
|
-
}
|
179
|
+
<HighchartsReact
|
180
|
+
containerProps={{
|
181
|
+
className: classnames("pb_circle_chart", globalProps(props)),
|
182
|
+
id: id,
|
183
|
+
...ariaProps,
|
184
|
+
...dataProps,
|
185
|
+
}}
|
186
|
+
highcharts={Highcharts}
|
187
|
+
options={options}
|
188
|
+
/>
|
192
189
|
<div className="pb-circle-chart-block">{children}</div>
|
193
190
|
</div>
|
194
191
|
) : (
|
195
|
-
isHighchartsLoaded &&
|
196
192
|
<HighchartsReact
|
197
193
|
containerProps={{
|
198
194
|
className: classnames("pb_circle_chart", globalProps(props)),
|
@@ -200,7 +196,7 @@ const CircleChart = ({
|
|
200
196
|
...ariaProps,
|
201
197
|
...dataProps,
|
202
198
|
}}
|
203
|
-
highcharts={
|
199
|
+
highcharts={Highcharts}
|
204
200
|
options={options}
|
205
201
|
/>
|
206
202
|
)}
|
@@ -1,6 +1,7 @@
|
|
1
1
|
import React, { useState, useEffect } from "react";
|
2
2
|
import classnames from "classnames";
|
3
3
|
import HighchartsReact from "highcharts-react-official";
|
4
|
+
import Highcharts from "highcharts";
|
4
5
|
import { highchartsTheme } from "../pb_dashboard/pbChartsLightTheme";
|
5
6
|
import { highchartsDarkTheme } from "../pb_dashboard/pbChartsDarkTheme";
|
6
7
|
import mapColors from "../pb_dashboard/pbChartsColorsHelper";
|
@@ -13,26 +14,26 @@ import { buildAriaProps, buildCss, buildDataProps } from "../utilities/props";
|
|
13
14
|
import { globalProps } from "../utilities/globalProps";
|
14
15
|
|
15
16
|
type GaugeProps = {
|
16
|
-
aria: { [key: string]: string }
|
17
|
-
className?: string
|
18
|
-
chartData?: { name: string
|
19
|
-
dark?: Boolean
|
20
|
-
data?: { [key: string]: string }
|
21
|
-
disableAnimation?: boolean
|
22
|
-
fullCircle?: boolean
|
23
|
-
height?: string
|
24
|
-
id?: string
|
25
|
-
max?: number
|
26
|
-
min?: number
|
27
|
-
prefix?: string
|
28
|
-
showLabels?: boolean
|
29
|
-
style?: string
|
30
|
-
suffix?: string
|
31
|
-
title?: string
|
32
|
-
tooltipHtml?: string
|
33
|
-
colors: string[]
|
34
|
-
minorTickInterval: any
|
35
|
-
circumference: number[]
|
17
|
+
aria: { [key: string]: string };
|
18
|
+
className?: string;
|
19
|
+
chartData?: { name: string; value: number[] | number }[];
|
20
|
+
dark?: Boolean;
|
21
|
+
data?: { [key: string]: string };
|
22
|
+
disableAnimation?: boolean;
|
23
|
+
fullCircle?: boolean;
|
24
|
+
height?: string;
|
25
|
+
id?: string;
|
26
|
+
max?: number;
|
27
|
+
min?: number;
|
28
|
+
prefix?: string;
|
29
|
+
showLabels?: boolean;
|
30
|
+
style?: string;
|
31
|
+
suffix?: string;
|
32
|
+
title?: string;
|
33
|
+
tooltipHtml?: string;
|
34
|
+
colors: string[];
|
35
|
+
minorTickInterval: any;
|
36
|
+
circumference: number[];
|
36
37
|
};
|
37
38
|
|
38
39
|
const Gauge = ({
|
@@ -61,13 +62,28 @@ const Gauge = ({
|
|
61
62
|
}: GaugeProps) => {
|
62
63
|
const ariaProps = buildAriaProps(aria);
|
63
64
|
const dataProps = buildDataProps(data);
|
65
|
+
highchartsMore(Highcharts);
|
66
|
+
solidGauge(Highcharts);
|
67
|
+
const setupTheme = () => {
|
68
|
+
dark
|
69
|
+
? Highcharts.setOptions(highchartsDarkTheme)
|
70
|
+
: Highcharts.setOptions(highchartsTheme);
|
71
|
+
};
|
72
|
+
setupTheme();
|
73
|
+
|
74
|
+
//set tooltip directly to prevent being overriden by Highcharts defaults
|
75
|
+
Highcharts.setOptions({
|
76
|
+
tooltip: {
|
77
|
+
pointFormat: tooltipHtml,
|
78
|
+
followPointer: true,
|
79
|
+
},
|
80
|
+
});
|
64
81
|
|
65
82
|
const css = buildCss({
|
66
83
|
pb_gauge_kit: true,
|
67
84
|
});
|
68
85
|
|
69
86
|
const [options, setOptions] = useState({});
|
70
|
-
const [isHighchartsLoaded, setIsHighchartsLoaded] = useState(false);
|
71
87
|
|
72
88
|
useEffect(() => {
|
73
89
|
const formattedChartData = chartData.map((obj: any) => {
|
@@ -158,45 +174,18 @@ const Gauge = ({
|
|
158
174
|
|
159
175
|
setOptions({ ...staticOptions });
|
160
176
|
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
|
165
|
-
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
prefix.setAttribute("y", "28");
|
170
|
-
});
|
171
|
-
document
|
172
|
-
.querySelectorAll(".fix")
|
173
|
-
.forEach((fix) => fix.setAttribute("y", "38"));
|
174
|
-
}
|
175
|
-
}, 0)
|
176
|
-
|
177
|
-
dark
|
178
|
-
? window.Highcharts.setOptions(highchartsDarkTheme)
|
179
|
-
: window.Highcharts.setOptions(highchartsTheme)
|
180
|
-
|
181
|
-
highchartsMore(window.Highcharts);
|
182
|
-
solidGauge(window.Highcharts);
|
183
|
-
|
184
|
-
//set tooltip directly to prevent being overriden by window.Highcharts defaults
|
185
|
-
window.Highcharts.setOptions({
|
186
|
-
tooltip: {
|
187
|
-
pointFormat: tooltipHtml,
|
188
|
-
followPointer: true,
|
189
|
-
},
|
190
|
-
});
|
191
|
-
|
192
|
-
setIsHighchartsLoaded(true)
|
193
|
-
}
|
194
|
-
}, 0)
|
177
|
+
if (document.querySelector(".prefix")) {
|
178
|
+
document.querySelectorAll(".prefix").forEach((prefix) => {
|
179
|
+
prefix.setAttribute("y", "28");
|
180
|
+
});
|
181
|
+
document
|
182
|
+
.querySelectorAll(".fix")
|
183
|
+
.forEach((fix) => fix.setAttribute("y", "38"));
|
184
|
+
}
|
195
185
|
|
196
186
|
}, [chartData]);
|
197
187
|
|
198
188
|
return (
|
199
|
-
isHighchartsLoaded &&
|
200
189
|
<HighchartsReact
|
201
190
|
containerProps={{
|
202
191
|
className: classnames(css, globalProps(props)),
|
@@ -204,7 +193,7 @@ const Gauge = ({
|
|
204
193
|
...ariaProps,
|
205
194
|
...dataProps,
|
206
195
|
}}
|
207
|
-
highcharts={
|
196
|
+
highcharts={Highcharts}
|
208
197
|
options={options}
|
209
198
|
/>
|
210
199
|
);
|
@@ -4,38 +4,39 @@ import { globalProps } from "../utilities/globalProps";
|
|
4
4
|
import { buildAriaProps, buildDataProps } from "../utilities/props";
|
5
5
|
|
6
6
|
import HighchartsReact from "highcharts-react-official";
|
7
|
+
import Highcharts from "highcharts";
|
7
8
|
import { highchartsTheme } from "../pb_dashboard/pbChartsLightTheme";
|
8
9
|
import { highchartsDarkTheme } from "../pb_dashboard/pbChartsDarkTheme";
|
9
10
|
import mapColors from "../pb_dashboard/pbChartsColorsHelper";
|
10
11
|
|
11
12
|
type LineGraphProps = {
|
12
|
-
align?: "left" | "right" | "center"
|
13
|
-
axisTitle?: string
|
14
|
-
dark?: Boolean
|
15
|
-
xAxisCategories: []
|
16
|
-
yAxisMin: number
|
17
|
-
yAxisMax: number
|
18
|
-
className?: string
|
13
|
+
align?: "left" | "right" | "center";
|
14
|
+
axisTitle?: string;
|
15
|
+
dark?: Boolean;
|
16
|
+
xAxisCategories: [];
|
17
|
+
yAxisMin: number;
|
18
|
+
yAxisMax: number;
|
19
|
+
className?: string;
|
19
20
|
chartData: {
|
20
|
-
name: string
|
21
|
-
data: number[]
|
22
|
-
}[]
|
23
|
-
gradient?: boolean
|
24
|
-
id: string
|
25
|
-
pointStart: number
|
26
|
-
subTitle?: string
|
27
|
-
title: string
|
28
|
-
type?: string
|
29
|
-
legend?: boolean
|
30
|
-
toggleLegendClick?: boolean
|
31
|
-
height?: string
|
32
|
-
colors: string[]
|
33
|
-
layout?: "horizontal" | "vertical" | "proximate"
|
34
|
-
verticalAlign?: "top" | "middle" | "bottom"
|
35
|
-
x?: number
|
36
|
-
y?: number
|
37
|
-
aria?: { [key: string]: string }
|
38
|
-
data?: { [key: string]: string }
|
21
|
+
name: string;
|
22
|
+
data: number[];
|
23
|
+
}[];
|
24
|
+
gradient?: boolean;
|
25
|
+
id: string;
|
26
|
+
pointStart: number;
|
27
|
+
subTitle?: string;
|
28
|
+
title: string;
|
29
|
+
type?: string;
|
30
|
+
legend?: boolean;
|
31
|
+
toggleLegendClick?: boolean;
|
32
|
+
height?: string;
|
33
|
+
colors: string[];
|
34
|
+
layout?: "horizontal" | "vertical" | "proximate";
|
35
|
+
verticalAlign?: "top" | "middle" | "bottom";
|
36
|
+
x?: number;
|
37
|
+
y?: number;
|
38
|
+
aria?: { [key: string]: string };
|
39
|
+
data?: { [key: string]: string };
|
39
40
|
};
|
40
41
|
|
41
42
|
const LineGraph = ({
|
@@ -67,6 +68,12 @@ const LineGraph = ({
|
|
67
68
|
}: LineGraphProps) => {
|
68
69
|
const ariaProps = buildAriaProps(aria);
|
69
70
|
const dataProps = buildDataProps(data);
|
71
|
+
const setupTheme = () => {
|
72
|
+
dark
|
73
|
+
? Highcharts.setOptions(highchartsDarkTheme)
|
74
|
+
: Highcharts.setOptions(highchartsTheme);
|
75
|
+
};
|
76
|
+
setupTheme();
|
70
77
|
|
71
78
|
const staticOptions = {
|
72
79
|
title: {
|
@@ -119,24 +126,12 @@ const LineGraph = ({
|
|
119
126
|
}
|
120
127
|
|
121
128
|
const [options, setOptions] = useState({});
|
122
|
-
const [isHighchartsLoaded, setIsHighchartsLoaded] = useState(false);
|
123
129
|
|
124
130
|
useEffect(() => {
|
125
131
|
setOptions({ ...staticOptions });
|
126
|
-
|
127
|
-
const interval = setInterval(() => {
|
128
|
-
if (window.Highcharts) {
|
129
|
-
clearInterval(interval)
|
130
|
-
dark
|
131
|
-
? window.Highcharts.setOptions(highchartsDarkTheme)
|
132
|
-
: window.Highcharts.setOptions(highchartsTheme)
|
133
|
-
setIsHighchartsLoaded(true)
|
134
|
-
}
|
135
|
-
}, 0)
|
136
132
|
}, [chartData]);
|
137
133
|
|
138
134
|
return (
|
139
|
-
isHighchartsLoaded &&
|
140
135
|
<HighchartsReact
|
141
136
|
containerProps={{
|
142
137
|
className: classnames(globalProps(props), className),
|
@@ -144,7 +139,7 @@ const LineGraph = ({
|
|
144
139
|
...ariaProps,
|
145
140
|
...dataProps,
|
146
141
|
}}
|
147
|
-
highcharts={
|
142
|
+
highcharts={Highcharts}
|
148
143
|
options={options}
|
149
144
|
/>
|
150
145
|
);
|
@@ -0,0 +1,11 @@
|
|
1
|
+

|
2
|
+
|
3
|
+
```swift
|
4
|
+
|
5
|
+
let twoUsers = [andrew, picAndrew]
|
6
|
+
|
7
|
+
PBDoc(title: "xSmall") {
|
8
|
+
PBMultipleUsers(users: twoUsers, size: .xSmall)
|
9
|
+
}
|
10
|
+
|
11
|
+
```
|
@@ -0,0 +1,7 @@
|
|
1
|
+
### Props
|
2
|
+
| Name | Type | Description | Default | Values |
|
3
|
+
| --- | ----------- | --------- | --------- | --------- |
|
4
|
+
| **Users** | `[PBUser]` | Sets the user's avatars | | |
|
5
|
+
| **Size** | `AvatarSize` | Changes the size of the avatars | `.small` | `.xSmall` `.small` |
|
6
|
+
| **Reversed** | `Bool` | Changes the order of the avatars | `false` | `true` `false` |
|
7
|
+
| **Max Displayed Users** | `Int` | Limits the number of avatars displayed | `4` | |
|
@@ -0,0 +1,13 @@
|
|
1
|
+

|
2
|
+
|
3
|
+
```swift
|
4
|
+
|
5
|
+
let multipleUsers = [andrew, picAndrew, andrew, andrew]
|
6
|
+
let twoUsers = [andrew, picAndrew]
|
7
|
+
|
8
|
+
VStack(alignment: .leading, spacing: Spacing.small) {
|
9
|
+
PBMultipleUsers(users: multipleUsers, size: .small, reversed: true)
|
10
|
+
PBMultipleUsers(users: twoUsers, size: .small, reversed: true)
|
11
|
+
}
|
12
|
+
|
13
|
+
```
|
@@ -0,0 +1,11 @@
|
|
1
|
+

|
2
|
+
|
3
|
+
```swift
|
4
|
+
|
5
|
+
let multipleUsers = [andrew, picAndrew, andrew, andrew]
|
6
|
+
|
7
|
+
PBDoc(title: "Small") {
|
8
|
+
PBMultipleUsers(users: multipleUsers, size: .small)
|
9
|
+
}
|
10
|
+
|
11
|
+
```
|
@@ -10,3 +10,9 @@ examples:
|
|
10
10
|
- multiple_users_default: Default
|
11
11
|
- multiple_users_reverse: Reverse
|
12
12
|
- multiple_users_size: Size
|
13
|
+
|
14
|
+
swift:
|
15
|
+
- multiple_users_default_swift: Default
|
16
|
+
- multiple_users_reverse_swift: Reverse
|
17
|
+
- multiple_users_size_swift: Small
|
18
|
+
- multiple_users_props_swift: ""
|
data/app/pb_kits/playbook/pb_multiple_users_stacked/docs/_multiple_users_stacked_default_swift.md
ADDED
@@ -0,0 +1,15 @@
|
|
1
|
+

|
2
|
+
|
3
|
+
```swift
|
4
|
+
|
5
|
+
let oneUser = [andrew]
|
6
|
+
let twoUsers = [andrew, picAndrew]
|
7
|
+
let multipleUsers = [andrew, picAndrew, andrew, andrew]
|
8
|
+
|
9
|
+
HStack(spacing: Spacing.xSmall) {
|
10
|
+
PBMultipleUsersStacked(users: oneUser, size: .default)
|
11
|
+
PBMultipleUsersStacked(users: twoUsers, size: .default)
|
12
|
+
PBMultipleUsersStacked(users: multipleUsers, size: .default)
|
13
|
+
}
|
14
|
+
|
15
|
+
```
|
data/app/pb_kits/playbook/pb_multiple_users_stacked/docs/_multiple_users_stacked_props_swift.md
ADDED
@@ -0,0 +1,5 @@
|
|
1
|
+
### Props
|
2
|
+
| Name | Type | Description | Default | Values |
|
3
|
+
| --- | ----------- | --------- | --------- | --------- |
|
4
|
+
| **Users** | `[PBUser]` | Sets the user's avatars | | |
|
5
|
+
| **Size** | `Size` | Changes the size of the avatars | `.small` | `.default` `.small` `.xSmall` |
|
data/app/pb_kits/playbook/pb_multiple_users_stacked/docs/_multiple_users_stacked_small_swift.md
ADDED
@@ -0,0 +1,15 @@
|
|
1
|
+

|
2
|
+
|
3
|
+
```swift
|
4
|
+
|
5
|
+
let oneUser = [andrew]
|
6
|
+
let twoUsers = [andrew, picAndrew]
|
7
|
+
let multipleUsers = [andrew, picAndrew, andrew, andrew]
|
8
|
+
|
9
|
+
HStack(spacing: Spacing.xSmall) {
|
10
|
+
PBMultipleUsersStacked(users: oneUser)
|
11
|
+
PBMultipleUsersStacked(users: twoUsers)
|
12
|
+
PBMultipleUsersStacked(users: multipleUsers)
|
13
|
+
}
|
14
|
+
|
15
|
+
```
|
data/app/pb_kits/playbook/pb_multiple_users_stacked/docs/_multiple_users_stacked_xsmall_swift.md
ADDED
@@ -0,0 +1,15 @@
|
|
1
|
+

|
2
|
+
|
3
|
+
```swift
|
4
|
+
|
5
|
+
let oneUser = [andrew]
|
6
|
+
let twoUsers = [andrew, picAndrew]
|
7
|
+
let multipleUsers = [andrew, picAndrew, andrew, andrew]
|
8
|
+
|
9
|
+
HStack(spacing: Spacing.xSmall) {
|
10
|
+
PBMultipleUsersStacked(users: oneUser, size: .xSmall)
|
11
|
+
PBMultipleUsersStacked(users: twoUsers, size: .xSmall)
|
12
|
+
PBMultipleUsersStacked(users: multipleUsers, size: .xSmall)
|
13
|
+
}
|
14
|
+
|
15
|
+
```
|