playbook_ui 14.17.0.pre.alpha.PLAY20267223 → 14.17.0.pre.alpha.PLAY20547327

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 (94) hide show
  1. checksums.yaml +4 -4
  2. data/app/pb_kits/playbook/pb_advanced_table/Components/TableHeaderCell.tsx +56 -2
  3. data/app/pb_kits/playbook/pb_advanced_table/Hooks/useTableActions.ts +1 -2
  4. data/app/pb_kits/playbook/pb_advanced_table/Utilities/ExpansionControlHelpers.tsx +29 -19
  5. data/app/pb_kits/playbook/pb_advanced_table/_advanced_table.scss +7 -0
  6. data/app/pb_kits/playbook/pb_advanced_table/_advanced_table.tsx +6 -0
  7. data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_expand_by_depth.jsx +66 -0
  8. data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_expand_by_depth.md +10 -0
  9. data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_sticky_columns.jsx +1 -1
  10. data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_sticky_columns_and_header.jsx +64 -0
  11. data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_sticky_columns_and_header.md +8 -0
  12. data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_sticky_header.jsx +55 -0
  13. data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_sticky_header.md +3 -0
  14. data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_sticky_header_rails.html.erb +33 -0
  15. data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_sticky_header_rails.md +3 -0
  16. data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_table_props.html.erb +1 -1
  17. data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_table_props.jsx +1 -2
  18. data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_table_props_rails.md +2 -2
  19. data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_table_props_react.md +1 -1
  20. data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_table_props_sticky_header_rails.md +6 -2
  21. data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_table_props_sticky_header_react.md +6 -2
  22. data/app/pb_kits/playbook/pb_advanced_table/docs/example.yml +6 -2
  23. data/app/pb_kits/playbook/pb_advanced_table/docs/index.js +4 -1
  24. data/app/pb_kits/playbook/pb_background/_background.scss +26 -0
  25. data/app/pb_kits/playbook/pb_background/_background.tsx +5 -3
  26. data/app/pb_kits/playbook/pb_background/background.test.js +5 -0
  27. data/app/pb_kits/playbook/pb_background/docs/_background_overlay.jsx +35 -0
  28. data/app/pb_kits/playbook/pb_background/docs/_background_overlay.md +1 -0
  29. data/app/pb_kits/playbook/pb_background/docs/example.yml +1 -0
  30. data/app/pb_kits/playbook/pb_background/docs/index.js +1 -0
  31. data/app/pb_kits/playbook/pb_copy_button/_copy_button.tsx +19 -45
  32. data/app/pb_kits/playbook/pb_copy_button/docs/_copy_button_hook.jsx +54 -0
  33. data/app/pb_kits/playbook/pb_copy_button/docs/_copy_button_hook.md +3 -0
  34. data/app/pb_kits/playbook/pb_copy_button/docs/example.yml +1 -0
  35. data/app/pb_kits/playbook/pb_copy_button/docs/index.js +2 -1
  36. data/app/pb_kits/playbook/pb_copy_button/usePBCopy.ts +45 -0
  37. data/app/pb_kits/playbook/pb_dropdown/_dropdown.tsx +1 -1
  38. data/app/pb_kits/playbook/pb_dropdown/subcomponents/DropdownOption.tsx +1 -1
  39. data/app/pb_kits/playbook/pb_form_group/_form_group.scss +23 -3
  40. data/app/pb_kits/playbook/pb_form_group/docs/_form_group_select.html.erb +15 -5
  41. data/app/pb_kits/playbook/pb_form_group/docs/_form_group_select.jsx +39 -6
  42. data/app/pb_kits/playbook/pb_layout/_layout.scss +70 -1
  43. data/app/pb_kits/playbook/pb_layout/_layout.tsx +29 -2
  44. data/app/pb_kits/playbook/pb_layout/docs/_layout_bracket.jsx +322 -118
  45. data/app/pb_kits/playbook/pb_layout/docs/_layout_bracket.md +1 -1
  46. data/app/pb_kits/playbook/pb_layout/subcomponents/_game.tsx +74 -43
  47. data/app/pb_kits/playbook/pb_layout/subcomponents/_participant.tsx +79 -0
  48. data/app/pb_kits/playbook/pb_layout/subcomponents/_round.tsx +21 -4
  49. data/app/pb_kits/playbook/pb_overlay/_overlay.scss +49 -22
  50. data/app/pb_kits/playbook/pb_overlay/_overlay.tsx +15 -4
  51. data/app/pb_kits/playbook/pb_overlay/docs/_overlay_color.jsx +63 -0
  52. data/app/pb_kits/playbook/pb_overlay/docs/_overlay_color.md +3 -0
  53. data/app/pb_kits/playbook/pb_overlay/docs/_overlay_default.md +1 -7
  54. data/app/pb_kits/playbook/pb_overlay/docs/_overlay_gradient_opacity.jsx +39 -0
  55. data/app/pb_kits/playbook/pb_overlay/docs/_overlay_gradient_opacity.md +1 -0
  56. data/app/pb_kits/playbook/pb_overlay/docs/_overlay_layout.jsx +40 -0
  57. data/app/pb_kits/playbook/pb_overlay/docs/_overlay_layout.md +5 -0
  58. data/app/pb_kits/playbook/pb_overlay/docs/example.yml +3 -0
  59. data/app/pb_kits/playbook/pb_overlay/docs/index.js +3 -0
  60. data/app/pb_kits/playbook/pb_overlay/overlay.test.jsx +39 -1
  61. data/app/pb_kits/playbook/pb_table/_table.tsx +2 -2
  62. data/app/pb_kits/playbook/pb_table/docs/_table_with_collapsible_with_nested_rows.md +3 -1
  63. data/app/pb_kits/playbook/pb_table/docs/_table_with_collapsible_with_nested_rows_rails.md +3 -1
  64. data/app/pb_kits/playbook/pb_table/docs/_table_with_collapsible_with_nested_table.md +3 -1
  65. data/app/pb_kits/playbook/pb_table/docs/_table_with_collapsible_with_nested_table_rails.md +3 -1
  66. data/app/pb_kits/playbook/pb_table/docs/_table_with_header_style_borderless.html.erb +34 -0
  67. data/app/pb_kits/playbook/pb_table/docs/_table_with_header_style_borderless_rails.md +1 -0
  68. data/app/pb_kits/playbook/pb_table/docs/_table_with_header_style_floating.html.erb +36 -0
  69. data/app/pb_kits/playbook/pb_table/docs/_table_with_header_style_floating_rails.md +1 -0
  70. data/app/pb_kits/playbook/pb_table/docs/_table_with_header_style_floating_react.md +1 -1
  71. data/app/pb_kits/playbook/pb_table/docs/example.yml +2 -0
  72. data/app/pb_kits/playbook/pb_table/styles/_collapsible.scss +1 -1
  73. data/app/pb_kits/playbook/pb_table/table.rb +13 -1
  74. data/app/pb_kits/playbook/pb_table/table_header.rb +13 -1
  75. data/app/pb_kits/playbook/pb_text_input/_text_input.tsx +13 -5
  76. data/app/pb_kits/playbook/pb_text_input/docs/_text_input_sanitize.jsx +94 -0
  77. data/app/pb_kits/playbook/pb_text_input/docs/_text_input_sanitize.md +1 -0
  78. data/app/pb_kits/playbook/pb_text_input/docs/example.yml +2 -0
  79. data/app/pb_kits/playbook/pb_text_input/docs/index.js +1 -0
  80. data/app/pb_kits/playbook/pb_text_input/inputMask.ts +8 -1
  81. data/dist/chunks/_typeahead-aRwivA3u.js +22 -0
  82. data/dist/chunks/_weekday_stacked-Bm5175-u.js +45 -0
  83. data/dist/chunks/lib-Cj4H6j1c.js +29 -0
  84. data/dist/chunks/{pb_form_validation-BvNy9Bd6.js → pb_form_validation-Bx1OK6xs.js} +1 -1
  85. data/dist/chunks/vendor.js +1 -1
  86. data/dist/playbook-doc.js +1 -1
  87. data/dist/playbook-rails-react-bindings.js +1 -1
  88. data/dist/playbook-rails.js +1 -1
  89. data/dist/playbook.css +1 -1
  90. data/lib/playbook/version.rb +1 -1
  91. metadata +32 -6
  92. data/dist/chunks/_typeahead-HqfDnjRe.js +0 -22
  93. data/dist/chunks/_weekday_stacked-CPNaHtxQ.js +0 -45
  94. data/dist/chunks/lib-BGzBzFZX.js +0 -29
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4a84667fe2c80d67890e145f5b8841ff6c207eb717b1319029b6ae249c8248ec
4
- data.tar.gz: 8b9b31e2525c5cf403f73dbc4a3b1adf23b2ad469edb62b9aac96cb30250c077
3
+ metadata.gz: 9fcf2c083e29de497b80eedc979e33e2380754f0e5c7da746dd2bd0a825db844
4
+ data.tar.gz: e26b2e09e2e7c403eed4cb5ae1b3ab356b1235d19de1ddf4af635764b9e56d60
5
5
  SHA512:
