playbook_ui 13.28.0.pre.alpha.PBNTR296dropdownwithform2941 → 13.28.0.pre.alpha.PBNTR297gradientoverlay3029

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.
Files changed (106) hide show
  1. checksums.yaml +4 -4
  2. data/app/pb_kits/playbook/_playbook.scss +3 -3
  3. data/app/pb_kits/playbook/index.js +3 -0
  4. data/app/pb_kits/playbook/pb_advanced_table/advanced_table.html.erb +2 -2
  5. data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_beta_subrow_headers.html.erb +40 -0
  6. data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_beta_subrow_headers.md +3 -0
  7. data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_subrow_headers.md +1 -1
  8. data/app/pb_kits/playbook/pb_advanced_table/docs/example.yml +1 -1
  9. data/app/pb_kits/playbook/pb_advanced_table/table_body.html.erb +1 -1
  10. data/app/pb_kits/playbook/pb_advanced_table/table_body.rb +14 -4
  11. data/app/pb_kits/playbook/pb_advanced_table/table_header.html.erb +10 -2
  12. data/app/pb_kits/playbook/pb_advanced_table/table_row.html.erb +1 -1
  13. data/app/pb_kits/playbook/pb_advanced_table/table_row.rb +2 -0
  14. data/app/pb_kits/playbook/pb_advanced_table/table_subrow_header.html.erb +34 -0
  15. data/app/pb_kits/playbook/pb_advanced_table/table_subrow_header.rb +31 -0
  16. data/app/pb_kits/playbook/pb_bar_graph/_bar_graph.tsx +4 -1
  17. data/app/pb_kits/playbook/pb_bar_graph/barGraph.test.js +31 -0
  18. data/app/pb_kits/playbook/pb_bar_graph/bar_graph.rb +16 -0
  19. data/app/pb_kits/playbook/pb_bar_graph/docs/_bar_graph_custom.md +2 -1
  20. data/app/pb_kits/playbook/pb_bar_graph/docs/{_bar_graph_custom.html.erb → _bar_graph_custom_rails.html.erb} +3 -3
  21. data/app/pb_kits/playbook/pb_bar_graph/docs/_bar_graph_custom_rails.md +2 -0
  22. data/app/pb_kits/playbook/pb_bar_graph/docs/example.yml +1 -1
  23. data/app/pb_kits/playbook/pb_card/_card_mixin.scss +2 -1
  24. data/app/pb_kits/playbook/pb_checkbox/_checkbox.scss +1 -2
  25. data/app/pb_kits/playbook/pb_circle_chart/_circle_chart.tsx +9 -3
  26. data/app/pb_kits/playbook/pb_circle_chart/circleChart.test.js +45 -0
  27. data/app/pb_kits/playbook/pb_circle_chart/circle_chart.rb +22 -1
  28. data/app/pb_kits/playbook/pb_collapsible/__snapshots__/collapsible.test.js.snap +53 -0
  29. data/app/pb_kits/playbook/pb_collapsible/_collapsible.tsx +14 -8
  30. data/app/pb_kits/playbook/pb_collapsible/collapsible.test.js +24 -0
  31. data/app/pb_kits/playbook/pb_dashboard/pbChartsDarkTheme.ts +7 -1
  32. data/app/pb_kits/playbook/pb_dashboard/pbChartsLightTheme.ts +9 -1
  33. data/app/pb_kits/playbook/pb_draggable/_draggable.scss +10 -0
  34. data/app/pb_kits/playbook/pb_draggable/_draggable.tsx +53 -0
  35. data/app/pb_kits/playbook/pb_draggable/context/index.tsx +92 -0
  36. data/app/pb_kits/playbook/pb_draggable/docs/_draggable_default.jsx +53 -0
  37. data/app/pb_kits/playbook/pb_draggable/docs/_draggable_multiple_containers.jsx +159 -0
  38. data/app/pb_kits/playbook/pb_draggable/docs/_draggable_with_cards.jsx +121 -0
  39. data/app/pb_kits/playbook/pb_draggable/docs/example.yml +9 -0
  40. data/app/pb_kits/playbook/pb_draggable/docs/index.js +3 -0
  41. data/app/pb_kits/playbook/pb_draggable/draggable.test.jsx +65 -0
  42. data/app/pb_kits/playbook/pb_draggable/subcomponents/DraggableContainer.tsx +54 -0
  43. data/app/pb_kits/playbook/pb_draggable/subcomponents/DraggableItem.tsx +57 -0
  44. data/app/pb_kits/playbook/pb_form_group/_form_group.scss +2 -2
  45. data/app/pb_kits/playbook/pb_gauge/_gauge.tsx +4 -1
  46. data/app/pb_kits/playbook/pb_gauge/gauge.rb +6 -1
  47. data/app/pb_kits/playbook/pb_gauge/gauge.test.js +35 -0
  48. data/app/pb_kits/playbook/pb_line_graph/_line_graph.tsx +8 -2
  49. data/app/pb_kits/playbook/pb_line_graph/lineGraph.test.js +52 -0
  50. data/app/pb_kits/playbook/pb_line_graph/line_graph.rb +22 -1
  51. data/app/pb_kits/playbook/pb_overlay/_overlay.scss +12 -0
  52. data/app/pb_kits/playbook/pb_overlay/_overlay.tsx +93 -0
  53. data/app/pb_kits/playbook/pb_overlay/docs/_overlay_default.jsx +40 -0
  54. data/app/pb_kits/playbook/pb_overlay/docs/_overlay_default.md +7 -0
  55. data/app/pb_kits/playbook/pb_overlay/docs/_overlay_multi_directional.jsx +36 -0
  56. data/app/pb_kits/playbook/pb_overlay/docs/_overlay_multi_directional.md +5 -0
  57. data/app/pb_kits/playbook/pb_overlay/docs/example.yml +4 -0
  58. data/app/pb_kits/playbook/pb_overlay/docs/index.js +2 -0
  59. data/app/pb_kits/playbook/pb_overlay/overlay.test.jsx +66 -0
  60. data/app/pb_kits/playbook/pb_pill/docs/_description.md +1 -1
  61. data/app/pb_kits/playbook/pb_selectable_card/_selectable_card.scss +1 -0
  62. data/app/pb_kits/playbook/pb_selectable_card/_selectable_card.tsx +30 -32
  63. data/app/pb_kits/playbook/pb_selectable_card/selectable_card.html.erb +0 -2
  64. data/app/pb_kits/playbook/pb_table/_table.tsx +5 -0
  65. data/app/pb_kits/playbook/pb_table/docs/_table_alignment_column.jsx +33 -32
  66. data/app/pb_kits/playbook/pb_table/docs/_table_alignment_column.md +1 -1
  67. data/app/pb_kits/playbook/pb_table/docs/_table_alignment_column_rails.md +2 -0
  68. data/app/pb_kits/playbook/pb_table/docs/_table_alignment_row.jsx +33 -33
  69. data/app/pb_kits/playbook/pb_table/docs/_table_alignment_row.md +1 -1
  70. data/app/pb_kits/playbook/pb_table/docs/_table_alignment_row_rails.html.erb +34 -0
  71. data/app/pb_kits/playbook/pb_table/docs/_table_alignment_row_rails.md +2 -0
  72. data/app/pb_kits/playbook/pb_table/docs/_table_alignment_shift_data.jsx +51 -50
  73. data/app/pb_kits/playbook/pb_table/docs/_table_alignment_shift_data.md +1 -1
  74. data/app/pb_kits/playbook/pb_table/docs/_table_alignment_shift_data_rails.html.erb +54 -0
  75. data/app/pb_kits/playbook/pb_table/docs/_table_alignment_shift_data_rails.md +2 -0
  76. data/app/pb_kits/playbook/pb_table/docs/_table_alignment_shift_row.jsx +37 -38
  77. data/app/pb_kits/playbook/pb_table/docs/_table_alignment_shift_row.md +1 -0
  78. data/app/pb_kits/playbook/pb_table/docs/_table_alignment_shift_row_rails.html.erb +53 -0
  79. data/app/pb_kits/playbook/pb_table/docs/_table_alignment_shift_row_rails.md +1 -0
  80. data/app/pb_kits/playbook/pb_table/docs/{_table_alignment_row.html.erb → _table_outer_padding.html.erb} +7 -7
  81. data/app/pb_kits/playbook/pb_table/docs/_table_outer_padding.jsx +76 -0
  82. data/app/pb_kits/playbook/pb_table/docs/_table_outer_padding.md +1 -0
  83. data/app/pb_kits/playbook/pb_table/docs/example.yml +9 -9
  84. data/app/pb_kits/playbook/pb_table/docs/index.js +1 -0
  85. data/app/pb_kits/playbook/pb_table/styles/_all.scss +1 -0
  86. data/app/pb_kits/playbook/pb_table/styles/_outer_padding.scss +21 -0
  87. data/app/pb_kits/playbook/pb_table/table.rb +14 -1
  88. data/app/pb_kits/playbook/pb_table/table.test.js +5 -1
  89. data/app/pb_kits/playbook/pb_tooltip/index.js +1 -0
  90. data/app/pb_kits/playbook/pb_treemap_chart/_treemap_chart.tsx +12 -9
  91. data/app/pb_kits/playbook/pb_treemap_chart/treemapChart.test.js +61 -0
  92. data/app/pb_kits/playbook/pb_treemap_chart/treemap_chart.rb +6 -1
  93. data/app/pb_kits/playbook/playbook-doc.js +4 -0
  94. data/app/pb_kits/playbook/tokens/_vertical_align.scss +18 -0
  95. data/app/pb_kits/playbook/utilities/_vertical_align.scss +16 -0
  96. data/app/pb_kits/playbook/utilities/globalProps.ts +12 -1
  97. data/dist/menu.yml +7 -2
  98. data/dist/playbook-rails.js +6 -6
  99. data/lib/playbook/classnames.rb +1 -0
  100. data/lib/playbook/kit_base.rb +2 -0
  101. data/lib/playbook/version.rb +1 -1
  102. data/lib/playbook/vertical_align.rb +37 -0
  103. metadata +50 -7
  104. data/app/pb_kits/playbook/pb_table/docs/_table_alignment_shift_data.html.erb +0 -63
  105. data/app/pb_kits/playbook/pb_table/docs/_table_alignment_shift_row.html.erb +0 -52
  106. /data/app/pb_kits/playbook/pb_table/docs/{_table_alignment_column.html.erb → _table_alignment_column_rails.html.erb} +0 -0
