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.
Files changed (239) hide show
  1. checksums.yaml +4 -4
  2. data/app/pb_kits/playbook/_playbook.scss +1 -0
  3. data/app/pb_kits/playbook/pb_advanced_table/Components/CustomCell.tsx +9 -11
  4. data/app/pb_kits/playbook/pb_advanced_table/Components/RegularTableView.tsx +4 -20
  5. data/app/pb_kits/playbook/pb_advanced_table/Components/SubRowHeaderRow.tsx +11 -32
  6. data/app/pb_kits/playbook/pb_advanced_table/Components/TableHeaderCell.tsx +5 -25
  7. data/app/pb_kits/playbook/pb_advanced_table/Components/VirtualizedTableView.tsx +16 -36
  8. data/app/pb_kits/playbook/pb_advanced_table/Context/AdvancedTableContext.tsx +5 -18
  9. data/app/pb_kits/playbook/pb_advanced_table/Hooks/useTableActions.ts +17 -37
  10. data/app/pb_kits/playbook/pb_advanced_table/Hooks/useTableState.ts +7 -32
  11. data/app/pb_kits/playbook/pb_advanced_table/SubKits/TableBody.tsx +0 -3
  12. data/app/pb_kits/playbook/pb_advanced_table/SubKits/TableHeader.tsx +40 -91
  13. data/app/pb_kits/playbook/pb_advanced_table/Utilities/CellRendererUtils.tsx +1 -4
  14. data/app/pb_kits/playbook/pb_advanced_table/Utilities/TableContainerStyles.ts +2 -3
  15. data/app/pb_kits/playbook/pb_advanced_table/_advanced_table.scss +6 -68
  16. data/app/pb_kits/playbook/pb_advanced_table/_advanced_table.tsx +18 -42
  17. data/app/pb_kits/playbook/pb_advanced_table/advanced_table.test.jsx +2 -105
  18. data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_beta_sort.html.erb +1 -1
  19. data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_beta_subrow_headers.html.erb +1 -1
  20. data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_column_border_color_rails.html.erb +1 -1
  21. data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_loading.html.erb +1 -1
  22. data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_pinned_rows.jsx +1 -1
  23. data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_pinned_rows_react.md +3 -5
  24. data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_selectable_rows_actions.jsx +2 -2
  25. data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_selectable_rows_actions_rails.html.erb +2 -3
  26. data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_table_props_sticky_header.html.erb +1 -1
  27. data/app/pb_kits/playbook/pb_advanced_table/docs/example.yml +0 -8
  28. data/app/pb_kits/playbook/pb_advanced_table/docs/index.js +0 -6
  29. data/app/pb_kits/playbook/pb_advanced_table/flat_advanced_table.js +84 -60
  30. data/app/pb_kits/playbook/pb_advanced_table/index.js +213 -125
  31. data/app/pb_kits/playbook/pb_advanced_table/scss_partials/advanced_table_sticky_mixin.scss +1 -16
  32. data/app/pb_kits/playbook/pb_advanced_table/table_action_bar.html.erb +1 -1
  33. data/app/pb_kits/playbook/pb_advanced_table/table_header.html.erb +1 -1
  34. data/app/pb_kits/playbook/pb_advanced_table/table_header.rb +0 -5
  35. data/app/pb_kits/playbook/pb_advanced_table/table_row.html.erb +3 -3
  36. data/app/pb_kits/playbook/pb_advanced_table/table_row.rb +0 -33
  37. data/app/pb_kits/playbook/pb_badge/_badge.scss +6 -5
  38. data/app/pb_kits/playbook/pb_bar_graph/docs/_bar_graph_colors.jsx +15 -33
  39. data/app/pb_kits/playbook/pb_bar_graph/docs/_bar_graph_custom.jsx +72 -0
  40. data/app/pb_kits/playbook/pb_bar_graph/docs/_bar_graph_custom.md +6 -0
  41. data/app/pb_kits/playbook/pb_bar_graph/docs/_bar_graph_default.jsx +15 -33
  42. data/app/pb_kits/playbook/pb_bar_graph/docs/_bar_graph_height.jsx +22 -52
  43. data/app/pb_kits/playbook/pb_bar_graph/docs/_bar_graph_horizontal.jsx +16 -12
  44. data/app/pb_kits/playbook/pb_bar_graph/docs/_bar_graph_legend.jsx +15 -31
  45. data/app/pb_kits/playbook/pb_bar_graph/docs/_bar_graph_legend_non_clickable.jsx +16 -39
  46. data/app/pb_kits/playbook/pb_bar_graph/docs/_bar_graph_legend_position.jsx +38 -86
  47. data/app/pb_kits/playbook/pb_bar_graph/docs/_bar_graph_negative_numbers.jsx +15 -32
  48. data/app/pb_kits/playbook/pb_bar_graph/docs/_bar_graph_pb_styles.jsx +64 -0
  49. data/app/pb_kits/playbook/pb_bar_graph/docs/_bar_graph_pb_styles.md +1 -0
  50. data/app/pb_kits/playbook/pb_bar_graph/docs/_bar_graph_secondary_y_axis.jsx +22 -72
  51. data/app/pb_kits/playbook/pb_bar_graph/docs/_bar_graph_secondary_y_axis.md +1 -1
  52. data/app/pb_kits/playbook/pb_bar_graph/docs/_bar_graph_spline.jsx +15 -31
  53. data/app/pb_kits/playbook/pb_bar_graph/docs/_bar_graph_stacked.jsx +16 -37
  54. data/app/pb_kits/playbook/pb_bar_graph/docs/_description.md +3 -1
  55. data/app/pb_kits/playbook/pb_bar_graph/docs/example.yml +3 -1
  56. data/app/pb_kits/playbook/pb_bar_graph/docs/index.js +2 -0
  57. data/app/pb_kits/playbook/pb_body/docs/_body_truncate.jsx +3 -3
  58. data/app/pb_kits/playbook/pb_circle_chart/circleChartTheme.ts +1 -36
  59. data/app/pb_kits/playbook/pb_circle_chart/docs/_circle_chart_block.jsx +26 -71
  60. data/app/pb_kits/playbook/pb_circle_chart/docs/_circle_chart_colors.jsx +16 -29
  61. data/app/pb_kits/playbook/pb_circle_chart/docs/{_circle_chart_colors_rails.md → _circle_chart_colors.md} +1 -1
  62. data/app/pb_kits/playbook/pb_circle_chart/docs/_circle_chart_custom_tooltip.jsx +16 -28
  63. data/app/pb_kits/playbook/pb_circle_chart/docs/_circle_chart_custom_tooltip.md +2 -4
  64. data/app/pb_kits/playbook/pb_circle_chart/docs/_circle_chart_default.jsx +15 -23
  65. data/app/pb_kits/playbook/pb_circle_chart/docs/_circle_chart_inner_sizes.jsx +51 -81
  66. data/app/pb_kits/playbook/pb_circle_chart/docs/_circle_chart_legend_position.jsx +75 -103
  67. data/app/pb_kits/playbook/pb_circle_chart/docs/_circle_chart_legend_position.md +6 -3
  68. data/app/pb_kits/playbook/pb_circle_chart/docs/_circle_chart_live_data.jsx +13 -19
  69. data/app/pb_kits/playbook/pb_circle_chart/docs/_circle_chart_pb_styles.jsx +38 -0
  70. data/app/pb_kits/playbook/pb_circle_chart/docs/_circle_chart_pb_styles.md +1 -0
  71. data/app/pb_kits/playbook/pb_circle_chart/docs/_circle_chart_rounded.jsx +17 -30
  72. data/app/pb_kits/playbook/pb_circle_chart/docs/_circle_chart_with_labels.jsx +20 -34
  73. data/app/pb_kits/playbook/pb_circle_chart/docs/_circle_chart_with_legend_kit.jsx +20 -29
  74. data/app/pb_kits/playbook/pb_circle_chart/docs/_circle_chart_with_title.jsx +20 -28
  75. data/app/pb_kits/playbook/pb_circle_chart/docs/example.yml +1 -0
  76. data/app/pb_kits/playbook/pb_circle_chart/docs/index.js +1 -0
  77. data/app/pb_kits/playbook/pb_contact/contact.test.js +2 -2
  78. data/app/pb_kits/playbook/pb_dashboard/pbChartsDarkTheme.ts +39 -1
  79. data/app/pb_kits/playbook/pb_dashboard/pbChartsLightTheme.ts +39 -1
  80. data/app/pb_kits/playbook/pb_dropdown/_dropdown.tsx +12 -3
  81. data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_blank_selection.html.erb +3 -3
  82. data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_blank_selection.jsx +4 -7
  83. data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_clear_selection.jsx +3 -6
  84. data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_close_on_select.jsx +42 -0
  85. data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_close_on_select.md +1 -0
  86. data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_default.jsx +3 -6
  87. data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_default_rails.html.erb +3 -3
  88. data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_default_value.html.erb +3 -3
  89. data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_default_value.jsx +4 -7
  90. data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_error.html.erb +3 -3
  91. data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_error.jsx +4 -7
  92. data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_multi_select.jsx +10 -19
  93. data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_multi_select_display.jsx +10 -19
  94. data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_multi_select_display_rails.html.erb +10 -10
  95. data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_multi_select_rails.html.erb +10 -10
  96. data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_multi_select_with_autocomplete.html.erb +10 -10
  97. data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_multi_select_with_autocomplete.jsx +11 -20
  98. data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_multi_select_with_custom_options.html.erb +3 -3
  99. data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_multi_select_with_custom_options.jsx +8 -8
  100. data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_multi_select_with_default.html.erb +10 -10
  101. data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_multi_select_with_default.jsx +14 -23
  102. data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_separators_hidden.html.erb +3 -3
  103. data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_separators_hidden.jsx +3 -6
  104. data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_subcomponent_structure.jsx +3 -6
  105. data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_subcomponent_structure_rails.html.erb +3 -3
  106. data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_subtle_variant.html.erb +3 -3
  107. data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_subtle_variant.jsx +3 -6
  108. data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_with_autocomplete.html.erb +3 -3
  109. data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_with_autocomplete.jsx +3 -3
  110. data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_with_autocomplete_with_subcomponents.html.erb +4 -4
  111. data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_with_autocomplete_with_subcomponents.jsx +4 -4
  112. data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_with_custom_display.jsx +4 -4
  113. data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_with_custom_display_rails.html.erb +4 -4
  114. data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_with_custom_options.jsx +3 -3
  115. data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_with_custom_options_rails.html.erb +3 -3
  116. data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_with_custom_padding.html.erb +3 -3
  117. data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_with_custom_padding.jsx +3 -3
  118. data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_with_custom_trigger.jsx +3 -3
  119. data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_with_custom_trigger_rails.html.erb +3 -3
  120. data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_with_external_control.jsx +3 -3
  121. data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_with_label.html.erb +3 -3
  122. data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_with_label.jsx +3 -6
  123. data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_with_search.jsx +3 -3
  124. data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_with_search_rails.html.erb +3 -3
  125. data/app/pb_kits/playbook/pb_dropdown/docs/example.yml +2 -4
  126. data/app/pb_kits/playbook/pb_dropdown/docs/index.js +1 -2
  127. data/app/pb_kits/playbook/pb_dropdown/subcomponents/DropdownOption.tsx +14 -10
  128. data/app/pb_kits/playbook/pb_dropdown/subcomponents/DropdownTrigger.tsx +26 -15
  129. data/app/pb_kits/playbook/pb_filter/Filter/index.tsx +0 -13
  130. data/app/pb_kits/playbook/pb_filter/_filter.scss +0 -4
  131. data/app/pb_kits/playbook/pb_filter/docs/example.yml +0 -1
  132. data/app/pb_kits/playbook/pb_filter/docs/index.js +0 -1
  133. data/app/pb_kits/playbook/pb_filter/filter.test.js +2 -2
  134. data/app/pb_kits/playbook/pb_table/_table.tsx +4 -4
  135. data/app/pb_kits/playbook/pb_table/docs/_table_sticky_columns.html.erb +8 -8
  136. data/app/pb_kits/playbook/pb_table/docs/_table_sticky_columns.jsx +8 -8
  137. data/app/pb_kits/playbook/pb_table/docs/_table_sticky_columns_rails.md +1 -1
  138. data/app/pb_kits/playbook/pb_table/docs/_table_sticky_columns_react.md +1 -1
  139. data/app/pb_kits/playbook/pb_table/docs/_table_sticky_left_columns.html.erb +12 -12
  140. data/app/pb_kits/playbook/pb_table/docs/_table_sticky_left_columns.jsx +12 -12
  141. data/app/pb_kits/playbook/pb_table/docs/_table_sticky_left_columns_rails.md +2 -2
  142. data/app/pb_kits/playbook/pb_table/docs/_table_sticky_left_columns_react.md +3 -3
  143. data/app/pb_kits/playbook/pb_table/docs/_table_sticky_right_columns.html.erb +12 -12
  144. data/app/pb_kits/playbook/pb_table/docs/_table_sticky_right_columns.jsx +12 -12
  145. data/app/pb_kits/playbook/pb_table/docs/_table_sticky_right_columns_rails.md +2 -2
  146. data/app/pb_kits/playbook/pb_table/docs/_table_sticky_right_columns_react.md +3 -3
  147. data/app/pb_kits/playbook/pb_table/index.ts +4 -4
  148. data/app/pb_kits/playbook/pb_table/styles/_table-card.scss +0 -11
  149. data/app/pb_kits/playbook/pb_table/styles/_vertical_border.scss +0 -4
  150. data/app/pb_kits/playbook/pb_title/docs/_title_truncate.jsx +3 -3
  151. data/app/pb_kits/playbook/pb_tooltip/_tooltip.tsx +22 -34
  152. data/app/pb_kits/playbook/pb_tooltip/docs/example.yml +0 -2
  153. data/app/pb_kits/playbook/pb_tooltip/docs/index.js +0 -1
  154. data/app/pb_kits/playbook/pb_tooltip/index.js +36 -59
  155. data/app/pb_kits/playbook/pb_tooltip/tooltip.rb +2 -9
  156. data/app/pb_kits/playbook/pb_treemap_chart/_treemap_chart.scss +14 -0
  157. data/app/pb_kits/playbook/pb_treemap_chart/_treemap_chart.tsx +119 -0
  158. data/app/pb_kits/playbook/pb_treemap_chart/docs/_description.md +5 -0
  159. data/app/pb_kits/playbook/pb_treemap_chart/docs/_treemap_chart_colors.html.erb +37 -0
  160. data/app/pb_kits/playbook/pb_treemap_chart/docs/_treemap_chart_colors.jsx +48 -0
  161. data/app/pb_kits/playbook/pb_treemap_chart/docs/_treemap_chart_colors.md +2 -0
  162. data/app/pb_kits/playbook/pb_treemap_chart/docs/_treemap_chart_default.html.erb +37 -0
  163. data/app/pb_kits/playbook/pb_treemap_chart/docs/_treemap_chart_default.jsx +47 -0
  164. data/app/pb_kits/playbook/pb_treemap_chart/docs/_treemap_chart_default.md +3 -0
  165. data/app/pb_kits/playbook/pb_treemap_chart/docs/_treemap_chart_drillable.html.erb +79 -0
  166. data/app/pb_kits/playbook/pb_treemap_chart/docs/_treemap_chart_drillable.jsx +90 -0
  167. data/app/pb_kits/playbook/pb_treemap_chart/docs/_treemap_chart_drillable.md +1 -0
  168. data/app/pb_kits/playbook/pb_treemap_chart/docs/_treemap_chart_grouped_data.html.erb +54 -0
  169. data/app/pb_kits/playbook/pb_treemap_chart/docs/_treemap_chart_grouped_data.jsx +65 -0
  170. data/app/pb_kits/playbook/pb_treemap_chart/docs/_treemap_chart_grouped_data.md +3 -0
  171. data/app/pb_kits/playbook/pb_treemap_chart/docs/_treemap_chart_tooltip.html.erb +37 -0
  172. data/app/pb_kits/playbook/pb_treemap_chart/docs/_treemap_chart_tooltip.jsx +48 -0
  173. data/app/pb_kits/playbook/pb_treemap_chart/docs/_treemap_chart_tooltip.md +3 -0
  174. data/app/pb_kits/playbook/pb_treemap_chart/docs/example.yml +15 -0
  175. data/app/pb_kits/playbook/pb_treemap_chart/docs/index.js +5 -0
  176. data/app/pb_kits/playbook/pb_treemap_chart/treemapChart.test.js +63 -0
  177. data/app/pb_kits/playbook/pb_treemap_chart/treemap_chart.html.erb +1 -0
  178. data/app/pb_kits/playbook/pb_treemap_chart/treemap_chart.rb +48 -0
  179. data/app/pb_kits/playbook/pb_typeahead/docs/example.yml +0 -1
  180. data/app/pb_kits/playbook/pb_typeahead/typeahead.rb +0 -3
  181. data/dist/chunks/_typeahead-CoOpeYom.js +22 -0
  182. data/dist/chunks/_weekday_stacked-B_jpa2Rz.js +45 -0
  183. data/dist/chunks/lib-D7Va7yqa.js +29 -0
  184. data/dist/chunks/{pb_form_validation-DO8gKaSb.js → pb_form_validation-DSkdRDMf.js} +1 -1
  185. data/dist/chunks/vendor.js +1 -1
  186. data/dist/menu.yml +9 -0
  187. data/dist/playbook-doc.js +3 -3
  188. data/dist/playbook-rails-react-bindings.js +1 -1
  189. data/dist/playbook-rails.js +1 -1
  190. data/dist/playbook.css +1 -1
  191. data/lib/playbook/version.rb +2 -2
  192. metadata +41 -51
  193. data/app/pb_kits/playbook/pb_advanced_table/Utilities/ColumnStylingHelper.ts +0 -15
  194. data/app/pb_kits/playbook/pb_advanced_table/advanced_table_action_bar.js +0 -36
  195. data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_column_styling.jsx +0 -51
  196. data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_column_styling.md +0 -7
  197. data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_column_styling_column_headers.jsx +0 -77
  198. data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_column_styling_column_headers.md +0 -1
  199. data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_column_styling_column_headers_rails.html.erb +0 -63
  200. data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_column_styling_column_headers_rails.md +0 -1
  201. data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_column_styling_rails.html.erb +0 -38
  202. data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_column_styling_rails.md +0 -7
  203. data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_custom_sort.jsx +0 -65
  204. data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_custom_sort.md +0 -5
  205. data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_infinite_scroll.md +0 -3
  206. data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_row_styling.jsx +0 -64
  207. data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_row_styling.md +0 -7
  208. data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_with_custom_header.jsx +0 -69
  209. data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_with_custom_header.md +0 -1
  210. data/app/pb_kits/playbook/pb_bar_graph/barGraphTheme.ts +0 -106
  211. data/app/pb_kits/playbook/pb_bar_graph/docs/_bar_graph_height.md +0 -3
  212. data/app/pb_kits/playbook/pb_body/docs/_body_truncate_react.md +0 -4
  213. data/app/pb_kits/playbook/pb_circle_chart/docs/_circle_chart_colors_react.md +0 -2
  214. data/app/pb_kits/playbook/pb_circle_chart/docs/_description.md +0 -1
  215. data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_with_custom_icon_options.html.erb +0 -52
  216. data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_with_custom_icon_options.jsx +0 -99
  217. data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_with_custom_icon_options_rails.md +0 -1
  218. data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_with_custom_icon_options_react.md +0 -1
  219. data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_with_custom_radio_options.html.erb +0 -28
  220. data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_with_custom_radio_options.jsx +0 -47
  221. data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_with_custom_radio_options_rails.md +0 -1
  222. data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_with_custom_radio_options_react.md +0 -1
  223. data/app/pb_kits/playbook/pb_filter/Filter/FilterSection.tsx +0 -49
  224. data/app/pb_kits/playbook/pb_filter/Filter/FilterSidebar.tsx +0 -69
  225. data/app/pb_kits/playbook/pb_filter/docs/_filter_sidebar.jsx +0 -224
  226. data/app/pb_kits/playbook/pb_title/docs/_title_truncate_react.md +0 -4
  227. data/app/pb_kits/playbook/pb_tooltip/docs/_tooltip_click_open.html.erb +0 -14
  228. data/app/pb_kits/playbook/pb_tooltip/docs/_tooltip_click_open.jsx +0 -25
  229. data/app/pb_kits/playbook/pb_tooltip/docs/_tooltip_click_open_rails.md +0 -1
  230. data/app/pb_kits/playbook/pb_tooltip/docs/_tooltip_click_open_react.md +0 -1
  231. data/app/pb_kits/playbook/pb_typeahead/docs/_typeahead_preserve_input.html.erb +0 -18
  232. data/app/pb_kits/playbook/pb_typeahead/docs/_typeahead_preserve_input_rails.md +0 -1
  233. data/dist/chunks/_circle_chart-CE1dVeaK.js +0 -1
  234. data/dist/chunks/_typeahead-CEZhT0Qr.js +0 -6
  235. data/dist/chunks/_weekday_stacked-Zjg_MJ-c.js +0 -61
  236. data/dist/chunks/lib-CP6s-TZS.js +0 -29
  237. /data/app/pb_kits/playbook/pb_body/docs/{_body_truncate_rails.md → _body_truncate.md} +0 -0
  238. /data/app/pb_kits/playbook/pb_title/docs/{_title_truncate_rails.md → _title_truncate.md} +0 -0
  239. /data/app/pb_kits/playbook/pb_typeahead/docs/{_typeahead_preserve_input_react.md → _typeahead_preserve_input.md} +0 -0
