playbook_ui_docs 14.15.0.pre.alpha.play1910emptystatekitreactbeta6579 → 14.15.0.pre.alpha.play1917lodashremoval2of36613

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.
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: playbook_ui_docs
3
3
  version: !ruby/object:Gem::Version
4
- version: 14.15.0.pre.alpha.play1910emptystatekitreactbeta6579
4
+ version: 14.15.0.pre.alpha.play1917lodashremoval2of36613
5
5
  platform: ruby
6
6
  authors:
7
7
  - Power UX
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2025-03-10 00:00:00.000000000 Z
12
+ date: 2025-03-11 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: playbook_ui
@@ -786,11 +786,6 @@ files:
786
786
  - app/pb_kits/playbook/pb_dropdown/docs/_dropdown_with_label.md
787
787
  - app/pb_kits/playbook/pb_dropdown/docs/example.yml
788
788
  - app/pb_kits/playbook/pb_dropdown/docs/index.js
789
- - app/pb_kits/playbook/pb_empty_state/docs/_empty_state_alignment.jsx
790
- - app/pb_kits/playbook/pb_empty_state/docs/_empty_state_orientation.jsx
791
- - app/pb_kits/playbook/pb_empty_state/docs/_empty_state_size.jsx
792
- - app/pb_kits/playbook/pb_empty_state/docs/example.yml
793
- - app/pb_kits/playbook/pb_empty_state/docs/index.js
794
789
  - app/pb_kits/playbook/pb_file_upload/docs/_description.md
795
790
  - app/pb_kits/playbook/pb_file_upload/docs/_file_upload_accept.jsx
796
791
  - app/pb_kits/playbook/pb_file_upload/docs/_file_upload_custom.html.erb
@@ -2096,9 +2091,9 @@ files:
2096
2091
  - app/pb_kits/playbook/pb_tooltip/docs/_tooltip_delay.md
2097
2092
  - app/pb_kits/playbook/pb_tooltip/docs/_tooltip_delay_rails.html.erb
2098
2093
  - app/pb_kits/playbook/pb_tooltip/docs/_tooltip_delay_rails.md
2099
- - app/pb_kits/playbook/pb_tooltip/docs/_tooltip_icon.erb
2100
2094
  - app/pb_kits/playbook/pb_tooltip/docs/_tooltip_icon.jsx
2101
2095
  - app/pb_kits/playbook/pb_tooltip/docs/_tooltip_icon.md
2096
+ - app/pb_kits/playbook/pb_tooltip/docs/_tooltip_icon_rails.html.erb
2102
2097
  - app/pb_kits/playbook/pb_tooltip/docs/_tooltip_interaction.html.erb
2103
2098
  - app/pb_kits/playbook/pb_tooltip/docs/_tooltip_interaction.jsx
2104
2099
  - app/pb_kits/playbook/pb_tooltip/docs/_tooltip_interaction.md
@@ -2153,6 +2148,8 @@ files:
2153
2148
  - app/pb_kits/playbook/pb_typeahead/docs/_typeahead_margin_bottom.jsx
2154
2149
  - app/pb_kits/playbook/pb_typeahead/docs/_typeahead_multi_kit.html.erb
2155
2150
  - app/pb_kits/playbook/pb_typeahead/docs/_typeahead_multi_kit.jsx
2151
+ - app/pb_kits/playbook/pb_typeahead/docs/_typeahead_react_hook.jsx
2152
+ - app/pb_kits/playbook/pb_typeahead/docs/_typeahead_react_hook.md
2156
2153
  - app/pb_kits/playbook/pb_typeahead/docs/_typeahead_truncated_text.html.erb
2157
2154
  - app/pb_kits/playbook/pb_typeahead/docs/_typeahead_truncated_text.jsx
2158
2155
  - app/pb_kits/playbook/pb_typeahead/docs/_typeahead_truncated_text.md
