playbook_ui 14.9.0.pre.alpha.play1703errorstatealignment4991 → 14.9.0.pre.alpha.play1703errorstatealignment5060
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_advanced_table/Components/CollapsibleTrail.tsx +1 -6
- data/app/pb_kits/playbook/pb_advanced_table/_advanced_table.scss +8 -0
- data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_collapsible_trail_rails.html.erb +36 -0
- data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_collapsible_trail_rails.md +1 -0
- data/app/pb_kits/playbook/pb_advanced_table/docs/example.yml +1 -0
- data/app/pb_kits/playbook/pb_advanced_table/table_body.rb +4 -2
- data/app/pb_kits/playbook/pb_advanced_table/table_row.html.erb +8 -0
- data/app/pb_kits/playbook/pb_advanced_table/table_row.rb +2 -0
- data/app/pb_kits/playbook/pb_advanced_table/table_subrow_header.html.erb +8 -0
- data/app/pb_kits/playbook/pb_advanced_table/table_subrow_header.rb +2 -0
- data/app/pb_kits/playbook/pb_drawer/_drawer.tsx +2 -2
- data/app/pb_kits/playbook/pb_form_group/_error_state_mixin.scss +11 -3
- data/app/pb_kits/playbook/pb_form_group/_form_group.scss +0 -37
- data/app/pb_kits/playbook/pb_home_address_street/_home_address_street.tsx +17 -1
- data/app/pb_kits/playbook/pb_home_address_street/docs/_home_address_street_emphasis.html.erb +17 -1
- data/app/pb_kits/playbook/pb_home_address_street/docs/_home_address_street_emphasis.jsx +15 -0
- data/app/pb_kits/playbook/pb_home_address_street/docs/_home_address_street_emphasis.md +2 -1
- data/app/pb_kits/playbook/pb_home_address_street/home_address_street.rb +15 -1
- data/app/pb_kits/playbook/pb_home_address_street/none_emphasis.html.erb +32 -0
- data/app/pb_kits/playbook/pb_home_address_street/none_emphasis.rb +29 -0
- data/app/pb_kits/playbook/pb_layout/_layout.tsx +30 -11
- data/app/pb_kits/playbook/pb_skeleton_loading/docs/_skeleton_loading_filter.jsx +166 -0
- data/app/pb_kits/playbook/pb_skeleton_loading/docs/_skeleton_loading_height_width.jsx +2 -0
- data/app/pb_kits/playbook/pb_skeleton_loading/docs/_skeleton_loading_user.jsx +89 -0
- data/app/pb_kits/playbook/pb_skeleton_loading/docs/example.yml +2 -1
- data/app/pb_kits/playbook/pb_skeleton_loading/docs/index.js +2 -0
- data/app/pb_kits/playbook/pb_typeahead/_typeahead.scss +115 -46
- data/app/pb_kits/playbook/pb_typeahead/docs/_typeahead_with_highlight.jsx +9 -2
- data/app/pb_kits/playbook/pb_typeahead/typeahead.html.erb +3 -2
- data/dist/chunks/_weekday_stacked-DkCMUF58.js +45 -0
- data/dist/chunks/vendor.js +1 -1
- data/dist/playbook-doc.js +1 -1
- data/dist/playbook.css +1 -1
- data/lib/playbook/version.rb +1 -1
- metadata +9 -3
- data/dist/chunks/_weekday_stacked-B28kYXl9.js +0 -45
@@ -0,0 +1,166 @@
|
|
1
|
+
import React from 'react';
|
2
|
+
import { Button, Card, Filter, Flex, Select, SkeletonLoading, TextInput } from "playbook-ui";
|
3
|
+
|
4
|
+
const SortingChangeCallback = (sortOptions) => {
|
5
|
+
alert(JSON.stringify(sortOptions[0]))
|
6
|
+
}
|
7
|
+
|
8
|
+
const SkeletonLoadingFilter = (props) => {
|
9
|
+
const isLoading = true
|
10
|
+
|
11
|
+
const options = [
|
12
|
+
{ value: 'USA' },
|
13
|
+
{ value: 'Canada' },
|
14
|
+
{ value: 'Brazil' },
|
15
|
+
{ value: 'Philippines' },
|
16
|
+
{ value: 'A galaxy far far away, like really far away...' },
|
17
|
+
]
|
18
|
+
|
19
|
+
return (
|
20
|
+
<div>
|
21
|
+
<div>
|
22
|
+
{isLoading ? (
|
23
|
+
<Card
|
24
|
+
marginBottom="lg"
|
25
|
+
{...props}
|
26
|
+
>
|
27
|
+
<Flex
|
28
|
+
alignItems="center"
|
29
|
+
justify="between"
|
30
|
+
orientation="row"
|
31
|
+
>
|
32
|
+
<Flex
|
33
|
+
alignItems="center"
|
34
|
+
justify="start"
|
35
|
+
orientation="row"
|
36
|
+
>
|
37
|
+
<SkeletonLoading
|
38
|
+
borderRadius="rounded"
|
39
|
+
height="40px"
|
40
|
+
marginRight="sm"
|
41
|
+
width="40px"
|
42
|
+
{...props}
|
43
|
+
/>
|
44
|
+
<SkeletonLoading
|
45
|
+
height="16px"
|
46
|
+
marginRight="md"
|
47
|
+
width="80px"
|
48
|
+
{...props}
|
49
|
+
/>
|
50
|
+
</Flex>
|
51
|
+
<Flex
|
52
|
+
alignItems="center"
|
53
|
+
justify="end"
|
54
|
+
orientation="row"
|
55
|
+
>
|
56
|
+
<SkeletonLoading
|
57
|
+
height="18px"
|
58
|
+
width="120px"
|
59
|
+
{...props}
|
60
|
+
/>
|
61
|
+
</Flex>
|
62
|
+
</Flex>
|
63
|
+
</Card>
|
64
|
+
) : (
|
65
|
+
<Filter
|
66
|
+
filters={{ 'Full Name': 'John Wick' }}
|
67
|
+
marginBottom="lg"
|
68
|
+
minWidth="375px"
|
69
|
+
results={546}
|
70
|
+
sortOptions={{
|
71
|
+
popularity: 'Popularity',
|
72
|
+
// eslint-disable-next-line
|
73
|
+
manager_title: 'Manager\'s Title',
|
74
|
+
// eslint-disable-next-line
|
75
|
+
manager_name: 'Manager\'s Name',
|
76
|
+
}}
|
77
|
+
sortValue={[{ name: 'popularity', dir: 'desc' }]}
|
78
|
+
>
|
79
|
+
{({ closePopover }) => (
|
80
|
+
<form>
|
81
|
+
<TextInput
|
82
|
+
label="Example Text Field"
|
83
|
+
placeholder="Enter Text"
|
84
|
+
/>
|
85
|
+
<Select
|
86
|
+
blankSelection="Select One..."
|
87
|
+
label="Example Collection Select"
|
88
|
+
name="Collection Select"
|
89
|
+
options={options}
|
90
|
+
/>
|
91
|
+
<Flex spacing="between">
|
92
|
+
<Button
|
93
|
+
onClick={closePopover}
|
94
|
+
text="Filter"
|
95
|
+
/>
|
96
|
+
<Button
|
97
|
+
text="Defaults"
|
98
|
+
variant="secondary"
|
99
|
+
/>
|
100
|
+
</Flex>
|
101
|
+
</form>
|
102
|
+
)}
|
103
|
+
</Filter>
|
104
|
+
)}
|
105
|
+
</div>
|
106
|
+
<div>
|
107
|
+
{isLoading ? (
|
108
|
+
<SkeletonLoading
|
109
|
+
height="127px"
|
110
|
+
marginBottom="lg"
|
111
|
+
width="100%"
|
112
|
+
{...props}
|
113
|
+
/>
|
114
|
+
) : (
|
115
|
+
<Filter
|
116
|
+
double
|
117
|
+
filters={{
|
118
|
+
'Full Name': 'John Wick',
|
119
|
+
'City': 'San Francisco',
|
120
|
+
}}
|
121
|
+
marginBottom="xl"
|
122
|
+
minWidth="375px"
|
123
|
+
onSortChange={SortingChangeCallback}
|
124
|
+
results={1}
|
125
|
+
sortOptions={{
|
126
|
+
popularity: 'Popularity',
|
127
|
+
// eslint-disable-next-line
|
128
|
+
manager_title: 'Manager\'s Title',
|
129
|
+
// eslint-disable-next-line
|
130
|
+
manager_name: 'Manager\'s Name',
|
131
|
+
}}
|
132
|
+
sortValue={[{ name: 'popularity', dir: 'desc' }]}
|
133
|
+
>
|
134
|
+
{({ closePopover }) => (
|
135
|
+
<form>
|
136
|
+
<TextInput
|
137
|
+
label="Full Name"
|
138
|
+
placeholder="Enter name"
|
139
|
+
/>
|
140
|
+
<Select
|
141
|
+
blankSelection="Select One..."
|
142
|
+
label="Territory"
|
143
|
+
maxWidth="sm"
|
144
|
+
name="location"
|
145
|
+
options={options}
|
146
|
+
/>
|
147
|
+
<Flex spacing="between">
|
148
|
+
<Button
|
149
|
+
onClick={closePopover}
|
150
|
+
text="Filter"
|
151
|
+
/>
|
152
|
+
<Button
|
153
|
+
text="Defaults"
|
154
|
+
variant="secondary"
|
155
|
+
/>
|
156
|
+
</Flex>
|
157
|
+
</form>
|
158
|
+
)}
|
159
|
+
</Filter>
|
160
|
+
)}
|
161
|
+
</div>
|
162
|
+
</div>
|
163
|
+
)
|
164
|
+
}
|
165
|
+
|
166
|
+
export default SkeletonLoadingFilter;
|
@@ -20,6 +20,7 @@ const SkeletonLoadingHeightWidth = (props) => (
|
|
20
20
|
<Card htmlOptions={{ style: { height: '200px', width: '100%' }}}
|
21
21
|
marginBottom="md"
|
22
22
|
padding="none"
|
23
|
+
{...props}
|
23
24
|
>
|
24
25
|
<SkeletonLoading
|
25
26
|
borderRadius="md"
|
@@ -31,6 +32,7 @@ const SkeletonLoadingHeightWidth = (props) => (
|
|
31
32
|
</Card>
|
32
33
|
<Card htmlOptions={{ style: { height: '200px', width: '100%' }}}
|
33
34
|
padding="none"
|
35
|
+
{...props}
|
34
36
|
>
|
35
37
|
<SkeletonLoading
|
36
38
|
borderRadius="md"
|
@@ -0,0 +1,89 @@
|
|
1
|
+
import React from 'react';
|
2
|
+
import { Flex, SkeletonLoading, User } from "playbook-ui";
|
3
|
+
|
4
|
+
const SkeletonLoadingUser = (props) => {
|
5
|
+
const isLoading = true
|
6
|
+
|
7
|
+
return (
|
8
|
+
<div>
|
9
|
+
<div>
|
10
|
+
{isLoading ? (
|
11
|
+
<Flex alignItems="center">
|
12
|
+
<SkeletonLoading
|
13
|
+
borderRadius="rounded"
|
14
|
+
height="38px"
|
15
|
+
paddingRight="sm"
|
16
|
+
width="38px"
|
17
|
+
{...props}
|
18
|
+
/>
|
19
|
+
<SkeletonLoading
|
20
|
+
gap="xxs"
|
21
|
+
height="18px"
|
22
|
+
stack="2"
|
23
|
+
width="161px"
|
24
|
+
{...props}
|
25
|
+
/>
|
26
|
+
</Flex>
|
27
|
+
) : (
|
28
|
+
<User
|
29
|
+
align="left"
|
30
|
+
avatarUrl="https://randomuser.me/api/portraits/women/44.jpg"
|
31
|
+
name="Anna Black"
|
32
|
+
orientation="horizontal"
|
33
|
+
title="Remodeling Consultant"
|
34
|
+
{...props}
|
35
|
+
/>
|
36
|
+
)}
|
37
|
+
</div>
|
38
|
+
<div>
|
39
|
+
{isLoading ? (
|
40
|
+
<Flex
|
41
|
+
alignItems="start"
|
42
|
+
paddingTop="md"
|
43
|
+
>
|
44
|
+
<Flex
|
45
|
+
alignItems="center"
|
46
|
+
flexDirection="column"
|
47
|
+
>
|
48
|
+
<SkeletonLoading
|
49
|
+
borderRadius="rounded"
|
50
|
+
height="80px"
|
51
|
+
paddingBottom="xs"
|
52
|
+
width="80px"
|
53
|
+
{...props}
|
54
|
+
/>
|
55
|
+
<SkeletonLoading
|
56
|
+
height="32px"
|
57
|
+
paddingBottom="xxs"
|
58
|
+
width="144px"
|
59
|
+
{...props}
|
60
|
+
/>
|
61
|
+
<SkeletonLoading
|
62
|
+
height="21px"
|
63
|
+
width="164px"
|
64
|
+
{...props}
|
65
|
+
/>
|
66
|
+
</Flex>
|
67
|
+
</Flex>
|
68
|
+
) : (
|
69
|
+
<Flex
|
70
|
+
alignItems="start"
|
71
|
+
paddingTop="md"
|
72
|
+
>
|
73
|
+
<User
|
74
|
+
align="center"
|
75
|
+
avatarUrl="https://randomuser.me/api/portraits/women/44.jpg"
|
76
|
+
name="Anna Black"
|
77
|
+
orientation="vertical"
|
78
|
+
size="lg"
|
79
|
+
title="Remodeling Consultant"
|
80
|
+
{...props}
|
81
|
+
/>
|
82
|
+
</Flex>
|
83
|
+
)}
|
84
|
+
</div>
|
85
|
+
</div>
|
86
|
+
)
|
87
|
+
}
|
88
|
+
|
89
|
+
export default SkeletonLoadingUser;
|
@@ -3,3 +3,5 @@ export { default as SkeletonLoadingColor } from './_skeleton_loading_color.jsx'
|
|
3
3
|
export { default as SkeletonLoadingLayout } from './_skeleton_loading_layout.jsx'
|
4
4
|
export { default as SkeletonLoadingBorderRadius } from './_skeleton_loading_border_radius.jsx'
|
5
5
|
export { default as SkeletonLoadingHeightWidth } from './_skeleton_loading_height_width.jsx'
|
6
|
+
export { default as SkeletonLoadingUser } from './_skeleton_loading_user.jsx'
|
7
|
+
export { default as SkeletonLoadingFilter } from './_skeleton_loading_filter.jsx'
|
@@ -90,50 +90,7 @@
|
|
90
90
|
}
|
91
91
|
}
|
92
92
|
}
|
93
|
-
|
94
|
-
.pb_typeahead_wrapper .pb_typeahead_loading_indicator {
|
95
|
-
color: $text_dk_light;
|
96
|
-
}
|
97
|
-
[class^=pb_text_input_kit].dark .text_input_wrapper .text_input {
|
98
|
-
display: inherit !important;
|
99
|
-
}
|
100
|
-
.typeahead-kit-select__menu {
|
101
|
-
background-color: $bg_dark;
|
102
|
-
color: $white;
|
103
|
-
z-index: $z_1;
|
104
|
-
}
|
105
|
-
.typeahead-kit-select__option:hover {
|
106
|
-
background-color: $active_dark;
|
107
|
-
}
|
108
|
-
.typeahead-kit-select__indicator:hover {
|
109
|
-
color: $white;
|
110
|
-
}
|
111
|
-
.typeahead-kit-select__input {
|
112
|
-
color: white;
|
113
|
-
input:focus {
|
114
|
-
box-shadow: none;
|
115
|
-
}
|
116
|
-
}
|
117
|
-
.typeahead-kit-select__single-value {
|
118
|
-
color: white;
|
119
|
-
}
|
120
|
-
.typeahead-kit-select__option--is-focused {
|
121
|
-
background-color: $active_dark;
|
122
|
-
}
|
123
|
-
[class^=pb_list_kit] {
|
124
|
-
background-color: $bg_dark;
|
125
|
-
}
|
126
|
-
.pb_item_kit {
|
127
|
-
button {
|
128
|
-
color: white !important;
|
129
|
-
}
|
130
|
-
@media (hover:hover) {
|
131
|
-
&:hover {
|
132
|
-
background-color: rgba($white,.1);
|
133
|
-
}
|
134
|
-
}
|
135
|
-
}
|
136
|
-
}
|
93
|
+
|
137
94
|
&.react-select, &.react-select .dark {
|
138
95
|
.text_input {
|
139
96
|
display: inherit;
|
@@ -182,7 +139,7 @@
|
|
182
139
|
}
|
183
140
|
}
|
184
141
|
}
|
185
|
-
|
142
|
+
|
186
143
|
.typeahead-kit-select__menu {
|
187
144
|
z-index: $z_1;
|
188
145
|
.typeahead-kit-select__menu-list {
|
@@ -215,5 +172,117 @@
|
|
215
172
|
}
|
216
173
|
}
|
217
174
|
}
|
218
|
-
}
|
219
175
|
|
176
|
+
&[class*=dark] {
|
177
|
+
.pb_typeahead_wrapper .pb_typeahead_loading_indicator {
|
178
|
+
color: $text_dk_light;
|
179
|
+
}
|
180
|
+
.pb_text_input_kit_label {
|
181
|
+
color: $text_dk_light;
|
182
|
+
}
|
183
|
+
[class^=pb_text_input_kit].dark .text_input_wrapper .text_input {
|
184
|
+
display: inherit !important;
|
185
|
+
}
|
186
|
+
.typeahead-kit-select__menu {
|
187
|
+
background-color: $bg_dark;
|
188
|
+
color: $white;
|
189
|
+
z-index: $z_1;
|
190
|
+
.typeahead-kit-select__menu-list {
|
191
|
+
padding: 0;
|
192
|
+
}
|
193
|
+
.typeahead-kit-select__single-value {
|
194
|
+
color: white;
|
195
|
+
}
|
196
|
+
|
197
|
+
.typeahead-kit-select__option {
|
198
|
+
&.typeahead-kit-select__option--is-focused {
|
199
|
+
background-color: $hover_dark;
|
200
|
+
}
|
201
|
+
&.typeahead-kit-select__option--is-selected {
|
202
|
+
background-color: $active_dark;
|
203
|
+
}
|
204
|
+
}
|
205
|
+
}
|
206
|
+
.text_input_wrapper{
|
207
|
+
color: text_dk_default;
|
208
|
+
}
|
209
|
+
.typeahead-kit-select__option:hover {
|
210
|
+
background-color: $active_dark;
|
211
|
+
}
|
212
|
+
.typeahead-kit-select__indicator {
|
213
|
+
color: $text_dk_default;
|
214
|
+
}
|
215
|
+
.typeahead-kit-select__indicator:hover {
|
216
|
+
color: $text_dk_lighter;
|
217
|
+
}
|
218
|
+
.typeahead-kit-select__input {
|
219
|
+
color: white;
|
220
|
+
input:focus {
|
221
|
+
box-shadow: none;
|
222
|
+
}
|
223
|
+
}
|
224
|
+
.typeahead-kit-select__option--is-focused {
|
225
|
+
background-color: $active_dark;
|
226
|
+
}
|
227
|
+
[class^=pb_list_kit] {
|
228
|
+
background-color: $bg_dark;
|
229
|
+
}
|
230
|
+
.pb_item_kit {
|
231
|
+
button {
|
232
|
+
color: white !important;
|
233
|
+
}
|
234
|
+
@media (hover:hover) {
|
235
|
+
&:hover {
|
236
|
+
background-color: $hover_dark;
|
237
|
+
}
|
238
|
+
}
|
239
|
+
}
|
240
|
+
|
241
|
+
.text_input {
|
242
|
+
.typeahead-kit-select__input-container{
|
243
|
+
color: $text_dk_default
|
244
|
+
}
|
245
|
+
.typeahead-kit-select {
|
246
|
+
&__single-value{
|
247
|
+
color: $text_dk_default;
|
248
|
+
}
|
249
|
+
}
|
250
|
+
&.typeahead-kit-select {
|
251
|
+
&__single-value{
|
252
|
+
color: $text_dk_default;
|
253
|
+
}
|
254
|
+
&__control {
|
255
|
+
&--is-focused {
|
256
|
+
@include pb_textarea_focus;
|
257
|
+
@include transition_default;
|
258
|
+
border-color: $active_dark;
|
259
|
+
background-color: rgba($focus_input_dark,$opacity_5);
|
260
|
+
box-shadow: none;
|
261
|
+
.typeahead-plus-icon {
|
262
|
+
display: none;
|
263
|
+
}
|
264
|
+
}
|
265
|
+
}
|
266
|
+
}
|
267
|
+
}
|
268
|
+
|
269
|
+
&.inline {
|
270
|
+
&:not(:hover) {
|
271
|
+
.text_input {
|
272
|
+
background-color: transparent;
|
273
|
+
border-color: transparent;
|
274
|
+
}
|
275
|
+
.typeahead-kit-select__indicator {
|
276
|
+
color: transparent;
|
277
|
+
}
|
278
|
+
}
|
279
|
+
|
280
|
+
&:hover {
|
281
|
+
.text_input {
|
282
|
+
background-color: $hover_dark;
|
283
|
+
}
|
284
|
+
}
|
285
|
+
}
|
286
|
+
|
287
|
+
}
|
288
|
+
}
|
@@ -55,11 +55,18 @@ const TypeaheadWithHighlight = (props) => {
|
|
55
55
|
marginRight="sm"
|
56
56
|
name={name}
|
57
57
|
size="sm"
|
58
|
+
{...props}
|
58
59
|
/>
|
59
60
|
</FlexItem>
|
60
61
|
<FlexItem>
|
61
|
-
<Title
|
62
|
-
|
62
|
+
<Title
|
63
|
+
size={4}
|
64
|
+
{...props}
|
65
|
+
>
|
66
|
+
<span dangerouslySetInnerHTML={{ __html: highlighted(name) }} /></Title>
|
67
|
+
<Body color="light"
|
68
|
+
{...props}
|
69
|
+
>
|
63
70
|
<span dangerouslySetInnerHTML={{ __html: highlighted(title) }} />{" • "}
|
64
71
|
{territory}
|
65
72
|
</Body>
|
@@ -25,8 +25,9 @@
|
|
25
25
|
validation: object.validation,
|
26
26
|
label: object.label,
|
27
27
|
id: object.input_options[:id],
|
28
|
+
dark: object.dark,
|
28
29
|
}) %>
|
29
|
-
<%= pb_rails("list", props: { ordered: false, borderless:
|
30
|
+
<%= pb_rails("list", props: { ordered: false, borderless: true, xpadding: true, role: "status", aria: { live: "polite" }, data: { pb_typeahead_kit_results: true } }) do %>
|
30
31
|
<% end %>
|
31
32
|
</div>
|
32
33
|
|
@@ -36,4 +37,4 @@
|
|
36
37
|
<% end %>
|
37
38
|
</template>
|
38
39
|
<% end %>
|
39
|
-
<% end %>
|
40
|
+
<% end %>
|