playbook_ui_docs 12.30.1.pre.alpha.hovertesting914 → 12.30.1.pre.alpha.play846responsivespacingglobalpropsneedsdefault924

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: a2c84a0f873091b410667661f624c3442f12d15480ac3924edd26c5506fb94ee
4
- data.tar.gz: 65413a134f6f67b7457d0c0bd9f7aac74b2f6941f6a51982f602b540826dfb36
3
+ metadata.gz: 9563fd33f156c98dd84f913cee23bbc986f5e02529dff220d324522be2783271
4
+ data.tar.gz: ac523f3ec087831f17271ec02958e3621d8bef7f32d2c36fafae6a55beb9745d
5
5
  SHA512:
6
- metadata.gz: 40d33fed824218bbe468c471ebe203a98d58f5b3ab767c15b160733241901902180d9a1bff66e0bbf9766754604438f06657fe8a16dab106cb81712b2691f685
7
- data.tar.gz: 642057447b511fc6ab2fd0950c4f3bf204ea25770d15027dde879b9ab99c9b44a83263f4beb57d74dfbda518629b60438f57b320240def03c97b24f98e6f5cb8
6
+ metadata.gz: b340d90a69b359dcb398269d19978c986a67515244905072f420db805f15493b064772b97e6b5ca5ad50bc2a1a5b67396f40c0f653933691f7728638c9ee2c4f
7
+ data.tar.gz: 22914b97d57f4b986881b9ac8766805125ec69f38f8969e3f7d99e1d3eafc86257ae29ce19693214c9c09172bda6b0efcf968b435a3adc3275441774fdeb0057
@@ -21,4 +21,3 @@ examples:
21
21
  - button_options: Button Additional Options (onClick)
22
22
  - button_size: Button Size
23
23
  - button_form: Button Form Attribute
24
- - button_hover: Button Hover
@@ -8,4 +8,3 @@ export { default as ButtonAccessibility } from './_button_accessibility.jsx'
8
8
  export { default as ButtonOptions } from './_button_options.jsx'
9
9
  export { default as ButtonSize } from './_button_size.jsx'
10
10
  export { default as ButtonForm } from './_button_form.jsx'
11
- export { default as ButtonHover } from './_button_hover.jsx'
@@ -2,7 +2,7 @@ import React from 'react'
2
2
  import { Collapsible } from '../..'
3
3
 
4
4
  const CollapsibleDefault = () => (
5
- <Collapsible>
5
+ <Collapsible >
6
6
  <Collapsible.Main>
7
7
  <div>{'Main Section'}</div>
8
8
  </Collapsible.Main>
@@ -1,33 +1,43 @@
1
- import React from "react"
1
+ import React from 'react'
2
2
 
3
- import Message from "../_message"
4
- import Image from "../../pb_image/_image"
3
+ import Message from '../_message'
4
+ import Image from '../../pb_image/_image'
5
5
 
6
6
  const MessageDefault = (props) => {
7
7
  return (
8
8
  <div>
9
9
  <Message
10
- avatarName='Mike Bishop'
11
- avatarStatus='online'
12
- avatarUrl='https://randomuser.me/api/portraits/men/50.jpg'
13
- borderRadius='rounded'
14
- label='Anna Black'
15
- message='How can we assist you today?'
16
- timestamp='20 seconds ago'
10
+ avatarName="Mike Bishop"
11
+ avatarStatus="online"
12
+ avatarUrl="https://randomuser.me/api/portraits/men/50.jpg"
13
+ label="Anna Black"
14
+ message="How can we assist you today?"
15
+ timestamp="20 seconds ago"
17
16
  {...props}
18
17
  />
19
18
 
20
19
  <br />
21
20
  <br />
21
+
22
+ <Message
23
+ alignTimestamp="left"
24
+ avatarName="Wade Winningham"
25
+ avatarUrl="https://randomuser.me/api/portraits/men/14.jpg"
26
+ label="Patrick Welch"
27
+ message="We will escalate this issue to a Senior Support agent."
28
+ timestamp="9 minutes ago"
29
+ {...props}
30
+ />
31
+
22
32
  <br />
23
33
  <br />
24
34
 
25
35
  <Message
26
- avatarName='Becca Jacobs'
27
- avatarUrl='https://randomuser.me/api/portraits/women/50.jpg'
28
- label='Lucille Sanchez'
29
- message='Application for Kate Smith is waiting for your approval'
30
- timestamp='2 days ago'
36
+ avatarName="Becca Jacobs"
37
+ avatarUrl="https://randomuser.me/api/portraits/women/50.jpg"
38
+ label="Lucille Sanchez"
39
+ message="Application for Kate Smith is waiting for your approval"
40
+ timestamp="2 days ago"
31
41
  {...props}
32
42
  />
33
43
 
@@ -35,10 +45,10 @@ const MessageDefault = (props) => {
35
45
  <br />
36
46
 
37
47
  <Message
38
- avatarName='Timothy Wenhold'
39
- label='Beverly Reyes'
40
- message='We are so sorry you had a bad experience!'
41
- timestamp='2 days ago'
48
+ avatarName="Timothy Wenhold"
49
+ label="Beverly Reyes"
50
+ message="We are so sorry you had a bad experience!"
51
+ timestamp="2 days ago"
42
52
  {...props}
43
53
  />
44
54
 
@@ -46,23 +56,24 @@ const MessageDefault = (props) => {
46
56
  <br />
47
57
 
48
58
  <Message
49
- label='Keith Craig'
50
- message='Please hold for one moment, I will check with my manager.'
51
- timestamp='2 days ago'
59
+ label="Keith Craig"
60
+ message="Please hold for one moment, I will check with my manager."
61
+ timestamp="2 days ago"
52
62
  {...props}
53
63
  />
54
64
 
55
65
  <br />
56
66
  <br />
57
67
 
58
- <Message label='Keith Craig'
59
- timestamp='2 days ago'
68
+ <Message
69
+ label="Keith Craig"
70
+ timestamp="2 days ago"
60
71
  {...props}
61
72
  >
62
73
  <Image
63
- alt='picture of a misty forest'
64
- size='md'
65
- url='https://unsplash.it/500/400/?image=634'
74
+ alt="picture of a misty forest"
75
+ size="md"
76
+ url="https://unsplash.it/500/400/?image=634"
66
77
  />
67
78
  </Message>
68
79
 
@@ -70,17 +81,18 @@ const MessageDefault = (props) => {
70
81
  <br />
71
82
 
72
83
  <Message
73
- label='Keith Craig'
74
- message='Please hold for one moment, I will check with my manager.'
75
- timestamp='2 days ago'
84
+ label="Keith Craig"
85
+ message="Please hold for one moment, I will check with my manager."
86
+ timestamp="2 days ago"
76
87
  {...props}
77
88
  >
78
89
  <Image
79
- alt='picture of a misty forest'
80
- size='md'
81
- url='https://unsplash.it/500/400/?image=634'
90
+ alt="picture of a misty forest"
91
+ size="md"
92
+ url="https://unsplash.it/500/400/?image=634"
82
93
  />
83
94
  </Message>
95
+
84
96
  </div>
85
97
  )
86
98
  }
@@ -8,5 +8,4 @@ examples:
8
8
  react:
9
9
  - message_default: Default
10
10
  - message_timestamp: With Timestamp Hover
11
- - message_hover: Hover
12
11
 
@@ -1,4 +1,2 @@
1
1
  export { default as MessageDefault } from './_message_default.jsx'
2
2
  export { default as MessageTimestamp } from './_message_timestamp.jsx'
3
- export { default as MessageHover } from './_message_hover.jsx'
4
-