playbook_ui 7.16.0.pre.alpha3 → 7.16.0.pre.alpha4
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 +4 -4
- data/app/pb_kits/playbook/pb_date_picker/sass_partials/_flatpickr_styles.scss +3 -0
- data/app/pb_kits/playbook/pb_date_picker/sass_partials/_header_styles.scss +0 -7
- data/app/pb_kits/playbook/pb_date_picker/sass_partials/_overrides.scss +1 -8
- data/app/pb_kits/playbook/pb_progress_step/_progress_step_item.jsx +5 -2
- data/lib/playbook/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 238812b6597e24f89c2a0f5d63fc52bcb9c345a1fda3d05e6fa91c7df97f15cc
|
|
4
|
+
data.tar.gz: 3ce8b56e73137a1f8f067277d1f0ef1c9e20e0436e9869a80df9bafaf0e2a255
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: bb0a5a4ebf287bd194a695d6fcef4359bc19468ad43eadee6b479fc6bc5c7aa35998aef684c52e947316d684d56c4b4fe1d60c64fe018fc93e7fe9cba6875276
|
|
7
|
+
data.tar.gz: 6b102d7c0342b0238660d2a35d121e12f166b8b3e53e3e5511337fce915d08b904181581def5c8ac6d8695eb92151ec61f61c7728181f43d9df4d7e7a43a747a
|
|
@@ -13,7 +13,6 @@
|
|
|
13
13
|
}
|
|
14
14
|
.flatpickr-monthDropdown-months {
|
|
15
15
|
appearance: none;
|
|
16
|
-
-webkit-appearance: none;
|
|
17
16
|
@include pb_title_4;
|
|
18
17
|
height: $space_xl;
|
|
19
18
|
width: $space_xs * 12;
|
|
@@ -30,14 +29,10 @@
|
|
|
30
29
|
}
|
|
31
30
|
.numInputWrapper {
|
|
32
31
|
display: contents;
|
|
33
|
-
display: -webkit-box;
|
|
34
|
-
display: -webkit-flex;
|
|
35
32
|
.numInput {
|
|
36
33
|
@include pb_title_4;
|
|
37
34
|
border: 0;
|
|
38
35
|
appearance: none;
|
|
39
|
-
-webkit-appearance: none;
|
|
40
|
-
border-radius: 0;
|
|
41
36
|
background-color: transparent;
|
|
42
37
|
border-left: solid 1px $border_light;
|
|
43
38
|
padding-left: $space_md - 1.5;
|
|
@@ -50,7 +45,6 @@
|
|
|
50
45
|
@media (hover: hover) {
|
|
51
46
|
&:hover {
|
|
52
47
|
cursor: pointer;
|
|
53
|
-
background-color: $white;
|
|
54
48
|
}
|
|
55
49
|
}
|
|
56
50
|
}
|
|
@@ -67,7 +61,6 @@
|
|
|
67
61
|
}
|
|
68
62
|
.year-dropdown-icon {
|
|
69
63
|
align-self: center;
|
|
70
|
-
-webkit-align-self: center;
|
|
71
64
|
margin-top: $space_xs - 3;
|
|
72
65
|
width: $space_xs + 2;
|
|
73
66
|
position: relative;
|
|
@@ -41,11 +41,4 @@
|
|
|
41
41
|
.flatpickr-day.endRange.startRange + .endRange:not(:nth-child(7n+1)) {
|
|
42
42
|
-webkit-box-shadow: none;
|
|
43
43
|
box-shadow: none;
|
|
44
|
-
}
|
|
45
|
-
.flatpickr-current-month .flatpickr-monthDropdown-months:hover, .numInputWrapper:hover {
|
|
46
|
-
background-color: $white;
|
|
47
|
-
}
|
|
48
|
-
|
|
49
|
-
// .numInputWrapper:hover {
|
|
50
|
-
// background-color: $white;
|
|
51
|
-
// }
|
|
44
|
+
}
|
|
@@ -17,11 +17,14 @@ const ProgressStepItem = ({
|
|
|
17
17
|
status = 'inactive',
|
|
18
18
|
children,
|
|
19
19
|
icon = 'check',
|
|
20
|
-
}: ProgressStepItemProps) => {
|
|
20
|
+
}: ProgressStepItemProps, ref: React.ElementRef<"li">) => {
|
|
21
21
|
const progressStepItem = buildCss('pb_progress_step_item', status)
|
|
22
22
|
|
|
23
23
|
return (
|
|
24
|
-
<li
|
|
24
|
+
<li
|
|
25
|
+
className={classnames(progressStepItem, className)}
|
|
26
|
+
ref={ref}
|
|
27
|
+
>
|
|
25
28
|
<div className="box">
|
|
26
29
|
<div className="circle">
|
|
27
30
|
<Icon icon={icon} />
|
data/lib/playbook/version.rb
CHANGED