playbook_ui_docs 13.13.0.pre.alpha.play10821727 → 13.13.0

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.
Files changed (25) hide show
  1. checksums.yaml +4 -4
  2. data/app/pb_kits/playbook/pb_card/docs/_card_background.jsx +4 -5
  3. data/app/pb_kits/playbook/pb_contact/docs/example.yml +0 -6
  4. data/app/pb_kits/playbook/pb_date/docs/example.yml +0 -7
  5. data/app/pb_kits/playbook/pb_dialog/docs/_dialog_full_height.jsx +4 -8
  6. data/app/pb_kits/playbook/pb_dialog/docs/_dialog_full_height_placement.jsx +4 -8
  7. data/app/pb_kits/playbook/pb_dialog/docs/_dialog_scrollable.jsx +2 -4
  8. data/app/pb_kits/playbook/pb_dialog/docs/_dialog_status.jsx +1 -1
  9. data/app/pb_kits/playbook/pb_home_address_street/docs/example.yml +0 -6
  10. data/dist/menu.yml +168 -240
  11. data/dist/playbook-doc.js +8 -8
  12. metadata +7 -20
  13. data/app/pb_kits/playbook/pb_contact/docs/_contact_default_swift.md +0 -14
  14. data/app/pb_kits/playbook/pb_contact/docs/_contact_props_swift.md +0 -6
  15. data/app/pb_kits/playbook/pb_contact/docs/_contact_with_detail_swift.md +0 -14
  16. data/app/pb_kits/playbook/pb_date/docs/_date_alignment_swift.md +0 -11
  17. data/app/pb_kits/playbook/pb_date/docs/_date_default_swift.md +0 -16
  18. data/app/pb_kits/playbook/pb_date/docs/_date_props_swift.md +0 -8
  19. data/app/pb_kits/playbook/pb_date/docs/_date_unstyled_swift.md +0 -11
  20. data/app/pb_kits/playbook/pb_date/docs/_date_variants_swift.md +0 -14
  21. data/app/pb_kits/playbook/pb_home_address_street/docs/_home_address_street_default_swift.md +0 -18
  22. data/app/pb_kits/playbook/pb_home_address_street/docs/_home_address_street_emphasis_swift.md +0 -34
  23. data/app/pb_kits/playbook/pb_home_address_street/docs/_home_address_street_link_swift.md +0 -18
  24. data/app/pb_kits/playbook/pb_home_address_street/docs/_home_address_street_modified_swift.md +0 -13
  25. data/app/pb_kits/playbook/pb_home_address_street/docs/_home_address_street_props_swift.md +0 -14
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 35c56e2a4b3b6299db72d06c655394f738ee06b8819686170e7b1003821dc7b5
4
- data.tar.gz: 685c6d4b6e6edcff3638e10a75299c4de46d2bbdecb23fba4ddb523b4b2bd8fc
3
+ metadata.gz: 702fdebdcca4d3a14112b52586af2414f817ec607f6d3bc31a60e51b406f171c
4
+ data.tar.gz: 90e2bb449e776072b8aa1ce110dfe2942a66abcadc85acec1331815b6db474f1
5
5
  SHA512:
