playbook_ui_docs 14.23.0.pre.alpha.PLAY2148selectclassnamessinglespacesfix9144 → 14.23.0.pre.alpha.PLAY2205atborderbug9085

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: 68187536876fca3f50bff741d2443607a0786e25a97c422d074f9991de8f8774
4
- data.tar.gz: 65f79a45aa91e27a5e99c010df143eed9249590478380d51be17cc5e203ac482
3
+ metadata.gz: 1b7d600a2203a34d06df0de496a6e78837ff23452204e81421d017fc45a13ab2
4
+ data.tar.gz: d8fbe9e5fd363de439d1e741af5f80565b8de2cd832e6a13e781f9f3a7c33fc0
5
5
  SHA512:
6
- metadata.gz: e28b31c3ad36346c0945b43b072327734ceaafbcc68f979521b7e634455ea199dc7e2ab5739d4c2d8cdd22d10f70f757b1b27a29e02b5f1bff20d2d1148f7c78
7
- data.tar.gz: 35a5b53c9d0b3d5c858ca87ad1764633d5b9f3cffe0d88b1a44c7a9a7b26b7d1bf62fcb55cdd34383f77f351b4d0556c44b38774385e2c63d6a4c084a32a3d56
6
+ metadata.gz: 793c1e18f7ac579a629671d6d508ecfbfc70507667b11e63df13dd100f56bf3993a49d9469b57e263bb099e265d7a53904b7fa3b4edeee1146a362580462e685
7
+ data.tar.gz: 7faf9b5cd636259fddf6ebdd3cda1fee43936ee75e446c41851fa048f002f74c0d8220db0d5376b432692860868a224fef555c47d47272d329aa463691329df9
@@ -43,7 +43,6 @@ examples:
43
43
  - advanced_table_responsive: Responsive Tables
44
44
  - advanced_table_custom_cell: Custom Components for Cells
45
45
  - advanced_table_with_custom_header: Custom Header Cell
46
- - advanced_table_with_custom_header_multi_header: Custom Header with Multiple Headers
47
46
  - advanced_table_pagination: Pagination
48
47
  - advanced_table_pagination_with_props: Pagination Props
49
48
  - advanced_table_loading: Loading State
@@ -40,4 +40,3 @@ export { default as AdvancedTableColumnStylingColumnHeaders } from './_advanced_
40
40
  export { default as AdvancedTableInfiniteScroll} from './_advanced_table_infinite_scroll.jsx'
41
41
  export {default as AdvancedTableWithCustomHeader} from './_advanced_table_with_custom_header.jsx'
42
42
  export { default as AdvancedTableCustomSort } from './_advanced_table_custom_sort.jsx'
43
- export { default as AdvancedTableWithCustomHeaderMultiHeader } from './_advanced_table_with_custom_header_multi_header.jsx'
@@ -9,10 +9,10 @@
9
9
  <tr>
10
10
  <th>
11
11
  <%= pb_rails("checkbox", props: {
12
+ text: "Uncheck All",
12
13
  value: "checkbox-value",
13
14
  name: "main-checkbox",
14
15
  indeterminate_main: true,
15
- indeterminate_main_labels: ["Check All Ice Cream", "Uncheck All Ice Cream"],
16
16
  id: "indeterminate-checkbox"
17
17
  }) %>
18
18
  </th>
@@ -1,2 +1 @@
1
- If you want to use indeterminate, "check/uncheck all" checkboxes, add `indeterminate_main: true` and an `id` to the main checkbox. Then, add an `indeterminate_parent` prop with the main checkbox's `id` to the children checkboxes.
2
- If you want to customize the main checkbox labels, set an array `indeterminate_main_labels` with "Check All" and "Uncheck All" labels.
1
+ If you want to use indeterminate, "check/uncheck all" checkboxes, add `indeterminate_main: true` and an `id` to the main checkbox. Then, add an `indeterminate_parent` prop with the main checkbox's `id` to the children checkboxes.
@@ -19,7 +19,6 @@
19
19
  value: "checkbox-value",
20
20
  name: "main-checkbox-selectable",
21
21
  indeterminate_main: true,
22
- indeterminate_main_labels: ["", ""],
23
22
  id: "checkbox-selectable"
24
23
  }) %>
25
24
  <% end %>