@@ -4,60 +4,59 @@ import Table from '../_table'
4
4
 
5
5
  const TableAlignmentShiftRow = (props) => {
6
6
  return (
7
- <Table
8
- {...props}
9
- >
10
- <thead>
11
- <tr>
12
- <th>{'Column 1'}</th>
13
- <th>{'Column 2'}</th>
14
- <th>{'Column 3'}</th>
15
- <th>{'Column 4'}</th>
16
- <th>{'Column 5'}</th>
17
- </tr>
18
- </thead>
19
- <tbody>
20
- <tr>
21
- <td>
7
+ <Table {...props}>
8
+ <Table.Head>
9
+ <Table.Row>
10
+ <Table.Header>{'Column 1'}</Table.Header>
11
+ <Table.Header>{'Column 2'}</Table.Header>
12
+ <Table.Header>{'Column 3'}</Table.Header>
13
+ <Table.Header>{'Column 4'}</Table.Header>
14
+ <Table.Header>{'Column 5'}</Table.Header>
15
+ </Table.Row>
16
+ </Table.Head>
17
+ <Table.Body>
18
+ <Table.Row>
19
+ <Table.Cell>
22
20
  {'Value 1a'}
23
21
  <br />
24
22
  {'Value 1a'}
25
23
  <br />
26
24
  {'Value 1a'}
27
- </td>
28
- <td>{'Value 2a'}</td>
29
- <td>{'Value 3a'}</td>
30
- <td>{'Value 4a'}</td>
31
- <td>{'Value 5a'}</td>
32
- </tr>
33
- <tr shift="middle">
34
- <td>
25
+ </Table.Cell>
26
+ <Table.Cell>{'Value 2a'}</Table.Cell>
27
+ <Table.Cell>{'Value 3a'}</Table.Cell>
28
+ <Table.Cell>{'Value 4a'}</Table.Cell>
29
+ <Table.Cell>{'Value 5a'}</Table.Cell>
30
+ </Table.Row>
31
+ <Table.Row verticalAlign="middle">
32
+ <Table.Cell>
35
33
  {'Value 1b'}
36
34
  <br />
37
35
  {'Value 1b'}
38
36
  <br />
39
37
  {'Value 1b'}
40
- </td>
41
- <td>{'Value 2b'}</td>
42
- <td>{'Value 3b'}</td>
43
- <td>{'Value 4b'}</td>
44
- <td>{'Value 5b'}</td>
45
- </tr>
46
- <tr shift="down">
47
- <td>
38
+ </Table.Cell>
39
+ <Table.Cell>{'Value 2b'}</Table.Cell>
40
+ <Table.Cell>{'Value 3b'}</Table.Cell>
41
+ <Table.Cell>{'Value 4b'}</Table.Cell>
42
+ <Table.Cell>{'Value 5b'}</Table.Cell>
43
+ </Table.Row>
44
+ <Table.Row verticalAlign="bottom">
45
+ <Table.Cell>
48
46
  {'Value 1c'}
49
47
  <br />
50
48
  {'Value 1c'}
51
49
  <br />
52
50
  {'Value 1c'}
53
- </td>
54
- <td>{'Value 2c'}</td>
55
- <td>{'Value 3c'}</td>
56
- <td>{'Value 4c'}</td>
57
- <td>{'Value 5c'}</td>
58
- </tr>
59
- </tbody>
51
+ </Table.Cell>
52
+ <Table.Cell>{'Value 2c'}</Table.Cell>
53
+ <Table.Cell>{'Value 3c'}</Table.Cell>
54
+ <Table.Cell>{'Value 4c'}</Table.Cell>
55
+ <Table.Cell>{'Value 5c'}</Table.Cell>
56
+ </Table.Row>
57
+ </Table.Body>
60
58
  </Table>
59
+
61
60
  )
62
61
  }
