playbook_ui 14.17.0 → 14.18.0.pre.alpha.PLAY2037selectinlinecareterror7490

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 (238) hide show
  1. checksums.yaml +4 -4
  2. data/app/pb_kits/playbook/pb_advanced_table/Components/RegularTableView.tsx +23 -3
  3. data/app/pb_kits/playbook/pb_advanced_table/Components/TableHeaderCell.tsx +67 -3
  4. data/app/pb_kits/playbook/pb_advanced_table/Hooks/useTableActions.ts +1 -2
  5. data/app/pb_kits/playbook/pb_advanced_table/Utilities/ExpansionControlHelpers.tsx +29 -19
  6. data/app/pb_kits/playbook/pb_advanced_table/_advanced_table.scss +365 -143
  7. data/app/pb_kits/playbook/pb_advanced_table/_advanced_table.tsx +14 -1
  8. data/app/pb_kits/playbook/pb_advanced_table/advanced_table.rb +6 -1
  9. data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_column_border_color.jsx +80 -0
  10. data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_column_border_color.md +3 -0
  11. data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_column_border_color_rails.html.erb +58 -0
  12. data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_column_border_color_rails.md +3 -0
  13. data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_expand_by_depth.jsx +66 -0
  14. data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_expand_by_depth.md +10 -0
  15. data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_sticky_columns.jsx +58 -0
  16. data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_sticky_columns.md +6 -0
  17. data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_sticky_columns_and_header.jsx +64 -0
  18. data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_sticky_columns_and_header.md +8 -0
  19. data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_sticky_header.jsx +55 -0
  20. data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_sticky_header.md +3 -0
  21. data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_sticky_header_rails.html.erb +33 -0
  22. data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_sticky_header_rails.md +3 -0
  23. data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_table_props.html.erb +1 -1
  24. data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_table_props.jsx +1 -2
  25. data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_table_props_rails.md +2 -2
  26. data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_table_props_react.md +1 -1
  27. data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_table_props_sticky_header_rails.md +6 -2
  28. data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_table_props_sticky_header_react.md +6 -2
  29. data/app/pb_kits/playbook/pb_advanced_table/docs/example.yml +10 -4
  30. data/app/pb_kits/playbook/pb_advanced_table/docs/index.js +6 -1
  31. data/app/pb_kits/playbook/pb_advanced_table/index.js +7 -0
  32. data/app/pb_kits/playbook/pb_advanced_table/scss_partials/advanced_table_sticky_mixin.scss +97 -0
  33. data/app/pb_kits/playbook/pb_advanced_table/table_row.html.erb +1 -1
  34. data/app/pb_kits/playbook/pb_background/_background.scss +26 -0
  35. data/app/pb_kits/playbook/pb_background/_background.tsx +5 -3
  36. data/app/pb_kits/playbook/pb_background/background.test.js +5 -0
  37. data/app/pb_kits/playbook/pb_background/docs/_background_overlay.jsx +35 -0
  38. data/app/pb_kits/playbook/pb_background/docs/_background_overlay.md +1 -0
  39. data/app/pb_kits/playbook/pb_background/docs/example.yml +1 -0
  40. data/app/pb_kits/playbook/pb_background/docs/index.js +1 -0
  41. data/app/pb_kits/playbook/pb_circle_chart/_circle_chart.tsx +1 -1
  42. data/app/pb_kits/playbook/pb_circle_chart/circleChart.test.js +2 -2
  43. data/app/pb_kits/playbook/pb_circle_chart/circleChartTheme.ts +53 -0
  44. data/app/pb_kits/playbook/pb_circle_chart/docs/_circle_chart_block.html.erb +2 -2
  45. data/app/pb_kits/playbook/pb_circle_chart/docs/_circle_chart_block.jsx +1 -1
  46. data/app/pb_kits/playbook/pb_circle_chart/docs/_circle_chart_colors.html.erb +1 -1
  47. data/app/pb_kits/playbook/pb_circle_chart/docs/_circle_chart_colors.jsx +1 -1
  48. data/app/pb_kits/playbook/pb_circle_chart/docs/_circle_chart_custom_tooltip.html.erb +1 -1
  49. data/app/pb_kits/playbook/pb_circle_chart/docs/_circle_chart_custom_tooltip.jsx +1 -1
  50. data/app/pb_kits/playbook/pb_circle_chart/docs/_circle_chart_default.html.erb +1 -1
  51. data/app/pb_kits/playbook/pb_circle_chart/docs/_circle_chart_default.jsx +1 -1
  52. data/app/pb_kits/playbook/pb_circle_chart/docs/_circle_chart_legend_position.html.erb +1 -1
  53. data/app/pb_kits/playbook/pb_circle_chart/docs/_circle_chart_legend_position.jsx +1 -1
  54. data/app/pb_kits/playbook/pb_circle_chart/docs/_circle_chart_live_data.jsx +2 -2
  55. data/app/pb_kits/playbook/pb_circle_chart/docs/_circle_chart_pb_styles.jsx +38 -0
  56. data/app/pb_kits/playbook/pb_circle_chart/docs/_circle_chart_pb_styles.md +1 -0
  57. data/app/pb_kits/playbook/pb_circle_chart/docs/_circle_chart_rounded.html.erb +1 -1
  58. data/app/pb_kits/playbook/pb_circle_chart/docs/_circle_chart_rounded.jsx +1 -1
  59. data/app/pb_kits/playbook/pb_circle_chart/docs/example.yml +2 -3
  60. data/app/pb_kits/playbook/pb_circle_chart/docs/index.js +2 -1
  61. data/app/pb_kits/playbook/pb_circle_icon_button/_circle_icon_button.scss +39 -1
  62. data/app/pb_kits/playbook/pb_circle_icon_button/_circle_icon_button.tsx +4 -0
  63. data/app/pb_kits/playbook/pb_circle_icon_button/circle_icon_button.rb +9 -1
  64. data/app/pb_kits/playbook/pb_circle_icon_button/circle_icon_button.test.js +14 -0
  65. data/app/pb_kits/playbook/pb_circle_icon_button/docs/_circle_icon_button_size.html.erb +28 -0
  66. data/app/pb_kits/playbook/pb_circle_icon_button/docs/_circle_icon_button_size.jsx +42 -0
  67. data/app/pb_kits/playbook/pb_circle_icon_button/docs/_circle_icon_button_size.md +1 -0
  68. data/app/pb_kits/playbook/pb_circle_icon_button/docs/example.yml +2 -0
  69. data/app/pb_kits/playbook/pb_circle_icon_button/docs/index.js +1 -0
  70. data/app/pb_kits/playbook/pb_copy_button/_copy_button.tsx +19 -45
  71. data/app/pb_kits/playbook/pb_copy_button/docs/_copy_button_hook.jsx +54 -0
  72. data/app/pb_kits/playbook/pb_copy_button/docs/_copy_button_hook.md +3 -0
  73. data/app/pb_kits/playbook/pb_copy_button/docs/_copy_button_hook_rails.html.erb +14 -0
  74. data/app/pb_kits/playbook/pb_copy_button/docs/_copy_button_hook_rails.md +3 -0
  75. data/app/pb_kits/playbook/pb_copy_button/docs/example.yml +2 -0
  76. data/app/pb_kits/playbook/pb_copy_button/docs/index.js +2 -1
  77. data/app/pb_kits/playbook/pb_copy_button/index.js +46 -20
  78. data/app/pb_kits/playbook/pb_copy_button/usePBCopy.ts +45 -0
  79. data/app/pb_kits/playbook/pb_date_picker/_date_picker.tsx +12 -0
  80. data/app/pb_kits/playbook/pb_date_picker/date_picker.rb +12 -0
  81. data/app/pb_kits/playbook/pb_date_picker/date_picker_helper.ts +50 -1
  82. data/app/pb_kits/playbook/pb_date_picker/docs/_date_picker_error.html.erb +2 -2
  83. data/app/pb_kits/playbook/pb_date_picker/docs/_date_picker_error.jsx +4 -1
  84. data/app/pb_kits/playbook/pb_date_picker/docs/_date_picker_quick_pick_rails.md +4 -0
  85. data/app/pb_kits/playbook/pb_date_picker/docs/_date_picker_quick_pick_range_limit.md +1 -1
  86. data/app/pb_kits/playbook/pb_date_picker/docs/_date_picker_quick_pick_react.md +5 -1
  87. data/app/pb_kits/playbook/pb_date_picker/docs/_date_picker_range_pattern.jsx +34 -0
  88. data/app/pb_kits/playbook/pb_date_picker/docs/_date_picker_range_pattern.md +14 -0
  89. data/app/pb_kits/playbook/pb_date_picker/docs/_date_picker_range_pattern_rails.html.erb +20 -0
  90. data/app/pb_kits/playbook/pb_date_picker/docs/_date_picker_range_pattern_rails.md +14 -0
  91. data/app/pb_kits/playbook/pb_date_picker/docs/example.yml +2 -0
  92. data/app/pb_kits/playbook/pb_date_picker/docs/index.js +1 -0
  93. data/app/pb_kits/playbook/pb_date_picker/plugins/quickPick.tsx +10 -0
  94. data/app/pb_kits/playbook/pb_dialog/dialog.html.erb +10 -1
  95. data/app/pb_kits/playbook/pb_dialog/dialog.rb +2 -0
  96. data/app/pb_kits/playbook/pb_dialog/docs/_dialog_turbo_frames.html.erb +117 -0
  97. data/app/pb_kits/playbook/pb_dialog/docs/_dialog_turbo_frames_rails.md +9 -0
  98. data/app/pb_kits/playbook/pb_dialog/docs/example.yml +1 -0
  99. data/app/pb_kits/playbook/pb_dialog/index.js +106 -14
  100. data/app/pb_kits/playbook/pb_draggable/_draggable.scss +43 -20
  101. data/app/pb_kits/playbook/pb_draggable/docs/_draggable_drop_zones.html.erb +43 -0
  102. data/app/pb_kits/playbook/pb_draggable/docs/_draggable_drop_zones.jsx +102 -105
  103. data/app/pb_kits/playbook/pb_draggable/docs/_draggable_drop_zones_colors.html.erb +55 -0
  104. data/app/pb_kits/playbook/pb_draggable/docs/_draggable_drop_zones_colors.jsx +50 -48
  105. data/app/pb_kits/playbook/pb_draggable/docs/_draggable_drop_zones_colors_rails.md +1 -0
  106. data/app/pb_kits/playbook/pb_draggable/docs/_draggable_drop_zones_colors_react.md +1 -0
  107. data/app/pb_kits/playbook/pb_draggable/docs/_draggable_drop_zones_line.jsx +110 -0
  108. data/app/pb_kits/playbook/pb_draggable/docs/_draggable_drop_zones_line.md +5 -0
  109. data/app/pb_kits/playbook/pb_draggable/docs/_draggable_drop_zones_react.md +5 -0
  110. data/app/pb_kits/playbook/pb_draggable/docs/_draggable_event_listeners.html.erb +42 -0
  111. data/app/pb_kits/playbook/pb_draggable/docs/_draggable_event_listeners.md +1 -0
  112. data/app/pb_kits/playbook/pb_draggable/docs/{_draggable_with_table_react.jsx → _draggable_with_table.jsx} +1 -1
  113. data/app/pb_kits/playbook/pb_draggable/docs/_draggable_with_table_react.md +3 -1
  114. data/app/pb_kits/playbook/pb_draggable/docs/example.yml +12 -7
  115. data/app/pb_kits/playbook/pb_draggable/docs/index.js +4 -1
  116. data/app/pb_kits/playbook/pb_draggable/draggable.rb +9 -1
  117. data/app/pb_kits/playbook/pb_draggable/draggable.test.jsx +68 -0
  118. data/app/pb_kits/playbook/pb_draggable/index.js +139 -142
  119. data/app/pb_kits/playbook/pb_draggable/subcomponents/DraggableContainer.tsx +4 -3
  120. data/app/pb_kits/playbook/pb_dropdown/_dropdown.tsx +1 -1
  121. data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_error.html.erb +5 -2
  122. data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_error.jsx +4 -1
  123. data/app/pb_kits/playbook/pb_dropdown/subcomponents/DropdownOption.tsx +1 -1
  124. data/app/pb_kits/playbook/pb_filter/docs/_filter_within_turbo_frames.html.erb +41 -0
  125. data/app/pb_kits/playbook/pb_filter/docs/_filter_within_turbo_frames.md +1 -0
  126. data/app/pb_kits/playbook/pb_filter/docs/example.yml +1 -0
  127. data/app/pb_kits/playbook/pb_form_group/_error_state_mixin.scss +22 -18
  128. data/app/pb_kits/playbook/pb_form_group/_form_group.scss +23 -3
  129. data/app/pb_kits/playbook/pb_form_group/docs/_form_group_select.html.erb +15 -5
  130. data/app/pb_kits/playbook/pb_form_group/docs/_form_group_select.jsx +39 -6
  131. data/app/pb_kits/playbook/pb_gauge/docs/_gauge_pb_styles.jsx +30 -0
  132. data/app/pb_kits/playbook/pb_gauge/docs/_gauge_pb_styles.md +1 -0
  133. data/app/pb_kits/playbook/pb_gauge/docs/example.yml +1 -0
  134. data/app/pb_kits/playbook/pb_gauge/docs/index.js +1 -0
  135. data/app/pb_kits/playbook/pb_gauge/gaugeTheme.ts +85 -0
  136. data/app/pb_kits/playbook/pb_layout/_layout.scss +70 -1
  137. data/app/pb_kits/playbook/pb_layout/_layout.tsx +29 -2
  138. data/app/pb_kits/playbook/pb_layout/docs/_layout_bracket.jsx +322 -118
  139. data/app/pb_kits/playbook/pb_layout/docs/_layout_bracket.md +1 -1
  140. data/app/pb_kits/playbook/pb_layout/subcomponents/_game.tsx +74 -43
  141. data/app/pb_kits/playbook/pb_layout/subcomponents/_participant.tsx +79 -0
  142. data/app/pb_kits/playbook/pb_layout/subcomponents/_round.tsx +21 -4
  143. data/app/pb_kits/playbook/pb_line_graph/docs/_line_graph_pb_styles.jsx +52 -0
  144. data/app/pb_kits/playbook/pb_line_graph/docs/_line_graph_pb_styles.md +1 -0
  145. data/app/pb_kits/playbook/pb_line_graph/docs/example.yml +1 -0
  146. data/app/pb_kits/playbook/pb_line_graph/docs/index.js +1 -0
  147. data/app/pb_kits/playbook/pb_line_graph/lineGraphTheme.ts +110 -0
  148. data/app/pb_kits/playbook/pb_overlay/_overlay.scss +83 -22
  149. data/app/pb_kits/playbook/pb_overlay/_overlay.tsx +39 -7
  150. data/app/pb_kits/playbook/pb_overlay/docs/_overlay_color.jsx +63 -0
  151. data/app/pb_kits/playbook/pb_overlay/docs/_overlay_color.md +3 -0
  152. data/app/pb_kits/playbook/pb_overlay/docs/_overlay_default.md +1 -7
  153. data/app/pb_kits/playbook/pb_overlay/docs/_overlay_fullscreen_background.jsx +49 -0
  154. data/app/pb_kits/playbook/pb_overlay/docs/_overlay_fullscreen_background.md +1 -0
  155. data/app/pb_kits/playbook/pb_overlay/docs/_overlay_fullscreen_opacity.jsx +81 -0
  156. data/app/pb_kits/playbook/pb_overlay/docs/_overlay_fullscreen_opacity.md +1 -0
  157. data/app/pb_kits/playbook/pb_overlay/docs/_overlay_gradient_opacity.jsx +39 -0
  158. data/app/pb_kits/playbook/pb_overlay/docs/_overlay_gradient_opacity.md +1 -0
  159. data/app/pb_kits/playbook/pb_overlay/docs/_overlay_layout.jsx +40 -0
  160. data/app/pb_kits/playbook/pb_overlay/docs/_overlay_layout.md +5 -0
  161. data/app/pb_kits/playbook/pb_overlay/docs/example.yml +5 -0
  162. data/app/pb_kits/playbook/pb_overlay/docs/index.js +5 -0
  163. data/app/pb_kits/playbook/pb_overlay/overlay.test.jsx +39 -1
  164. data/app/pb_kits/playbook/pb_phone_number_input/_phone_number_input.scss +13 -0
  165. data/app/pb_kits/playbook/pb_phone_number_input/_phone_number_input.tsx +3 -1
  166. data/app/pb_kits/playbook/pb_phone_number_input/docs/_phone_number_input_country_search.html.erb +10 -0
  167. data/app/pb_kits/playbook/pb_phone_number_input/docs/_phone_number_input_country_search.jsx +20 -0
  168. data/app/pb_kits/playbook/pb_phone_number_input/docs/_phone_number_input_country_search.md +1 -0
  169. data/app/pb_kits/playbook/pb_phone_number_input/docs/_phone_number_input_validation.jsx +8 -1
  170. data/app/pb_kits/playbook/pb_phone_number_input/docs/example.yml +2 -0
  171. data/app/pb_kits/playbook/pb_phone_number_input/docs/index.js +1 -0
  172. data/app/pb_kits/playbook/pb_phone_number_input/phone_number_input.rb +3 -0
  173. data/app/pb_kits/playbook/pb_phone_number_input/phone_number_input.test.js +19 -0
  174. data/app/pb_kits/playbook/pb_popover/docs/_popover_append_to.html.erb +46 -0
  175. data/app/pb_kits/playbook/pb_popover/docs/_popover_append_to.md +1 -0
  176. data/app/pb_kits/playbook/pb_popover/docs/example.yml +1 -0
  177. data/app/pb_kits/playbook/pb_popover/index.ts +13 -1
  178. data/app/pb_kits/playbook/pb_popover/popover.rb +2 -0
  179. data/app/pb_kits/playbook/pb_select/_select.scss +10 -0
  180. data/app/pb_kits/playbook/pb_select/docs/_select_error.html.erb +1 -1
  181. data/app/pb_kits/playbook/pb_select/docs/_select_error.jsx +7 -2
  182. data/app/pb_kits/playbook/pb_table/_table.tsx +2 -2
  183. data/app/pb_kits/playbook/pb_table/docs/_table_with_collapsible_with_nested_rows.md +3 -1
  184. data/app/pb_kits/playbook/pb_table/docs/_table_with_collapsible_with_nested_rows_rails.md +3 -1
  185. data/app/pb_kits/playbook/pb_table/docs/_table_with_collapsible_with_nested_table.md +3 -1
  186. data/app/pb_kits/playbook/pb_table/docs/_table_with_collapsible_with_nested_table_rails.md +3 -1
  187. data/app/pb_kits/playbook/pb_table/docs/_table_with_header_style_borderless.html.erb +34 -0
  188. data/app/pb_kits/playbook/pb_table/docs/_table_with_header_style_borderless_rails.md +1 -0
  189. data/app/pb_kits/playbook/pb_table/docs/_table_with_header_style_floating.html.erb +36 -0
  190. data/app/pb_kits/playbook/pb_table/docs/_table_with_header_style_floating_rails.md +1 -0
  191. data/app/pb_kits/playbook/pb_table/docs/_table_with_header_style_floating_react.md +1 -1
  192. data/app/pb_kits/playbook/pb_table/docs/example.yml +2 -0
  193. data/app/pb_kits/playbook/pb_table/styles/_collapsible.scss +1 -1
  194. data/app/pb_kits/playbook/pb_table/styles/_headers.scss +19 -7
  195. data/app/pb_kits/playbook/pb_table/table.rb +13 -1
  196. data/app/pb_kits/playbook/pb_table/table_header.rb +13 -1
  197. data/app/pb_kits/playbook/pb_text_input/_text_input.tsx +13 -5
  198. data/app/pb_kits/playbook/pb_text_input/docs/_text_input_error.html.erb +1 -1
  199. data/app/pb_kits/playbook/pb_text_input/docs/_text_input_error.jsx +9 -1
  200. data/app/pb_kits/playbook/pb_text_input/docs/_text_input_sanitize.jsx +94 -0
  201. data/app/pb_kits/playbook/pb_text_input/docs/_text_input_sanitize.md +1 -0
  202. data/app/pb_kits/playbook/pb_text_input/docs/example.yml +2 -0
  203. data/app/pb_kits/playbook/pb_text_input/docs/index.js +1 -0
  204. data/app/pb_kits/playbook/pb_text_input/inputMask.ts +8 -1
  205. data/app/pb_kits/playbook/pb_textarea/docs/_textarea_error.html.erb +5 -1
  206. data/app/pb_kits/playbook/pb_textarea/docs/_textarea_error.jsx +7 -1
  207. data/app/pb_kits/playbook/pb_typeahead/docs/_typeahead_error_state.html.erb +8 -1
  208. data/app/pb_kits/playbook/pb_typeahead/docs/_typeahead_error_state.jsx +6 -2
  209. data/dist/chunks/_typeahead-D8CsVBZO.js +22 -0
  210. data/dist/chunks/_weekday_stacked-D3oLTSkH.js +45 -0
  211. data/dist/chunks/lazysizes-B7xYodB-.js +1 -0
  212. data/dist/chunks/lib-BmTAc7Nc.js +29 -0
  213. data/dist/chunks/{pb_form_validation-BiHyZedy.js → pb_form_validation-BWjy4bFn.js} +1 -1
  214. data/dist/chunks/vendor.js +1 -1
  215. data/dist/menu.yml +2 -2
  216. data/dist/playbook-doc.js +19 -1
  217. data/dist/playbook-rails-react-bindings.js +1 -1
  218. data/dist/playbook-rails.js +1 -1
  219. data/dist/playbook.css +1 -1
  220. data/lib/playbook/version.rb +2 -2
  221. metadata +92 -21
  222. data/app/pb_kits/playbook/pb_draggable/docs/_draggable_drop_zones.md +0 -5
  223. data/app/pb_kits/playbook/pb_draggable/docs/_draggable_drop_zones_colors.md +0 -1
  224. data/dist/chunks/_typeahead-CPM091Hj.js +0 -22
  225. data/dist/chunks/_weekday_stacked-BzIANIYX.js +0 -45
  226. data/dist/chunks/lazysizes-DHz07jlL.js +0 -1
  227. data/dist/chunks/lib-Bg2KFzpz.js +0 -29
  228. /data/app/pb_kits/playbook/pb_draggable/docs/{_draggable_default_rails.html.erb → _draggable_default.html.erb} +0 -0
  229. /data/app/pb_kits/playbook/pb_draggable/docs/{_draggable_default.md → _draggable_default_react.md} +0 -0
  230. /data/app/pb_kits/playbook/pb_draggable/docs/{_draggable_multiple_containers_rails.html.erb → _draggable_multiple_containers.html.erb} +0 -0
  231. /data/app/pb_kits/playbook/pb_draggable/docs/{_draggable_multiple_containers.md → _draggable_multiple_containers_react.md} +0 -0
  232. /data/app/pb_kits/playbook/pb_draggable/docs/{_draggable_with_cards_rails.html.erb → _draggable_with_cards.html.erb} +0 -0
  233. /data/app/pb_kits/playbook/pb_draggable/docs/{_draggable_with_cards.md → _draggable_with_cards_react.md} +0 -0
  234. /data/app/pb_kits/playbook/pb_draggable/docs/{_draggable_with_list_rails.html.erb → _draggable_with_list.html.erb} +0 -0
  235. /data/app/pb_kits/playbook/pb_draggable/docs/{_draggable_with_list.md → _draggable_with_list_react.md} +0 -0
  236. /data/app/pb_kits/playbook/pb_draggable/docs/{_draggable_with_selectable_list_rails.html.erb → _draggable_with_selectable_list.html.erb} +0 -0
  237. /data/app/pb_kits/playbook/pb_draggable/docs/{_draggable_with_selectable_list.md → _draggable_with_selectable_list_react.md} +0 -0
  238. /data/app/pb_kits/playbook/pb_draggable/docs/{_draggable_with_table.md → _draggable_with_table_rails.md} +0 -0
