playbook_ui 14.22.0.pre.alpha.testdialog8898 → 14.22.0.pre.rc.0
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/_playbook.scss +1 -0
- data/app/pb_kits/playbook/pb_advanced_table/Components/CustomCell.tsx +9 -11
- data/app/pb_kits/playbook/pb_advanced_table/Components/RegularTableView.tsx +4 -20
- data/app/pb_kits/playbook/pb_advanced_table/Components/SubRowHeaderRow.tsx +11 -32
- data/app/pb_kits/playbook/pb_advanced_table/Components/TableHeaderCell.tsx +5 -25
- data/app/pb_kits/playbook/pb_advanced_table/Components/VirtualizedTableView.tsx +16 -36
- data/app/pb_kits/playbook/pb_advanced_table/Context/AdvancedTableContext.tsx +5 -18
- data/app/pb_kits/playbook/pb_advanced_table/Hooks/useTableActions.ts +17 -37
- data/app/pb_kits/playbook/pb_advanced_table/Hooks/useTableState.ts +7 -32
- data/app/pb_kits/playbook/pb_advanced_table/SubKits/TableBody.tsx +0 -3
- data/app/pb_kits/playbook/pb_advanced_table/SubKits/TableHeader.tsx +40 -91
- data/app/pb_kits/playbook/pb_advanced_table/Utilities/CellRendererUtils.tsx +1 -4
- data/app/pb_kits/playbook/pb_advanced_table/Utilities/TableContainerStyles.ts +2 -3
- data/app/pb_kits/playbook/pb_advanced_table/_advanced_table.scss +6 -68
- data/app/pb_kits/playbook/pb_advanced_table/_advanced_table.tsx +18 -42
- data/app/pb_kits/playbook/pb_advanced_table/advanced_table.test.jsx +2 -105
- data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_beta_sort.html.erb +1 -1
- data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_beta_subrow_headers.html.erb +1 -1
- data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_column_border_color_rails.html.erb +1 -1
- data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_loading.html.erb +1 -1
- data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_pinned_rows.jsx +1 -1
- data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_pinned_rows_react.md +3 -5
- data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_selectable_rows_actions.jsx +2 -2
- data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_selectable_rows_actions_rails.html.erb +2 -3
- data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_table_props_sticky_header.html.erb +1 -1
- data/app/pb_kits/playbook/pb_advanced_table/docs/example.yml +0 -8
- data/app/pb_kits/playbook/pb_advanced_table/docs/index.js +0 -6
- data/app/pb_kits/playbook/pb_advanced_table/flat_advanced_table.js +84 -60
- data/app/pb_kits/playbook/pb_advanced_table/index.js +213 -125
- data/app/pb_kits/playbook/pb_advanced_table/scss_partials/advanced_table_sticky_mixin.scss +1 -16
- data/app/pb_kits/playbook/pb_advanced_table/table_action_bar.html.erb +1 -1
- data/app/pb_kits/playbook/pb_advanced_table/table_header.html.erb +1 -1
- data/app/pb_kits/playbook/pb_advanced_table/table_header.rb +0 -5
- data/app/pb_kits/playbook/pb_advanced_table/table_row.html.erb +3 -3
- data/app/pb_kits/playbook/pb_advanced_table/table_row.rb +0 -33
- data/app/pb_kits/playbook/pb_badge/_badge.scss +6 -5
- data/app/pb_kits/playbook/pb_bar_graph/docs/_bar_graph_colors.jsx +15 -33
- data/app/pb_kits/playbook/pb_bar_graph/docs/_bar_graph_custom.jsx +72 -0
- data/app/pb_kits/playbook/pb_bar_graph/docs/_bar_graph_custom.md +6 -0
- data/app/pb_kits/playbook/pb_bar_graph/docs/_bar_graph_default.jsx +15 -33
- data/app/pb_kits/playbook/pb_bar_graph/docs/_bar_graph_height.jsx +22 -52
- data/app/pb_kits/playbook/pb_bar_graph/docs/_bar_graph_horizontal.jsx +16 -12
- data/app/pb_kits/playbook/pb_bar_graph/docs/_bar_graph_legend.jsx +15 -31
- data/app/pb_kits/playbook/pb_bar_graph/docs/_bar_graph_legend_non_clickable.jsx +16 -39
- data/app/pb_kits/playbook/pb_bar_graph/docs/_bar_graph_legend_position.jsx +38 -86
- data/app/pb_kits/playbook/pb_bar_graph/docs/_bar_graph_negative_numbers.jsx +15 -32
- data/app/pb_kits/playbook/pb_bar_graph/docs/_bar_graph_pb_styles.jsx +64 -0
- data/app/pb_kits/playbook/pb_bar_graph/docs/_bar_graph_pb_styles.md +1 -0
- data/app/pb_kits/playbook/pb_bar_graph/docs/_bar_graph_secondary_y_axis.jsx +22 -72
- data/app/pb_kits/playbook/pb_bar_graph/docs/_bar_graph_secondary_y_axis.md +1 -1
- data/app/pb_kits/playbook/pb_bar_graph/docs/_bar_graph_spline.jsx +15 -31
- data/app/pb_kits/playbook/pb_bar_graph/docs/_bar_graph_stacked.jsx +16 -37
- data/app/pb_kits/playbook/pb_bar_graph/docs/_description.md +3 -1
- data/app/pb_kits/playbook/pb_bar_graph/docs/example.yml +3 -1
- data/app/pb_kits/playbook/pb_bar_graph/docs/index.js +2 -0
- data/app/pb_kits/playbook/pb_body/docs/_body_truncate.jsx +3 -3
- data/app/pb_kits/playbook/pb_circle_chart/circleChartTheme.ts +1 -36
- data/app/pb_kits/playbook/pb_circle_chart/docs/_circle_chart_block.jsx +26 -71
- data/app/pb_kits/playbook/pb_circle_chart/docs/_circle_chart_colors.jsx +16 -29
- data/app/pb_kits/playbook/pb_circle_chart/docs/{_circle_chart_colors_rails.md → _circle_chart_colors.md} +1 -1
- data/app/pb_kits/playbook/pb_circle_chart/docs/_circle_chart_custom_tooltip.jsx +16 -28
- data/app/pb_kits/playbook/pb_circle_chart/docs/_circle_chart_custom_tooltip.md +2 -4
- data/app/pb_kits/playbook/pb_circle_chart/docs/_circle_chart_default.jsx +15 -23
- data/app/pb_kits/playbook/pb_circle_chart/docs/_circle_chart_inner_sizes.jsx +51 -81
- data/app/pb_kits/playbook/pb_circle_chart/docs/_circle_chart_legend_position.jsx +75 -103
- data/app/pb_kits/playbook/pb_circle_chart/docs/_circle_chart_legend_position.md +6 -3
- data/app/pb_kits/playbook/pb_circle_chart/docs/_circle_chart_live_data.jsx +13 -19
- data/app/pb_kits/playbook/pb_circle_chart/docs/_circle_chart_pb_styles.jsx +38 -0
- data/app/pb_kits/playbook/pb_circle_chart/docs/_circle_chart_pb_styles.md +1 -0
- data/app/pb_kits/playbook/pb_circle_chart/docs/_circle_chart_rounded.jsx +17 -30
- data/app/pb_kits/playbook/pb_circle_chart/docs/_circle_chart_with_labels.jsx +20 -34
- data/app/pb_kits/playbook/pb_circle_chart/docs/_circle_chart_with_legend_kit.jsx +20 -29
- data/app/pb_kits/playbook/pb_circle_chart/docs/_circle_chart_with_title.jsx +20 -28
- data/app/pb_kits/playbook/pb_circle_chart/docs/example.yml +1 -0
- data/app/pb_kits/playbook/pb_circle_chart/docs/index.js +1 -0
- data/app/pb_kits/playbook/pb_contact/contact.test.js +2 -2
- data/app/pb_kits/playbook/pb_dashboard/pbChartsDarkTheme.ts +39 -1
- data/app/pb_kits/playbook/pb_dashboard/pbChartsLightTheme.ts +39 -1
- data/app/pb_kits/playbook/pb_dropdown/_dropdown.tsx +12 -3
- data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_blank_selection.html.erb +3 -3
- data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_blank_selection.jsx +4 -7
- data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_clear_selection.jsx +3 -6
- data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_close_on_select.jsx +42 -0
- data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_close_on_select.md +1 -0
- data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_default.jsx +3 -6
- data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_default_rails.html.erb +3 -3
- data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_default_value.html.erb +3 -3
- data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_default_value.jsx +4 -7
- data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_error.html.erb +3 -3
- data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_error.jsx +4 -7
- data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_multi_select.jsx +10 -19
- data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_multi_select_display.jsx +10 -19
- data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_multi_select_display_rails.html.erb +10 -10
- data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_multi_select_rails.html.erb +10 -10
- data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_multi_select_with_autocomplete.html.erb +10 -10
- data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_multi_select_with_autocomplete.jsx +11 -20
- data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_multi_select_with_custom_options.html.erb +3 -3
- data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_multi_select_with_custom_options.jsx +8 -8
- data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_multi_select_with_default.html.erb +10 -10
- data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_multi_select_with_default.jsx +14 -23
- data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_separators_hidden.html.erb +3 -3
- data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_separators_hidden.jsx +3 -6
- data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_subcomponent_structure.jsx +3 -6
- data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_subcomponent_structure_rails.html.erb +3 -3
- data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_subtle_variant.html.erb +3 -3
- data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_subtle_variant.jsx +3 -6
- data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_with_autocomplete.html.erb +3 -3
- data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_with_autocomplete.jsx +3 -3
- data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_with_autocomplete_with_subcomponents.html.erb +4 -4
- data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_with_autocomplete_with_subcomponents.jsx +4 -4
- data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_with_custom_display.jsx +4 -4
- data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_with_custom_display_rails.html.erb +4 -4
- data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_with_custom_options.jsx +3 -3
- data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_with_custom_options_rails.html.erb +3 -3
- data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_with_custom_padding.html.erb +3 -3
- data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_with_custom_padding.jsx +3 -3
- data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_with_custom_trigger.jsx +3 -3
- data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_with_custom_trigger_rails.html.erb +3 -3
- data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_with_external_control.jsx +3 -3
- data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_with_label.html.erb +3 -3
- data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_with_label.jsx +3 -6
- data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_with_search.jsx +3 -3
- data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_with_search_rails.html.erb +3 -3
- data/app/pb_kits/playbook/pb_dropdown/docs/example.yml +2 -4
- data/app/pb_kits/playbook/pb_dropdown/docs/index.js +1 -2
- data/app/pb_kits/playbook/pb_dropdown/subcomponents/DropdownOption.tsx +14 -10
- data/app/pb_kits/playbook/pb_dropdown/subcomponents/DropdownTrigger.tsx +26 -15
- data/app/pb_kits/playbook/pb_filter/Filter/index.tsx +0 -13
- data/app/pb_kits/playbook/pb_filter/_filter.scss +0 -4
- data/app/pb_kits/playbook/pb_filter/docs/example.yml +0 -1
- data/app/pb_kits/playbook/pb_filter/docs/index.js +0 -1
- data/app/pb_kits/playbook/pb_filter/filter.test.js +2 -2
- data/app/pb_kits/playbook/pb_table/_table.tsx +4 -4
- data/app/pb_kits/playbook/pb_table/docs/_table_sticky_columns.html.erb +8 -8
- data/app/pb_kits/playbook/pb_table/docs/_table_sticky_columns.jsx +8 -8
- data/app/pb_kits/playbook/pb_table/docs/_table_sticky_columns_rails.md +1 -1
- data/app/pb_kits/playbook/pb_table/docs/_table_sticky_columns_react.md +1 -1
- data/app/pb_kits/playbook/pb_table/docs/_table_sticky_left_columns.html.erb +12 -12
- data/app/pb_kits/playbook/pb_table/docs/_table_sticky_left_columns.jsx +12 -12
- data/app/pb_kits/playbook/pb_table/docs/_table_sticky_left_columns_rails.md +2 -2
- data/app/pb_kits/playbook/pb_table/docs/_table_sticky_left_columns_react.md +3 -3
- data/app/pb_kits/playbook/pb_table/docs/_table_sticky_right_columns.html.erb +12 -12
- data/app/pb_kits/playbook/pb_table/docs/_table_sticky_right_columns.jsx +12 -12
- data/app/pb_kits/playbook/pb_table/docs/_table_sticky_right_columns_rails.md +2 -2
- data/app/pb_kits/playbook/pb_table/docs/_table_sticky_right_columns_react.md +3 -3
- data/app/pb_kits/playbook/pb_table/index.ts +4 -4
- data/app/pb_kits/playbook/pb_table/styles/_table-card.scss +0 -11
- data/app/pb_kits/playbook/pb_table/styles/_vertical_border.scss +0 -4
- data/app/pb_kits/playbook/pb_title/docs/_title_truncate.jsx +3 -3
- data/app/pb_kits/playbook/pb_tooltip/_tooltip.tsx +22 -34
- data/app/pb_kits/playbook/pb_tooltip/docs/example.yml +0 -2
- data/app/pb_kits/playbook/pb_tooltip/docs/index.js +0 -1
- data/app/pb_kits/playbook/pb_tooltip/index.js +36 -59
- data/app/pb_kits/playbook/pb_tooltip/tooltip.rb +2 -9
- data/app/pb_kits/playbook/pb_treemap_chart/_treemap_chart.scss +14 -0
- data/app/pb_kits/playbook/pb_treemap_chart/_treemap_chart.tsx +119 -0
- data/app/pb_kits/playbook/pb_treemap_chart/docs/_description.md +5 -0
- data/app/pb_kits/playbook/pb_treemap_chart/docs/_treemap_chart_colors.html.erb +37 -0
- data/app/pb_kits/playbook/pb_treemap_chart/docs/_treemap_chart_colors.jsx +48 -0
- data/app/pb_kits/playbook/pb_treemap_chart/docs/_treemap_chart_colors.md +2 -0
- data/app/pb_kits/playbook/pb_treemap_chart/docs/_treemap_chart_default.html.erb +37 -0
- data/app/pb_kits/playbook/pb_treemap_chart/docs/_treemap_chart_default.jsx +47 -0
- data/app/pb_kits/playbook/pb_treemap_chart/docs/_treemap_chart_default.md +3 -0
- data/app/pb_kits/playbook/pb_treemap_chart/docs/_treemap_chart_drillable.html.erb +79 -0
- data/app/pb_kits/playbook/pb_treemap_chart/docs/_treemap_chart_drillable.jsx +90 -0
- data/app/pb_kits/playbook/pb_treemap_chart/docs/_treemap_chart_drillable.md +1 -0
- data/app/pb_kits/playbook/pb_treemap_chart/docs/_treemap_chart_grouped_data.html.erb +54 -0
- data/app/pb_kits/playbook/pb_treemap_chart/docs/_treemap_chart_grouped_data.jsx +65 -0
- data/app/pb_kits/playbook/pb_treemap_chart/docs/_treemap_chart_grouped_data.md +3 -0
- data/app/pb_kits/playbook/pb_treemap_chart/docs/_treemap_chart_tooltip.html.erb +37 -0
- data/app/pb_kits/playbook/pb_treemap_chart/docs/_treemap_chart_tooltip.jsx +48 -0
- data/app/pb_kits/playbook/pb_treemap_chart/docs/_treemap_chart_tooltip.md +3 -0
- data/app/pb_kits/playbook/pb_treemap_chart/docs/example.yml +15 -0
- data/app/pb_kits/playbook/pb_treemap_chart/docs/index.js +5 -0
- data/app/pb_kits/playbook/pb_treemap_chart/treemapChart.test.js +63 -0
- data/app/pb_kits/playbook/pb_treemap_chart/treemap_chart.html.erb +1 -0
- data/app/pb_kits/playbook/pb_treemap_chart/treemap_chart.rb +48 -0
- data/app/pb_kits/playbook/pb_typeahead/docs/example.yml +0 -1
- data/app/pb_kits/playbook/pb_typeahead/typeahead.rb +0 -3
- data/dist/chunks/_typeahead-CoOpeYom.js +22 -0
- data/dist/chunks/_weekday_stacked-B_jpa2Rz.js +45 -0
- data/dist/chunks/lib-D7Va7yqa.js +29 -0
- data/dist/chunks/{pb_form_validation-DO8gKaSb.js → pb_form_validation-DSkdRDMf.js} +1 -1
- data/dist/chunks/vendor.js +1 -1
- data/dist/menu.yml +9 -0
- data/dist/playbook-doc.js +3 -3
- data/dist/playbook-rails-react-bindings.js +1 -1
- data/dist/playbook-rails.js +1 -1
- data/dist/playbook.css +1 -1
- data/lib/playbook/version.rb +2 -2
- metadata +41 -51
- data/app/pb_kits/playbook/pb_advanced_table/Utilities/ColumnStylingHelper.ts +0 -15
- data/app/pb_kits/playbook/pb_advanced_table/advanced_table_action_bar.js +0 -36
- data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_column_styling.jsx +0 -51
- data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_column_styling.md +0 -7
- data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_column_styling_column_headers.jsx +0 -77
- data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_column_styling_column_headers.md +0 -1
- data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_column_styling_column_headers_rails.html.erb +0 -63
- data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_column_styling_column_headers_rails.md +0 -1
- data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_column_styling_rails.html.erb +0 -38
- data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_column_styling_rails.md +0 -7
- data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_custom_sort.jsx +0 -65
- data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_custom_sort.md +0 -5
- data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_infinite_scroll.md +0 -3
- data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_row_styling.jsx +0 -64
- data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_row_styling.md +0 -7
- data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_with_custom_header.jsx +0 -69
- data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_with_custom_header.md +0 -1
- data/app/pb_kits/playbook/pb_bar_graph/barGraphTheme.ts +0 -106
- data/app/pb_kits/playbook/pb_bar_graph/docs/_bar_graph_height.md +0 -3
- data/app/pb_kits/playbook/pb_body/docs/_body_truncate_react.md +0 -4
- data/app/pb_kits/playbook/pb_circle_chart/docs/_circle_chart_colors_react.md +0 -2
- data/app/pb_kits/playbook/pb_circle_chart/docs/_description.md +0 -1
- data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_with_custom_icon_options.html.erb +0 -52
- data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_with_custom_icon_options.jsx +0 -99
- data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_with_custom_icon_options_rails.md +0 -1
- data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_with_custom_icon_options_react.md +0 -1
- data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_with_custom_radio_options.html.erb +0 -28
- data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_with_custom_radio_options.jsx +0 -47
- data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_with_custom_radio_options_rails.md +0 -1
- data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_with_custom_radio_options_react.md +0 -1
- data/app/pb_kits/playbook/pb_filter/Filter/FilterSection.tsx +0 -49
- data/app/pb_kits/playbook/pb_filter/Filter/FilterSidebar.tsx +0 -69
- data/app/pb_kits/playbook/pb_filter/docs/_filter_sidebar.jsx +0 -224
- data/app/pb_kits/playbook/pb_title/docs/_title_truncate_react.md +0 -4
- data/app/pb_kits/playbook/pb_tooltip/docs/_tooltip_click_open.html.erb +0 -14
- data/app/pb_kits/playbook/pb_tooltip/docs/_tooltip_click_open.jsx +0 -25
- data/app/pb_kits/playbook/pb_tooltip/docs/_tooltip_click_open_rails.md +0 -1
- data/app/pb_kits/playbook/pb_tooltip/docs/_tooltip_click_open_react.md +0 -1
- data/app/pb_kits/playbook/pb_typeahead/docs/_typeahead_preserve_input.html.erb +0 -18
- data/app/pb_kits/playbook/pb_typeahead/docs/_typeahead_preserve_input_rails.md +0 -1
- data/dist/chunks/_circle_chart-CE1dVeaK.js +0 -1
- data/dist/chunks/_typeahead-CEZhT0Qr.js +0 -6
- data/dist/chunks/_weekday_stacked-Zjg_MJ-c.js +0 -61
- data/dist/chunks/lib-CP6s-TZS.js +0 -29
- /data/app/pb_kits/playbook/pb_body/docs/{_body_truncate_rails.md → _body_truncate.md} +0 -0
- /data/app/pb_kits/playbook/pb_title/docs/{_title_truncate_rails.md → _title_truncate.md} +0 -0
- /data/app/pb_kits/playbook/pb_typeahead/docs/{_typeahead_preserve_input_react.md → _typeahead_preserve_input.md} +0 -0
@@ -16,7 +16,6 @@ type TableBodyProps = {
|
|
16
16
|
dark?: boolean
|
17
17
|
id?: string
|
18
18
|
subRowHeaders?: string[]
|
19
|
-
isFetching: boolean
|
20
19
|
}
|
21
20
|
|
22
21
|
export const TableBody = ({
|
@@ -25,7 +24,6 @@ export const TableBody = ({
|
|
25
24
|
dark = false,
|
26
25
|
id,
|
27
26
|
subRowHeaders,
|
28
|
-
isFetching,
|
29
27
|
...props
|
30
28
|
}: TableBodyProps) => {
|
31
29
|
|
@@ -65,7 +63,6 @@ export const TableBody = ({
|
|
65
63
|
// Virtualized table view
|
66
64
|
<VirtualizedTableView
|
67
65
|
collapsibleTrail={collapsibleTrail}
|
68
|
-
isFetching={isFetching}
|
69
66
|
subRowHeaders={subRowHeaders}
|
70
67
|
/>
|
71
68
|
) : (
|
@@ -40,13 +40,9 @@ export const TableHeader = ({
|
|
40
40
|
showActionsBar,
|
41
41
|
selectableRows,
|
42
42
|
responsive,
|
43
|
-
headerRef
|
44
|
-
virtualizedRows,
|
45
|
-
enableVirtualization,
|
43
|
+
headerRef
|
46
44
|
} = useContext(AdvancedTableContext)
|
47
45
|
|
48
|
-
const isVirtualized = virtualizedRows || enableVirtualization;
|
49
|
-
|
50
46
|
const classes = classnames(
|
51
47
|
buildCss("pb_advanced_table_header"),
|
52
48
|
globalProps(props),
|
@@ -61,93 +57,46 @@ export const TableHeader = ({
|
|
61
57
|
`${isChrome() ? "chrome-styles" : ""}`,
|
62
58
|
`${responsive === "scroll" && "pinned-left"}`,
|
63
59
|
);
|
64
|
-
|
65
|
-
const renderRegularTableHeader = () => (
|
66
|
-
<thead className={classes}
|
67
|
-
id={id}
|
68
|
-
>
|
69
|
-
{table.getHeaderGroups().map((headerGroup: HeaderGroup<GenericObject>, index: number) => (
|
70
|
-
<tr
|
71
|
-
key={`${headerGroup.id}-headerGroup`}
|
72
|
-
ref={index === 0 ? headerRef : null}
|
73
|
-
>
|
74
|
-
{!hasAnySubRows && selectableRows && (
|
75
|
-
<th className={customCellClassnames}>
|
76
|
-
<Checkbox
|
77
|
-
checked={table?.getIsAllRowsSelected()}
|
78
|
-
indeterminate={table?.getIsSomeRowsSelected()}
|
79
|
-
onChange={table?.getToggleAllRowsSelectedHandler()}
|
80
|
-
/>
|
81
|
-
</th>
|
82
|
-
)}
|
83
|
-
{headerGroup.headers.map(header => {
|
84
|
-
const isPinnedLeft = columnPinning.left.includes(header.id)
|
85
|
-
return (
|
86
|
-
<TableHeaderCell
|
87
|
-
enableSorting={enableSorting}
|
88
|
-
enableToggleExpansion={enableToggleExpansion}
|
89
|
-
handleExpandOrCollapse={handleExpandOrCollapse}
|
90
|
-
header={header}
|
91
|
-
headerChildren={children}
|
92
|
-
isPinnedLeft={isPinnedLeft}
|
93
|
-
key={`${header.id}-header`}
|
94
|
-
loading={loading}
|
95
|
-
sortIcon={sortIcon}
|
96
|
-
table={table}
|
97
|
-
/>
|
98
|
-
)
|
99
|
-
})}
|
100
|
-
</tr>
|
101
|
-
))}
|
102
|
-
</thead>
|
103
|
-
);
|
104
|
-
|
105
|
-
const renderVirtualizedTableHeader = () => (
|
106
|
-
<thead
|
107
|
-
className={classes}
|
108
|
-
data-virtualized="true"
|
109
|
-
id={id}
|
110
|
-
>
|
111
|
-
{table.getHeaderGroups().map((headerGroup: HeaderGroup<GenericObject>, index: number) => (
|
112
|
-
<tr
|
113
|
-
className="virtualized-header-row-header"
|
114
|
-
key={`${headerGroup.id}-headerGroup-virtualized`}
|
115
|
-
ref={index === 0 ? headerRef : null}
|
116
|
-
>
|
117
|
-
{!hasAnySubRows && selectableRows && (
|
118
|
-
<th className={classnames(customCellClassnames, "virtualized-header-cell")}>
|
119
|
-
<Checkbox
|
120
|
-
checked={table?.getIsAllRowsSelected()}
|
121
|
-
indeterminate={table?.getIsSomeRowsSelected()}
|
122
|
-
onChange={table?.getToggleAllRowsSelectedHandler()}
|
123
|
-
/>
|
124
|
-
</th>
|
125
|
-
)}
|
126
|
-
{headerGroup.headers.map(header => {
|
127
|
-
const isPinnedLeft = columnPinning.left.includes(header.id)
|
128
|
-
return (
|
129
|
-
<TableHeaderCell
|
130
|
-
enableSorting={enableSorting}
|
131
|
-
enableToggleExpansion={enableToggleExpansion}
|
132
|
-
handleExpandOrCollapse={handleExpandOrCollapse}
|
133
|
-
header={header}
|
134
|
-
headerChildren={children}
|
135
|
-
isPinnedLeft={isPinnedLeft}
|
136
|
-
isVirtualized
|
137
|
-
key={`${header.id}-header-virtualized`}
|
138
|
-
loading={loading}
|
139
|
-
sortIcon={sortIcon}
|
140
|
-
table={table}
|
141
|
-
/>
|
142
|
-
)
|
143
|
-
})}
|
144
|
-
</tr>
|
145
|
-
))}
|
146
|
-
</thead>
|
147
|
-
);
|
148
60
|
return (
|
149
|
-
<>
|
150
|
-
{
|
61
|
+
<>
|
62
|
+
<thead className={classes}
|
63
|
+
id={id}
|
64
|
+
>
|
65
|
+
{/* Get the header groups (only one in this example) */}
|
66
|
+
{table.getHeaderGroups().map((headerGroup: HeaderGroup<GenericObject>, index: number) => (
|
67
|
+
<tr
|
68
|
+
key={`${headerGroup.id}-headerGroup`}
|
69
|
+
ref={index === 0 ? headerRef : null}
|
70
|
+
>
|
71
|
+
{!hasAnySubRows && selectableRows && (
|
72
|
+
<th className={customCellClassnames}>
|
73
|
+
<Checkbox
|
74
|
+
checked={table?.getIsAllRowsSelected()}
|
75
|
+
indeterminate={table?.getIsSomeRowsSelected()}
|
76
|
+
onChange={table?.getToggleAllRowsSelectedHandler()}
|
77
|
+
/>
|
78
|
+
</th>
|
79
|
+
)}
|
80
|
+
{headerGroup.headers.map(header => {
|
81
|
+
const isPinnedLeft = columnPinning.left.includes(header.id)
|
82
|
+
return (
|
83
|
+
<TableHeaderCell
|
84
|
+
enableSorting={enableSorting}
|
85
|
+
enableToggleExpansion={enableToggleExpansion}
|
86
|
+
handleExpandOrCollapse={handleExpandOrCollapse}
|
87
|
+
header={header}
|
88
|
+
headerChildren={children}
|
89
|
+
isPinnedLeft={isPinnedLeft}
|
90
|
+
key={`${header.id}-header`}
|
91
|
+
loading={loading}
|
92
|
+
sortIcon={sortIcon}
|
93
|
+
table={table}
|
94
|
+
/>
|
95
|
+
)
|
96
|
+
})}
|
97
|
+
</tr>
|
98
|
+
))}
|
99
|
+
</thead>
|
151
100
|
</>
|
152
101
|
)
|
153
102
|
}
|
@@ -17,8 +17,7 @@ export const createCellFunction = (
|
|
17
17
|
customRenderer?: (row: Row<GenericObject>, value: any) => JSX.Element,
|
18
18
|
isFirstColumn?: boolean,
|
19
19
|
onRowToggleClick?: (row: Row<GenericObject>) => void,
|
20
|
-
selectableRows?: boolean
|
21
|
-
rowStyling?: GenericObject
|
20
|
+
selectableRows?: boolean
|
22
21
|
) => {
|
23
22
|
// Add display name to the returned function
|
24
23
|
const cellRenderer = ({
|
@@ -29,7 +28,6 @@ export const createCellFunction = (
|
|
29
28
|
getValue: Getter<string>
|
30
29
|
}) => {
|
31
30
|
const rowData = row.original;
|
32
|
-
const customStyle = rowStyling?.length > 0 && rowStyling?.find((s:GenericObject) => s?.rowId === row.id);
|
33
31
|
|
34
32
|
if (isFirstColumn) {
|
35
33
|
switch (row.depth) {
|
@@ -37,7 +35,6 @@ export const createCellFunction = (
|
|
37
35
|
return (
|
38
36
|
<CustomCell
|
39
37
|
customRenderer={customRenderer}
|
40
|
-
customStyle={customStyle}
|
41
38
|
getValue={getValue}
|
42
39
|
onRowToggleClick={onRowToggleClick}
|
43
40
|
row={row}
|
@@ -57,6 +57,7 @@ export const getVirtualizedContainerStyles = (maxHeight?: string): React.CSSProp
|
|
57
57
|
position: 'absolute',
|
58
58
|
top: 0,
|
59
59
|
left: 0,
|
60
|
+
width: '100%',
|
60
61
|
height: '40px', // Match standard table row height
|
61
62
|
transform: `translateY(${startPosition}px)`,
|
62
63
|
tableLayout: 'fixed',
|
@@ -66,14 +67,12 @@ export const getVirtualizedContainerStyles = (maxHeight?: string): React.CSSProp
|
|
66
67
|
/**
|
67
68
|
* Get height estimates for different row types
|
68
69
|
*/
|
69
|
-
export const getRowHeightEstimate = (rowType: 'header' | 'row' | 'loading'
|
70
|
+
export const getRowHeightEstimate = (rowType: 'header' | 'row' | 'loading') => {
|
70
71
|
switch (rowType) {
|
71
72
|
case 'header':
|
72
73
|
return 40; // Header height
|
73
74
|
case 'loading':
|
74
75
|
return 30; // Loading indicator height
|
75
|
-
case 'footer':
|
76
|
-
return 40
|
77
76
|
case 'row':
|
78
77
|
default:
|
79
78
|
return 40; // Standard row height - match this to your design system
|
@@ -56,37 +56,18 @@
|
|
56
56
|
}
|
57
57
|
|
58
58
|
.bg-row-selection {
|
59
|
-
background-color:
|
59
|
+
background-color: $info_subtle;
|
60
60
|
}
|
61
61
|
|
62
62
|
.full-width {
|
63
63
|
width: 100%;
|
64
64
|
}
|
65
65
|
|
66
|
-
// Virtualized
|
67
|
-
scrollbar-gutter: stable right-edges;
|
68
|
-
.virtualized-header-row-header {
|
69
|
-
width: 100% !important;
|
70
|
-
.table-header-cells:first-child {
|
71
|
-
min-width: 180px;
|
72
|
-
}
|
73
|
-
}
|
74
|
-
|
75
|
-
.virtualized-footer {
|
76
|
-
width: 100% !important;
|
77
|
-
td {
|
78
|
-
border-bottom-left-radius: 4px !important;
|
79
|
-
border-bottom-right-radius: 4px !important;
|
80
|
-
display: flex;
|
81
|
-
justify-content: center;
|
82
|
-
align-items: center;
|
83
|
-
}
|
84
|
-
}
|
85
|
-
|
66
|
+
// Virtualized table styles
|
86
67
|
.virtualized-table-row {
|
87
68
|
display: table !important;
|
88
69
|
table-layout: fixed !important;
|
89
|
-
|
70
|
+
width: 100% !important;
|
90
71
|
|
91
72
|
td {
|
92
73
|
display: table-cell !important;
|
@@ -123,7 +104,7 @@
|
|
123
104
|
|
124
105
|
-ms-overflow-style: none !important;
|
125
106
|
scrollbar-width: none !important;
|
126
|
-
|
107
|
+
}
|
127
108
|
|
128
109
|
|
129
110
|
.row-selection-actions-card {
|
@@ -189,11 +170,6 @@
|
|
189
170
|
box-sizing: border-box !important;
|
190
171
|
}
|
191
172
|
}
|
192
|
-
// Fixes for tooltip picking up th styling from Table kit
|
193
|
-
.pb_tooltip_kit {
|
194
|
-
font-weight: unset;
|
195
|
-
text-transform: unset;
|
196
|
-
}
|
197
173
|
}
|
198
174
|
|
199
175
|
.pb_advanced_table_body {
|
@@ -217,6 +193,7 @@
|
|
217
193
|
|
218
194
|
// Fix virtualized row borders
|
219
195
|
tr.virtualized-table-row {
|
196
|
+
border-bottom: 1px solid $border_light;
|
220
197
|
|
221
198
|
&.bg-silver {
|
222
199
|
td:first-child {
|
@@ -232,7 +209,7 @@
|
|
232
209
|
|
233
210
|
&.bg-row-selection {
|
234
211
|
td:first-child {
|
235
|
-
background-color:
|
212
|
+
background-color: $info_subtle;
|
236
213
|
}
|
237
214
|
}
|
238
215
|
}
|
@@ -629,16 +606,6 @@
|
|
629
606
|
td.sticky-left {
|
630
607
|
border-right: 1px solid $border_light !important;
|
631
608
|
}
|
632
|
-
// Virtualized Table in Responsive Styles
|
633
|
-
.virtualized-header,
|
634
|
-
.virtualized-header-row-header,
|
635
|
-
.virtualized-table-row,
|
636
|
-
.virtualized-footer {
|
637
|
-
border-right: 1px solid $border_light !important;
|
638
|
-
.table-header-cells:first-child {
|
639
|
-
box-shadow: 0 0 10px 0 rgba($shadow, 0.16) !important;
|
640
|
-
}
|
641
|
-
}
|
642
609
|
}
|
643
610
|
}
|
644
611
|
}
|
@@ -654,23 +621,6 @@
|
|
654
621
|
box-shadow: 0 4px 10px 0 rgba($shadow, 0.16) !important;
|
655
622
|
}
|
656
623
|
|
657
|
-
// For Rails, we can't target the &:last-child since collapsed rows are display: none;
|
658
|
-
// With JS, we add a .last-visible-row class and add rounded corners to bottom row
|
659
|
-
.last-visible-row {
|
660
|
-
td, .pb_table_td {
|
661
|
-
border-width: 0 0 1px 0;
|
662
|
-
|
663
|
-
&:first-child {
|
664
|
-
border-radius: 0 0 0 4px;
|
665
|
-
border-width: 0 0 1px 1px;
|
666
|
-
}
|
667
|
-
&:last-child {
|
668
|
-
border-radius: 0 0 4px 0;
|
669
|
-
border-width: 0 1px 1px 0;
|
670
|
-
}
|
671
|
-
}
|
672
|
-
}
|
673
|
-
|
674
624
|
&.dark {
|
675
625
|
// Override default border color for dark mode
|
676
626
|
--column-border-color: #{$border_dark};
|
@@ -897,18 +847,6 @@
|
|
897
847
|
}
|
898
848
|
}
|
899
849
|
}
|
900
|
-
.bg-row-selection {
|
901
|
-
background-color: #202850;
|
902
|
-
}
|
903
|
-
.pb_advanced_table_body {
|
904
|
-
tr.virtualized-table-row {
|
905
|
-
&.bg-row-selection {
|
906
|
-
td:first-child {
|
907
|
-
background-color: #202850;
|
908
|
-
}
|
909
|
-
}
|
910
|
-
}
|
911
|
-
}
|
912
850
|
}
|
913
851
|
}
|
914
852
|
|
@@ -36,7 +36,6 @@ type AdvancedTableProps = {
|
|
36
36
|
columnDefinitions: GenericObject[]
|
37
37
|
columnGroupBorderColor?: "text_lt_default" | "text_lt_light" | "text_lt_lighter" | "text_dk_default" | "text_dk_light" | "text_dk_lighter"
|
38
38
|
columnVisibilityControl?: GenericObject
|
39
|
-
customSort?:boolean;
|
40
39
|
dark?: boolean
|
41
40
|
data?: { [key: string]: string }
|
42
41
|
enableToggleExpansion?: "all" | "header" | "none"
|
@@ -58,7 +57,6 @@ type AdvancedTableProps = {
|
|
58
57
|
onChange?: (value: RowPinningState) => void;
|
59
58
|
};
|
60
59
|
responsive?: "scroll" | "none",
|
61
|
-
rowStyling?: GenericObject[],
|
62
60
|
scrollBarNone?: boolean,
|
63
61
|
selectableRows?: boolean,
|
64
62
|
showActionsBar?: boolean,
|
@@ -68,7 +66,6 @@ type AdvancedTableProps = {
|
|
68
66
|
tableProps?: GenericObject
|
69
67
|
toggleExpansionIcon?: string | string[]
|
70
68
|
onRowSelectionChange?: (arg: RowSelectionState) => void
|
71
|
-
onCustomSortClick?: (arg: GenericObject[]) => void
|
72
69
|
virtualizedRows?: boolean
|
73
70
|
allowFullScreen?: boolean
|
74
71
|
fullScreenControl?: (controls: FullscreenControls) => void
|
@@ -83,7 +80,6 @@ const AdvancedTable = (props: AdvancedTableProps) => {
|
|
83
80
|
columnDefinitions,
|
84
81
|
columnGroupBorderColor,
|
85
82
|
columnVisibilityControl,
|
86
|
-
customSort,
|
87
83
|
dark = false,
|
88
84
|
data = {},
|
89
85
|
enableToggleExpansion = "header",
|
@@ -98,12 +94,10 @@ const AdvancedTable = (props: AdvancedTableProps) => {
|
|
98
94
|
maxHeight,
|
99
95
|
onRowToggleClick,
|
100
96
|
onToggleExpansionClick,
|
101
|
-
onCustomSortClick,
|
102
97
|
pagination = false,
|
103
98
|
paginationProps,
|
104
99
|
pinnedRows,
|
105
100
|
responsive = "scroll",
|
106
|
-
rowStyling,
|
107
101
|
scrollBarNone= false,
|
108
102
|
showActionsBar = true,
|
109
103
|
selectableRows,
|
@@ -150,7 +144,6 @@ const AdvancedTable = (props: AdvancedTableProps) => {
|
|
150
144
|
onRowSelectionChange,
|
151
145
|
columnVisibilityControl,
|
152
146
|
pinnedRows,
|
153
|
-
rowStyling
|
154
147
|
});
|
155
148
|
|
156
149
|
// Initialize table actions
|
@@ -273,29 +266,6 @@ const AdvancedTable = (props: AdvancedTableProps) => {
|
|
273
266
|
// Visibility flag for action bar
|
274
267
|
const isActionBarVisible = (selectableRows && showActionsBar && selectedRowsLength > 0) || columnVisibilityControl;
|
275
268
|
|
276
|
-
// The actual Main <Table /> element
|
277
|
-
const tableElement = (
|
278
|
-
<Table
|
279
|
-
className={`${loading ? "content-loading" : ""}`}
|
280
|
-
dark={dark}
|
281
|
-
dataTable
|
282
|
-
numberSpacing="tabular"
|
283
|
-
responsive="none"
|
284
|
-
{...tableProps}
|
285
|
-
>
|
286
|
-
{children ? (
|
287
|
-
children
|
288
|
-
) : (
|
289
|
-
<>
|
290
|
-
<TableHeader />
|
291
|
-
<TableBody
|
292
|
-
isFetching={isFetching}
|
293
|
-
/>
|
294
|
-
</>
|
295
|
-
)}
|
296
|
-
</Table>
|
297
|
-
)
|
298
|
-
|
299
269
|
return (
|
300
270
|
<>
|
301
271
|
{/* Top Pagination */}
|
@@ -329,7 +299,6 @@ const AdvancedTable = (props: AdvancedTableProps) => {
|
|
329
299
|
columnDefinitions={columnDefinitions}
|
330
300
|
columnGroupBorderColor={columnGroupBorderColor}
|
331
301
|
columnVisibilityControl={columnVisibilityControl}
|
332
|
-
customSort={customSort}
|
333
302
|
enableToggleExpansion={enableToggleExpansion}
|
334
303
|
enableVirtualization={virtualizedRows}
|
335
304
|
expandByDepth={expandByDepth}
|
@@ -341,11 +310,9 @@ const AdvancedTable = (props: AdvancedTableProps) => {
|
|
341
310
|
isActionBarVisible={isActionBarVisible}
|
342
311
|
isFullscreen={isFullscreen}
|
343
312
|
loading={loading}
|
344
|
-
onCustomSortClick={onCustomSortClick}
|
345
313
|
onExpandByDepthClick={onExpandByDepthClick}
|
346
314
|
pinnedRows={pinnedRows}
|
347
315
|
responsive={responsive}
|
348
|
-
rowStyling={rowStyling}
|
349
316
|
selectableRows={selectableRows}
|
350
317
|
setExpanded={setExpanded}
|
351
318
|
showActionsBar={showActionsBar}
|
@@ -355,7 +322,6 @@ const AdvancedTable = (props: AdvancedTableProps) => {
|
|
355
322
|
table={table}
|
356
323
|
tableContainerRef={tableWrapperRef}
|
357
324
|
toggleExpansionIcon={toggleExpansionIcon}
|
358
|
-
totalAvailableCount={fullData.length}
|
359
325
|
virtualizedRows={virtualizedRows}
|
360
326
|
>
|
361
327
|
<React.Fragment>
|
@@ -367,14 +333,24 @@ const AdvancedTable = (props: AdvancedTableProps) => {
|
|
367
333
|
type={columnVisibilityControl ? "column-visibility" : "row-selection"}
|
368
334
|
/>
|
369
335
|
|
370
|
-
{/*
|
371
|
-
|
372
|
-
|
373
|
-
{
|
374
|
-
|
375
|
-
|
376
|
-
|
377
|
-
|
336
|
+
{/* Main Table */}
|
337
|
+
<Table
|
338
|
+
className={`${loading ? "content-loading" : ""}`}
|
339
|
+
dark={dark}
|
340
|
+
dataTable
|
341
|
+
numberSpacing="tabular"
|
342
|
+
responsive="none"
|
343
|
+
{...tableProps}
|
344
|
+
>
|
345
|
+
{children ? (
|
346
|
+
children
|
347
|
+
) : (
|
348
|
+
<>
|
349
|
+
<TableHeader />
|
350
|
+
<TableBody />
|
351
|
+
</>
|
352
|
+
)}
|
353
|
+
</Table>
|
378
354
|
</React.Fragment>
|
379
355
|
</AdvancedTableProvider>
|
380
356
|
|
@@ -1,7 +1,7 @@
|
|
1
1
|
import React, {useState} from "react"
|
2
2
|
import { render, screen, waitFor } from "../utilities/test-utils"
|
3
3
|
|
4
|
-
import { AdvancedTable, Pill
|
4
|
+
import { AdvancedTable, Pill } from "playbook-ui"
|
5
5
|
|
6
6
|
global.ResizeObserver = class {
|
7
7
|
observe() {}
|
@@ -572,107 +572,4 @@ test("pinnedRows prop renders pinned rows at top", () => {
|
|
572
572
|
const firstPinnedRow = pinnedRows[0]
|
573
573
|
expect(firstPinnedRow).toHaveStyle("position: sticky")
|
574
574
|
expect(firstPinnedRow).toHaveStyle("background-color: white")
|
575
|
-
})
|
576
|
-
|
577
|
-
test("columnStyling.headerAlignment aligns header as expected", () => {
|
578
|
-
const styledColumnDefs = [
|
579
|
-
{
|
580
|
-
accessor: "year",
|
581
|
-
label: "Year",
|
582
|
-
cellAccessors: ["quarter", "month", "day"],
|
583
|
-
},
|
584
|
-
{
|
585
|
-
accessor: "newEnrollments",
|
586
|
-
label: "New Enrollments",
|
587
|
-
columnStyling: { headerAlignment: "left" },
|
588
|
-
},
|
589
|
-
{
|
590
|
-
accessor: "scheduledMeetings",
|
591
|
-
label: "Scheduled Meetings",
|
592
|
-
},
|
593
|
-
];
|
594
|
-
|
595
|
-
render(
|
596
|
-
<AdvancedTable
|
597
|
-
columnDefinitions={styledColumnDefs}
|
598
|
-
data={{ testid: testId }}
|
599
|
-
tableData={MOCK_DATA}
|
600
|
-
/>
|
601
|
-
);
|
602
|
-
|
603
|
-
const headerCell = screen.getByText("New Enrollments").closest("th");
|
604
|
-
expect(headerCell).toHaveAttribute("align", "left");
|
605
|
-
});
|
606
|
-
|
607
|
-
test("columnStyling.cellAlignment sets each <td> align attribute as expected", () => {
|
608
|
-
const styledColumnDefs = [
|
609
|
-
{
|
610
|
-
accessor: "year",
|
611
|
-
label: "Year",
|
612
|
-
cellAccessors: ["quarter", "month", "day"],
|
613
|
-
},
|
614
|
-
{
|
615
|
-
accessor: "newEnrollments",
|
616
|
-
label: "New Enrollments",
|
617
|
-
columnStyling: { cellAlignment: "left" },
|
618
|
-
},
|
619
|
-
{
|
620
|
-
accessor: "scheduledMeetings",
|
621
|
-
label: "Scheduled Meetings",
|
622
|
-
},
|
623
|
-
];
|
624
|
-
|
625
|
-
render(
|
626
|
-
<AdvancedTable
|
627
|
-
columnDefinitions={styledColumnDefs}
|
628
|
-
data={{ testid: testId }}
|
629
|
-
tableData={MOCK_DATA}
|
630
|
-
/>
|
631
|
-
);
|
632
|
-
|
633
|
-
const firstEnrollmentCell = screen.getAllByText("20")[0].closest("td");
|
634
|
-
expect(firstEnrollmentCell).toHaveAttribute("align", "left");
|
635
|
-
});
|
636
|
-
|
637
|
-
test("renders virtualized table rows and header", () => {
|
638
|
-
render(
|
639
|
-
<AdvancedTable
|
640
|
-
columnDefinitions={columnDefinitions}
|
641
|
-
data={{ testid: testId }}
|
642
|
-
tableData={MOCK_DATA_WITH_ID}
|
643
|
-
virtualizedRows
|
644
|
-
/>
|
645
|
-
)
|
646
|
-
|
647
|
-
const kit = screen.getByTestId(testId)
|
648
|
-
|
649
|
-
const virtualizedHeader = kit.querySelector('.virtualized-header-row-header')
|
650
|
-
expect(virtualizedHeader).toBeInTheDocument()
|
651
|
-
|
652
|
-
const virtualizedRows = kit.querySelectorAll('.virtualized-table-row')
|
653
|
-
expect(virtualizedRows.length).toBeLessThan(MOCK_DATA_WITH_ID.length)
|
654
|
-
})
|
655
|
-
|
656
|
-
test("rowStyling prop works as expected", () => {
|
657
|
-
const rowStyling = [
|
658
|
-
{
|
659
|
-
rowId: "1",
|
660
|
-
backgroundColor: colors.white,
|
661
|
-
fontColor: colors.black
|
662
|
-
},
|
663
|
-
];
|
664
|
-
|
665
|
-
render(
|
666
|
-
<AdvancedTable
|
667
|
-
columnDefinitions={columnDefinitions}
|
668
|
-
data={{ testid: testId }}
|
669
|
-
rowStyling={rowStyling}
|
670
|
-
tableData={MOCK_DATA_WITH_ID}
|
671
|
-
/>
|
672
|
-
)
|
673
|
-
|
674
|
-
const kit = screen.getByTestId(testId)
|
675
|
-
const tableBody = kit.querySelector('tbody')
|
676
|
-
const row1 = tableBody.querySelector('tr:nth-child(1)')
|
677
|
-
expect(row1).toHaveStyle({backgroundColor: colors.white, color: colors.black})
|
678
|
-
})
|
575
|
+
})
|
@@ -51,7 +51,7 @@
|
|
51
51
|
]
|
52
52
|
%>
|
53
53
|
|
54
|
-
<%= pb_rails("advanced_table", props: { table_data: @table_data, column_definitions: column_definitions
|
54
|
+
<%= pb_rails("advanced_table", props: { table_data: @table_data, column_definitions: column_definitions }) do %>
|
55
55
|
<%= pb_rails("advanced_table/table_header", props: { column_definitions: column_definitions }) %>
|
56
56
|
<%= pb_rails("advanced_table/table_body", props: { id: "beta_sort", table_data: @table_data, column_definitions: column_definitions, enable_toggle_expansion: "all" }) %>
|
57
57
|
<% end %>
|
data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_beta_subrow_headers.html.erb
CHANGED
@@ -34,7 +34,7 @@
|
|
34
34
|
subrow_headers = ["Quarter", "Month", "Day"]
|
35
35
|
%>
|
36
36
|
|
37
|
-
<%= pb_rails("advanced_table", props: { table_data: @table_data, column_definitions: column_definitions
|
37
|
+
<%= pb_rails("advanced_table", props: { table_data: @table_data, column_definitions: column_definitions }) do %>
|
38
38
|
<%= pb_rails("advanced_table/table_header", props: { column_definitions: column_definitions }) %>
|
39
39
|
<%= pb_rails("advanced_table/table_body", props: { id: "test_table", table_data: @table_data, column_definitions: column_definitions, subrow_headers: subrow_headers, enable_toggle_expansion: "all" }) %>
|
40
40
|
<% end %>
|
data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_column_border_color_rails.html.erb
CHANGED
@@ -55,4 +55,4 @@
|
|
55
55
|
},
|
56
56
|
] %>
|
57
57
|
|
58
|
-
<%= pb_rails("advanced_table", props: { id: "
|
58
|
+
<%= pb_rails("advanced_table", props: { id: "beta_table_with_muilti_headers", table_data: @table_data, column_definitions: column_definitions, column_group_border_color: "text_lt_default", table_props: { vertical_border: true } }) %>
|
@@ -30,4 +30,4 @@
|
|
30
30
|
}
|
31
31
|
] %>
|
32
32
|
|
33
|
-
<%= pb_rails("advanced_table", props: { id: "
|
33
|
+
<%= pb_rails("advanced_table", props: { id: "beta_table", table_data: @table_data, column_definitions: column_definitions, loading: true }) %>
|
@@ -1,7 +1,5 @@
|
|
1
|
-
Use the `pinnedRows` prop to pin specific rows to the top of an Advanced Table. Pinned rows will remain at the top when scrolling through table data and
|
1
|
+
Use the `pinnedRows` prop to pin specific rows to the top of an Advanced Table. Pinned rows will remain at the top when scrolling through table data and reorganizing via sorting.
|
2
2
|
|
3
|
-
**NOTE:**
|
3
|
+
**NOTE:** This prop is in Beta. Current Requirements for V1:
|
4
4
|
- Sticky header required: Pinned rows must be used with `sticky: true` via `tableProps` (works with both responsive and non-responsive tables)
|
5
|
-
- Row ids required:
|
6
|
-
- `pinnedRows` takes an array of row ids to the `top` property as shown in the code snippet below.
|
7
|
-
- For expandable rows, use the parent id in `pinnedRows`, all its children will automatically be pinned with it. If id for a child is passed in without parent being pinned, nothing will be pinned.
|
5
|
+
- Row ids required: Pass an array of row ids to the `top` property. For expandable rows, both parent and all its child row ids must be included individually
|