playbook_ui_docs 15.3.0.pre.rc.6 → 15.3.0.pre.rc.7
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_pb_bar_graph/docs/_description.md +3 -0
- data/app/pb_kits/playbook/pb_pb_circle_chart/docs/_description.md +3 -0
- data/app/pb_kits/playbook/pb_pb_gauge_chart/docs/_description.md +3 -0
- data/app/pb_kits/playbook/pb_pb_gauge_chart/docs/_pb_gauge_chart_color.html.erb +12 -0
- data/app/pb_kits/playbook/pb_pb_gauge_chart/docs/_pb_gauge_chart_color.jsx +24 -0
- data/app/pb_kits/playbook/pb_pb_gauge_chart/docs/_pb_gauge_chart_color.md +5 -0
- data/app/pb_kits/playbook/pb_pb_gauge_chart/docs/_pb_gauge_chart_complex.html.erb +45 -0
- data/app/pb_kits/playbook/pb_pb_gauge_chart/docs/_pb_gauge_chart_complex.jsx +119 -0
- data/app/pb_kits/playbook/pb_pb_gauge_chart/docs/_pb_gauge_chart_complex.md +1 -0
- data/app/pb_kits/playbook/pb_pb_gauge_chart/docs/_pb_gauge_chart_default.html.erb +5 -0
- data/app/pb_kits/playbook/pb_pb_gauge_chart/docs/_pb_gauge_chart_default.jsx +17 -0
- data/app/pb_kits/playbook/pb_pb_gauge_chart/docs/_pb_gauge_chart_disable_animation.html.erb +12 -0
- data/app/pb_kits/playbook/pb_pb_gauge_chart/docs/_pb_gauge_chart_disable_animation.jsx +24 -0
- data/app/pb_kits/playbook/pb_pb_gauge_chart/docs/_pb_gauge_chart_full_circle.html.erb +23 -0
- data/app/pb_kits/playbook/pb_pb_gauge_chart/docs/_pb_gauge_chart_full_circle.jsx +37 -0
- data/app/pb_kits/playbook/pb_pb_gauge_chart/docs/_pb_gauge_chart_height.html.erb +40 -0
- data/app/pb_kits/playbook/pb_pb_gauge_chart/docs/_pb_gauge_chart_height.jsx +56 -0
- data/app/pb_kits/playbook/pb_pb_gauge_chart/docs/_pb_gauge_chart_live_data.jsx +64 -0
- data/app/pb_kits/playbook/pb_pb_gauge_chart/docs/_pb_gauge_chart_min_max.html.erb +27 -0
- data/app/pb_kits/playbook/pb_pb_gauge_chart/docs/_pb_gauge_chart_min_max.jsx +40 -0
- data/app/pb_kits/playbook/pb_pb_gauge_chart/docs/_pb_gauge_chart_min_max.md +1 -0
- data/app/pb_kits/playbook/pb_pb_gauge_chart/docs/_pb_gauge_chart_sizing.html.erb +19 -0
- data/app/pb_kits/playbook/pb_pb_gauge_chart/docs/_pb_gauge_chart_sizing.jsx +65 -0
- data/app/pb_kits/playbook/pb_pb_gauge_chart/docs/_pb_gauge_chart_sizing.md +3 -0
- data/app/pb_kits/playbook/pb_pb_gauge_chart/docs/_pb_gauge_chart_title.html.erb +14 -0
- data/app/pb_kits/playbook/pb_pb_gauge_chart/docs/_pb_gauge_chart_title.jsx +27 -0
- data/app/pb_kits/playbook/pb_pb_gauge_chart/docs/_pb_gauge_chart_units.html.erb +39 -0
- data/app/pb_kits/playbook/pb_pb_gauge_chart/docs/_pb_gauge_chart_units.jsx +58 -0
- data/app/pb_kits/playbook/pb_pb_gauge_chart/docs/_pb_gauge_chart_units.md +1 -0
- data/app/pb_kits/playbook/pb_pb_gauge_chart/docs/example.yml +29 -0
- data/app/pb_kits/playbook/pb_pb_gauge_chart/docs/index.js +11 -0
- data/app/pb_kits/playbook/pb_pb_line_graph/docs/_description.md +1 -1
- data/app/pb_kits/playbook/pb_typeahead/docs/_typeahead_default_options.html.erb +36 -0
- data/app/pb_kits/playbook/pb_typeahead/docs/_typeahead_default_options.md +1 -0
- data/app/pb_kits/playbook/pb_typeahead/docs/_typeahead_default_value.jsx +41 -0
- data/app/pb_kits/playbook/pb_typeahead/docs/_typeahead_default_value.md +1 -0
- data/app/pb_kits/playbook/pb_typeahead/docs/example.yml +2 -0
- data/app/pb_kits/playbook/pb_typeahead/docs/index.js +1 -0
- data/dist/playbook-doc.js +2 -2
- metadata +37 -2
@@ -0,0 +1,65 @@
|
|
1
|
+
import React from 'react'
|
2
|
+
import PbGaugeChart from '../../pb_pb_gauge_chart/_pb_gauge_chart'
|
3
|
+
import Flex from '../../pb_flex/_flex'
|
4
|
+
import FlexItem from '../../pb_flex/_flex_item'
|
5
|
+
|
6
|
+
|
7
|
+
const PbGaugeChartSizing = (props) => (
|
8
|
+
<div>
|
9
|
+
<Flex
|
10
|
+
align="center"
|
11
|
+
wrap
|
12
|
+
>
|
13
|
+
<FlexItem
|
14
|
+
fixedSize="400px"
|
15
|
+
overflow="hidden"
|
16
|
+
shrink
|
17
|
+
>
|
18
|
+
<PbGaugeChart
|
19
|
+
options={{
|
20
|
+
series: [{ data: [{ name: "Point 1", y: 100 }] }],
|
21
|
+
}}
|
22
|
+
/>
|
23
|
+
</FlexItem>
|
24
|
+
<FlexItem
|
25
|
+
fixedSize="300px"
|
26
|
+
overflow="hidden"
|
27
|
+
shrink
|
28
|
+
>
|
29
|
+
<PbGaugeChart
|
30
|
+
options={{
|
31
|
+
series: [{ data: [{ name: "Point 2", y: 75 }] }],
|
32
|
+
}}
|
33
|
+
{...props}
|
34
|
+
/>
|
35
|
+
</FlexItem>
|
36
|
+
<FlexItem
|
37
|
+
fixedSize="200px"
|
38
|
+
overflow="hidden"
|
39
|
+
shrink
|
40
|
+
>
|
41
|
+
<PbGaugeChart
|
42
|
+
options={{
|
43
|
+
series: [{ data: [{ name: "Point 3", y: 50 }] }],
|
44
|
+
}}
|
45
|
+
/>
|
46
|
+
</FlexItem>
|
47
|
+
<FlexItem
|
48
|
+
fixedSize="125px"
|
49
|
+
overflow="hidden"
|
50
|
+
shrink
|
51
|
+
>
|
52
|
+
<PbGaugeChart
|
53
|
+
options={{
|
54
|
+
chart: {
|
55
|
+
height: "100%",
|
56
|
+
},
|
57
|
+
series: [{ data: [{ name: "Point 4", y: 25 }] }],
|
58
|
+
}}
|
59
|
+
/>
|
60
|
+
</FlexItem>
|
61
|
+
</Flex>
|
62
|
+
</div>
|
63
|
+
)
|
64
|
+
|
65
|
+
export default PbGaugeChartSizing
|
@@ -0,0 +1,14 @@
|
|
1
|
+
<% data = [{ name: "Score", y: 780 }] %>
|
2
|
+
|
3
|
+
<% chart_options = {
|
4
|
+
title: {
|
5
|
+
text: "Credit Score",
|
6
|
+
},
|
7
|
+
yAxis: {
|
8
|
+
min: 300,
|
9
|
+
max: 850,
|
10
|
+
},
|
11
|
+
series: [{ data: data }],
|
12
|
+
} %>
|
13
|
+
|
14
|
+
<%= pb_rails("pb_gauge_chart", props: { options: chart_options }) %>
|
@@ -0,0 +1,27 @@
|
|
1
|
+
import React from 'react'
|
2
|
+
import PbGaugeChart from '../../pb_pb_gauge_chart/_pb_gauge_chart'
|
3
|
+
|
4
|
+
|
5
|
+
const data = [{ name: "Score", y: 780 }]
|
6
|
+
|
7
|
+
const chartOptions = {
|
8
|
+
title: {
|
9
|
+
text: "Credit Score",
|
10
|
+
},
|
11
|
+
yAxis: {
|
12
|
+
min: 300,
|
13
|
+
max: 850,
|
14
|
+
},
|
15
|
+
series: [{ data: data }],
|
16
|
+
};
|
17
|
+
|
18
|
+
const PbGaugeChartTitle = (props) => (
|
19
|
+
<div>
|
20
|
+
<PbGaugeChart
|
21
|
+
options={chartOptions}
|
22
|
+
{...props}
|
23
|
+
/>
|
24
|
+
</div>
|
25
|
+
)
|
26
|
+
|
27
|
+
export default PbGaugeChartTitle
|
@@ -0,0 +1,39 @@
|
|
1
|
+
<% data1 = [{ name: 'Data Used', y: 32 }] %>
|
2
|
+
<% data2 = [{ name: 'Sales to Date', y: 65 }] %>
|
3
|
+
|
4
|
+
<% chart_options_1 = {
|
5
|
+
title: {
|
6
|
+
text: "Data Usage",
|
7
|
+
},
|
8
|
+
series: [{ data: data1 }],
|
9
|
+
plotOptions: {
|
10
|
+
solidgauge: {
|
11
|
+
dataLabels: {
|
12
|
+
format:
|
13
|
+
'<span class="fix">{y:,f}</span>' +
|
14
|
+
'<span style="fill: #687887; font-size: 27px;">GB</span>',
|
15
|
+
},
|
16
|
+
},
|
17
|
+
},
|
18
|
+
} %>
|
19
|
+
|
20
|
+
<% chart_options_2 = {
|
21
|
+
title: {
|
22
|
+
text: "Sales Goal",
|
23
|
+
},
|
24
|
+
series: [{ data: data2 }],
|
25
|
+
plotOptions: {
|
26
|
+
solidgauge: {
|
27
|
+
dataLabels: {
|
28
|
+
format:
|
29
|
+
'<span y="28" style="fill: #687887; font-size: 16px;">$</span>' +
|
30
|
+
'<span class="fix" y="38">{y:,f}</span>' +
|
31
|
+
'<span style="fill: #687887; font-size: 27px;">k</span>',
|
32
|
+
},
|
33
|
+
},
|
34
|
+
},
|
35
|
+
} %>
|
36
|
+
|
37
|
+
|
38
|
+
<%= pb_rails("pb_gauge_chart", props: { options: chart_options_1 }) %>
|
39
|
+
<%= pb_rails("pb_gauge_chart", props: { options: chart_options_2 }) %>
|
@@ -0,0 +1,58 @@
|
|
1
|
+
import React from 'react'
|
2
|
+
import PbGaugeChart from '../../pb_pb_gauge_chart/_pb_gauge_chart'
|
3
|
+
import { colors, typography } from 'playbook-ui'
|
4
|
+
|
5
|
+
|
6
|
+
const data1 = [
|
7
|
+
{ name: 'Data Used', y: 32 },
|
8
|
+
]
|
9
|
+
const data2 = [
|
10
|
+
{ name: 'Sales to Date', y: 65 },
|
11
|
+
]
|
12
|
+
|
13
|
+
const chartOptions1 = {
|
14
|
+
title: {
|
15
|
+
text: "Data Usage",
|
16
|
+
},
|
17
|
+
series: [{ data: data1 }],
|
18
|
+
plotOptions: {
|
19
|
+
solidgauge: {
|
20
|
+
dataLabels: {
|
21
|
+
format:
|
22
|
+
`<span class="fix">{y:,f}</span>` +
|
23
|
+
`<span style="fill: ${colors.text_lt_light}; font-size: ${typography.text_larger};">GB</span>`,
|
24
|
+
},
|
25
|
+
},
|
26
|
+
},
|
27
|
+
};
|
28
|
+
const chartOptions2 = {
|
29
|
+
title: {
|
30
|
+
text: "Sales Goal",
|
31
|
+
},
|
32
|
+
series: [{ data: data2 }],
|
33
|
+
plotOptions: {
|
34
|
+
solidgauge: {
|
35
|
+
dataLabels: {
|
36
|
+
format:
|
37
|
+
`<span y="28" style="fill: ${colors.text_lt_light}; font-size: ${typography.text_base};">$</span>` +
|
38
|
+
`<span class="fix" y="38">{y:,f}</span>` +
|
39
|
+
`<span style="fill: ${colors.text_lt_light}; font-size: ${typography.text_larger};">k</span>`,
|
40
|
+
},
|
41
|
+
},
|
42
|
+
},
|
43
|
+
};
|
44
|
+
|
45
|
+
const PbGaugeChartUnits = (props) => (
|
46
|
+
<div>
|
47
|
+
<PbGaugeChart
|
48
|
+
options={chartOptions1}
|
49
|
+
{...props}
|
50
|
+
/>
|
51
|
+
<PbGaugeChart
|
52
|
+
options={chartOptions2}
|
53
|
+
{...props}
|
54
|
+
/>
|
55
|
+
</div>
|
56
|
+
)
|
57
|
+
|
58
|
+
export default PbGaugeChartUnits
|
@@ -0,0 +1 @@
|
|
1
|
+
Use custom CSS with classes or inline styles (as shown in these docs) to customize the appearance of prefix and suffix units.
|
@@ -0,0 +1,29 @@
|
|
1
|
+
examples:
|
2
|
+
|
3
|
+
rails:
|
4
|
+
- pb_gauge_chart_default: Default
|
5
|
+
- pb_gauge_chart_disable_animation: Disable Animation
|
6
|
+
- pb_gauge_chart_title: With Title
|
7
|
+
- pb_gauge_chart_units: With Units
|
8
|
+
- pb_gauge_chart_full_circle: Full Circle
|
9
|
+
- pb_gauge_chart_min_max: With Min and Max Labels
|
10
|
+
- pb_gauge_chart_sizing: Sizing
|
11
|
+
- pb_gauge_chart_height: Height
|
12
|
+
- pb_gauge_chart_color: Custom Color
|
13
|
+
- pb_gauge_chart_complex: Complex Example
|
14
|
+
|
15
|
+
|
16
|
+
react:
|
17
|
+
- pb_gauge_chart_default: Default
|
18
|
+
- pb_gauge_chart_disable_animation: Disable Animation
|
19
|
+
- pb_gauge_chart_title: With Title
|
20
|
+
- pb_gauge_chart_units: With Units
|
21
|
+
- pb_gauge_chart_full_circle: Full Circle
|
22
|
+
- pb_gauge_chart_min_max: With Min and Max Labels
|
23
|
+
- pb_gauge_chart_sizing: Sizing
|
24
|
+
- pb_gauge_chart_height: Height
|
25
|
+
- pb_gauge_chart_live_data: Live Data
|
26
|
+
- pb_gauge_chart_color: Custom Color
|
27
|
+
- pb_gauge_chart_complex: Complex Example
|
28
|
+
|
29
|
+
|
@@ -0,0 +1,11 @@
|
|
1
|
+
export { default as PbGaugeChartDefault } from './_pb_gauge_chart_default.jsx'
|
2
|
+
export { default as PbGaugeChartDisableAnimation } from './_pb_gauge_chart_disable_animation.jsx'
|
3
|
+
export { default as PbGaugeChartTitle } from './_pb_gauge_chart_title.jsx'
|
4
|
+
export { default as PbGaugeChartUnits } from './_pb_gauge_chart_units.jsx'
|
5
|
+
export { default as PbGaugeChartFullCircle } from './_pb_gauge_chart_full_circle.jsx'
|
6
|
+
export { default as PbGaugeChartMinMax } from './_pb_gauge_chart_min_max.jsx'
|
7
|
+
export { default as PbGaugeChartSizing } from './_pb_gauge_chart_sizing.jsx'
|
8
|
+
export { default as PbGaugeChartHeight } from './_pb_gauge_chart_height.jsx'
|
9
|
+
export { default as PbGaugeChartLiveData } from './_pb_gauge_chart_live_data.jsx'
|
10
|
+
export { default as PbGaugeChartColor } from './_pb_gauge_chart_color.jsx'
|
11
|
+
export { default as PbGaugeChartComplex } from './_pb_gauge_chart_complex.jsx'
|
@@ -1,3 +1,3 @@
|
|
1
|
-
This kit is a wrapper around the Highcharts library. It applies styling and default settings but does NOT ship Highcharts. In order to use this kit, 'highcharts' and 'highcharts-react-official' must be installed in your repo. Once done, any prop or functionality provided by Highcharts can be used with this kit without requiring
|
1
|
+
This kit is a wrapper around the Highcharts library. It applies styling and default settings but does NOT ship Highcharts. In order to use this kit, 'highcharts' and 'highcharts-react-official' must be installed in your repo. Once done, any prop or functionality provided by Highcharts can be used with this kit without requiring specific props from Playbook. The doc examples below showcase a few common usecases but are not a comprehensive list of all the functionalities possible.
|
2
2
|
|
3
3
|
See the [highcharts API docs](https://api.highcharts.com/highcharts/) for a comprehensive look at what is possible.
|
@@ -0,0 +1,36 @@
|
|
1
|
+
<%
|
2
|
+
options = [
|
3
|
+
{ label: 'Orange', value: '#FFA500' },
|
4
|
+
{ label: 'Red', value: '#FF0000' },
|
5
|
+
{ label: 'Green', value: '#1e3d1eff' },
|
6
|
+
{ label: 'Blue', value: '#0000FF' },
|
7
|
+
{ label: 'Purple', value: '#800080' },
|
8
|
+
{ label: 'Yellow', value: '#FFFF00' },
|
9
|
+
{ label: 'Pink', value: '#FFC0CB' },
|
10
|
+
{ label: 'Brown', value: '#A52A2A' },
|
11
|
+
{ label: 'Black', value: '#000000' },
|
12
|
+
{ label: 'White', value: '#FFFFFF' },
|
13
|
+
{ label: 'Gray', value: '#808080' },
|
14
|
+
{ label: 'Cyan', value: '#00FFFF' },
|
15
|
+
{ label: 'Magenta', value: '#FF00FF' },
|
16
|
+
{ label: 'Lime', value: '#00FF00' },
|
17
|
+
{ label: 'Maroon', value: '#800000' },
|
18
|
+
{ label: 'Olive', value: '#808000' },
|
19
|
+
{ label: 'Navy', value: '#000080' },
|
20
|
+
{ label: 'Teal', value: '#008080' },
|
21
|
+
{ label: 'Silver', value: '#C0C0C0' },
|
22
|
+
{ label: 'Gold', value: '#FFD700' },
|
23
|
+
{ label: 'Beige', value: '#F5F5DC' },
|
24
|
+
{ label: 'Coral', value: '#FF7F50' }
|
25
|
+
]
|
26
|
+
%>
|
27
|
+
|
28
|
+
<%= pb_rails("typeahead", props: {
|
29
|
+
default_options: [{ label: 'Gray', value: '#808080' }],
|
30
|
+
id: "typeahead-default-value",
|
31
|
+
options: options,
|
32
|
+
label: "Colors",
|
33
|
+
name: :foo,
|
34
|
+
is_multi: false
|
35
|
+
})
|
36
|
+
%>
|
@@ -0,0 +1 @@
|
|
1
|
+
The optional `default_options` prop can be used to set a default value for the kit. When a default value is set, focus will be automatically set to the selected option and the dropdown container will scroll to bring the selected option into view.
|
@@ -0,0 +1,41 @@
|
|
1
|
+
import React from 'react'
|
2
|
+
|
3
|
+
import Typeahead from '../_typeahead'
|
4
|
+
|
5
|
+
const options = [
|
6
|
+
{ label: 'Orange', value: '#FFA500' },
|
7
|
+
{ label: 'Red', value: '#FF0000' },
|
8
|
+
{ label: 'Green', value: '#1e3d1eff' },
|
9
|
+
{ label: 'Blue', value: '#0000FF' },
|
10
|
+
{ label: 'Purple', value: '#800080' },
|
11
|
+
{ label: 'Yellow', value: '#FFFF00' },
|
12
|
+
{ label: 'Pink', value: '#FFC0CB' },
|
13
|
+
{ label: 'Brown', value: '#A52A2A' },
|
14
|
+
{ label: 'Black', value: '#000000' },
|
15
|
+
{ label: 'White', value: '#FFFFFF' },
|
16
|
+
{ label: 'Gray', value: '#808080' },
|
17
|
+
{ label: 'Cyan', value: '#00FFFF' },
|
18
|
+
{ label: 'Magenta', value: '#FF00FF' },
|
19
|
+
{ label: 'Lime', value: '#00FF00' },
|
20
|
+
{ label: 'Maroon', value: '#800000' },
|
21
|
+
{ label: 'Olive', value: '#808000' },
|
22
|
+
{ label: 'Navy', value: '#000080' },
|
23
|
+
{ label: 'Teal', value: '#008080' },
|
24
|
+
{ label: 'Silver', value: '#C0C0C0' },
|
25
|
+
{ label: 'Gold', value: '#FFD700' },
|
26
|
+
{ label: 'Beige', value: '#F5F5DC' },
|
27
|
+
{ label: 'Coral', value: '#FF7F50' }
|
28
|
+
]
|
29
|
+
|
30
|
+
const TypeaheadDefaultValue = (props) => {
|
31
|
+
return (
|
32
|
+
<Typeahead
|
33
|
+
defaultValue={options[10]}
|
34
|
+
label="Colors"
|
35
|
+
options={options}
|
36
|
+
{...props}
|
37
|
+
/>
|
38
|
+
)
|
39
|
+
}
|
40
|
+
|
41
|
+
export default TypeaheadDefaultValue
|
@@ -0,0 +1 @@
|
|
1
|
+
The optional `defaultValue` prop can be used to set a default value for the kit. When a default value is set, focus will be automatically set to the selected option and the dropdown container will scroll to bring the selected option into view.
|
@@ -1,6 +1,7 @@
|
|
1
1
|
examples:
|
2
2
|
rails:
|
3
3
|
- typeahead_default: Default
|
4
|
+
- typeahead_default_options: With Default Options
|
4
5
|
- typeahead_with_context: With Context
|
5
6
|
- typeahead_with_pills: With Pills
|
6
7
|
- typeahead_without_pills: Without Pills (Single Select)
|
@@ -19,6 +20,7 @@ examples:
|
|
19
20
|
|
20
21
|
react:
|
21
22
|
- typeahead_default: Default
|
23
|
+
- typeahead_default_value: With Default Value
|
22
24
|
- typeahead_react_hook: React Hook
|
23
25
|
- typeahead_with_highlight: With Highlight
|
24
26
|
- typeahead_with_pills: With Pills
|
@@ -16,3 +16,4 @@ export { default as TypeaheadTruncatedText } from './_typeahead_truncated_text.j
|
|
16
16
|
export { default as TypeaheadReactHook } from './_typeahead_react_hook.jsx'
|
17
17
|
export { default as TypeaheadDisabled } from './_typeahead_disabled.jsx'
|
18
18
|
export { default as TypeaheadPreserveInput } from './_typeahead_preserve_input.jsx'
|
19
|
+
export { default as TypeaheadDefaultValue } from './_typeahead_default_value.jsx'
|