playbook_ui_docs 12.30.1.pre.alpha.hovertesting914 → 12.30.1.pre.alpha.play846responsivespacingglobalpropsneedsdefault924
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/pb_kits/playbook/pb_button/docs/example.yml +0 -1
- data/app/pb_kits/playbook/pb_button/docs/index.js +0 -1
- data/app/pb_kits/playbook/pb_collapsible/docs/_collapsible_default.jsx +1 -1
- data/app/pb_kits/playbook/pb_message/docs/_message_default.jsx +45 -33
- data/app/pb_kits/playbook/pb_message/docs/example.yml +0 -1
- data/app/pb_kits/playbook/pb_message/docs/index.js +0 -2
- data/dist/playbook-doc.js +61 -61
- metadata +2 -4
- data/app/pb_kits/playbook/pb_button/docs/_button_hover.jsx +0 -130
- data/app/pb_kits/playbook/pb_message/docs/_message_hover.jsx +0 -41
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9563fd33f156c98dd84f913cee23bbc986f5e02529dff220d324522be2783271
|
4
|
+
data.tar.gz: ac523f3ec087831f17271ec02958e3621d8bef7f32d2c36fafae6a55beb9745d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b340d90a69b359dcb398269d19978c986a67515244905072f420db805f15493b064772b97e6b5ca5ad50bc2a1a5b67396f40c0f653933691f7728638c9ee2c4f
|
7
|
+
data.tar.gz: 22914b97d57f4b986881b9ac8766805125ec69f38f8969e3f7d99e1d3eafc86257ae29ce19693214c9c09172bda6b0efcf968b435a3adc3275441774fdeb0057
|
@@ -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'
|
@@ -1,33 +1,43 @@
|
|
1
|
-
import React from
|
1
|
+
import React from 'react'
|
2
2
|
|
3
|
-
import Message from
|
4
|
-
import Image from
|
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=
|
11
|
-
avatarStatus=
|
12
|
-
avatarUrl=
|
13
|
-
|
14
|
-
|
15
|
-
|
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=
|
27
|
-
avatarUrl=
|
28
|
-
label=
|
29
|
-
message=
|
30
|
-
timestamp=
|
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=
|
39
|
-
label=
|
40
|
-
message=
|
41
|
-
timestamp=
|
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=
|
50
|
-
message=
|
51
|
-
timestamp=
|
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
|
59
|
-
|
68
|
+
<Message
|
69
|
+
label="Keith Craig"
|
70
|
+
timestamp="2 days ago"
|
60
71
|
{...props}
|
61
72
|
>
|
62
73
|
<Image
|
63
|
-
alt=
|
64
|
-
size=
|
65
|
-
url=
|
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=
|
74
|
-
message=
|
75
|
-
timestamp=
|
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=
|
80
|
-
size=
|
81
|
-
url=
|
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
|
}
|