@@ -0,0 +1,81 @@
1
+ import React, { useState } from 'react'
2
+
3
+ import Overlay from '../../pb_overlay/_overlay'
4
+ import Button from '../../pb_button/_button'
5
+ import FixedConfirmationToast from '../../pb_fixed_confirmation_toast/_fixed_confirmation_toast'
6
+
7
+ const OverlayFullscreenOpacity = () => {
8
+ const [openOpacity40, setOpenOpacity40] = useState(false)
9
+ const [openOpacity80, setOpenOpacity80] = useState(false)
10
+
11
+ const handleClickOpacity40 = () => {
12
+ setOpenOpacity40(true)
13
+ }
14
+ const handleCloseOpacity40 = () => {
15
+ setOpenOpacity40(false)
16
+ }
17
+
18
+ const handleClickOpacity80 = () => {
19
+ setOpenOpacity80(true)
20
+ }
21
+ const handleCloseOpacity80 = () => {
22
+ setOpenOpacity80(false)
23
+ }
24
+
25
+ return (
26
+ <>
27
+ <div>
28
+ <Button
29
+ onClick={handleClickOpacity40}
30
+ text="40% Opacity"
31
+ variant="secondary"
32
+ />
33
+ {' '}
34
+ <Button
35
+ onClick={handleClickOpacity80}
36
+ text="80% Opacity"
37
+ variant="secondary"
38
+ />
39
+
40
+ {openOpacity40 && (
41
+ <Overlay
42
+ fullScreen
43
+ gradient={false}
44
+ opacity="opacity_4"
45
+ >
46
+ <FixedConfirmationToast
47
+ closeable
48
+ horizontal='center'
49
+ onClose={handleCloseOpacity40}
50
+ open={openOpacity40}
51
+ status="tip"
52
+ text='Fullscreen Overlay at 40% Opacity.'
53
+ vertical='top'
54
+ />
55
+ </Overlay>
56
+ )}
57
+
58
+ {openOpacity80 && (
59
+ <Overlay
60
+ fullScreen
61
+ gradient={false}
62
+ opacity="opacity_8"
63
+ >
64
+ <FixedConfirmationToast
65
+ closeable
66
+ display="block"
67
+ horizontal='center'
68
+ onClose={handleCloseOpacity80}
69
+ open={openOpacity80}
70
+ status="tip"
71
+ text='Fullscreen Overlay at 80% Opacity.'
72
+ vertical='top'
73
+ />
74
+ </Overlay>
75
+ )}
76
+ </div>
77
+ </>
78
+ )
79
+ }
80
+
81
+ export default OverlayFullscreenOpacity
@@ -0,0 +1 @@
1
+ To enable the overlay to cover the full size of your screen, you can pass the `fullScreen` prop. You can also pass an opacity along with it.
@@ -0,0 +1,39 @@
1
+ import React from 'react'
2
+
3
+ import Overlay from '../../pb_overlay/_overlay'
4
+ import Image from '../../pb_image/_image'
5
+ import Flex from '../../pb_flex/_flex'
6
+
7
+ const OverlayGradientOpacity = () => (
8
+ <Flex
9
+ justify="around"
10
+ wrap
11
+ >
12
+ <Overlay
13
+ gradient={false}
14
+ marginBottom="xxs"
15
+ opacity="opacity_2"
16
+ >
17
+ <Image
18
+ alt="picture of a misty forest"
19
+ display="block"
20
+ maxWidth="100%"
21
+ url="https://unsplash.it/500/400/?image=634"
22
+ />
23
+ </Overlay>
24
+ <Overlay
25
+ gradient={false}
26
+ marginBottom="xxs"
27
+ opacity="opacity_8"
28
+ >
29
+ <Image
30
+ alt="picture of a misty forest"
31
+ display="block"
32
+ maxWidth="100%"
33
+ url="https://unsplash.it/500/400/?image=634"
34
+ />
35
+ </Overlay>
36
+ </Flex>
37
+ )
38
+
39
+ export default OverlayGradientOpacity
@@ -0,0 +1 @@
1
+ By default, the overlay is rendered as a gradient. Setting the `gradient` prop to `false` renders the overlay as a solid color. You can adjust the transparency of the solid overlay by using the `opacity` prop.
@@ -0,0 +1,40 @@
1
+ import React from 'react'
2
+
3
+ import Overlay from '../../pb_overlay/_overlay'
4
+ import Table from '../../pb_table/_table'
5
+
6
+
7
+ const TableExample = () => {
8
+ return (
9
+ <Table size="sm">
10
+ <thead>
11
+ <tr>
12
+ <th>{'Column 1'}</th>
13
+ <th>{'Column 2'}</th>
14
+ <th>{'Column 3'}</th>
15
+ <th>{'Column 4'}</th>
16
+ <th>{'Column 5'}</th>
17
+ </tr>
18
+ </thead>
19
+ <tbody>
20
+ {Array.from({ length: 7 }, (_, index) => (
21
+ <tr key={index}>
22
+ {Array.from({ length: 5 }, (_, columnIndex) => (
23
+ <td key={columnIndex}>{`Value ${columnIndex + 1}`}</td>
24
+ ))}
25
+ </tr>
26
+ ))}
27
+ </tbody>
28
+ </Table>
29
+ )
30
+ }
31
+
32
+ const OverlayLayout = () => (
33
+ <>
34
+ <Overlay layout={{ y: "xl" }}>
35
+ <TableExample />
36
+ </Overlay>
37
+ </>
38
+ )
39
+
40
+ export default OverlayLayout
@@ -0,0 +1,5 @@
1
+ The optional `layout` prop accepts the `position` and `size` of the overlay as a key:value pair.
2
+
3
+ The `position` key accepts `bottom` (default), `top`, `y` (for both top and bottom) `right`, `left`, or `x` (for both left and right), which sets the side(s) where the `color` overlay starts. The direction of the overlay is always toward the opposite side of the position. For example, the default position of `bottom` starts the overlay on the bottom edge of your container and extends it toward the opposite side: the top.
4
+
5
+ The `size` value is `full` (100%) by default, but accepts our [spacing tokens](https://playbook.powerapp.cloud/visual_guidelines/spacing) or a percentage value as a string, and literally translates to how much of the container is covered by the overlay(s).
@@ -1,10 +1,15 @@
1
1
  examples:
2
2
  react:
3
3
  - overlay_default: Default
4
+ - overlay_gradient_opacity: Gradient & Opacity
5
+ - overlay_color: Color
6
+ - overlay_layout: Layout
4
7
  - overlay_multi_directional: Multi-directional
5
8
  - overlay_vertical_dynamic_multi_directional: Vertical Dynamic Multi-directional
6
9
  - overlay_toggle: Toggle
7
10
  - overlay_hide_scroll_bar: Hide Scroll Bar
11
+ - overlay_fullscreen_opacity: Full Page Opacity
12
+ - overlay_fullscreen_background: Full Page Using Background Color Tokens
8
13
 
9
14
  rails:
10
15
  - overlay_default: Default
@@ -1,5 +1,10 @@
1
1
  export { default as OverlayDefault } from './_overlay_default.jsx'
2
+ export { default as OverlayGradientOpacity } from './_overlay_gradient_opacity.jsx'
3
+ export { default as OverlayColor } from './_overlay_color.jsx'
4
+ export { default as OverlayLayout } from './_overlay_layout.jsx'
2
5
  export { default as OverlayMultiDirectional } from './_overlay_multi_directional.jsx'
3
6
  export { default as OverlayToggle } from './_overlay_toggle.jsx'
4
7
  export { default as OverlayVerticalDynamicMultiDirectional } from './_overlay_vertical_dynamic_multi_directional.jsx'
5
8
  export { default as OverlayHideScrollBar } from './_overlay_hide_scroll_bar.jsx'
9
+ export { default as OverlayFullscreenOpacity } from './_overlay_fullscreen_opacity.jsx'
10
+ export { default as OverlayFullscreenBackground } from './_overlay_fullscreen_background.jsx'
@@ -71,8 +71,46 @@ test('should add overlay-hide-scrollbar class when scrollBarNone is true', () =>
71
71
  data: { testid: testId },
72
72
  scrollBarNone: true
73
73
  }
74
-
74
+
75
75
  render(<Overlay {...props} />)
76
76
  const kit = screen.getByTestId(testId)
77
77
  expect(kit).toHaveClass('overlay-hide-scrollbar')
78
78
  })
