playbook_ui_docs 14.20.0.pre.alpha.play2168firstcolumnborderbug7950 → 14.20.0.pre.alpha.revert4453PBNTR933reactdraggablebugdragbtwnexamples7854

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: eb52e44d330a2e50252467d317e976541cf6636ee0372a335db6d56cd5792755
4
- data.tar.gz: ed11e6a5e9abb8ce317ad2493299bd7195b7d43a88cc49dfbebf183c04a7335c
3
+ metadata.gz: 362372958ccc7f058b2ea26993671410d4022c1e36f432aecc9d4d9069acdddd
4
+ data.tar.gz: a5653acda5e67571212067467a6d9c08e332267c9ba6acdd49f1a33f2cde835a
5
5
  SHA512:
6
- metadata.gz: 1d45a1beba450c94fd2b8c09d1d21b194b05680d1cdfcb88b654ec9b690d60e0a4c3deec01ab8c4d3b6655b492c7f617fa439e8063912d3f8aa7b32a7d5c9085
7
- data.tar.gz: 34b97f4eee1e2080f37ace8b1b3ff752e0f671e591b8d760b28e95c7c7352a40fb49126afcd45a485911363f5e7a67a6ad4969f021ef5891921dffb0560088c4
6
+ metadata.gz: ebb22edd40dfaa14eedd91f339ee1d6f422cd34bcc998d509484f6f77525d8be224ab015026ad998591cb18e4908e847f73c6bfc1ae2db21039437c6479ce377
7
+ data.tar.gz: 03eb92091dd232460185a6c64168a963319f4996977838a11efc83a37a84722b95830f885fec804124e47d1bbd7e9a614dde361b7f9f35b228372a4c146fd304
@@ -1,8 +1,4 @@
1
- The AdvancedTable kit accepts tree data and automatically renders expansion controls for nested subrows, to any depth, based on the data it is given. In it's simplest form, __the kit has three required props__:
2
-
3
- ### id
4
-
5
- A unique `id` is required to allow the table functionality to work properly. Without it, certain functions like the action bar will not be able to properly reference the correct table.
1
+ The AdvancedTable kit accepts tree data and automatically renders expansion controls for nested subrows, to any depth, based on the data it is given. In it's simplest form, __the kit has two required props__:
6
2
 
7
3
  ### table_data
8
4
 
@@ -17,6 +13,6 @@ Column definitions are the single most important part of building a table as the
17
13
  - `accessor`: this is the key from your data for the value you want rendered in that column
18
14
  - `label`: this is what will be rendered as the column header label
19
15
 
20
- There is also one optional item that is only required if the table has nested data:
16
+ There is also one optional item that is only required if the table has nested data:
21
17
 
22
18
  - `cellAccessors`: This is an array of strings that represent keys from your data object. This is only required for the first column in case of nested data. If you have nested data, the AdvancedTable needs to know what to render in that first column for nested items. This array represents the nested data in the order you want it rendered.
@@ -3,7 +3,7 @@
3
3
  <br />
4
4
  <br />
5
5
 
6
- The AdvancedTable kit accepts tree data and automatically renders expansion controls for nested subrows, to any depth, based on the data it is given. In it's simplest form, __the kit has two required props__:
6
+ The AdvancedTable kit accepts tree data and automatically renders expansion controls for nested subrows, to any depth, based on the data it is given. In it's simplest form, __the kit has two required props__:
7
7
 
8
8
  ### tableData
9
9
 
@@ -30,4 +30,4 @@
30
30
  }
31
31
  ] %>
32
32
 
33
- <%= pb_rails("advanced_table", props: { id: "table_props_table", table_data: @table_data, column_definitions: column_definitions, table_props: { container: false }}) %>
33
+ <%= pb_rails("advanced_table", props: { id: "table_props_table", table_data: @table_data, column_definitions: column_definitions, table_props: { vertical_border: true, container: false }}) %>
@@ -15,8 +15,6 @@ examples:
15
15
  - advanced_table_column_border_color_rails: Column Group Border Color
16
16
  - advanced_table_selectable_rows_rails: Selectable Rows
17
17
  - advanced_table_selectable_rows_no_subrows_rails: Selectable Rows (No Subrows)
18
- - advanced_table_selectable_rows_actions_rails: Selectable Rows (With Actions)
19
- - advanced_table_selectable_rows_header_rails: Selectable Rows (No Actions Bar)
20
18
 
21
19
  react:
22
20
  - advanced_table_default: Default (Required Props)
@@ -8,7 +8,6 @@ examples:
8
8
  - select_required: Required Select Field
9
9
  - select_value_text_same: Equal option value and value text
10
10
  - select_custom_select: Custom Select
11
- - select_custom_select_subheaders: Custom Select Subheaders
12
11
  - select_error: Select w/ Error
13
12
  - select_inline: Select Inline
14
13
  - select_inline_show_arrow: Select Inline (Always Show Arrow)
@@ -26,7 +25,6 @@ examples:
26
25
  - select_required: Required Select Field
27
26
  - select_value_text_same: Equal option value and value text
28
27
  - select_custom_select: Custom Select
29
- - select_custom_select_subheaders: Custom Select Subheaders
30
28
  - select_error: Select w/ Error
31
29
  - select_inline: Select Inline
32
30
  - select_inline_show_arrow: Select Inline (Always Show Arrow)
@@ -11,4 +11,3 @@ export { default as SelectInlineShowArrow } from './_select_inline_show_arrow.js
11
11
  export { default as SelectInlineCompact } from './_select_inline_compact.jsx'
12
12
  export { default as SelectMultiple } from './_select_multiple.jsx'
13
13
  export { default as SelectReactHook } from './_select_react_hook.jsx'
14
- export { default as SelectCustomSelectSubheaders } from './_select_custom_select_subheaders.jsx'