@@ -1,38 +0,0 @@
1
- import React from 'react'
2
- import { EmptyState, Flex } from 'playbook-ui'
3
-
4
- const EmptyStateAlignment = (props) => (
5
- <Flex align="center"
6
- spacing="evenly"
7
- >
8
- <EmptyState
9
- {...props}
10
- alignment="left"
11
- description="Body text goes into detail with possible steps for user to take"
12
- header="Title Explains"
13
- image="https://component.gallery/static/8d36eaa25b6dcb026685101ebc379022/Empty%20state%20icon..svg"
14
- primaryButton="Next Action"
15
- size="md"
16
- />
17
- <EmptyState
18
- {...props}
19
- alignment="center"
20
- description="Body text goes into detail with possible steps for user to take"
21
- header="Title Explains"
22
- image="https://component.gallery/static/8d36eaa25b6dcb026685101ebc379022/Empty%20state%20icon..svg"
23
- primaryButton="Next Action"
24
- size="md"
25
- />
26
- <EmptyState
27
- {...props}
28
- alignment="right"
29
- description="Body text goes into detail with possible steps for user to take"
30
- header="Title Explains"
31
- image="https://component.gallery/static/8d36eaa25b6dcb026685101ebc379022/Empty%20state%20icon..svg"
32
- primaryButton="Next Action"
33
- size="md"
34
- />
35
- </Flex>
36
- )
37
-
38
- export default EmptyStateAlignment
@@ -1,19 +0,0 @@
1
- import React from 'react'
2
- import { EmptyState, Flex } from 'playbook-ui'
3
-
4
- const EmptyStateOrientation = (props) => (
5
- <Flex align="center">
6
- <EmptyState
7
- {...props}
8
- alignment="left"
9
- description="Body text goes into detail with possible steps for user to take"
10
- header="Title Explains"
11
- image="https://component.gallery/static/8d36eaa25b6dcb026685101ebc379022/Empty%20state%20icon..svg"
12
- orientation="horizontal"
13
- primaryButton="Next Action"
14
- size="lg"
15
- />
16
- </Flex>
17
- )
18
-
19
- export default EmptyStateOrientation
@@ -1,35 +0,0 @@
1
- import React from 'react'
2
- import { EmptyState, Flex } from 'playbook-ui'
3
-
4
- const EmptyStateSize = (props) => (
5
- <Flex align="center"
6
- spacing="evenly"
7
- >
8
- <EmptyState
9
- {...props}
10
- alignment="center"
11
- description="Body text goes into detail with possible steps for user to take"
12
- header="Title Explains"
13
- image="https://component.gallery/static/8d36eaa25b6dcb026685101ebc379022/Empty%20state%20icon..svg"
14
- linkButton="Alt Action"
15
- onLinkButtonClick={() => alert("link button clicked!")}
16
- onPrimaryButtonClick={() => alert("primary button clicked!")}
17
- primaryButton="Next Action"
18
- size="sm"
19
- />
20
- <EmptyState
21
- {...props}
22
- alignment="center"
23
- description="Body text goes into detail with possible steps for user to take"
24
- header="Title Explains"
25
- image="https://component.gallery/static/8d36eaa25b6dcb026685101ebc379022/Empty%20state%20icon..svg"
26
- linkButton="Alt Action"
27
- onLinkButtonClick={() => alert("link button clicked!")}
28
- onPrimaryButtonClick={() => alert("primary button clicked!")}
29
- primaryButton="Next Action"
30
- size="lg"
31
- />
32
- </Flex>
33
- )
34
-
35
- export default EmptyStateSize
@@ -1,7 +0,0 @@
1
- examples:
2
-
3
-
4
- react:
5
- - empty_state_size: Size
6
- - empty_state_orientation: Orientation
7
- - empty_state_alignment: Alignment
@@ -1,3 +0,0 @@
1
- export { default as EmptyStateOrientation } from './_empty_state_orientation.jsx'
2
- export { default as EmptyStateSize } from './_empty_state_size.jsx'
3
- export { default as EmptyStateAlignment } from './_empty_state_alignment.jsx'
@@ -1,10 +0,0 @@
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 %>