playbook_ui 7.16.0.pre.alpha3 → 7.16.0.pre.alpha4

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5c1e2f80ae9beff061f5f66ba50e8abe2f5835015e89b63cd93f99fb0d31c7ea
4
- data.tar.gz: ee51bfbcfd083f64b0178d93b52c9f17b32b5ebcdafb826a3ae344b00fde5079
3
+ metadata.gz: 238812b6597e24f89c2a0f5d63fc52bcb9c345a1fda3d05e6fa91c7df97f15cc
4
+ data.tar.gz: 3ce8b56e73137a1f8f067277d1f0ef1c9e20e0436e9869a80df9bafaf0e2a255
5
5
  SHA512:
6
- metadata.gz: 58175e42f87221ab469bffed9e7e8f93a924dd1fe8445281209650abbd46ec741d5aee71c7d0ec5471a33fc6cec9bd980644ef637ae648b67adfd7fa452e3b3d
7
- data.tar.gz: 87eaf4528894c395091859cdc13dddae33648e6dfb905c2e936286c6f647fb3d1b6456fd5eac6e8424731287ce5411e5a5adf172d0001057914a7fe0579e24e5
6
+ metadata.gz: bb0a5a4ebf287bd194a695d6fcef4359bc19468ad43eadee6b479fc6bc5c7aa35998aef684c52e947316d684d56c4b4fe1d60c64fe018fc93e7fe9cba6875276
7
+ data.tar.gz: 6b102d7c0342b0238660d2a35d121e12f166b8b3e53e3e5511337fce915d08b904181581def5c8ac6d8695eb92151ec61f61c7728181f43d9df4d7e7a43a747a
@@ -289,6 +289,9 @@
289
289
  .numInputWrapper span svg path {
290
290
  fill: rgba(0,0,0,0.5);
291
291
  }
292
+ .numInputWrapper:hover {
293
+ background: rgba(0,0,0,0.05);
294
+ }
292
295
  .numInputWrapper:hover span {
293
296
  opacity: 1;
294
297
  }
@@ -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 className={classnames(progressStepItem, className)}>
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} />
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Playbook
4
- VERSION = "7.16.0.pre.alpha3"
4
+ VERSION = "7.16.0.pre.alpha4"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: playbook_ui
3
3
  version: !ruby/object:Gem::Version
4
- version: 7.16.0.pre.alpha3
4
+ version: 7.16.0.pre.alpha4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Power UX