playbook_ui_docs 14.20.0.pre.alpha.PLAY21817891 → 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: a4cc5170ba04451afe5d835c6dd5bf28cd786f619366f125f9fea9350b6b3358
4
- data.tar.gz: 5ce7096fd7f978b0d0954b326bc28a4e87152a5a96aecd090bc849b04b6f731d
3
+ metadata.gz: 362372958ccc7f058b2ea26993671410d4022c1e36f432aecc9d4d9069acdddd
4
+ data.tar.gz: a5653acda5e67571212067467a6d9c08e332267c9ba6acdd49f1a33f2cde835a
5
5
  SHA512:
6
- metadata.gz: 3cb2335e5a3ab6d27d1cdddfa426d42f159ab9feb629208d0a36a9ec5edc0c26608d743687d9ea9f2c596415ad906966792b9c9633b4f2a801b113803349cf6c
7
- data.tar.gz: 253354b041ca423e15617e642a7edb3493ba7d2b3843fed80a3ed1f7f47e380f00a57a9ab83578587d9ab119819d100f68f289965f94ec716f8dcc5762feef33
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
 
@@ -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)