@@ -6,18 +6,15 @@ const DropdownDefault = (props) => {
6
6
  const options = [
7
7
  {
8
8
  label: "United States",
9
- value: "unitedStates",
10
- id: "us"
9
+ value: "United States",
11
10
  },
12
11
  {
13
12
  label: "Canada",
14
- value: "canada",
15
- id: "ca"
13
+ value: "Canada",
16
14
  },
17
15
  {
18
16
  label: "Pakistan",
19
- value: "pakistan",
20
- id: "pk"
17
+ value: "Pakistan",
21
18
  }
22
19
  ];
23
20
 
@@ -8,20 +8,20 @@ const [selectedOption, setSelectedOption] = useState();
8
8
  const options = [
9
9
  {
10
10
  label: "United States",
11
- value: "unitedStates",
11
+ value: "United States",
12
12
  icon: "🇺🇸",
13
13
  id: "United-states"
14
14
 
15
15
  },
16
16
  {
17
17
  label: "United Kingdom",
18
- value: "unitedKingdom",
18
+ value: "United Kingdom",
19
19
  icon: "🇬🇧",
20
20
  id: "united-kingdom"
21
21
  },
22
22
  {
23
23
  label: "Pakistan",
24
- value: "pakistan",
24
+ value: "Pakistan",
25
25
  icon: "🇵🇰",
26
26
  id: "pakistan"
27
27
  }
@@ -2,21 +2,21 @@
2
2
  options = [
3
3
  {
4
4
  label: "United States",
5
- value: "unitedStates",
5
+ value: "United States",
6
6
  areaCode: "+1",
7
7
  icon: "🇺🇸",
8
8
  id: "us"
9
9
  },
10
10
  {
11
11
  label: "United Kingdom",
12
- value: "unitedKingdom",
12
+ value: "United Kingdom",
13
13
  areaCode: "+44",
14
14
  icon: "🇬🇧",
15
15
  id: "gb"
16
16
  },
17
17
  {
18
18
  label: "Pakistan",
19
- value: "pakistan",
19
+ value: "Pakistan",
20
20
  areaCode: "+92",
21
21
  icon: "🇵🇰",
22
22
  id: "pk"
@@ -15,8 +15,6 @@ examples:
15
15
  - dropdown_with_custom_trigger_rails: Custom Trigger
16
16
  - dropdown_with_search_rails: Custom Trigger Dropdown with Search
17
17
  - dropdown_with_custom_padding: Custom Option Padding
18
- - dropdown_with_custom_icon_options: Custom Icon Options
19
- # - dropdown_with_custom_radio_options: Custom Radio Options # TODO: Update and publish doc ex in [PLAY-2146](https://runway.powerhrg.com/backlog_items/PLAY-2146) (remove this comment afterwards)
20
18
  - dropdown_error: Dropdown with Error
21
19
  - dropdown_default_value: Default Value
22
20
  - dropdown_multi_select_with_default: Multi Select Default Value
@@ -39,8 +37,6 @@ examples:
39
37
  - dropdown_with_custom_trigger: Custom Trigger
40
38
  - dropdown_with_search: Custom Trigger Dropdown with Search
41
39
  - dropdown_with_custom_padding: Custom Option Padding
42
- - dropdown_with_custom_icon_options: Custom Icon Options
43
- # - dropdown_with_custom_radio_options: Custom Radio Options # TODO: Update and publish doc ex in [PLAY-2146](https://runway.powerhrg.com/backlog_items/PLAY-2146) (remove this comment afterwards)
44
40
  - dropdown_error: Dropdown with Error
45
41
  - dropdown_default_value: Default Value
46
42
  - dropdown_multi_select_with_default: Multi Select Default Value
@@ -48,4 +44,6 @@ examples:
48
44
  - dropdown_clear_selection: Clear Selection
49
45
  - dropdown_separators_hidden: Separators Hidden
50
46
  - dropdown_with_external_control: useDropdown Hook
47
+ - dropdown_close_on_select: Close On Selection
48
+
51
49
 
@@ -20,5 +20,4 @@ export { default as DropdownMultiSelectDisplay } from './_dropdown_multi_select_
20
20
  export { default as DropdownMultiSelectWithAutocomplete } from './_dropdown_multi_select_with_autocomplete.jsx'
21
21
  export { default as DropdownMultiSelectWithDefault } from './_dropdown_multi_select_with_default.jsx'
22
22
  export { default as DropdownMultiSelectWithCustomOptions } from './_dropdown_multi_select_with_custom_options.jsx'
23
- export {default as DropdownWithCustomIconOptions} from './_dropdown_with_custom_icon_options.jsx'
24
- export {default as DropdownWithCustomRadioOptions} from './_dropdown_with_custom_radio_options.jsx'
23
+ export { default as DropdownCloseOnSelect } from './_dropdown_close_on_select.jsx'
@@ -25,7 +25,7 @@ type DropdownOptionProps = {
25
25
  key?: string | number;
26
26
  option?: GenericObject;
27
27
  padding?: string;
28
- } & GlobalProps;
28
+ } & GlobalProps;
29
29
 
30
30
  const DropdownOption = (props: DropdownOptionProps) => {
31
31
  const {
@@ -56,16 +56,17 @@ const DropdownOption = (props: DropdownOptionProps) => {
56
56
 
57
57
  // When multiSelect, then if an option is selected, remove from dropdown
58
58
  const isSelected = Array.isArray(selected)
59
- ? selected.some((item) => item.label === option?.label)
60
- : (selected as GenericObject)?.label === option?.label;
59
+ ? selected.some((item) => item.label === option?.label)
60
+ : (selected as GenericObject)?.label === option?.label;
61
61
 
62
-
63
62
  if (!isItemMatchingFilter(option) || (multiSelect && isSelected)) {
64
63
  return null;
65
64
  }
65
+
66
66
  const isFocused =
67
67
  focusedOptionIndex >= 0 &&
68
68
  filteredOptions[focusedOptionIndex].label === option?.label;
69
+
69
70
  const focusedClass = isFocused && "focused";
70
71
 
71
72
  const selectedClass = isSelected ? "selected" : "list";
@@ -91,7 +92,10 @@ const DropdownOption = (props: DropdownOptionProps) => {
91
92
  className={classes}
92
93
  id={id}
93
94
  key={key}
94
- onClick= {() => handleOptionClick(option)}
95
+ onClick={(e) => {
96
+ e.stopPropagation();
97
+ handleOptionClick(option);
98
+ }}
95
99
  >
96
100
  <ListItem
97
101
  cursor="pointer"
@@ -100,12 +104,12 @@ const DropdownOption = (props: DropdownOptionProps) => {
100
104
  key={option?.label}
101
105
  padding="none"
102
106
  >
103
- {children ?
107
+ {children ?
104
108
  <div className="dropdown_option_wrapper">{children}</div> :
105
- <Body dark={dark}
106
- text={option?.label}
107
- />
108
- }
109
+ <Body dark={dark}
110
+ text={option?.label}
111
+ />
112
+ }
109
113
  </ListItem>
110
114
  </div>
111
115
  );
@@ -44,6 +44,7 @@ const DropdownTrigger = (props: DropdownTriggerProps) => {
44
44
 
45
45
  const {
46
46
  autocomplete,
47
+ closeOnSelection,
47
48
  filterItem,
48
49
  handleBackspace,
49
50
  handleChange,
@@ -54,6 +55,7 @@ const DropdownTrigger = (props: DropdownTriggerProps) => {
54
55
  isInputFocused,
55
56
  multiSelect,
56
57
  selected,
58
+ setIsDropDownClosed,
57
59
  setIsInputFocused,
58
60
  toggleDropdown,
59
61
  } = useContext(DropdownContext);
@@ -103,11 +105,26 @@ const DropdownTrigger = (props: DropdownTriggerProps) => {
103
105
  ? placeholder
104
106
  : "Select...";
105
107
 
108
+ // Click handler that respects closeOnSelection
109
+ const handleInputClick = (e: React.MouseEvent) => {
110
+ e.stopPropagation(); // keep the wrapper's handler from firing
111
+ if (isDropDownClosed) {
112
+ // Always open if closed
113
+ setIsDropDownClosed(false);
114
+ } else if (!closeOnSelection) {
115
+ // Keep open if closeOnSelection is false
116
+ return;
117
+ } else {
118
+ // Default behavior - toggle
119
+ toggleDropdown();
120
+ }
121
+ };
122
+
106
123
  return (
107
- <div {...ariaProps}
108
- {...dataProps}
124
+ <div {...ariaProps}
125
+ {...dataProps}
109
126
  {...htmlProps}
110
- className={classes}
127
+ className={classes}
111
128
  id={id}
112
129
  >
113
130
  {
@@ -145,7 +162,7 @@ const DropdownTrigger = (props: DropdownTriggerProps) => {
145
162
  {customDisplay ? (
146
163
  <Flex align="center">
147
164
  {customDisplay}
148
- <Body dark={dark}
165
+ <Body dark={dark}
149
166
  paddingLeft={`${joinedLabels ? "xs" : "none"}`}
150
167
  >
151
168
  {customDisplayPlaceholder}
@@ -164,10 +181,7 @@ const DropdownTrigger = (props: DropdownTriggerProps) => {
164
181
  <input
165
182
  className="dropdown_input"
166
183
  onChange={handleChange}
167
- onClick={(e) => {
168
- e.stopPropagation();// keep the wrapper’s handler from firing
169
- toggleDropdown();
170
- }}
184
+ onClick={handleInputClick}
171
185
  onFocus={() => setIsInputFocused(true)}
172
186
  onKeyDown={(e) => {
173
187
  handleKeyDown(e);
@@ -186,8 +200,8 @@ const DropdownTrigger = (props: DropdownTriggerProps) => {
186
200
  )}
187
201
  </>
188
202
  ) : (
189
- <Body dark={dark}
190
- text={defaultDisplayPlaceholder}
203
+ <Body dark={dark}
204
+ text={defaultDisplayPlaceholder}
191
205
  />
192
206
  )
193
207
  )}
@@ -195,10 +209,7 @@ const DropdownTrigger = (props: DropdownTriggerProps) => {
195
209
  <input
196
210
  className="dropdown_input"
197
211
  onChange={handleChange}
198
- onClick={(e) => {
199
- e.stopPropagation();// keep the wrapper’s handler from firing
200
- toggleDropdown();
201
- }}
212
+ onClick={handleInputClick}
202
213
  onFocus={() => setIsInputFocused(true)}
203
214
  onKeyDown={handleKeyDown}
204
215
  placeholder={
@@ -223,7 +234,7 @@ const DropdownTrigger = (props: DropdownTriggerProps) => {
223
234
  onClick: (e: Event) => {e.stopPropagation();handleWrapperClick()}
224
235
  }}
225
236
  key={`${isDropDownClosed ? "chevron-down" : "chevron-up"}`}
226
- >
237
+ >
227
238
  {
228
239
  selectedArray.length > 0 && (
229
240
  <div onClick={(e)=>{e.stopPropagation();handleBackspace()}}>
@@ -1,29 +1,18 @@
1
1
  import React from 'react'
2
2
  import FilterSingle, { FilterSingleProps } from './FilterSingle'
3
3
  import FilterDouble, { FilterDoubleProps } from './FilterDouble'
4
- import FilterSidebar, { FilterSidebarProps } from './FilterSidebar'
5
- import FilterSection from './FilterSection'
6
4
 
7
5
  type FilterProps =
8
6
  | FilterSingleProps
9
7
  | (FilterDoubleProps & {
10
8
  double?: boolean,
11
9
  })
12
- | (FilterSidebarProps & {
13
- variant?: null | 'sidebar',
14
- })
15
10
 
16
11
  const Filter = ({
17
12
  double = false,
18
- variant,
19
13
  ...templateProps
20
14
  }: FilterProps): React.ReactElement => {
21
15
  const displayFilter = () => {
22
- if (variant === 'sidebar') {
23
- return (
24
- <FilterSidebar {...templateProps} />
25
- )
26
- }
27
16
  if (double === true) {
28
17
  return (
29
18
  <FilterDouble {...templateProps} />
@@ -41,6 +30,4 @@ const Filter = ({
41
30
  )
42
31
  }
43
32
 
44
- Filter.Section = FilterSection
45
-
46
33
  export default Filter
@@ -88,10 +88,6 @@
88
88
  z-index: 1;
89
89
  }
90
90
 
91
- [class^=pb_collapsible_kit] .toggle-content.filter_section_collapsible {
92
- padding-top: $space_xs !important;
93
- }
94
-
95
91
  &[class*=dark] {
96
92
  .filters .filter {
97
93
  border-right: 1px solid $border_dark !important;
@@ -24,5 +24,4 @@ examples:
24
24
  - filter_max_height: Max Height for Popover Inside of Filter
25
25
  - filter_placement: Filter Placement
26
26
  - filter_popover_props: Popover Props
27
- - filter_sidebar: Sidebar
28
27
 
@@ -8,4 +8,3 @@ export { default as FilterMaxWidth } from './_filter_max_width.jsx'
8
8
  export { default as FilterMaxHeight } from './_filter_max_height.jsx'
9
9
  export { default as FilterPlacement } from './_filter_placement.jsx'
10
10
  export { default as FilterPopoverProps } from './_filter_popover_props.jsx'
11
- export { default as FilterSidebar } from './_filter_sidebar.jsx'
@@ -58,12 +58,12 @@ function FilterTest(props) {
58
58
  }
59
59
 
60
60
  test("triggers popover on filter button click", () => {
61
- const { container } = render(<FilterTest data={{ testid: "render-test" }}/>);
61
+ render(<FilterTest data={{ testid: "render-test" }}/>);
62
62
 
63
63
  const btn = screen.getAllByRole("button")[0];
64
64
 
65
65
  // checks if the sort menu rendered
66
- expect(container.querySelector('.pb_custom_icon')).toBeInTheDocument()
66
+ expect(screen.getByLabelText("sort-amount-down icon")).toBeInTheDocument()
67
67
  expect(screen.getByText('Popularity')).toBeInTheDocument() // check if filter/sort is rendered
68
68
 
69
69
  // hits the filter button and triggers popover
@@ -104,8 +104,8 @@ const Table = (props: TableProps): React.ReactElement => {
104
104
 
105
105
  stickyLeftColumn.forEach((colId, index) => {
106
106
  const isLastColumn = index === stickyLeftColumn.length - 1;
107
- const header = document.querySelector(`th[data-sticky-id="${colId}"]`);
108
- const cells = document.querySelectorAll(`td[data-sticky-id="${colId}"]`);
107
+ const header = document.querySelector(`th[id="${colId}"]`);
108
+ const cells = document.querySelectorAll(`td[id="${colId}"]`);
109
109
 
110
110
  if (header) {
111
111
  header.classList.add('sticky');
@@ -155,8 +155,8 @@ const Table = (props: TableProps): React.ReactElement => {
155
155
 
156
156
  stickyRightColumnReversed.forEach((colId, index) => {
157
157
  const isLastColumn = index === stickyRightColumn.length - 1;
158
- const header = document.querySelector(`th[data-sticky-id="${colId}"]`);
159
- const cells = document.querySelectorAll(`td[data-sticky-id="${colId}"]`);
158
+ const header = document.querySelector(`th[id="${colId}"]`);
159
+ const cells = document.querySelectorAll(`td[id="${colId}"]`);
160
160
 
161
161
  if (header) {
162
162
  header.classList.add('sticky');
@@ -1,7 +1,7 @@
1
1
  <%= pb_rails("table", props: { size: "md", responsive: "scroll", sticky_left_column: ["a"], sticky_right_column: ["b"] }) do %>
2
2
  <thead>
3
3
  <tr>
4
- <th data-sticky-id="a">Column 1</th>
4
+ <th id="a">Column 1</th>
5
5
  <th>Column 2</th>
6
6
  <th>Column 3</th>
7
7
  <th>Column 4</th>
@@ -15,12 +15,12 @@
15
15
  <th>Column 12</th>
16
16
  <th>Column 13</th>
17
17
  <th>Column 14</th>
18
- <th data-sticky-id="b">Column 15</th>
18
+ <th id="b">Column 15</th>
19
19
  </tr>
20
20
  </thead>
21
21
  <tbody>
22
22
  <tr>
23
- <td data-sticky-id="a">Value 1</td>
23
+ <td id="a">Value 1</td>
24
24
  <td>Value 2</td>
25
25
  <td>Value 3</td>
26
26
  <td>Value 4</td>
@@ -34,10 +34,10 @@
34
34
  <td>Value 12</td>
35
35
  <td>Value 13</td>
36
36
  <td>Value 14</td>
37
- <td data-sticky-id="b">Value 15</td>
37
+ <td id="b">Value 15</td>
38
38
  </tr>
39
39
  <tr>
40
- <td data-sticky-id="a">Value 1</td>
40
+ <td id="a">Value 1</td>
41
41
  <td>Value 2</td>
42
42
  <td>Value 3</td>
43
43
  <td>Value 4</td>
@@ -51,10 +51,10 @@
51
51
  <td>Value 12</td>
52
52
  <td>Value 13</td>
53
53
  <td>Value 14</td>
54
- <td data-sticky-id="b">Value 15</td>
54
+ <td id="b">Value 15</td>
55
55
  </tr>
56
56
  <tr>
57
- <td data-sticky-id="a">Value 1</td>
57
+ <td id="a">Value 1</td>
58
58
  <td>Value 2</td>
59
59
  <td>Value 3</td>
60
60
  <td>Value 4</td>
@@ -68,7 +68,7 @@
68
68
  <td>Value 12</td>
69
69
  <td>Value 13</td>
70
70
  <td>Value 14</td>
71
- <td data-sticky-id="b">Value 15</td>
71
+ <td id="b">Value 15</td>
72
72
  </tr>
73
73
  </tbody>
74
74
  <% end %>
@@ -11,7 +11,7 @@ const TableStickyColumns = () => {
11
11
  >
12
12
  <thead>
13
13
  <tr>
14
- <th data-sticky-id="a">{'Column 1'}</th>
14
+ <th id="a">{'Column 1'}</th>
15
15
  <th>{'Column 2'}</th>
16
16
  <th>{'Column 3'}</th>
17
17
  <th>{'Column 4'}</th>
@@ -25,12 +25,12 @@ const TableStickyColumns = () => {
25
25
  <th>{'Column 12'}</th>
26
26
  <th>{'Column 13'}</th>
27
27
  <th>{'Column 14'}</th>
28
- <th data-sticky-id="b">{'Column 15'}</th>
28
+ <th id="b">{'Column 15'}</th>
29
29
  </tr>
30
30
  </thead>
31
31
  <tbody>
32
32
  <tr>
33
- <td data-sticky-id="a">{'Value 1'}</td>
33
+ <td id="a">{'Value 1'}</td>
34
34
  <td>{'Value 2'}</td>
35
35
  <td>{'Value 3'}</td>
36
36
  <td>{'Value 4'}</td>
@@ -44,10 +44,10 @@ const TableStickyColumns = () => {
44
44
  <td>{'Value 12'}</td>
45
45
  <td>{'Value 13'}</td>
46
46
  <td>{'Value 14'}</td>
47
- <td data-sticky-id="b">{'Value 15'}</td>
47
+ <td id="b">{'Value 15'}</td>
48
48
  </tr>
49
49
  <tr>
50
- <td data-sticky-id="a">{'Value 1'}</td>
50
+ <td id="a">{'Value 1'}</td>
51
51
  <td>{'Value 2'}</td>
52
52
  <td>{'Value 3'}</td>
53
53
  <td>{'Value 4'}</td>
@@ -61,10 +61,10 @@ const TableStickyColumns = () => {
61
61
  <td>{'Value 12'}</td>
62
62
  <td>{'Value 13'}</td>
63
63
  <td>{'Value 14'}</td>
64
- <td data-sticky-id="b">{'Value 15'}</td>
64
+ <td id="b">{'Value 15'}</td>
65
65
  </tr>
66
66
  <tr>
67
- <td data-sticky-id="a">{'Value 1'}</td>
67
+ <td id="a">{'Value 1'}</td>
68
68
  <td>{'Value 2'}</td>
69
69
  <td>{'Value 3'}</td>
70
70
  <td>{'Value 4'}</td>
@@ -78,7 +78,7 @@ const TableStickyColumns = () => {
78
78
  <td>{'Value 12'}</td>
79
79
  <td>{'Value 13'}</td>
80
80
  <td>{'Value 14'}</td>
81
- <td data-sticky-id="b">{'Value 15'}</td>
81
+ <td id="b">{'Value 15'}</td>
82
82
  </tr>
83
83
  </tbody>
84
84
  </Table>
@@ -1,3 +1,3 @@
1
1
  The `sticky_left_column` and `sticky_right_column` props can be used together on the same table as needed.
2
2
 
3
- Please ensure that unique `data-sticky-id`s are used for all columns across multiple tables. Using the same columns `data-sticky-id`s on multiple tables can lead to issues when using props.
3
+ Please ensure that unique ids are used for all columns across multiple tables. Using the same columns ids on multiple tables can lead to issues when using props.
@@ -1,3 +1,3 @@
1
1
  The `stickyLeftColumn` and `stickyRightColumn` props can be used together on the same table as needed.
2
2
 
3
- Please ensure that unique `data-sticky-id`s are used for all columns across multiple tables. Using the same columns `data-sticky-id`s on multiple tables can lead to issues when using props.
3
+ Please ensure that unique ids are used for all columns across multiple tables. Using the same columns ids on multiple tables can lead to issues when using props.
@@ -1,9 +1,9 @@
1
1
  <%= pb_rails("table", props: { size: "md", responsive: "scroll", sticky_left_column: ["1", "2", "3"] }) do %>
2
2
  <thead>
3
3
  <tr>
4
- <th data-sticky-id="1">Column 1</th>
5
- <th data-sticky-id="2">Column 2</th>
6
- <th data-sticky-id="3">Column 3</th>
4
+ <th id="1">Column 1</th>
5
+ <th id="2">Column 2</th>
6
+ <th id="3">Column 3</th>
7
7
  <th>Column 4</th>
8
8
  <th>Column 5</th>
9
9
  <th>Column 6</th>
@@ -20,9 +20,9 @@
20
20
  </thead>
21
21
  <tbody>
22
22
  <tr>
23
- <td data-sticky-id="1">Value 1</td>
24
- <td data-sticky-id="2">Value 2</td>
25
- <td data-sticky-id="3">Value 3</td>
23
+ <td id="1">Value 1</td>
24
+ <td id="2">Value 2</td>
25
+ <td id="3">Value 3</td>
26
26
  <td>Value 4</td>
27
27
  <td>Value 5</td>
28
28
  <td>Value 6</td>
@@ -38,9 +38,9 @@
38
38
 
39
39
  </tr>
40
40
  <tr>
41
- <td data-sticky-id="1">Value 1</td>
42
- <td data-sticky-id="2">Value 2</td>
43
- <td data-sticky-id="3">Value 3</td>
41
+ <td id="1">Value 1</td>
42
+ <td id="2">Value 2</td>
43
+ <td id="3">Value 3</td>
44
44
  <td>Value 4</td>
45
45
  <td>Value 5</td>
46
46
  <td>Value 6</td>
@@ -56,9 +56,9 @@
56
56
 
57
57
  </tr>
58
58
  <tr>
59
- <td data-sticky-id="1">Value 1</td>
60
- <td data-sticky-id="2">Value 2</td>
61
- <td data-sticky-id="3">Value 3</td>
59
+ <td id="1">Value 1</td>
60
+ <td id="2">Value 2</td>
61
+ <td id="3">Value 3</td>
62
62
  <td>Value 4</td>
63
63
  <td>Value 5</td>
64
64
  <td>Value 6</td>
@@ -10,9 +10,9 @@ const TableStickyLeftColumns = () => {
10
10
  >
11
11
  <thead>
12
12
  <tr>
13
- <th data-sticky-id="1">{'Column 1'}</th>
14
- <th data-sticky-id="2">{'Column 2'}</th>
15
- <th data-sticky-id="3">{'Column 3'}</th>
13
+ <th id="1">{'Column 1'}</th>
14
+ <th id="2">{'Column 2'}</th>
15
+ <th id="3">{'Column 3'}</th>
16
16
  <th>{'Column 4'}</th>
17
17
  <th>{'Column 5'}</th>
18
18
  <th>{'Column 6'}</th>
@@ -29,9 +29,9 @@ const TableStickyLeftColumns = () => {
29
29
  </thead>
30
30
  <tbody>
31
31
  <tr>
32
- <td data-sticky-id="1">{'Value 1'}</td>
33
- <td data-sticky-id="2">{'Value 2'}</td>
34
- <td data-sticky-id="3">{'Value 3'}</td>
32
+ <td id="1">{'Value 1'}</td>
33
+ <td id="2">{'Value 2'}</td>
34
+ <td id="3">{'Value 3'}</td>
35
35
  <td>{'Value 4'}</td>
36
36
  <td>{'Value 5'}</td>
37
37
  <td>{'Value 6'}</td>
@@ -46,9 +46,9 @@ const TableStickyLeftColumns = () => {
46
46
  <td>{'Value 15'}</td>
47
47
  </tr>
48
48
  <tr>
49
- <td data-sticky-id="1">{'Value 1'}</td>
50
- <td data-sticky-id="2">{'Value 2'}</td>
51
- <td data-sticky-id="3">{'Value 3'}</td>
49
+ <td id="1">{'Value 1'}</td>
50
+ <td id="2">{'Value 2'}</td>
51
+ <td id="3">{'Value 3'}</td>
52
52
  <td>{'Value 4'}</td>
53
53
  <td>{'Value 5'}</td>
54
54
  <td>{'Value 6'}</td>
@@ -63,9 +63,9 @@ const TableStickyLeftColumns = () => {
63
63
  <td>{'Value 15'}</td>
64
64
  </tr>
65
65
  <tr>
66
- <td data-sticky-id="1">{'Value 1'}</td>
67
- <td data-sticky-id="2">{'Value 2'}</td>
68
- <td data-sticky-id="3">{'Value 3'}</td>
66
+ <td id="1">{'Value 1'}</td>
67
+ <td id="2">{'Value 2'}</td>
68
+ <td id="3">{'Value 3'}</td>
69
69
  <td>{'Value 4'}</td>
70
70
  <td>{'Value 5'}</td>
71
71
  <td>{'Value 6'}</td>
@@ -1,3 +1,3 @@
1
- The `sticky_left_column` prop expects an array of the column `data-sticky-id`s you want to be sticky. Make sure to add the corresponding `data-sticky-id` to the `<th>` and `<td>`.
1
+ The `sticky_left_column` prop expects an array of the column ids you want to be sticky. Make sure to add the corresponding id to the `<th>` and `<td>`.
2
2
 
3
- Please ensure that unique `data-sticky-id`s are used for all columns across multiple tables. Using the same columns `data-sticky-id`s on multiple tables can lead to issues when using the `sticky_left_column`.
3
+ Please ensure that unique ids are used for all columns across multiple tables. Using the same columns ids on multiple tables can lead to issues when using the `sticky_left_column`.
@@ -1,5 +1,5 @@
1
- The `stickyLeftColumn` prop expects an array of the column `data-sticky-id`s you want to be sticky. Make sure to add the corresponding `data-sticky-id` to the `<th>` and `<td>`.
1
+ The `stickyLeftColumn` prop expects an array of the column ids you want to be sticky. Make sure to add the corresponding id to the `<th>` and `<td>`.
2
2
 
3
- If you are using the sub-component variant, then you will pass the `data-sticky-id` to `<Table.Header>` and `<Table.Cell>`
3
+ If you are using the sub-component variant, then you will pass the id to `<Table.Header>` and `<Table.Cell>`
4
4
 
5
- Please ensure that unique `data-sticky-id`s are used for all columns across multiple tables. Using the same columns `data-sticky-id`s on multiple tables can lead to issues when using `stickyLeftColumn` prop.
5
+ Please ensure that unique ids are used for all columns across multiple tables. Using the same columns ids on multiple tables can lead to issues when using `stickyLeftColumn` prop.