79
+
80
+ test('should have no_gradient class if gradient prop is false', () => {
81
+ const props = {
82
+ children,
83
+ data: { testid: testId },
84
+ id: testId,
85
+ gradient: false
86
+ }
87
+
88
+ render(<Overlay {...props} />)
89
+ const kit = screen.getByTestId(testId)
90
+ expect(kit).toHaveClass('no_gradient')
91
+ })
92
+
93
+ test('should not have no_gradient class if gradient is not passed', () => {
94
+ const props = {
95
+ children,
96
+ data: { testid: testId },
97
+ id: testId
98
+ }
99
+
100
+ render(<Overlay {...props} />)
101
+ const kit = screen.getByTestId(testId)
102
+ expect(kit).not.toHaveClass('no_gradient')
103
+ })
104
+
105
+ test('should have the correct opacity class if opacity prop is passed', () => {
106
+ const props = {
107
+ children,
108
+ data: { testid: testId },
109
+ id: testId,
110
+ opacity: "opacity_5"
111
+ }
112
+
113
+ render(<Overlay {...props} />)
114
+ const kit = screen.getByTestId(testId)
115
+ expect(kit).toHaveClass('opacity_5')
116
+ })
@@ -39,6 +39,9 @@ $flag-min-resolution: 192dpi;
39
39
  color: $charcoal;