6
- metadata.gz: 77597fa100e9b095f7a928d9c68bd41fbb60b00f093918f3377469aa810b56e51cabb94b43574f5cb2e0e52540a2564e95b8b57649a4227eb5465f1bb45ac91d
7
- data.tar.gz: da6c4be237f832a65ae6f14ee59c82cfb403e41d83595ed4ba135980ad03b6b7c8918c46e93f4b8c0efa4370c579d3b4040211c56c548f8acb43875995f22072
6
+ metadata.gz: 570e38df8dc097c25494aa485472f72d675d2b9159bb52fb044798023ee7e6ad1813ec9e10dc7ff40327a2a800294a117fa02ceefeee2a5a155474da8fa35b2e
7
+ data.tar.gz: 03b740ecfbebc0258904a7a7faa430bcde5d977567fa2f780d50871f41484fd6cdb2d2fe9233a8a683c1d39bf758fe0cfad3c965b9b655c937c784bda0576f99
@@ -57,7 +57,7 @@ const CardBackground = (props) => {
57
57
  background="product_1_background"
58
58
  marginBottom="sm"
59
59
  {...props}
60
- >
60
+ >
61
61
  <Body
62
62
  dark
63
63
  text="Product 1 Background"
@@ -69,12 +69,11 @@ const CardBackground = (props) => {
69
69
  <Card
70
70
  background="product_7_highlight"
71
71
  marginBottom="sm"
72
- {...props}
73
- >
72
+ {...props} >
74
73
  <Body
75
74
  dark
76
- text="Product 7 Highlight"
77
- />
75
+ text="Product 7 Highlight"
76
+ />
78
77
  </Card>
79
78
 
80
79
 
@@ -8,9 +8,3 @@ examples:
8
8
  react:
9
9
  - contact_default: Default
10
10
  - contact_with_detail: Detail Indicator
11
-
12
-
13
- swift:
14
- - contact_default_swift: Default
15
- - contact_with_detail_swift: Detail Indicator
16
- - contact_props_swift: ""
@@ -12,10 +12,3 @@ examples:
12
12
  - date_variants: Variants
13
13
  - date_alignment: Alignment
14
14
  - date_unstyled: Unstyled
15
-
16
- swift:
17
- - date_default_swift: Default
18
- - date_variants_swift: Variants
19
- - date_alignment_swift: Alignment
20
- - date_unstyled_swift: Unstyled
21
- - date_props_swift: ""
@@ -49,18 +49,15 @@ const DialogFullHeight = () => {
49
49
  <Flex wrap>
50
50
  <Button id="sm"
51
51
  marginRight="md"
52
- onClick={toggleHeaderSeparatorDialog}
53
- >
52
+ onClick={toggleHeaderSeparatorDialog}>
54
53
  {"Small Dialog"}
55
54
  </Button>
56
55
  <Button marginRight="md"
57
- onClick={toggleFooterSeparatorDialog}
58
- >
56
+ onClick={toggleFooterSeparatorDialog}>
59
57
  {"Medium Dialog"}
60
58
  </Button>
61
59
  <Button marginRight="md"
62
- onClick={toggleBothSeparatorsDialog}
63
- >
60
+ onClick={toggleBothSeparatorsDialog}>
64
61
  {"Large Dialog"}
65
62
  </Button>
66
63
  </Flex>
@@ -92,8 +89,7 @@ const DialogFullHeight = () => {
92
89
  <Dialog.Footer>
93
90
  <Button onClick={toggle}>{"Send My Issue"}</Button>
94
91
  <Button onClick={toggle}
95
- variant="link"
96
- >
92
+ variant="link">
97
93
  {"Back"}
98
94
  </Button>
99
95
  </Dialog.Footer>
@@ -48,18 +48,15 @@ const DialogFullHeightPlacement = () => {
48
48
  <Flex wrap>
49
49
  <Button id="sm"
50
50
  marginRight="md"
51
- onClick={toggleHeaderSeparatorDialog}
52
- >
51
+ onClick={toggleHeaderSeparatorDialog}>
53
52
  {"Left Dialog"}
54
53
  </Button>
55
54
  <Button marginRight="xl"
56
- onClick={toggleFooterSeparatorDialog}
57
- >
55
+ onClick={toggleFooterSeparatorDialog}>
58
56
  {"Center Dialog"}
59
57
  </Button>
60
58
  <Button marginRight="xl"
61
- onClick={toggleBothSeparatorsDialog}
62
- >
59
+ onClick={toggleBothSeparatorsDialog}>
63
60
  {"Right Dialog"}
64
61
  </Button>
65
62
  </Flex>
@@ -91,8 +88,7 @@ const DialogFullHeightPlacement = () => {
91
88
  <Dialog.Footer>
92
89
  <Button onClick={toggle}>{"Send My Issue"}</Button>
93
90
  <Button onClick={toggle}
94
- variant="link"
95
- >
91
+ variant="link">
96
92
  {"Back"}
97
93
  </Button>
98
94
  </Dialog.Footer>
@@ -16,12 +16,10 @@ const DialogScrollable = () => {
16
16
  return (
17
17
  <>
18
18
  <Button marginRight="md"
19
- onClick={toggleDialog1}
20
- >{'Open Dialog'}
19
+ onClick={toggleDialog1}>{'Open Dialog'}
21
20
  </Button>
22
21
  <Button marginRight="md"
23
- onClick={toggleDialog2}
24
- >{'Open Full Height Dialog'}
22
+ onClick={toggleDialog2}>{'Open Full Height Dialog'}
25
23
  </Button>
26
24
  <Dialog
27
25
  cancelButton="Cancel"
@@ -84,7 +84,7 @@ const DialogStatus = () => {
84
84
  <Flex
85
85
  rowGap="xs"
86
86
  wrap
87
- >
87
+ >
88
88
  <Button
89
89
  marginRight="md"
90
90
  onClick={toggleDefaultAlert}
@@ -12,9 +12,3 @@ examples:
12
12
  - home_address_street_modified: Modified
13
13
  - home_address_street_link: Link
14
14
 
15
- swift:
16
- - home_address_street_default_swift: Default
17
- - home_address_street_emphasis_swift: Emphasis
18
- - home_address_street_modified_swift: Modified
19
- - home_address_street_link_swift: Link
20
- - home_address_street_props_swift: ""