63
62
 
@@ -0,0 +1 @@
1
+ Pass our `verticalAlign` global prop to any `table.row` subcomponent to change the vertical alignment of all cells within that row.
@@ -0,0 +1,53 @@
1
+ <%= pb_rails("table") do %>
2
+ <%= pb_rails("table/table_head") do %>
3
+ <%= pb_rails("table/table_row") do %>
4
+ <%= pb_rails("table/table_header", props: { text: "Column 1" }) %>
5
+ <%= pb_rails("table/table_header", props: { text: "Column 2" }) %>
6
+ <%= pb_rails("table/table_header", props: { text: "Column 3" }) %>
7
+ <%= pb_rails("table/table_header", props: { text: "Column 4" }) %>
8
+ <%= pb_rails("table/table_header", props: { text: "Column 5" }) %>
9
+ <% end %>
10
+ <% end %>
11
+ <%= pb_rails("table/table_body") do %>
12
+ <%= pb_rails("table/table_row") do %>
13
+ <%= pb_rails("table/table_cell") do %>
14
+ Value 1a
15
+ <br />
16
+ Value 1a
17
+ <br />
18
+ Value 1a
19
+ <% end %>
20
+ <%= pb_rails("table/table_cell", props: { text: "Value 2a" }) %>
21
+ <%= pb_rails("table/table_cell", props: { text: "Value 3a" }) %>
22
+ <%= pb_rails("table/table_cell", props: { text: "Value 4a" }) %>
23
+ <%= pb_rails("table/table_cell", props: { text: "Value 5a" }) %>
24
+ <% end %>
25
+ <%= pb_rails("table/table_row", props: { vertical_align: "middle" }) do %>
26
+ <%= pb_rails("table/table_cell") do %>
27
+ Value 1b
28
+ <br />
29
+ Value 1b
30
+ <br />
31
+ Value 1b
32
+ <% end %>
33
+ <%= pb_rails("table/table_cell", props: { text: "Value 2b" }) %>
34
+ <%= pb_rails("table/table_cell", props: { text: "Value 3b" }) %>
35
+ <%= pb_rails("table/table_cell", props: { text: "Value 4b" }) %>
36
+ <%= pb_rails("table/table_cell", props: { text: "Value 5b" }) %>
37
+ <% end %>
38
+ <%= pb_rails("table/table_row", props: { vertical_align: "bottom" }) do %>
39
+ <%= pb_rails("table/table_cell") do %>
40
+ Value 1c
41
+ <br />
42
+ Value 1c
43
+ <br />
44
+ Value 1c
45
+ <% end %>
46
+ <%= pb_rails("table/table_cell", props: { text: "Value 2c" }) %>
47
+ <%= pb_rails("table/table_cell", props: { text: "Value 3c" }) %>
48
+ <%= pb_rails("table/table_cell", props: { text: "Value 4c" }) %>
49
+ <%= pb_rails("table/table_cell", props: { text: "Value 5c" }) %>
50
+ <% end %>
51
+ <% end %>
52
+ <% end %>
53
+
@@ -0,0 +1 @@
1
+ Pass our `vertical_align` global prop to any `table/table_row` subcomponent to change the vertical alignment of all cells within that row.
@@ -1,11 +1,11 @@
1
- <%= pb_rails("table") do %>
1
+ <%= pb_rails("table", props: { outer_padding: "sm", size: "sm" }) do %>
2
2
  <thead>
