playbook_ui_docs 14.15.0.pre.alpha.play1757pbcontenttag6644 → 14.15.0.pre.alpha.play1854reacthookmultilvlselect6572

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: 73dcd030e4833fe9f9b86bdb4c3eeb9a7995d8a46203ad1fe76dce62ef6d8b51
4
- data.tar.gz: aff52d05eed8b3bc1300b1de58d72c99e56ae2d98d896657524f6a0cbe16afca
3
+ metadata.gz: c1c1dc315246b8d0f6ecd18e1451a9fe87c615a2c5d6e8c95d83763b9771ae29
4
+ data.tar.gz: 17f2e6c7e11f6081799402a818ec260b9c9b2414e06a6b2d2a596191e73adac9
5
5
  SHA512:
6
- metadata.gz: 04a5146cec2990dfb07fb1f12c69ea7060908d26068a4343a68beb5a3681e50d654860c5932cb2e05396598ee9ebda1769f023de7edf471a025495474f68b7a3
7
- data.tar.gz: 53a08c50be0fc47c32e4415f6d24b08c199a473b90b9318f0081d83c1a8b53363f8dd8a9fbe41f8e222f2cc8115d6bd1d2ab9cb8d53cd18968c567f2b4eb17a2
6
+ metadata.gz: f60fa4e5823d9cbae8febada4eacee697ebfdbc541a1e55c0ac0a22c294f886327e92bef30078b9b6f589d97d3577e2c9ebdb6e6f632b52035fd6837f04b1757
7
+ data.tar.gz: a34f8a03cb1ae541e8f9611c0f27647dd1014825b19052d5b44e9163ac3952dea2727d5303e771ab50521191189319366331f7e153931d99acaa72b6c2e50f4d
@@ -36,5 +36,4 @@ examples:
36
36
  - advanced_table_selectable_rows: Selectable Rows
37
37
  - advanced_table_selectable_rows_no_subrows: Selectable Rows (No Subrows)
38
38
  - advanced_table_selectable_rows_actions: Selectable Rows (With Actions)
39
- - advanced_table_selectable_rows_header: Selectable Rows (No Actions Bar)
40
- - advanced_table_inline_editing: Inline Cell Editing
39
+ - advanced_table_selectable_rows_header: Selectable Rows (No Actions Bar)
@@ -20,5 +20,4 @@ export { default as AdvancedTableNoSubrows } from './_advanced_table_no_subrows.
20
20
  export { default as AdvancedTableSelectableRowsHeader } from './_advanced_table_selectable_rows_header.jsx'
21
21
  export { default as AdvancedTableSelectableRowsActions } from './_advanced_table_selectable_rows_actions.jsx'
22
22
  export { default as AdvancedTableTablePropsStickyHeader } from './_advanced_table_table_props_sticky_header.jsx'
23
- export { default as AdvancedTableColumnHeadersCustomCell } from './_advanced_table_column_headers_custom_cell.jsx'
24
- export { default as AdvancedTableInlineEditing } from './_advanced_table_inline_editing.jsx'
23
+ export { default as AdvancedTableColumnHeadersCustomCell } from './_advanced_table_column_headers_custom_cell.jsx'
@@ -1 +1 @@
1
- You can pass `react-hook-form` props to the MultiLevelSelect kit. Check your console to see the full data selected from this example.
1
+ You can pass `react-hook-form` props to the Typeahead kit. Check your console to see the full data selected from this example.
@@ -0,0 +1,10 @@
1
+ <%= pb_rails("icon_circle", props: { icon: "paper-plane", id: "result-1-sample-email-link" }) %>
2
+
3
+ <%= pb_rails("tooltip", props: {
4
+ trigger_element_id: "result-1-sample-email-link",
5
+ tooltip_id: "sample-email-tooltip-result-1",
6
+ position: "top",
7
+ dark: true
8
+ }) do %>
9
+ Send Email
10
+ <% end %>
@@ -4,7 +4,6 @@ examples:
4
4
  - tooltip_default: Default
5
5
  - tooltip_interaction: Content Interaction
6
6
  - tooltip_selectors: Using Common Selectors
7
- - tooltip_icon_rails: Tooltip with Icon
8
7
  - tooltip_with_icon_circle: Icon Circle Tooltip
9
8
  - tooltip_delay_rails: Delay
10
9
  - tooltip_show_tooltip: Show Tooltip
@@ -49,7 +49,7 @@ const TypeaheadWithPillsAsyncCustomOptions = (props) => {
49
49
  * @summary - for doc example purposes only
50
50
  */
51
51
  const handleOnMultiValueClick = (value) => {
52
- alert(`You added the user: "${value.label}"`)
52
+ alert(`You removed the user: "${value.label}"`)
53
53
  }
54
54
 
55
55
  return (
@@ -56,7 +56,7 @@ const TypeaheadWithPillsAsyncUsers = (props) => {
56
56
  * @summary - for doc example purposes only
57
57
  */
58
58
  const handleOnMultiValueClick = (value) => {
59
- alert(`You added the user: "${value.label}"`)
59
+ alert(`You removed the user: "${value.label}"`)
60
60
  }
61
61
 
62
62
  return (
@@ -17,7 +17,6 @@ examples:
17
17
 
18
18
  react:
19
19
  - typeahead_default: Default
20
- - typeahead_react_hook: React Hook
21
20
  - typeahead_with_highlight: With Highlight
22
21
  - typeahead_with_pills: With Pills
23
22
  - typeahead_with_pills_async: With Pills (Async Data)
@@ -13,4 +13,3 @@ export { default as TypeaheadCustomMenuList } from './_typeahead_custom_menu_lis
13
13
  export { default as TypeaheadMarginBottom } from './_typeahead_margin_bottom.jsx'
14
14
  export { default as TypeaheadWithPillsColor } from './_typeahead_with_pills_color.jsx'
15
15
  export { default as TypeaheadTruncatedText } from './_typeahead_truncated_text.jsx'
16
- export { default as TypeaheadReactHook } from './_typeahead_react_hook.jsx'