playbook_ui_docs 14.15.0.pre.alpha.play1854reacthookmultilvlselect6572 → 14.15.0.pre.alpha.play1910emptystatekitreactbeta6579
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 +4 -4
- data/app/pb_kits/playbook/pb_empty_state/docs/_empty_state_alignment.jsx +38 -0
- data/app/pb_kits/playbook/pb_empty_state/docs/_empty_state_orientation.jsx +19 -0
- data/app/pb_kits/playbook/pb_empty_state/docs/_empty_state_size.jsx +35 -0
- data/app/pb_kits/playbook/pb_empty_state/docs/example.yml +7 -0
- data/app/pb_kits/playbook/pb_empty_state/docs/index.js +3 -0
- data/app/pb_kits/playbook/pb_multi_level_select/docs/example.yml +0 -1
- data/app/pb_kits/playbook/pb_multi_level_select/docs/index.js +0 -1
- data/dist/playbook-doc.js +1 -1
- metadata +6 -3
- data/app/pb_kits/playbook/pb_multi_level_select/docs/_multi_level_select_react_hook.jsx +0 -91
- data/app/pb_kits/playbook/pb_multi_level_select/docs/_multi_level_select_react_hook.md +0 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c5f60d67348c5aa9c015613c14412136a30374f0b8619be76482c0fe2c7a215d
|
4
|
+
data.tar.gz: 6e7183633d14f0554d7a923fa8e9e93e3e8845ad9d95a744fba9b1731c12c140
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6ccce5c4e2f100072882596cd667cbf089c9ce094cb601b53f9f298eb29ec3270d02bcca090d2b6d52c20e8f0935b01f8cabcb2d1b491551e87c3d9451ff31ef
|
7
|
+
data.tar.gz: 5f34df09d12600b5c7abb9c40c2fe1a991d6597f9cff8cfd8339308c2e7bd4c54bbf94328b8b4f98a1761c4bc11bb33fde9903e8d96f25370e0b1c9d026b1022
|
@@ -0,0 +1,38 @@
|
|
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
|
@@ -0,0 +1,19 @@
|
|
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
|
@@ -0,0 +1,35 @@
|
|
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
|
@@ -12,7 +12,6 @@ examples:
|
|
12
12
|
|
13
13
|
react:
|
14
14
|
- multi_level_select_default: Default
|
15
|
-
- multi_level_select_react_hook: React Hook
|
16
15
|
- multi_level_select_single: Single Select
|
17
16
|
- multi_level_select_single_children_only: Single Select w/ Hidden Radios
|
18
17
|
- multi_level_select_return_all_selected: Return All Selected
|
@@ -7,4 +7,3 @@ export { default as MultiLevelSelectColor } from './_multi_level_select_color.js
|
|
7
7
|
export { default as MultiLevelSelectWithChildren } from './_multi_level_select_with_children.jsx'
|
8
8
|
export { default as MultiLevelSelectWithChildrenWithRadios } from './_multi_level_select_with_children_with_radios.jsx'
|
9
9
|
export { default as MultiLevelSelectDisabled } from './_multi_level_select_disabled.jsx'
|
10
|
-
export { default as MultiLevelSelectReactHook } from './_multi_level_select_react_hook.jsx'
|