3
3
  <tr>
4
4
  <th>Column 1</th>
5
5
  <th>Column 2</th>
6
6
  <th>Column 3</th>
7
7
  <th>Column 4</th>
8
- <th>Column 5</th>
8
+ <th></th>
9
9
  </tr>
10
10
  </thead>
11
11
  <tbody>
@@ -14,21 +14,21 @@
14
14
  <td>Value 2</td>
15
15
  <td>Value 3</td>
16
16
  <td>Value 4</td>
17
- <td>Value 5</td>
17
+ <td align="right"><%= pb_rails("button", props: { text: "Action", variant: "secondary" }) %></td>
18
18
  </tr>
19
- <tr align="center">
19
+ <tr>
20
20
  <td>Value 1</td>
21
21
  <td>Value 2</td>
22
22
  <td>Value 3</td>
23
23
  <td>Value 4</td>
24
- <td>Value 5</td>
24
+ <td align="right"><%= pb_rails("button", props: { text: "Action", variant: "secondary" }) %></td>
25
25
  </tr>
26
- <tr align="right">
26
+ <tr>
27
27
  <td>Value 1</td>
28
28
  <td>Value 2</td>
29
29
  <td>Value 3</td>
30
30
  <td>Value 4</td>
31
- <td>Value 5</td>
31
+ <td align="right"><%= pb_rails("button", props: { text: "Action", variant: "secondary" }) %></td>
32
32
  </tr>