6
- metadata.gz: 467e9b001b9069d97c5f39e257ba810f980351c93772a54474ec829b4a227017a8a11ec5dfd01f32b0acef10402766f8d8f8d1e342866d5edf0acf6ff513aec4
7
- data.tar.gz: 6eff90636fd9b005857d8b221b5db06dd4840a94b788bccf6eae6e3869e1be5a6454d7f4c1f18f3fdba9923549fe8a3f0b814b118e60acebc7f478cc79312584
6
+ metadata.gz: 28d405dfcfd84f35a79e7b2228a30df54dc323b27120b56ebbf2e92f119cf8b704034791d33525a60fa21e3f1182f6b46f1f1c7df6e6e7ec58234fcfa5a31a32
7
+ data.tar.gz: 4e4f3d1af055445096f0850a06323c722636e70d2bab273ba81aaeab762acf62d778311ba1f157e0842d81def66b671c525b69bdb480d9e54318f45f2b883993
@@ -1,6 +1,6 @@
1
1
  import React, { useContext } from "react"
2
2
  import classnames from "classnames"
3
- import { flexRender, Header, Table } from "@tanstack/react-table"
3
+ import { flexRender, Header, Table, RowModel } from "@tanstack/react-table"
4
4
 
5
5
  import { GenericObject } from "../../types"
