playbook_ui 17.1.0.pre.rc.1 → 17.1.0.pre.rc.2

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: d2b39d1988129a1775386968f9a5e6e8153ccf1fdf44aaf371c23144d75e75d1
4
- data.tar.gz: 546a6f29bd40d122f0fb899cd86d38b3474dbf0c3e54d275c4082623c0bab1ef
3
+ metadata.gz: d83635cbc918a181e0ef4f93f6125558c127215cde8da52d2ad73730d45f9850
4
+ data.tar.gz: 76b6a74dcaa17a95ccc4b8dbea5962b6d83efec85096ac0fa12917548160aad7
5
5
  SHA512:
6
- metadata.gz: 8d0e377654cc74f6143aedf096cf6c4409d56f51fff11a168ea48a99e1b0e7a4ff588c6e1b4ae974b148aa03c3efbfc4df9035985a871f81593f8a7cf014ed35
7
- data.tar.gz: 745b58a4eda8d12eea4205aab68d21758084d63eefd9942bed1e538be5a7e5932736b55cf110c51aa1d80448f539a0f7ffab52a0cc0bb10667c4e4282b775add
6
+ metadata.gz: fd2450ff3000b7fcba6606b00144302dde10ccd0a785c8618da1fe023dac56701af9b6baced5a53f4ffb192edf73597d32ffd6c49a622b7693e96cd3c3b1b977
7
+ data.tar.gz: 8e636e6d6b2f439bc68991cac04f7f066974b5bc9c001a40d9e1eaa4b4d8b40c2f86a16912b7a1d4e68ede24814178e4c00610e86f46bd467f19fda18ce16347
@@ -2,4 +2,4 @@ The MultiLevelSelect kit renders a multi leveled select dropdown based on data f
2
2
 
3
3
  For the React version of the kit, the `onSelect` prop returns an array of objects. This array contains all checked items irrespective of whether it is a parent, child or grandchild. Open the console on this example and check and uncheck checkboxes to see this is action!
4
4
 
5
- For the Rails version of the kit, there is no onselect. The form submits as a array of strings, following the typical rails pattern of utilizing hidden inputs. The strings are the values of the selected items' ids. For example, ["103", "106", "107"].
5
+ For the Rails version of the kit, there is no onSelect. The form submits as an array of strings, following the typical Rails pattern of utilizing hidden inputs. The strings are the values of the selected items' ids. For example, ["103", "106", "107"]. Listen for `pb-multi-level-select-change` on the kit root for live updates; `event.detail.value` is the selected item objects.