33
33
  </tbody>
34
34
  <% end %>
@@ -0,0 +1,76 @@
1
+ import React from 'react'
2
+
3
+ import Table from '../_table'
4
+ import Button from '../../pb_button/_button'
5
+
6
+ const TableOuterPadding = (props) => {
7
+ return (
8
+ <Table
9
+ outerPadding="sm"
10
+ size="sm"
11
+ {...props}
12
+ >
13
+ <thead>
14
+ <tr>
15
+ <th>{'Column 1'}</th>
16
+ <th>{'Column 2'}</th>
17
+ <th>{'Column 3'}</th>
18
+ <th>{'Column 4'}</th>
19
+ <th>{''}</th>
20
+ </tr>
21
+ </thead>
22
+ <tbody>
23
+ <tr>
24
+ <td>{'Value 1'}</td>
25
+ <td>{'Value 2'}</td>
26
+ <td>{'Value 3'}</td>
27
+ <td>{'Value 4'}</td>
28
+ <td align="right">
29
+ {' '}
30
+ <Button
31
+ onClick={() => alert('button clicked!')}
32
+ text="Action"
33
+ variant="secondary"
34
+ {...props}
35
+ />
36
+ {' '}
37
+ </td>
38
+ </tr>
39
+ <tr>
40
+ <td>{'Value 1'}</td>
41
+ <td>{'Value 2'}</td>
42
+ <td>{'Value 3'}</td>
43
+ <td>{'Value 4'}</td>
44
+ <td align="right">
45
+ {' '}
46
+ <Button
47
+ onClick={() => alert('button clicked!')}
48
+ text="Action"
49
+ variant="secondary"
50
+ {...props}
51
+ />
52
+ {' '}
53
+ </td>
54
+ </tr>
55
+ <tr>
56
+ <td>{'Value 1'}</td>
57
+ <td>{'Value 2'}</td>
58
+ <td>{'Value 3'}</td>
59
+ <td>{'Value 4'}</td>
60
+ <td align="right">
61
+ {' '}
62
+ <Button
63
+ onClick={() => alert('button clicked!')}
64
+ text="Action"
65
+ variant="secondary"
66
+ {...props}
67
+ />
68
+ {' '}
69
+ </td>
70
+ </tr>
71
+ </tbody>
72
+ </Table>
73
+ )
74
+ }
75
+
76
+ export default TableOuterPadding
@@ -0,0 +1 @@
1
+ Pass any of our spacing tokens to the `outerPadding` / `outer_padding` prop to customize a table's outer padding (both the left padding of the first column and the right padding of the last column).
@@ -5,10 +5,10 @@ examples:
5
5
  - table_lg: Large
6
6
  - table_sticky: Sticky Header
7
7
  - table_header: Table Header
8
- - table_alignment_row: Row Alignment
9
- - table_alignment_column: Column Alignment
10
- - table_alignment_shift_row: Shift Row
11
- - table_alignment_shift_data: Shift Column Data
8
+ - table_alignment_row_rails: Row Alignment
9
+ - table_alignment_column_rails: Cell Alignment
10
+ - table_alignment_shift_row_rails: Row Shift
11
+ - table_alignment_shift_data_rails: Cell Shift
12
12
  - table_side_highlight: Side Highlight
13
13
  - table_container: Table Container Off
14
14
  - table_disable_hover: Disable Hover
@@ -26,7 +26,7 @@ examples:
26
26
  - table_striped: Striped Table
27
27
  - table_with_subcomponents_rails: Table with Sub Components (Table Elements)
28
28
  - table_with_subcomponents_as_divs: Table with Sub Components (Divs)
29
-
29
+ - table_outer_padding: Outer Padding
30
30
 
31
31
  react:
32
32
  - table_sm: Small
@@ -34,9 +34,9 @@ examples:
34
34
  - table_lg: Large
35
35
  - table_sticky: Sticky Header
36
36
  - table_alignment_row: Row Alignment
37
- - table_alignment_column: Column Alignment
38
- - table_alignment_shift_row: Shift Row
39
- - table_alignment_shift_data: Shift Column Data
37
+ - table_alignment_column: Cell Alignment
38
+ - table_alignment_shift_row: Row Shift
39
+ - table_alignment_shift_data: Cell Shift
40
40
  - table_side_highlight: Side Highlight
41
41
  - table_container: Table Container Off
42
42
  - table_disable_hover: Disable Hover
@@ -54,4 +54,4 @@ examples:
54
54
  - table_striped: Striped Table
55
55
  - table_with_subcomponents: Table with Sub Components (Table Elements)
56
56
  - table_with_subcomponents_as_divs: Table with Sub Components (Divs)