6
6
 
@@ -8,9 +8,16 @@ import { GlobalProps } from "../../utilities/globalProps"
8
8
 
9
9
  import Flex from "../../pb_flex/_flex"
10
10
  import Checkbox from "../../pb_checkbox/_checkbox"
11
+ import Dropdown from "../../pb_dropdown/_dropdown"
12
+ import DropdownTrigger from "../../pb_dropdown/subcomponents/DropdownTrigger"
13
+ import DropdownOption from "../../pb_dropdown/subcomponents/DropdownOption"
14
+ import DropdownContainer from "../../pb_dropdown/subcomponents/DropdownContainer"
15
+ import Icon from "../../pb_icon/_icon"
11
16
 
12
17
  import { SortIconButton } from "./SortIconButton"
13
18
  import { ToggleIconButton } from "./ToggleIconButton"
19
+ import { displayIcon } from "../Utilities/IconHelpers"
20
+ import { updateExpandAndCollapseState } from "../Utilities/ExpansionControlHelpers"
14
21
 
15
22
  import { isChrome } from "../Utilities/BrowserCheck"
16
23
 
@@ -40,6 +47,11 @@ export const TableHeaderCell = ({
40
47
  table
41
48
  }: TableHeaderCellProps) => {
42
49
  const {
50
+ expanded,
51
+ setExpanded,
52
+ expandByDepth,
53
+ onExpandByDepthClick,
54
+ toggleExpansionIcon,
43
55
  sortControl,
44
56
  responsive,
45
57
  selectableRows,
@@ -107,6 +119,21 @@ const isToggleExpansionEnabled =
107
119
  justifyHeader = isLeafColumn ? "end" : "center";
108
120
  }
109
121
 
122
+ const handleExpandDepth = (depth: number) => {
123
+ if (onExpandByDepthClick) {
124
+ const flatRows = table?.getRowModel().flatRows
125
+ onExpandByDepthClick(depth, flatRows)
126
+ }
127
+ const updated = updateExpandAndCollapseState(
128
+ table.getRowModel(),
129
+ expanded,
130
+ undefined,
131
+ depth
132
+ )
133
+ setExpanded(updated)
134
+ }
135
+
136
+
110
137
  return (
111
138
  <th
112
139
  align="right"
@@ -143,9 +170,36 @@ const isToggleExpansionEnabled =
143
170
  />
144
171
  )
145
172
  }
