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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c1c1dc315246b8d0f6ecd18e1451a9fe87c615a2c5d6e8c95d83763b9771ae29
4
- data.tar.gz: 17f2e6c7e11f6081799402a818ec260b9c9b2414e06a6b2d2a596191e73adac9
3
+ metadata.gz: c5f60d67348c5aa9c015613c14412136a30374f0b8619be76482c0fe2c7a215d
4
+ data.tar.gz: 6e7183633d14f0554d7a923fa8e9e93e3e8845ad9d95a744fba9b1731c12c140
5
5
  SHA512:
6
- metadata.gz: f60fa4e5823d9cbae8febada4eacee697ebfdbc541a1e55c0ac0a22c294f886327e92bef30078b9b6f589d97d3577e2c9ebdb6e6f632b52035fd6837f04b1757
7
- data.tar.gz: a34f8a03cb1ae541e8f9611c0f27647dd1014825b19052d5b44e9163ac3952dea2727d5303e771ab50521191189319366331f7e153931d99acaa72b6c2e50f4d
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
@@ -0,0 +1,7 @@
1
+ examples:
2
+
3
+
4
+ react:
5
+ - empty_state_size: Size
6
+ - empty_state_orientation: Orientation
7
+ - empty_state_alignment: Alignment
@@ -0,0 +1,3 @@
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'
@@ -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'