57
-
57
+ - table_outer_padding: Outer Padding
@@ -24,3 +24,4 @@ export { default as TableStriped } from './_table_striped.jsx'
24
24
  export { default as TableDiv } from './_table_div.jsx'
25
25
  export { default as TableWithSubcomponents } from './_table_with_subcomponents.jsx'
26
26
  export { default as TableWithSubcomponentsAsDivs } from './_table_with_subcomponents_as_divs.jsx'
27
+ export { default as TableOuterPadding } from './_table_outer_padding.jsx'
@@ -19,3 +19,4 @@
19
19
  @import "vertical_border";
20
20
  @import "table_header";
21
21
  @import "striped";
22
+ @import "outer_padding";
@@ -0,0 +1,21 @@
1
+ @import "../../tokens/spacing";
2
+
3
+ [class^=pb_table] {
4
+ @each $name, $value in $spaces {
5
+ &.outer_padding_#{$name} {
6
+ td:first-child,
7
+ th:first-child,
8
+ .pb_table_td:first-child,
9
+ .pb_table_th:first-child {
10
+ padding-left: #{$value} !important;
11
+ }
12
+
13
+ td:last-child,
14
+ th:last-child,
15
+ .pb_table_td:last-child,
16
+ .pb_table_th:last-child {
17
+ padding-right: #{$value} !important;
18
+ }
19
+ }
20
+ }
21
+ }
@@ -30,12 +30,16 @@ module Playbook
30
30
  prop :tag, type: Playbook::Props::Enum,
31
31
  values: %w[table div],
32
32
  default: "table"
33
+ prop :outer_padding, type: Playbook::Props::Enum,
34
+ values: ["none", "xxs", "xs", "sm", "md", "lg", "xl", nil],
35
+ default: nil
33
36
 
34
37
  def classname
35
38
  generate_classname(
36
39
  "pb_table", "table-#{size}", single_line_class, dark_class,
37
40
  disable_hover_class, container_class, data_table_class, sticky_class, collapse_class,
38
- vertical_border_class, striped_class, "table-responsive-#{responsive}", separator: " "
41
+ vertical_border_class, striped_class, outer_padding_class,
42
+ "table-responsive-#{responsive}", separator: " "
39
43
  )
40
44
  end
41
45
 
@@ -76,6 +80,15 @@ module Playbook
76
80
  def vertical_border_class
77
81
  vertical_border ? "vertical-border" : nil
78
82
  end
83
+
84
+ def outer_padding_class
85
+ if outer_padding.nil?
86
+ outer_padding
87
+ else
88
+ space_css_name = outer_padding != "none" ? "space_" : ""
89
+ outer_padding.present? ? "outer_padding_#{space_css_name}#{outer_padding}" : nil
90
+ end
91
+ end
79
92
  end
80
93
  end
81
94
  end
@@ -52,7 +52,6 @@ const TableTagTable = () => {
52
52
  );
53
53
  };
54
54
 