146
- {isToggleExpansionEnabled && hasAnySubRows && (
173
+ {isToggleExpansionEnabled && hasAnySubRows && !expandByDepth && (
147
174
  <ToggleIconButton onClick={handleExpandOrCollapse} />
148
175
  )}
176
+ {isToggleExpansionEnabled && hasAnySubRows && expandByDepth && (
177
+ <Dropdown className="expand-by-depth-dropdown-wrapper"
178
+ options={expandByDepth}
179
+ >
180
+ <DropdownTrigger className="gray-icon toggle-all-icon">
181
+ <Icon icon={displayIcon(toggleExpansionIcon)[0]} />
182
+ </DropdownTrigger>
183
+ <DropdownContainer className="expand-by-depth-dropdown">
184
+ {expandByDepth.map((option:{ [key: string]: any }, index: number) => (
185
+ <DropdownOption
186
+ key={index}
187
+ option={option}
188
+ padding="none"
189
+ >
190
+ <Flex
191
+ alignItems="center"
192
+ htmlOptions={{onClick: () => {handleExpandDepth(option.depth)} }}
193
+ paddingX="sm"
194
+ paddingY="xs"
195
+ >
196
+ {option.label}
197
+ </Flex>
198
+ </DropdownOption>
199
+ ))}
200
+ </DropdownContainer>
201
+ </Dropdown>
202
+ )}
149
203
 
150
204
  {isToggleExpansionEnabledLoading &&(
151
205
  <div className="loading-toggle-icon header-toggle-icon" />
@@ -22,10 +22,9 @@ export function useTableActions({
22
22
  // Handle expand/collapse
23
23
  const handleExpandOrCollapse = useCallback(async (row: Row<GenericObject>) => {
24
24
  onToggleExpansionClick && onToggleExpansionClick(row);
25
-
26
25
  const expandedState = expanded;
27
26
  const targetParent = row?.parentId;
28
- const updatedRows = await updateExpandAndCollapseState(table.getRowModel(), expandedState, targetParent);
27
+ const updatedRows = await updateExpandAndCollapseState(table.getRowModel(), expandedState, targetParent, undefined);
29
28
  setExpanded(updatedRows);
30
29
  }, [expanded, setExpanded, onToggleExpansionClick, table]);
31
30
 
@@ -1,4 +1,4 @@
1
- import { RowModel } from "@tanstack/react-table"
1
+ import { RowModel, Row } from "@tanstack/react-table"
2
2
  import { ExpandedStateObject } from "./types"
3
3
  import { GenericObject } from "../../types"
4
4
 
@@ -14,30 +14,40 @@ const filterExpandableRows = (expandedState: Record<string, boolean>) => {
14
14
  export const updateExpandAndCollapseState = (
15
15
  tableRows: RowModel<GenericObject>,
16
16
  expanded: Record<string, boolean>,
17
- targetParent: string
17
+ targetParent?: string,
18
+ targetDepth?: number,
18
19
  ) => {
19
20
  const updateExpandedRows: Record<string, boolean> = {};
20
- const rows = tableRows.rows;
21
+ const rows = targetDepth !== undefined ? tableRows.flatRows : tableRows.rows;
21
22
 
22
- let isExpansionConsistent = true;
23
- const areRowsExpanded = new Set<boolean>();
23
+ const rowsToToggle: Row<GenericObject>[] = [];
24
24
 
25
25
  for (const row of rows) {
26
- const shouldBeUpdated = targetParent === undefined ? row.depth === 0 : targetParent === row.parentId;
27
-
26
+ const shouldBeUpdated =
27
+ targetDepth !== undefined
28
+ ? row.depth <= targetDepth
29
+ : targetParent === undefined
30
+ ? row.depth === 0
31
+ : targetParent === row.parentId;
32
+
28
33
  if (shouldBeUpdated) {
29
- const isExpanded = row.getIsExpanded();
30
- areRowsExpanded.add(isExpanded);
31
-
32
- updateExpandedRows[row.id] = !isExpansionConsistent ? true : !isExpanded;
33
-
34
- if (areRowsExpanded.size > 1) {
35
- isExpansionConsistent = false;
36
- // If expansion inconsistent, ensure all target rows are set to expand
37
- for (const key in updateExpandedRows) {
38
- updateExpandedRows[key] = true;
39
- }
40
- }
34
+ rowsToToggle.push(row);
35
+ }
36
+ }
37
+
38
+ // Check if we are expanding or collapsing
39
+ const anyCollapsed = rowsToToggle.some((row) => !row.getIsExpanded());
40
+ const isExpandAction = anyCollapsed;
41
+
42
+
43
+ for (const row of rowsToToggle) {
44
+ const shouldUpdate =
45
+ isExpandAction || targetDepth === undefined
46
+ ? true
47
+ : row.depth === targetDepth;
48
+
49
+ if (shouldUpdate) {
50
+ updateExpandedRows[row.id] = isExpandAction;
41
51
  }
42
52
  }
43
53
 
@@ -130,6 +130,13 @@
130
130
  box-sizing: border-box !important;
131
131
  }
132
132
  }
133
+ .expand-by-depth-dropdown-wrapper {
134
+ position: unset !important;
135
+ }
136
+ .expand-by-depth-dropdown {
137
+ width: unset !important;
138
+ text-align: left;
139
+ }
133
140
  }
134
141
 
135
142
  .pb_advanced_table_body {
@@ -38,6 +38,8 @@ type AdvancedTableProps = {
38
38
  data?: { [key: string]: string }
39
39
  enableToggleExpansion?: "all" | "header" | "none"
40
40
  expandedControl?: GenericObject
41
+ expandByDepth?: { [key: string]: string | number }
42
+ onExpandByDepthClick?: (arg: number, arg1: any) => void
41
43
  htmlOptions?: {[key: string]: string | number | boolean | (() => void)},
42
44
  id?: string
43
45
  initialLoadingRowsCount?: number
@@ -73,6 +75,8 @@ const AdvancedTable = (props: AdvancedTableProps) => {
73
75
  data = {},
74
76
  enableToggleExpansion = "header",
75
77
  expandedControl,
78
+ expandByDepth,
79
+ onExpandByDepthClick,
76
80
  htmlOptions = {},
77
81
  id,
78
82
  initialLoadingRowsCount = 10,
@@ -280,6 +284,7 @@ const AdvancedTable = (props: AdvancedTableProps) => {
280
284
  columnDefinitions={columnDefinitions}
281
285
  enableToggleExpansion={enableToggleExpansion}
282
286
  enableVirtualization={virtualizedRows}
287
+ expandByDepth={expandByDepth}
283
288
  expanded={expanded}
284
289
  expandedControl={expandedControl}
285
290
  handleExpandOrCollapse={handleExpandOrCollapse}
@@ -288,6 +293,7 @@ const AdvancedTable = (props: AdvancedTableProps) => {
288
293
  isActionBarVisible={isActionBarVisible}
289
294
  isFullscreen={isFullscreen}
290
295
  loading={loading}
296
+ onExpandByDepthClick={onExpandByDepthClick}
291
297
  responsive={responsive}
292
298
  selectableRows={selectableRows}
293
299
  setExpanded={setExpanded}
@@ -0,0 +1,66 @@
1
+ import React from "react"
2
+ import AdvancedTable from '../../pb_advanced_table/_advanced_table'
3
+ import MOCK_DATA from "./advanced_table_mock_data.json"
4
+
5
+ const AdvancedTableExpandByDepth = (props) => {
6
+ const columnDefinitions = [
7
+ {
8
+ accessor: "year",
9
+ label: "Year",
10
+ cellAccessors: ["quarter", "month", "day"],
11
+ },
12
+ {
13
+ accessor: "newEnrollments",
14
+ label: "New Enrollments",
15
+ },
16
+ {
17
+ accessor: "scheduledMeetings",
18
+ label: "Scheduled Meetings",
19
+ },
20
+ {
21
+ accessor: "attendanceRate",
22
+ label: "Attendance Rate",
23
+ },
24
+ {
25
+ accessor: "completedClasses",
26
+ label: "Completed Classes",
27
+ },
28
+ {
29
+ accessor: "classCompletionRate",
30
+ label: "Class Completion Rate",
31
+ },
32
+ {
33
+ accessor: "graduatedStudents",
34
+ label: "Graduated Students",
35
+ },
36
+ ]
37
+
38
+ const expandByDepth = [
39
+ {
40
+ depth: 0,
41
+ label: "Year",
42
+ },
43
+ {
44
+ depth: 1,
45
+ label: "Quarter",
46
+ },
47
+ {
48
+ depth: 2,
49
+ label: "Month",
50
+ }
51
+ ]
52
+
53
+ return (
54
+ <div>
55
+ <AdvancedTable
56
+ columnDefinitions={columnDefinitions}
57
+ expandByDepth={expandByDepth}
58
+ onExpandByDepthClick={(depth, rows) => {console.log(depth, rows)}}
59
+ tableData={MOCK_DATA}
60
+ {...props}
61
+ />
62
+ </div>
63
+ )
64
+ }
65
+
66
+ export default AdvancedTableExpandByDepth
@@ -0,0 +1,10 @@
1
+ The `expandByDepth` prop enables users to expand or collapse table rows by specific levels of nesting. When provided, it renders a dropdown that appears when the toggle icon in the header is clicked.
2
+
3
+ `expandByDepth` accepts an array of objects, where each object defines the depth level to target and the label to display in the dropdown. When a user selects an option:
4
+
5
+ **Expanding a depth**: Expands all rows at the selected depth AND all parent levels above it (if parent levels were closed), ensuring nested content is visible.
6
+
7
+ **Collapsing a depth**: Only collapses rows at the selected depth, keeping parent rows expanded for context.
8
+
9
+ If you want to attach further logic to each option click, the **optional** `onExpandByDepthClick` prop can be used. This click event provides 2 arguments that can be hooked into: the depth level of the clicked item AND all flattened table rows. Any additional functionality provided through this onClick will be applied in addition to the default.
10
+
@@ -47,7 +47,7 @@ const AdvancedTableStickyColumns = (props) => {
47
47
  <AdvancedTable
48
48
  columnDefinitions={columnDefinitions}
49
49
  responsive="none"
50
- stickyLeftColumn={["year", "newEnrollments"]}
50
+ stickyLeftColumn={["year"]}
51
51
  tableData={MOCK_DATA}
52
52
  {...props}
53
53
  />
@@ -0,0 +1,64 @@
1
+ import React from "react"
2
+ import AdvancedTable from '../../pb_advanced_table/_advanced_table'
3
+ import MOCK_DATA from "./advanced_table_mock_data.json"
4
+
5
+ const AdvancedTableStickyColumnsAndHeader = (props) => {
6
+ const columnDefinitions = [
7
+ {
8
+ accessor: "year",
9
+ label: "Year",
10
+ id: "year",
11
+ cellAccessors: ["quarter", "month", "day"],
12
+ },
13
+ {
14
+ accessor: "newEnrollments",
15
+ label: "New Enrollments",
16
+ id: "newEnrollments",
17
+ },
18
+ {
19
+ accessor: "scheduledMeetings",
20
+ label: "Scheduled Meetings",
21
+ id: "scheduledMeetings",
22
+ },
23
+ {
24
+ accessor: "attendanceRate",
25
+ label: "Attendance Rate",
26
+ id: "attendanceRate",
27
+ },
28
+ {
29
+ accessor: "completedClasses",
30
+ label: "Completed Classes",
31
+ id: "completedClasses",
32
+ },
33
+ {
34
+ accessor: "classCompletionRate",
35
+ label: "Class Completion Rate",
36
+ id: "classCompletionRate",
37
+ },
38
+ {
39
+ accessor: "graduatedStudents",
40
+ label: "Graduated Students",
41
+ id: "graduatedStudents",
42
+ },
43
+ ]
44
+
45
+ const tableProps = {
46
+ sticky: true
47
+ }
48
+
49
+ return (
50
+ <div>
51
+ <AdvancedTable
52
+ columnDefinitions={columnDefinitions}
53
+ maxHeight="xs"
54
+ responsive="none"
55
+ stickyLeftColumn={["year"]}
56
+ tableData={MOCK_DATA}
57
+ tableProps={tableProps}
58
+ {...props}
59
+ />
60
+ </div>
61
+ )
62
+ }
63
+
64
+ export default AdvancedTableStickyColumnsAndHeader
@@ -0,0 +1,8 @@
1
+ To achieve a sticky header AND sticky columns together, in addition to the `stickyLeftColumn` logic outlined above, you can:
2
+
3
+ - Set `sticky: true` via `tableProps`
4
+ - Give the AdvancedTable a `maxHeight` using our [Max Height](https://playbook.powerapp.cloud/visual_guidelines/max_height) global prop.
5
+
6
+ **NOTE**: This behavior requires a `maxHeight` to work. The header is sticky within the table container, allowing for it to work along with the column stickiness.
7
+
8
+ Expand the table above to see this in action.
@@ -0,0 +1,55 @@
1
+ import React from "react"
2
+ import AdvancedTable from '../../pb_advanced_table/_advanced_table'
3
+ import MOCK_DATA from "./advanced_table_mock_data.json"
4
+
5
+ const AdvancedTableStickyHeader = (props) => {
6
+ const columnDefinitions = [
7
+ {
8
+ accessor: "year",
9
+ label: "Year",
10
+ cellAccessors: ["quarter", "month", "day"],
11
+ },
12
+ {
13
+ accessor: "newEnrollments",
14
+ label: "New Enrollments",
15
+ },
16
+ {
17
+ accessor: "scheduledMeetings",
18
+ label: "Scheduled Meetings",
19
+ },
20
+ {
21
+ accessor: "attendanceRate",
22
+ label: "Attendance Rate",
23
+ },
24
+ {
25
+ accessor: "completedClasses",
26
+ label: "Completed Classes",
27
+ },
28
+ {
29
+ accessor: "classCompletionRate",
30
+ label: "Class Completion Rate",
31
+ },
32
+ {
33
+ accessor: "graduatedStudents",
34
+ label: "Graduated Students",
35
+ },
36
+ ]
37
+
38
+ const tableProps = {
39
+ sticky: true
40
+ }
41
+
42
+ return (
43
+ <div>
44
+ <AdvancedTable
45
+ columnDefinitions={columnDefinitions}
46
+ responsive="none"
47
+ tableData={MOCK_DATA}
48
+ tableProps={tableProps}
49
+ {...props}
50
+ />
51
+ </div>
52
+ )
53
+ }
54
+
55
+ export default AdvancedTableStickyHeader
@@ -0,0 +1,3 @@
1
+ The `TableProps` prop can also be used to render a sticky header for the Advanced Table.
2
+
3
+ This doc example showcases how to set a sticky header for a nonresponsive table (see the `responsive` prop set to "none"). To achieve sticky header AND responsive functionality, see the "Sticky Header for Responsive Table" doc example below.
@@ -0,0 +1,33 @@
1
+ <% column_definitions = [
2
+ {
3
+ accessor: "year",
4
+ label: "Year",
5
+ cellAccessors: ["quarter", "month", "day"],
6
+ },
7
+ {
8
+ accessor: "newEnrollments",
9
+ label: "New Enrollments",
10
+ },
11
+ {
12
+ accessor: "scheduledMeetings",
13
+ label: "Scheduled Meetings",
14
+ },
15
+ {
16
+ accessor: "attendanceRate",
17
+ label: "Attendance Rate",
18
+ },
19
+ {
20
+ accessor: "completedClasses",
21
+ label: "Completed Classes",
22
+ },
23
+ {
24
+ accessor: "classCompletionRate",
25
+ label: "Class Completion Rate",
26
+ },
27
+ {
28
+ accessor: "graduatedStudents",
29
+ label: "Graduated Students",
30
+ }
31
+ ] %>
32
+
33
+ <%= pb_rails("advanced_table", props: { id: "sticky_header_table", table_data: @table_data, column_definitions: column_definitions, responsive: "none", table_props: { sticky: true }}) %>
@@ -0,0 +1,3 @@
1
+ The `table_props` prop can also be used to render a sticky header for the Advanced Table.
2
+
3
+ This doc example showcases how to set a sticky header for a nonresponsive table (see the `responsive` prop set to "none"). To achieve sticky header AND responsive functionality, see the "[Sticky Header for Responsive Table](https://playbook.powerapp.cloud/kits/advanced_table/react#sticky-header-for-responsive-table)" doc example below.
@@ -30,4 +30,4 @@
30
30
  }
31
31
  ] %>
32
32
 
33
- <%= pb_rails("advanced_table", props: { id: "table_props_table", table_data: @table_data, column_definitions: column_definitions, responsive: "none", table_props: { container: false, sticky: true }}) %>
33
+ <%= pb_rails("advanced_table", props: { id: "table_props_table", table_data: @table_data, column_definitions: column_definitions, table_props: { vertical_border: true, container: false }}) %>
@@ -37,14 +37,13 @@ const AdvancedTableTableProps = (props) => {
37
37
 
38
38
  const tableProps = {
39
39
  container: false,
40
- sticky: true
40
+ verticalBorder: true
41
41
  }
42
42
 
43
43
  return (
44
44
  <div>
45
45
  <AdvancedTable
46
46
  columnDefinitions={columnDefinitions}
47
- responsive="none"
48
47
  tableData={MOCK_DATA}
49
48
  tableProps={tableProps}
50
49
  {...props}
@@ -1,3 +1,3 @@
1
- This kit uses the [Table kit](https://playbook.powerapp.cloud/kits/table) under the hood which comes with its own set of props. If you want to apply certain Table props to that underlying kit, you can do so by using the optional `table_props` prop. This prop must be an object that contains valid Table props. For a full list of Table props, see [here](https://playbook.powerapp.cloud/kits/table).
1
+ This kit uses the [Table kit](https://playbook.powerapp.cloud/kits/table/react) under the hood which comes with its own set of props. If you want to apply certain Table props to that underlying kit, you can do so by using the optional `table_props` prop. This prop must be an object that contains valid Table props. For a full list of Table props, see [here](https://playbook.powerapp.cloud/kits/table/react).
2
2
 
3
- This doc example showcases how to set a sticky header for a nonresponsive table. To achieve sticky header AND responsive functionality, see the ["Table Props Sticky Header"](https://playbook.powerapp.cloud/kits/advanced_table#table-props-sticky-header) doc example below.
3
+ This doc example showcases the use of two table props, including how to render the vertical borders between columns.
@@ -1,3 +1,3 @@
1
1
  This kit uses the [Table kit](https://playbook.powerapp.cloud/kits/table/react) under the hood which comes with its own set of props. If you want to apply certain Table props to that underlying kit, you can do so by using the optional `tableProps` prop. This prop must be an object that contains valid Table props. For a full list of Table props, see [here](https://playbook.powerapp.cloud/kits/table/react).
2
2
 
3
- This doc example showcases how to set a sticky header for a nonresponsive table. To achieve sticky header AND responsive functionality, see the ["Table Props Sticky Header"](https://playbook.powerapp.cloud/kits/advanced_table/react#table-props-sticky-header) doc example below.
3
+ This doc example showcases the use of two table props, including how to render the vertical borders between columns.
@@ -1,3 +1,7 @@
1
- Create a sticky header that works for responsive Advanced Tables by setting `sticky: true` via `table_props` and giving the AdvancedTable a `max_height` using our [Max Height](https://playbook.powerapp.cloud/visual_guidelines/max_height) global prop. This behavior requires a `max_height` to work. The header is sticky within the table container, allowing for it to work along with the first column stickiness of a responsive table on smaller screen sizes.
1
+ Create a sticky header that works for responsive Advanced Tables by setting `sticky: true` via `table_props` and giving the AdvancedTable a `max_height` using our [Max Height](https://playbook.powerapp.cloud/visual_guidelines/max_height) global prop.
2
2
 
3
- A sticky header on a nonresponsive table is demonstrated in the ["Table Props"](https://playbook.powerapp.cloud/kits/advanced_table#table-props) doc example above.
3
+ **NOTE**: This behavior requires a `max_height` to work. The header is sticky within the table container, allowing for it to work along with the first column stickiness of a responsive table on smaller screen sizes.
4
+
5
+ Expand the table above to see this in action.
6
+
7
+ A sticky header on a nonresponsive table is demonstrated in the ["Sticky Header"](https://playbook.powerapp.cloud/kits/advanced_table#sticky-header) doc example above.
@@ -1,3 +1,7 @@
1
- Create a sticky header that works for responsive Advanced Tables by setting `sticky: true` via `tableProps` and giving the AdvancedTable a `maxHeight` using our [Max Height](https://playbook.powerapp.cloud/visual_guidelines/max_height) global prop. This behavior requires a `maxHeight` to work. The header is sticky within the table container, allowing for it to work along with the first column stickiness of a responsive table on smaller screen sizes.
1
+ Create a sticky header that works for responsive Advanced Tables by setting `sticky: true` via `tableProps` and giving the AdvancedTable a `maxHeight` using our [Max Height](https://playbook.powerapp.cloud/visual_guidelines/max_height) global prop.
2
2
 
3
- A sticky header on a nonresponsive table is demonstrated in the ["Table Props"](https://playbook.powerapp.cloud/kits/advanced_table/react#table-props) doc example above.
3
+ **NOTE**: This behavior requires a `maxHeight` to work. The header is sticky within the table container, allowing for it to work along with the first column stickiness of a responsive table on smaller screen sizes.
4
+
5
+ Expand the table above to see this in action.
6
+
7
+ A sticky header on a nonresponsive table is demonstrated in the ["Sticky Header"](https://playbook.powerapp.cloud/kits/advanced_table/react#sticky-header) doc example above.
@@ -5,7 +5,8 @@ examples:
5
5
  - advanced_table_beta_subrow_headers: SubRow Headers
6
6
  - advanced_table_collapsible_trail_rails: Collapsible Trail
7
7
  - advanced_table_table_props: Table Props
8
- - advanced_table_table_props_sticky_header: Table Props Sticky Header
8
+ - advanced_table_sticky_header_rails: Sticky Header
9
+ - advanced_table_table_props_sticky_header: Sticky Header for Responsive Table
9
10
  - advanced_table_beta_sort: Enable Sorting
10
11
  - advanced_table_responsive: Responsive Tables
11
12
  - advanced_table_custom_cell_rails: Custom Components for Cells
@@ -21,12 +22,15 @@ examples:
21
22
  - advanced_table_sort: Enable Sorting
22
23
  - advanced_table_sort_control: Sort Control
23
24
  - advanced_table_expanded_control: Expanded Control
25
+ - advanced_table_expand_by_depth: Expand by Depth
24
26
  - advanced_table_subrow_headers: SubRow Headers
25
27
  - advanced_table_collapsible_trail: Collapsible Trail
26
28
  - advanced_table_table_options: Table Options
27
29
  - advanced_table_table_props: Table Props
30
+ - advanced_table_sticky_header: Sticky Header
31
+ - advanced_table_table_props_sticky_header: Sticky Header for Responsive Table
28
32
  - advanced_table_sticky_columns: Sticky Columns
29
- - advanced_table_table_props_sticky_header: Table Props Sticky Header
33
+ - advanced_table_sticky_columns_and_header: Sticky Columns with Sticky Header
30
34
  - advanced_table_inline_row_loading: Inline Row Loading
31
35
  - advanced_table_responsive: Responsive Tables
32
36
  - advanced_table_custom_cell: Custom Components for Cells
@@ -23,4 +23,7 @@ export { default as AdvancedTableTablePropsStickyHeader } from './_advanced_tabl
23
23
  export { default as AdvancedTableColumnHeadersCustomCell } from './_advanced_table_column_headers_custom_cell.jsx'
24
24
  export { default as AdvancedTableInlineEditing } from './_advanced_table_inline_editing.jsx'
25
25
  export { default as AdvancedTableFullscreen } from './_advanced_table_fullscreen.jsx'
26
- export { default as AdvancedTableStickyColumns } from './_advanced_table_sticky_columns.jsx'
26
+ export { default as AdvancedTableStickyColumns } from './_advanced_table_sticky_columns.jsx'
27
+ export { default as AdvancedTableStickyHeader } from './_advanced_table_sticky_header.jsx'
28
+ export { default as AdvancedTableStickyColumnsAndHeader } from './_advanced_table_sticky_columns_and_header.jsx'
29
+ export { default as AdvancedTableExpandByDepth } from './_advanced_table_expand_by_depth.jsx'
@@ -55,4 +55,30 @@ $background_colors: map-merge($additional_colors, $merge_kits7);
55
55
  transition: 700ms ease-in;
56
56
  }
57
57
  }
58
+
59
+ &[class*=imageoverlay] {
60
+ position: relative;
61
+
62
+ &:before {
63
+ content: "";
64
+ position: absolute;
65
+ top: 0;
66
+ left: 0;
67
+ right: 0;
68
+ bottom: 0;
69
+ z-index: 1;
70
+ background-color: inherit;
71
+ }
72
+
73
+ * {
74
+ position: relative;
75
+ z-index: 2;
76
+ }
77
+ }
78
+
79
+ @each $key, $value in $opacity {
80
+ &.imageoverlay_#{$key}::before {
81
+ opacity: $value;
82
+ }
83
+ }
58
84
  }