playbook_ui 14.7.0 → 14.8.0.pre.alpha.PLAY1615movenegativetoleftofcurrencysign4539
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_card/docs/_card_light.md +1 -1
- data/app/pb_kits/playbook/pb_currency/_currency.tsx +7 -3
- data/app/pb_kits/playbook/pb_currency/currency.html.erb +2 -2
- data/app/pb_kits/playbook/pb_currency/currency.rb +17 -1
- data/app/pb_kits/playbook/pb_date/_date.scss +3 -0
- data/app/pb_kits/playbook/pb_date_picker/date_picker_helper.ts +1 -1
- data/app/pb_kits/playbook/pb_date_picker/docs/_date_picker_quick_pick_default_date.html.erb +42 -0
- data/app/pb_kits/playbook/pb_date_picker/docs/_date_picker_quick_pick_default_date.jsx +44 -0
- data/app/pb_kits/playbook/pb_date_picker/docs/_date_picker_quick_pick_default_date.md +1 -0
- data/app/pb_kits/playbook/pb_date_picker/docs/example.yml +2 -0
- data/app/pb_kits/playbook/pb_date_picker/docs/index.js +1 -0
- data/app/pb_kits/playbook/pb_date_picker/plugins/quickPick.tsx +17 -1
- data/app/pb_kits/playbook/pb_draggable/docs/_draggable_default_rails.html.erb +26 -0
- data/app/pb_kits/playbook/pb_draggable/docs/_draggable_default_rails.md +7 -0
- data/app/pb_kits/playbook/pb_draggable/docs/_draggable_with_cards_rails.html.erb +38 -0
- data/app/pb_kits/playbook/pb_draggable/docs/_draggable_with_cards_rails.md +0 -0
- data/app/pb_kits/playbook/pb_draggable/docs/_draggable_with_list_rails.html.erb +19 -0
- data/app/pb_kits/playbook/pb_draggable/docs/example.yml +6 -0
- data/app/pb_kits/playbook/pb_draggable/draggable.html.erb +3 -0
- data/app/pb_kits/playbook/pb_draggable/draggable.rb +18 -0
- data/app/pb_kits/playbook/pb_draggable/draggable_container.html.erb +3 -0
- data/app/pb_kits/playbook/pb_draggable/draggable_container.rb +15 -0
- data/app/pb_kits/playbook/pb_draggable/draggable_item.html.erb +7 -0
- data/app/pb_kits/playbook/pb_draggable/draggable_item.rb +18 -0
- data/app/pb_kits/playbook/pb_draggable/index.js +125 -0
- data/app/pb_kits/playbook/pb_drawer/_drawer.scss +88 -175
- data/app/pb_kits/playbook/pb_drawer/_drawer.tsx +79 -47
- data/app/pb_kits/playbook/pb_drawer/drawer.test.jsx +20 -16
- data/app/pb_kits/playbook/pb_timeline/_timeline.scss +43 -1
- data/app/pb_kits/playbook/pb_timeline/_timeline.tsx +6 -2
- data/app/pb_kits/playbook/pb_timeline/docs/_timeline_with_gap.html.erb +94 -0
- data/app/pb_kits/playbook/pb_timeline/docs/_timeline_with_gap.jsx +180 -0
- data/app/pb_kits/playbook/pb_timeline/docs/_timeline_with_gap.md +1 -0
- data/app/pb_kits/playbook/pb_timeline/docs/example.yml +5 -3
- data/app/pb_kits/playbook/pb_timeline/docs/index.js +2 -0
- data/app/pb_kits/playbook/pb_timeline/timeline.rb +11 -1
- data/app/pb_kits/playbook/pb_timeline/timeline.test.js +4 -4
- data/app/pb_kits/playbook/utilities/_hover.scss +40 -27
- data/app/pb_kits/playbook/utilities/globalProps.ts +5 -3
- data/app/pb_kits/playbook/utilities/test/globalProps/hover.test.js +79 -0
- data/dist/chunks/_typeahead-D0PihN_3.js +22 -0
- data/dist/chunks/_weekday_stacked-CVx1CzK-.js +45 -0
- data/dist/chunks/lazysizes-B7xYodB-.js +1 -0
- data/dist/chunks/{lib-D-mTv-kp.js → lib-BC6ESsxG.js} +1 -1
- data/dist/chunks/{pb_form_validation-BkWGwJsl.js → pb_form_validation-B_Z9rEbg.js} +1 -1
- data/dist/chunks/vendor.js +1 -1
- data/dist/menu.yml +1 -1
- data/dist/playbook-doc.js +1 -1
- data/dist/playbook-rails-react-bindings.js +1 -1
- data/dist/playbook-rails.js +1 -1
- data/dist/playbook.css +1 -1
- data/lib/playbook/hover.rb +1 -1
- data/lib/playbook/version.rb +2 -2
- metadata +29 -10
- data/dist/chunks/_typeahead-DhLic2Fe.js +0 -22
- data/dist/chunks/_weekday_stacked-CHPFjl8J.js +0 -45
- data/dist/chunks/lazysizes-DHz07jlL.js +0 -1
@@ -8,6 +8,12 @@ $icon_margin: $space_xs/2;
|
|
8
8
|
$icon_height: 28px;
|
9
9
|
$height_from_top: $icon_height/2 - $connector_width/2;
|
10
10
|
|
11
|
+
// Add gap variables
|
12
|
+
$gap_xs: $height_from_top + $space_xs;
|
13
|
+
$gap_sm: $height_from_top + $space_sm;
|
14
|
+
$gap_md: $height_from_top + $space_md;
|
15
|
+
$gap_lg: $height_from_top + $space_lg;
|
16
|
+
|
11
17
|
@mixin pb_timeline_line_solid($width, $height, $margin) {
|
12
18
|
width: $width;
|
13
19
|
height: $height;
|
@@ -156,7 +162,7 @@ $height_from_top: $icon_height/2 - $connector_width/2;
|
|
156
162
|
}
|
157
163
|
}
|
158
164
|
}
|
159
|
-
}
|
165
|
+
}
|
160
166
|
}
|
161
167
|
}
|
162
168
|
&[class*=_vertical] {
|
@@ -266,5 +272,41 @@ $height_from_top: $icon_height/2 - $connector_width/2;
|
|
266
272
|
}
|
267
273
|
}
|
268
274
|
}
|
275
|
+
&[class*=_gap_xs] {
|
276
|
+
[class*=pb_timeline_item_kit] {
|
277
|
+
[class=pb_timeline_item_step] {
|
278
|
+
[class=pb_timeline_item_connector] {
|
279
|
+
height: $gap_xs !important;
|
280
|
+
}
|
281
|
+
}
|
282
|
+
}
|
283
|
+
}
|
284
|
+
&[class*=_gap_sm] {
|
285
|
+
[class*=pb_timeline_item_kit] {
|
286
|
+
[class=pb_timeline_item_step] {
|
287
|
+
[class=pb_timeline_item_connector] {
|
288
|
+
height: $gap_sm !important;
|
289
|
+
}
|
290
|
+
}
|
291
|
+
}
|
292
|
+
}
|
293
|
+
&[class*=_gap_md] {
|
294
|
+
[class*=pb_timeline_item_kit] {
|
295
|
+
[class=pb_timeline_item_step] {
|
296
|
+
[class=pb_timeline_item_connector] {
|
297
|
+
height: $gap_md !important;
|
298
|
+
}
|
299
|
+
}
|
300
|
+
}
|
301
|
+
}
|
302
|
+
&[class*=_gap_lg] {
|
303
|
+
[class*=pb_timeline_item_kit] {
|
304
|
+
[class=pb_timeline_item_step] {
|
305
|
+
[class=pb_timeline_item_connector] {
|
306
|
+
height: $gap_lg !important;
|
307
|
+
}
|
308
|
+
}
|
309
|
+
}
|
310
|
+
}
|
269
311
|
}
|
270
312
|
}
|
@@ -20,6 +20,7 @@ type TimelineProps = {
|
|
20
20
|
id?: string,
|
21
21
|
orientation?: string,
|
22
22
|
showDate?: boolean,
|
23
|
+
gap?: 'xs' | 'sm' | 'md' | 'lg' | 'none',
|
23
24
|
} & GlobalProps
|
24
25
|
|
25
26
|
const Timeline = ({
|
@@ -31,13 +32,16 @@ const Timeline = ({
|
|
31
32
|
id,
|
32
33
|
orientation = 'horizontal',
|
33
34
|
showDate = false,
|
35
|
+
gap = 'none',
|
34
36
|
...props
|
35
37
|
}: TimelineProps): React.ReactElement => {
|
36
38
|
const ariaProps = buildAriaProps(aria)
|
37
39
|
const dataProps = buildDataProps(data)
|
38
40
|
const htmlProps = buildHtmlProps(htmlOptions)
|
39
41
|
const dateStyle = showDate === true ? '_with_date' : ''
|
40
|
-
const
|
42
|
+
const gapStyle = gap === 'none' ? '' : `gap_${gap}`
|
43
|
+
const timelineCss = buildCss('pb_timeline_kit', `${orientation}`, dateStyle, gapStyle)
|
44
|
+
|
41
45
|
return (
|
42
46
|
<div
|
43
47
|
{...ariaProps}
|
@@ -56,4 +60,4 @@ Timeline.Step = TimelineStep
|
|
56
60
|
Timeline.Label = TimelineLabel
|
57
61
|
Timeline.Detail = TimelineDetail
|
58
62
|
|
59
|
-
export default Timeline
|
63
|
+
export default Timeline
|
@@ -0,0 +1,94 @@
|
|
1
|
+
<%= pb_rails("flex", props: { justify: "evenly" }) do %>
|
2
|
+
<%= pb_rails("flex/flex_item") do %>
|
3
|
+
<%= pb_rails("timeline", props: {orientation: "vertical", gap: "xs"}) do %>
|
4
|
+
<%= pb_rails("timeline/item", props: {icon: "user", icon_color: "royal"}) do %>
|
5
|
+
<%= pb_rails("body", props: {
|
6
|
+
text: "Conversation started",
|
7
|
+
color: "light"
|
8
|
+
}) %>
|
9
|
+
<% end %>
|
10
|
+
<%= pb_rails("timeline/item", props: {icon: "check", icon_color: "teal", line_style: "dotted"}) do %>
|
11
|
+
<%= pb_rails("body", props: {
|
12
|
+
text: "Trip #12422",
|
13
|
+
color: "light"
|
14
|
+
}) %>
|
15
|
+
<% end %>
|
16
|
+
<%= pb_rails("timeline/item", props: {icon: "credit-card", icon_color: "red"}) do %>
|
17
|
+
<%= pb_rails("body", props: {
|
18
|
+
text: "Refund issue #12422",
|
19
|
+
color: "light"
|
20
|
+
}) %>
|
21
|
+
<% end %>
|
22
|
+
<% end %>
|
23
|
+
<% end %>
|
24
|
+
|
25
|
+
<%= pb_rails("flex/flex_item") do %>
|
26
|
+
<%= pb_rails("timeline", props: {orientation: "vertical", gap: "sm"}) do %>
|
27
|
+
<%= pb_rails("timeline/item", props: {icon: "user", icon_color: "royal"}) do %>
|
28
|
+
<%= pb_rails("body", props: {
|
29
|
+
text: "Conversation started",
|
30
|
+
color: "light"
|
31
|
+
}) %>
|
32
|
+
<% end %>
|
33
|
+
<%= pb_rails("timeline/item", props: {icon: "check", icon_color: "teal", line_style: "dotted"}) do %>
|
34
|
+
<%= pb_rails("body", props: {
|
35
|
+
text: "Trip #12422",
|
36
|
+
color: "light"
|
37
|
+
}) %>
|
38
|
+
<% end %>
|
39
|
+
<%= pb_rails("timeline/item", props: {icon: "credit-card", icon_color: "red"}) do %>
|
40
|
+
<%= pb_rails("body", props: {
|
41
|
+
text: "Refund issue #12422",
|
42
|
+
color: "light"
|
43
|
+
}) %>
|
44
|
+
<% end %>
|
45
|
+
<% end %>
|
46
|
+
<% end %>
|
47
|
+
|
48
|
+
<%= pb_rails("flex/flex_item") do %>
|
49
|
+
<%= pb_rails("timeline", props: {orientation: "vertical", gap: "md"}) do %>
|
50
|
+
<%= pb_rails("timeline/item", props: {icon: "user", icon_color: "royal"}) do %>
|
51
|
+
<%= pb_rails("body", props: {
|
52
|
+
text: "Conversation started",
|
53
|
+
color: "light"
|
54
|
+
}) %>
|
55
|
+
<% end %>
|
56
|
+
<%= pb_rails("timeline/item", props: {icon: "check", icon_color: "teal", line_style: "dotted"}) do %>
|
57
|
+
<%= pb_rails("body", props: {
|
58
|
+
text: "Trip #12422",
|
59
|
+
color: "light"
|
60
|
+
}) %>
|
61
|
+
<% end %>
|
62
|
+
<%= pb_rails("timeline/item", props: {icon: "credit-card", icon_color: "red"}) do %>
|
63
|
+
<%= pb_rails("body", props: {
|
64
|
+
text: "Refund issue #12422",
|
65
|
+
color: "light"
|
66
|
+
}) %>
|
67
|
+
<% end %>
|
68
|
+
<% end %>
|
69
|
+
<% end %>
|
70
|
+
|
71
|
+
<%= pb_rails("flex/flex_item") do %>
|
72
|
+
<%= pb_rails("timeline", props: {orientation: "vertical", gap: "lg"}) do %>
|
73
|
+
<%= pb_rails("timeline/item", props: {icon: "user", icon_color: "royal"}) do %>
|
74
|
+
<%= pb_rails("body", props: {
|
75
|
+
text: "Conversation started",
|
76
|
+
color: "light"
|
77
|
+
}) %>
|
78
|
+
<% end %>
|
79
|
+
<%= pb_rails("timeline/item", props: {icon: "check", icon_color: "teal", line_style: "dotted"}) do %>
|
80
|
+
<%= pb_rails("body", props: {
|
81
|
+
text: "Trip #12422",
|
82
|
+
color: "light"
|
83
|
+
}) %>
|
84
|
+
<% end %>
|
85
|
+
<%= pb_rails("timeline/item", props: {icon: "credit-card", icon_color: "red"}) do %>
|
86
|
+
<%= pb_rails("body", props: {
|
87
|
+
text: "Refund issue #12422",
|
88
|
+
color: "light"
|
89
|
+
}) %>
|
90
|
+
<% end %>
|
91
|
+
<% end %>
|
92
|
+
<% end %>
|
93
|
+
<% end %>
|
94
|
+
|
@@ -0,0 +1,180 @@
|
|
1
|
+
import React from 'react'
|
2
|
+
|
3
|
+
import Timeline from '../_timeline'
|
4
|
+
import Flex from "../../pb_flex/_flex"
|
5
|
+
import FlexItem from "../../pb_flex/_flex_item"
|
6
|
+
import Body from '../../pb_body/_body'
|
7
|
+
|
8
|
+
const TimelineWithGap = (props) => (
|
9
|
+
<div>
|
10
|
+
<Flex justify="evenly">
|
11
|
+
<FlexItem>
|
12
|
+
<Timeline
|
13
|
+
gap="xs"
|
14
|
+
orientation="vertical"
|
15
|
+
>
|
16
|
+
<Timeline.Item
|
17
|
+
icon="user"
|
18
|
+
iconColor="royal"
|
19
|
+
{...props}
|
20
|
+
>
|
21
|
+
<Body
|
22
|
+
color="light"
|
23
|
+
text="Conversation started"
|
24
|
+
{...props}
|
25
|
+
/>
|
26
|
+
</Timeline.Item>
|
27
|
+
<Timeline.Item
|
28
|
+
icon="check"
|
29
|
+
iconColor="teal"
|
30
|
+
lineStyle="dotted"
|
31
|
+
{...props}
|
32
|
+
>
|
33
|
+
<Body
|
34
|
+
color="light"
|
35
|
+
text="Trip #12422"
|
36
|
+
{...props}
|
37
|
+
/>
|
38
|
+
</Timeline.Item>
|
39
|
+
<Timeline.Item
|
40
|
+
icon="credit-card"
|
41
|
+
iconColor="red"
|
42
|
+
{...props}
|
43
|
+
>
|
44
|
+
<Body
|
45
|
+
color="light"
|
46
|
+
text="Refund issue #12422"
|
47
|
+
{...props}
|
48
|
+
/>
|
49
|
+
</Timeline.Item>
|
50
|
+
</Timeline>
|
51
|
+
</FlexItem>
|
52
|
+
<FlexItem>
|
53
|
+
<Timeline
|
54
|
+
gap="sm"
|
55
|
+
orientation="vertical"
|
56
|
+
>
|
57
|
+
<Timeline.Item
|
58
|
+
icon="user"
|
59
|
+
iconColor="royal"
|
60
|
+
{...props}
|
61
|
+
>
|
62
|
+
<Body
|
63
|
+
color="light"
|
64
|
+
text="Conversation started"
|
65
|
+
{...props}
|
66
|
+
/>
|
67
|
+
</Timeline.Item>
|
68
|
+
<Timeline.Item
|
69
|
+
icon="check"
|
70
|
+
iconColor="teal"
|
71
|
+
lineStyle="dotted"
|
72
|
+
{...props}
|
73
|
+
>
|
74
|
+
<Body
|
75
|
+
color="light"
|
76
|
+
text="Trip #12422"
|
77
|
+
{...props}
|
78
|
+
/>
|
79
|
+
</Timeline.Item>
|
80
|
+
<Timeline.Item
|
81
|
+
icon="credit-card"
|
82
|
+
iconColor="red"
|
83
|
+
{...props}
|
84
|
+
>
|
85
|
+
<Body
|
86
|
+
color="light"
|
87
|
+
text="Refund issue #12422"
|
88
|
+
{...props}
|
89
|
+
/>
|
90
|
+
</Timeline.Item>
|
91
|
+
</Timeline>
|
92
|
+
</FlexItem>
|
93
|
+
<FlexItem>
|
94
|
+
<Timeline
|
95
|
+
gap="md"
|
96
|
+
orientation="vertical"
|
97
|
+
>
|
98
|
+
<Timeline.Item
|
99
|
+
icon="user"
|
100
|
+
iconColor="royal"
|
101
|
+
{...props}
|
102
|
+
>
|
103
|
+
<Body
|
104
|
+
color="light"
|
105
|
+
text="Conversation started"
|
106
|
+
{...props}
|
107
|
+
/>
|
108
|
+
</Timeline.Item>
|
109
|
+
<Timeline.Item
|
110
|
+
icon="check"
|
111
|
+
iconColor="teal"
|
112
|
+
lineStyle="dotted"
|
113
|
+
{...props}
|
114
|
+
>
|
115
|
+
<Body
|
116
|
+
color="light"
|
117
|
+
text="Trip #12422"
|
118
|
+
{...props}
|
119
|
+
/>
|
120
|
+
</Timeline.Item>
|
121
|
+
<Timeline.Item
|
122
|
+
icon="credit-card"
|
123
|
+
iconColor="red"
|
124
|
+
lineStyle="dotted"
|
125
|
+
{...props}
|
126
|
+
>
|
127
|
+
<Body
|
128
|
+
color="light"
|
129
|
+
text="Refund issue #12422"
|
130
|
+
{...props}
|
131
|
+
/>
|
132
|
+
</Timeline.Item>
|
133
|
+
</Timeline>
|
134
|
+
</FlexItem>
|
135
|
+
<FlexItem>
|
136
|
+
<Timeline
|
137
|
+
gap="lg"
|
138
|
+
orientation="vertical"
|
139
|
+
>
|
140
|
+
<Timeline.Item
|
141
|
+
icon="user"
|
142
|
+
iconColor="royal"
|
143
|
+
{...props}
|
144
|
+
>
|
145
|
+
<Body
|
146
|
+
color="light"
|
147
|
+
text="Conversation started"
|
148
|
+
{...props}
|
149
|
+
/>
|
150
|
+
</Timeline.Item>
|
151
|
+
<Timeline.Item
|
152
|
+
icon="check"
|
153
|
+
iconColor="teal"
|
154
|
+
lineStyle="dotted"
|
155
|
+
{...props}
|
156
|
+
>
|
157
|
+
<Body
|
158
|
+
color="light"
|
159
|
+
text="Trip #12422"
|
160
|
+
{...props}
|
161
|
+
/>
|
162
|
+
</Timeline.Item>
|
163
|
+
<Timeline.Item
|
164
|
+
icon="credit-card"
|
165
|
+
iconColor="red"
|
166
|
+
{...props}
|
167
|
+
>
|
168
|
+
<Body
|
169
|
+
color="light"
|
170
|
+
text="Refund issue #12422"
|
171
|
+
{...props}
|
172
|
+
/>
|
173
|
+
</Timeline.Item>
|
174
|
+
</Timeline>
|
175
|
+
</FlexItem>
|
176
|
+
</Flex>
|
177
|
+
</div>
|
178
|
+
)
|
179
|
+
|
180
|
+
export default TimelineWithGap
|
@@ -0,0 +1 @@
|
|
1
|
+
Use the optional `gap` prop to render the timeline kit with adjusted spacing between nodes. The `gap` prop will only work when utilized with a vertical timeline. Horizontal timelines will show no difference in spacing.
|
@@ -1,14 +1,16 @@
|
|
1
1
|
examples:
|
2
|
-
|
2
|
+
|
3
3
|
rails:
|
4
4
|
- timeline_default: Default
|
5
5
|
- timeline_vertical: Vertical
|
6
6
|
- timeline_with_date: With Date
|
7
7
|
- timeline_with_children: With Children
|
8
|
-
|
9
|
-
|
8
|
+
- timeline_with_gap: With Gap
|
9
|
+
|
10
|
+
|
10
11
|
react:
|
11
12
|
- timeline_default: Default
|
12
13
|
- timeline_vertical: Vertical
|
13
14
|
- timeline_with_date: With Date
|
14
15
|
- timeline_with_children: With Children
|
16
|
+
- timeline_with_gap: With Gap
|
@@ -2,3 +2,5 @@ export { default as TimelineDefault } from './_timeline_default.jsx'
|
|
2
2
|
export { default as TimelineVertical } from './_timeline_vertical.jsx'
|
3
3
|
export { default as TimelineWithDate } from './_timeline_with_date.jsx'
|
4
4
|
export { default as TimelineWithChildren } from './_timeline_with_children.jsx'
|
5
|
+
export { default as TimelineWithGap } from './_timeline_with_gap.jsx'
|
6
|
+
|
@@ -8,9 +8,15 @@ module Playbook
|
|
8
8
|
default: "horizontal"
|
9
9
|
prop :show_date, type: Playbook::Props::Boolean,
|
10
10
|
default: false
|
11
|
+
prop :gap, type: Playbook::Props::Enum,
|
12
|
+
values: %w[xs sm md lg none],
|
13
|
+
default: "none"
|
11
14
|
|
12
15
|
def classname
|
13
|
-
generate_classname("pb_timeline_kit",
|
16
|
+
generate_classname("pb_timeline_kit",
|
17
|
+
orientation,
|
18
|
+
date_class,
|
19
|
+
gap_class)
|
14
20
|
end
|
15
21
|
|
16
22
|
private
|
@@ -18,6 +24,10 @@ module Playbook
|
|
18
24
|
def date_class
|
19
25
|
show_date ? "with_date" : nil
|
20
26
|
end
|
27
|
+
|
28
|
+
def gap_class
|
29
|
+
gap == "none" ? nil : "gap_#{gap}"
|
30
|
+
end
|
21
31
|
end
|
22
32
|
end
|
23
33
|
end
|
@@ -147,26 +147,26 @@ test('should pass id prop', () => {
|
|
147
147
|
test('should have horizontal orientation by default', () => {
|
148
148
|
render(<TimelineDefault />)
|
149
149
|
const kit = screen.getByTestId(testId)
|
150
|
-
expect(kit).toHaveClass('
|
150
|
+
expect(kit).toHaveClass('pb_timeline_kit_horizontal')
|
151
151
|
})
|
152
152
|
|
153
153
|
test('should pass vertical orientation', () => {
|
154
154
|
const props = { orientation: 'vertical' }
|
155
155
|
render(<TimelineDefault {...props} />)
|
156
156
|
const kit = screen.getByTestId(testId)
|
157
|
-
expect(kit).toHaveClass('
|
157
|
+
expect(kit).toHaveClass('pb_timeline_kit_vertical')
|
158
158
|
})
|
159
159
|
|
160
160
|
test('should pass showDate prop', () => {
|
161
161
|
const props = { showDate: true }
|
162
162
|
render(<TimelineDefault {...props} />)
|
163
163
|
const kit = screen.getByTestId(testId)
|
164
|
-
expect(kit).toHaveClass('
|
164
|
+
expect(kit).toHaveClass('pb_timeline_kit_horizontal__with_date')
|
165
165
|
})
|
166
166
|
|
167
167
|
test('should pass showDate prop with Children', () => {
|
168
168
|
const props = { showDate: true }
|
169
169
|
render(<TimelineWithChildren {...props} />)
|
170
170
|
const kit = screen.getByTestId(testId)
|
171
|
-
expect(kit).toHaveClass('
|
171
|
+
expect(kit).toHaveClass('pb_timeline_kit_horizontal__with_date')
|
172
172
|
})
|
@@ -21,34 +21,47 @@
|
|
21
21
|
}
|
22
22
|
|
23
23
|
@mixin hover-color-classes($colors-list) {
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
transition: color $transition-speed ease;
|
24
|
+
@each $name, $color in $colors-list {
|
25
|
+
.hover_background-#{"" + $name}:hover {
|
26
|
+
background-color: $color !important;
|
27
|
+
transition: background-color $transition-speed ease;
|
28
|
+
}
|
29
|
+
.hover_color-#{"" + $name}:hover {
|
30
|
+
color: $color !important;
|
31
|
+
transition: color $transition-speed ease;
|
32
|
+
}
|
34
33
|
}
|
35
34
|
}
|
35
|
+
|
36
|
+
@include hover-scale-classes($scales);
|
37
|
+
@include hover-shadow-classes($box_shadows);
|
38
|
+
@include hover-color-classes($product_colors);
|
39
|
+
@include hover-color-classes($status_colors);
|
40
|
+
@include hover-color-classes($data_colors);
|
41
|
+
@include hover-color-classes($shadow_colors);
|
42
|
+
@include hover-color-classes($colors);
|
43
|
+
@include hover-color-classes($interface_colors);
|
44
|
+
@include hover-color-classes($main_colors);
|
45
|
+
@include hover-color-classes($background_colors);
|
46
|
+
@include hover-color-classes($card_colors);
|
47
|
+
@include hover-color-classes($active_colors);
|
48
|
+
@include hover-color-classes($action_colors);
|
49
|
+
@include hover-color-classes($hover_colors);
|
50
|
+
@include hover-color-classes($border_colors);
|
51
|
+
@include hover-color-classes($text_colors);
|
52
|
+
@include hover-color-classes($category_colors);
|
53
|
+
|
54
|
+
.hover_visibility {
|
55
|
+
opacity: 0;
|
56
|
+
transition: opacity $transition-speed ease;
|
57
|
+
|
58
|
+
&:hover {
|
59
|
+
opacity: 1;
|
60
|
+
}
|
36
61
|
}
|
37
62
|
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
@include hover-color-classes($shadow_colors);
|
44
|
-
@include hover-color-classes($colors);
|
45
|
-
@include hover-color-classes($interface_colors);
|
46
|
-
@include hover-color-classes($main_colors);
|
47
|
-
@include hover-color-classes($background_colors);
|
48
|
-
@include hover-color-classes($card_colors);
|
49
|
-
@include hover-color-classes($active_colors);
|
50
|
-
@include hover-color-classes($action_colors);
|
51
|
-
@include hover-color-classes($hover_colors);
|
52
|
-
@include hover-color-classes($border_colors);
|
53
|
-
@include hover-color-classes($text_colors);
|
54
|
-
@include hover-color-classes($category_colors);
|
63
|
+
.group_hover:hover {
|
64
|
+
.group_hover.hover_visibility {
|
65
|
+
opacity: 1;
|
66
|
+
}
|
67
|
+
}
|
@@ -63,7 +63,8 @@ type FlexWrap = {
|
|
63
63
|
type Hover = Shadow & {
|
64
64
|
background?: string,
|
65
65
|
color?: string,
|
66
|
-
scale?: "sm" | "md" | "lg"
|
66
|
+
scale?: "sm" | "md" | "lg",
|
67
|
+
visibility?: boolean,
|
67
68
|
}
|
68
69
|
|
69
70
|
type GroupHover = {
|
@@ -230,9 +231,10 @@ const PROP_CATEGORIES: {[key:string]: (props: {[key: string]: any}) => string} =
|
|
230
231
|
let css = '';
|
231
232
|
if (!hover) return css;
|
232
233
|
css += hover.shadow ? `hover_shadow_${hover.shadow} ` : '';
|
233
|
-
css += hover.background ? `
|
234
|
+
css += hover.background ? `hover_background-${hover.background } ` : '';
|
234
235
|
css += hover.scale ? `hover_scale_${hover.scale} ` : '';
|
235
|
-
css += hover.color ? `
|
236
|
+
css += hover.color ? `hover_color-${hover.color } ` : '';
|
237
|
+
css += hover.visibility ? `hover_visibility` : '';
|
236
238
|
return css;
|
237
239
|
},
|
238
240
|
|
@@ -0,0 +1,79 @@
|
|
1
|
+
import React from 'react';
|
2
|
+
import { render, screen } from '../../test-utils';
|
3
|
+
import Body from '../../../pb_body/_body';
|
4
|
+
|
5
|
+
const testSubject = 'body';
|
6
|
+
|
7
|
+
test('Hover Props: returns proper class name', () => {
|
8
|
+
const testIdColor = `${testSubject}-hover-color-red`;
|
9
|
+
render(
|
10
|
+
<Body
|
11
|
+
data={{ testid: testIdColor }}
|
12
|
+
hover={{ color: 'red' }}
|
13
|
+
text="Hi"
|
14
|
+
/>
|
15
|
+
);
|
16
|
+
|
17
|
+
let kit = screen.getByTestId(testIdColor);
|
18
|
+
let expectedClassName = `hover_color-red`;
|
19
|
+
expect(kit).toHaveClass(expectedClassName);
|
20
|
+
|
21
|
+
const testIdBackground = `${testSubject}-hover-background-blue`;
|
22
|
+
render(
|
23
|
+
<Body
|
24
|
+
data={{ testid: testIdBackground }}
|
25
|
+
hover={{ background: 'blue' }}
|
26
|
+
text="Hi"
|
27
|
+
/>
|
28
|
+
);
|
29
|
+
|
30
|
+
kit = screen.getByTestId(testIdBackground);
|
31
|
+
expectedClassName = `hover_background-blue`;
|
32
|
+
expect(kit).toHaveClass(expectedClassName);
|
33
|
+
|
34
|
+
const testIdShadow = `${testSubject}-hover-shadow-deep`;
|
35
|
+
render(
|
36
|
+
<Body
|
37
|
+
data={{ testid: testIdShadow }}
|
38
|
+
hover={{ shadow: 'deep' }}
|
39
|
+
text="Hi"
|
40
|
+
/>
|
41
|
+
);
|
42
|
+
|
43
|
+
kit = screen.getByTestId(testIdShadow);
|
44
|
+
expectedClassName = `hover_shadow_deep`;
|
45
|
+
expect(kit).toHaveClass(expectedClassName);
|
46
|
+
|
47
|
+
const testIdScale = `${testSubject}-hover-scale`;
|
48
|
+
render(
|
49
|
+
<Body
|
50
|
+
data={{ testid: testIdScale }}
|
51
|
+
hover={{ scale: 'xl' }}
|
52
|
+
text="Test"
|
53
|
+
/>
|
54
|
+
);
|
55
|
+
|
56
|
+
kit = screen.getByTestId(testIdScale);
|
57
|
+
expectedClassName = `hover_scale_xl`;
|
58
|
+
expect(kit).toHaveClass(expectedClassName);
|
59
|
+
|
60
|
+
const testIdMultiple = `${testSubject}-hover-multiple`;
|
61
|
+
render(
|
62
|
+
<Body
|
63
|
+
data={{ testid: testIdMultiple }}
|
64
|
+
hover={{
|
65
|
+
color: 'green',
|
66
|
+
background: 'error',
|
67
|
+
shadow: 'deeper',
|
68
|
+
scale: 'xl',
|
69
|
+
}}
|
70
|
+
text="Hi"
|
71
|
+
/>
|
72
|
+
);
|
73
|
+
|
74
|
+
kit = screen.getByTestId(testIdMultiple);
|
75
|
+
expect(kit).toHaveClass('hover_color-green');
|
76
|
+
expect(kit).toHaveClass('hover_background-error');
|
77
|
+
expect(kit).toHaveClass('hover_shadow_deeper');
|
78
|
+
expect(kit).toHaveClass('hover_scale_xl');
|
79
|
+
});
|