55
-
56
55
  const props = {
57
56
  data: { testid: "table" },
58
57
  sticky: false
@@ -161,3 +160,8 @@ test("Renders Table.Cell subkit for HTML Table elements Table", () => {
161
160
  expect(head).toBeInTheDocument()
162
161
  expect(head.tagName).toBe("TD")
163
162
  })
163
+
164
+ test("Should have outerPadding class", () => {
165
+ const kit = renderKit(Table, props, { outerPadding: "sm" })
166
+ expect(kit).toHaveClass("pb_table table-sm table-responsive-collapse table-card outer_padding_space_sm table-collapse-sm")
167
+ })
@@ -58,6 +58,7 @@ export default class PbTooltip extends PbEnhancedElement {
58
58
 
59
59
  this.popper = createPopper(trigger, this.tooltip, {
60
60
  placement: this.position,
61
+ strategy: 'fixed',
61
62
  modifiers: [
62
63
  {
63
64
  name: 'offset',
@@ -10,6 +10,7 @@ import { highchartsTheme } from "../pb_dashboard/pbChartsLightTheme";
10
10
  import { highchartsDarkTheme } from "../pb_dashboard/pbChartsDarkTheme";
11
11
  import mapColors from "../pb_dashboard/pbChartsColorsHelper";
12
12
  import treemap from 'highcharts/modules/treemap'
13
+ import { merge } from 'lodash'
13
14
 
14
15
  type TreemapChartProps = {
15
16
  chartData: {
@@ -21,6 +22,7 @@ type TreemapChartProps = {
21
22
  }[];
22
23
  className?: string;
23
24
  colors: string[];
25
+ customOptions?: Partial<Highcharts.Options>;
24
26
  dark?: boolean;
25
27
  drillable: boolean;
26
28
  grouped: boolean;
@@ -39,6 +41,7 @@ const TreemapChart = ({
39
41
  data = {},
40
42
  chartData,
41
43
  colors,
44
+ customOptions = {},
42
45
  dark = false,
43
46
  drillable = false,
44
47
  grouped = false,
@@ -96,20 +99,20 @@ const TreemapChart = ({
96
99
 
97
100
  useEffect(() => {
98
101
 
99
- setOptions({ ...staticOptions });
102
+ setOptions(merge(staticOptions, customOptions));
100
103
  }, [chartData]);
101
104
 
102
105
  return (
103
106
  <HighchartsReact
104
- containerProps={{
105
- className: classnames(globalProps(props), "pb_treemap_chart"),
106
- id: id,
107
- ...ariaProps,
108
- ...dataProps,
109
- ...htmlProps
107
+ containerProps={{
108
+ className: classnames(globalProps(props), "pb_treemap_chart"),
109
+ id: id,
110
+ ...ariaProps,
111
+ ...dataProps,
112
+ ...htmlProps
110
113
  }}
111
- highcharts={Highcharts}
112
- options={options}
114
+ highcharts={Highcharts}
115
+ options={options}
113
116
  />
114
117
  );
115
118
  };
@@ -0,0 +1,61 @@
1
+ import React from 'react';
2
+ import { render, screen } from '../utilities/test-utils';
3
+ import TreemapChart from './_treemap_chart';
4
+
5
+ beforeEach(() => {
6
+ // Silences error logs within the test suite.
7
+ jest.spyOn(console, 'error');
8
+ jest.spyOn(console, 'warn');
9
+ console.error.mockImplementation(() => {});
10
+ console.warn.mockImplementation(() => {});
11
+ });
12
+
13
+ afterEach(() => {
14
+ console.error.mockRestore();
15
+ console.warn.mockRestore();
16
+ });
17
+
18
+ const testId = 'treemapchart1';
19
+
20
+ test('uses exact classname', () => {
21
+ const data = [
22
+ {
23
+ name: "Pepperoni",
24
+ parent: "Toppings",
25
+ value: 600,
26
+ }, {
27
+ name: "Cheese",
28
+ parent: "Toppings",
29
+ value: 510,
30
+ }, {
31
+ name: "Mushroom",
32
+ parent: "Toppings",
33
+ value: 330,
34
+ },{
35
+ name: "Onions",
36
+ parent: "Toppings",
37
+ value: 250,
38
+ }, {
39
+ name: "Olives",
40
+ parent: "Toppings",
41
+ value: 204,
42
+ }, {
43
+ name: "Pineapple",
44
+ parent: "Toppings",
45
+ value: 90,
46
+ }, {
47
+ name: "Pizza Toppings",
48
+ id: "Toppings",
49
+ },
50
+ ]
51
+ render(
52
+ <TreemapChart
53
+ chartData={data}
54
+ data={{ testid: testId }}
55
+ id="tree-map-id"
56
+ />
57
+ );
58
+
59
+ const kit = screen.getByTestId(testId);
60
+ expect(kit).toHaveClass('pb_treemap_chart');
61
+ });
@@ -7,6 +7,7 @@ module Playbook
7
7
  default: []
8
8
  prop :colors, type: Playbook::Props::Array,
9
9
  default: []
10
+ prop :custom_options, default: {}
10
11
  prop :drillable, type: Playbook::Props::Boolean, default: false
11
12
  prop :grouped, type: Playbook::Props::Boolean, default: false
12
13
  prop :height
@@ -19,7 +20,7 @@ module Playbook
19
20
  "treemap"
20
21
  end
21
22
 
22
- def chart_options
23
+ def standard_options
23
24
  {
24
25
  chartData: chart_data,
25
26
  className: classname,
@@ -35,6 +36,10 @@ module Playbook
35
36
  }
36
37
  end
37
38
 
39
+ def chart_options
40
+ standard_options.deep_merge(custom_options)
41
+ end
42
+
38
43
  def classname
39
44
  generate_classname("pb_treemap_chart")
40
45
  end
@@ -34,6 +34,7 @@ import * as DateYearStacked from 'pb_date_year_stacked/docs'
34
34
  import * as Detail from 'pb_detail/docs'
35
35
  import * as Dialog from 'pb_dialog/docs'
36
36
  import * as DistributionBarDocs from 'pb_distribution_bar/docs'
37
+ import * as Draggable from 'pb_draggable/docs'
37
38
  import * as Dropdown from 'pb_dropdown/docs'
38
39
  import * as FileUpload from 'pb_file_upload/docs'
39
40
  import * as Filter from 'pb_filter/docs'
@@ -65,6 +66,7 @@ import * as MultipleUsers from 'pb_multiple_users/docs'
65
66
  import * as MultipleUsersStacked from 'pb_multiple_users_stacked/docs'
66
67
  import * as Nav from 'pb_nav/docs'
67
68
  import * as OnlineStatus from 'pb_online_status/docs'
69
+ import * as Overlay from 'pb_overlay/docs'
68
70
  import * as Passphrase from 'pb_passphrase/docs'
69
71
  import * as PbReactPopover from 'pb_popover/docs'
70
72
  import * as Person from 'pb_person/docs'
@@ -137,6 +139,7 @@ WebpackerReact.registerComponents({
137
139
  ...Detail,
138
140
  ...Dialog,
139
141
  ...DistributionBarDocs,
142
+ ...Draggable,
140
143
  ...Dropdown,
141
144
  ...FileUpload,
142
145
  ...Filter,
@@ -168,6 +171,7 @@ WebpackerReact.registerComponents({
168
171
  ...MultipleUsersStacked,
169
172
  ...Nav,
170
173
  ...OnlineStatus,
174
+ ...Overlay,
171
175
  ...Passphrase,
172
176
  ...PbReactPopover,
173
177
  ...Person,
@@ -0,0 +1,18 @@
1
+ $vertical_align_baseline: baseline !default;
2
+ $vertical_align_sub: sub !default;
3
+ $vertical_align_super: super !default;
4
+ $vertical_align_text_top: text-top !default;
5
+ $vertical_align_text_bottom: text-bottom !default;
6
+ $vertical_align_middle: middle !default;
7
+ $vertical_align_top: top !default;
8
+ $vertical_align_bottom: bottom !default;
9
+ $vertical_align: (
10
+ baseline: $vertical_align_baseline,
11
+ sub: $vertical_align_sub,
12
+ super: $vertical_align_super,
13
+ text_top: $vertical_align_text_top,
14
+ text_bottom: $vertical_align_text_bottom,
15
+ middle: $vertical_align_middle,
16
+ top: $vertical_align_top,
17
+ bottom: $vertical_align_bottom
18
+ );
@@ -0,0 +1,16 @@
1
+ @import "../tokens/vertical_align";
2
+
3
+
4
+ $vertical_align_classes: (
5
+ vertical_align_baseline: $vertical_align_baseline,
6
+ vertical_align_sub: $vertical_align_sub,
7
+ vertical_align_super: $vertical_align_super,
8
+ vertical_align_text_top: $vertical_align_text_top,
9
+ vertical_align_text_bottom: $vertical_align_text_bottom,
10
+ vertical_align_middle: $vertical_align_middle,
11
+ vertical_align_top: $vertical_align_top,
12
+ vertical_align_bottom: $vertical_align_bottom,
13
+ );
14
+
15
+
16
+ @include global_props_responsive_css($vertical_align, 'vertical_align', 'vertical-align');
@@ -156,6 +156,10 @@ type Truncate = {
156
156
  truncate?: TruncateType
157
157
  }
158
158
 
159
+ type VerticalAlign = {
160
+ verticalAlign?: "baseline" | "super" | "top" | "middle" | "bottom" | "sub" | "text-top" | "text-bottom"
161
+ }
162
+
159
163
  type ZIndexType = 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10
160
164
  type ZIndexResponsiveType = {[key: string]: ZIndexType}
161
165
  type ZIndex = {
@@ -167,7 +171,7 @@ export type GlobalProps = AlignContent & AlignItems & AlignSelf &
167
171
  BorderRadius & Cursor & Dark & Display & DisplaySizes & Flex & FlexDirection &
168
172
  FlexGrow & FlexShrink & FlexWrap & JustifyContent & JustifySelf &
169
173
  LineHeight & Margin & MaxWidth & NumberSpacing & Order & Overflow & Padding &
170
- Position & Shadow & TextAlign & Truncate & ZIndex & { hover?: string } & Top & Right & Bottom & Left;
174
+ Position & Shadow & TextAlign & Truncate & VerticalAlign & ZIndex & { hover?: string } & Top & Right & Bottom & Left;
171
175
 
172
176
  const getResponsivePropClasses = (prop: {[key: string]: string}, classPrefix: string) => {
173
177
  const keys: string[] = Object.keys(prop)
@@ -470,6 +474,13 @@ const PROP_CATEGORIES: {[key:string]: (props: {[key: string]: any}) => string} =
470
474
  } else {
471
475
  return textAlign ? `text_align_${textAlign} ` : ''
472
476
  }
477
+ },
478
+ verticalAlignProps: ({ verticalAlign }: VerticalAlign) => {
479
+ if (typeof verticalAlign === 'object') {
480
+ return getResponsivePropClasses(verticalAlign, 'vertical_align')
481
+ } else {
482
+ return verticalAlign ? `vertical_align_${verticalAlign} ` : ''
483
+ }
473
484
  }
474
485
  }
475
486