40
40
  }
41
41
 
42
+ .iti__country-list {
43
+ min-width: $dropdown-min-width;
44
+ }
42
45
  // iti-spacer-horizontal's default is 8px, or $space_xs
43
46
  .iti__country-list .iti__flag, .iti__country-name {
44
47
  margin-right: $space_xs;
@@ -227,6 +230,16 @@ $flag-min-resolution: 192dpi;
227
230
  .iti__dropdown-content {
228
231
  border-radius: $space_xs;
229
232
  border: 1px solid $border_dark !important;
233
+ .iti__search-input {
234
+ background-color: $bg_dark_card;
235
+ &:hover {
236
+ background-color: $bg_dark_card;
237
+ }
238
+ &:active,
239
+ &:focus {
240
+ background-color: $card_dark;
241
+ }
242
+ }
230
243
  }
231
244
 
232
245
  .iti__divider {
@@ -37,6 +37,7 @@ type PhoneNumberInputProps = {
37
37
  required?: boolean,
38
38
  value?: string,
39
39
  formatAsYouType?: boolean,
40
+ countrySearch?: boolean,
40
41
  }
41
42
 
42
43
  enum ValidationError {
@@ -91,6 +92,7 @@ const PhoneNumberInput = (props: PhoneNumberInputProps, ref?: React.MutableRefOb
91
92
  preferredCountries = [],
92
93
  value = "",
93
94
  formatAsYouType = false,
95
+ countrySearch = false,
94
96
  } = props
95
97
 
96
98
  const ariaProps = buildAriaProps(aria)
@@ -242,7 +244,7 @@ const PhoneNumberInput = (props: PhoneNumberInputProps, ref?: React.MutableRefOb
242
244
  autoInsertDialCode: false,
243
245
  initialCountry: initialCountry || fallbackCountry,
244
246
  onlyCountries,
245
- countrySearch: false,
247
+ countrySearch: countrySearch,
246
248
  fixDropdownWidth: false,
247
249
  formatAsYouType: formatAsYouType,
248
250
  hiddenInput: hiddenInputs ? () => ({
@@ -0,0 +1,10 @@
1
+ <%= pb_rails("phone_number_input", props: {
2
+ country_search: true,
3
+ id: "country-search",
4
+ }) %>
5
+
6
+ <%= pb_rails("phone_number_input", props: {
7
+ country_search: true,
8
+ id: "country-search-limited",
9
+ only_countries: ["br", "us", "ph", "gb"],
10
+ }) %>
@@ -0,0 +1,20 @@
1
+ import React from 'react'
2
+ import PhoneNumberInput from '../_phone_number_input'
3
+
4
+ const PhoneNumberInputCountrySearch = (props) => (
5
+ <>
6
+ <PhoneNumberInput
7
+ countrySearch
8
+ id='country-search'
9
+ {...props}
10
+ />
11
+ <PhoneNumberInput
12
+ countrySearch
13
+ id='country-search-limited'
14
+ onlyCountries={["br", "us", "ph", "gb"]}
15
+ {...props}
16
+ />
17
+ </>
18
+ )
19
+
20
+ export default PhoneNumberInputCountrySearch
@@ -0,0 +1 @@
1
+ Set `country_search` / `countrySearch` to true to allow users to search for a specific Country within the dropdown. If the range of countries has been limited, only the selected countries will be searchable.
@@ -3,6 +3,7 @@ import React, { useEffect, useState } from "react";
3
3
  import Button from '../../pb_button/_button'
4
4
  import FixedConfirmationToast from '../../pb_fixed_confirmation_toast/_fixed_confirmation_toast'
5
5
  import PhoneNumberInput from '../../pb_phone_number_input/_phone_number_input'
6
+ import Icon from '../../pb_icon/_icon'
6
7
 
7
8
  const PhoneNumberInputValidation = (props) => {
8
9
  const [formErrors, setFormErrors] = useState("");
@@ -29,6 +30,12 @@ const PhoneNumberInputValidation = (props) => {
29
30
  setShowFormErrors(formErrors.length > 0);
30
31
  }, [formErrors]);
31
32
 
33
+ const error = (
34
+ <>
35
+ <Icon icon="warning" /> Missing phone number.
36
+ </>
37
+ )
38
+
32
39
  return (
33
40
  <form
34
41
  action=""
@@ -43,7 +50,7 @@ const PhoneNumberInputValidation = (props) => {
43
50
  />
44
51
  )}
45
52
  <PhoneNumberInput
46
- error="Missing phone number."
53
+ error={error}
47
54
  id="validation"
48
55
  initialCountry={countryCode}
49
56
  onChange={handleOnChange}
@@ -9,6 +9,7 @@ examples:
9
9
  - phone_number_input_clear_field: Clearing the Input Field
10
10
  - phone_number_input_access_input_element: Accessing the Input Element
11
11
  - phone_number_input_format: Format as You Type
12
+ - phone_number_input_country_search: Country Search
12
13
 
13
14
  rails:
14
15
  - phone_number_input_default: Default
@@ -18,4 +19,5 @@ examples:
18
19
  - phone_number_input_validation: Form Validation
19
20
  - phone_number_input_format: Format as You Type
20
21
  - phone_number_input_hidden_inputs: Hidden Inputs
22
+ - phone_number_input_country_search: Country Search
21
23
 
@@ -6,3 +6,4 @@ export { default as PhoneNumberInputValidation } from './_phone_number_input_val
6
6
  export { default as PhoneNumberInputClearField } from './_phone_number_input_clear_field'
7
7
  export { default as PhoneNumberInputAccessInputElement } from './_phone_number_input_access_input_element'
8
8
  export { default as PhoneNumberInputFormat } from './_phone_number_input_format'
9
+ export { default as PhoneNumberInputCountrySearch } from './_phone_number_input_country_search'
@@ -25,6 +25,8 @@ module Playbook
25
25
  default: false
26
26
  prop :hidden_inputs, type: Playbook::Props::Boolean,
27
27
  default: false
28
+ prop :country_search, type: Playbook::Props::Boolean,
29
+ default: false
28
30
 
29
31
  def classname
30
32
  generate_classname("pb_phone_number_input")
@@ -45,6 +47,7 @@ module Playbook
45
47
  preferredCountries: preferred_countries,
46
48
  required: required,
47
49
  value: value,
50
+ countrySearch: country_search,
48
51
  }
49
52
  end
50
53
  end
@@ -139,3 +139,22 @@ test("should format phone number as '555-555-5555' with formatAsYouType and 'us'
139
139
 
140
140
  expect(input.value).toBe("555-555-5555");
141
141
  });
142
+
143
+ test("should pass countrySearch prop to component", () => {
144
+ window.intlTelInput = jest.fn(() => ({
145
+ getSelectedCountryData: jest.fn(() => ({})),
146
+ isValidNumber: jest.fn(() => true),
147
+ getValidationError: jest.fn(() => 0),
148
+ }));
149
+
150
+ const props = {
151
+ id: testId,
152
+ countrySearch: true,
153
+ data: { testid: 'phone-input-with-search' }
154
+ };
155
+
156
+ render(<PhoneNumberInput {...props} />);
157
+
158
+ const wrapper = screen.getByTestId('phone-input-with-search');
159
+ expect(wrapper).toBeInTheDocument();
160
+ });
@@ -0,0 +1,46 @@
1
+ <%= pb_rails("flex", props: {
2
+ dark: true,
3
+ orientation: "row",
4
+ vertical: "center",
5
+ margin_bottom: "md"
6
+ }) do %>
7
+ <%= pb_rails("body", props: { text: "Click info for more details" }) %>
8
+ &nbsp;
9
+ <%= pb_rails("circle_icon_button", props: {
10
+ variant: "secondary",
11
+ icon: "info",
12
+ id: "append-to-popover-1"
13
+ }) %>
14
+ <%= pb_rails("popover", props: {
15
+ trigger_element_id: "append-to-popover-1",
16
+ tooltip_id: "append-to-tooltip-1",
17
+ offset: true,
18
+ position: "top",
19
+ append_to: "parent",
20
+ }) do %>
21
+ I'm a popover. I have been appended to my parent element.
22
+ <% end %>
23
+ <% end %>
24
+
25
+ <%= pb_rails("flex", props: {
26
+ dark: true,
27
+ orientation: "row",
28
+ vertical: "center"
29
+ }) do %>
30
+ <%= pb_rails("body", props: { text: "Click info for more details" }) %>
31
+ &nbsp;
32
+ <%= pb_rails("circle_icon_button", props: {
33
+ variant: "secondary",
34
+ icon: "info",
35
+ id: "append-to-popover-2"
36
+ }) %>
37
+ <%= pb_rails("popover", props: {
38
+ trigger_element_id: "append-to-popover-2",
39
+ tooltip_id: "append-to-tooltip-2",
40
+ offset: true,
41
+ position: "top",
42
+ append_to: ".kit-show-wrapper",
43
+ }) do %>
44
+ I'm a popover. I have been appended to the .kit-show-wrapper.
45
+ <% end %>
46
+ <% end %>
@@ -0,0 +1 @@
1
+ By default, the popover tooltip attaches to the `<body>`. To attach it elsewhere, use the `append_to` prop. Set it to `"parent"` to place the tooltip inside its parent element, or pass any CSS selector (`#id` or `.class`) to specify a custom container.
@@ -6,6 +6,7 @@ examples:
6
6
  - popover_z_index: Set Z-Index
7
7
  - popover_scroll_height: Scroll and Height Settings
8
8
  - popover_actionable_content: With Actionable Content
9
+ - popover_append_to: Append To
9
10
 
10
11
  react:
11
12
  - popover_default: Default
@@ -13,7 +13,15 @@ export default class PbPopover extends PbEnhancedElement {
13
13
  }
14
14
 
15
15
  moveTooltip() {
16
- document.querySelector('body').appendChild(this.tooltip)
16
+ let container: HTMLElement | null;
17
+
18
+ if (this.appendTo === "parent") {
19
+ container = this.element.parentElement;
20
+ } else if (this.appendTo) {
21
+ container = document.querySelector(this.appendTo);
22
+ }
23
+
24
+ (container || document.body).appendChild(this.tooltip);
17
25
  }
18
26
 
19
27
  connect() {
@@ -108,4 +116,8 @@ export default class PbPopover extends PbEnhancedElement {
108
116
  get closeOnClick() {
109
117
  return this.element.dataset.pbPopoverCloseOnClick
110
118
  }
119
+
120
+ get appendTo() {
121
+ return this.element.dataset.pbPopoverAppendTo;
122
+ }
111
123
  }
@@ -3,6 +3,7 @@
3
3
  module Playbook
4
4
  module PbPopover
5
5
  class Popover < Playbook::KitBase
6
+ prop :append_to, type: Playbook::Props::String, default: "body"
6
7
  prop :position, type: Playbook::Props::Enum,
7
8
  values: %w[top bottom left right top-start top-end bottom-start bottom-end right-start right-end left-start left-end],
8
9
  default: "left"
@@ -47,6 +48,7 @@ module Playbook
47
48
 
48
49
  def data
49
50
  Hash(values[:data]).merge(
51
+ pb_popover_append_to: append_to,
50
52
  pb_popover_kit: true,
51
53
  pb_popover_position: position,
52
54
  pb_popover_trigger_element_id: trigger_element_id,
@@ -143,6 +143,16 @@
143
143
  select {
144
144
  font-size: 12px;
145
145
  }
146
+ .pb_select_kit_wrapper.error {
147
+ .pb_select_kit_caret {
148
+ top: 13.7px;
149
+ }
150
+ }
151
+ }
152
+ .pb_select_kit_wrapper.error {
153
+ .pb_select_kit_caret {
154
+ top: 16.2px;
155
+ }
146
156
  }
147
157
  }
148
158
  }
@@ -1,5 +1,5 @@
1
1
  <%= pb_rails("select", props: {
2
- error: "Please make a valid selection",
2
+ error: raw(pb_rails("icon", props: { icon: "warning" }) + " Please make a valid selection"),
3
3
  label: "Favorite Food",
4
4
  name: "food",
5
5
  options: [
@@ -1,6 +1,7 @@
1
1
  import React from 'react'
2
2
  import Body from '../../pb_body/_body'
3
3
  import Select from '../../pb_select/_select'
4
+ import Icon from '../../pb_icon/_icon'
4
5
 
5
6
  const SelectError = (props) => {
6
7
  const options = [
@@ -18,10 +19,14 @@ const SelectError = (props) => {
18
19
  },
19
20
  ]
20
21
 
22
+ const error = (<>
23
+ <Icon icon="warning" /> Please make a valid selection
24
+ </>)
25
+
21
26
  return (
22
27
  <div>
23
28
  <Select
24
- error="Please make a valid selection"
29
+ error={error}
25
30
  label="Favorite Food"
26
31
  name="food"
27
32
  options={options}
@@ -29,7 +34,7 @@ const SelectError = (props) => {
29
34
  {...props}
30
35
  />
31
36
  <Body
32
- error="Please make a valid selection"
37
+ error={error}
33
38
  status="negative"
34
39
  {...props}
35
40
  />
@@ -84,8 +84,8 @@ const Table = (props: TableProps): React.ReactElement => {
84
84
  'single-line': singleLine,
85
85
  'no-hover': disableHover,
86
86
  'sticky-header': sticky,
87
- 'sticky-left-column': stickyLeftColumn,
88
- 'sticky-right-column': stickyRightColumn,
87
+ 'sticky-left-column': stickyLeftColumn.length,
88
+ 'sticky-right-column': stickyRightColumn.length,
89
89
  'striped': striped,
90
90
  'header-borderless': headerStyle === 'borderless',
91
91
  'header-floating': headerStyle === 'floating',
@@ -1,3 +1,5 @@
1
1
  The `collapsibleContent` can display any content, including nested Table Rows.
2
2
 
3
- Additionally, the `collapsibleSideHighlight` can also be removed by setting it to false if needed. This prop is set to true by default.
3
+ Additionally, the `collapsibleSideHighlight` can also be removed by setting it to false if needed. This prop is set to true by default.
4
+
5
+ **NOTE**: We advise against using the `disableHover` Table prop when nesting Table Rows within a Table.
@@ -1,3 +1,5 @@
1
1
  The `collapsible_content` can display any content, including nested Table Rows.
2
2
 
3
- Additionally, the `collapsible_side_highlight` can also be removed by setting it to false if needed. This prop is set to true by default.
3
+ Additionally, the `collapsible_side_highlight` can also be removed by setting it to false if needed. This prop is set to true by default.
4
+
5
+ **NOTE**: We advise against using the `disable_hover` Table prop when nesting Table Rows within a Table.
@@ -1 +1,3 @@
1
- The `collapsibleContent` can also be used to display nested Tables within each Row.
1
+ The `collapsibleContent` can also be used to display nested Tables within each Row.
2
+
3
+ **NOTE**: We advise against using the `disableHover` Table prop when nesting Tables within a Table.
@@ -1 +1,3 @@
1
- The `collapsible_content` can also be used to display nested Tables within each Row.
1
+ The `collapsible_content` can also be used to display nested Tables within each Row.
2
+
3
+ **NOTE**: We advise against using the `disable_hover` Table prop when nesting Tables within a Table.