playbook_ui 14.12.0.pre.alpha.PLAY1602lightboxoverlapnitrobug5781 → 14.12.0.pre.alpha.PLAY1865reactdatepickerreinitializingbug5732

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: c2a773d292a4e041d43732af8f11d427e12bbb0acb12269edd373531502f1893
4
- data.tar.gz: 31850e0ff491191f566e32d4ae494bb69d47535af02b8c7f101ab30e534bad03
3
+ metadata.gz: f4b2ad0e481643abe338553036ee4fb39c7c7ebe3e388e9486acb5a27cc565e7
4
+ data.tar.gz: 5c17ee40aba4bace77b6354bac9f417cfd7fb3e8bd3cc9029e9f11142b0808ca
5
5
  SHA512:
6
- metadata.gz: c7262ac209a071d6bba2bf800d3622566b16592e3c8e5b237bef19b301e89f3d1c5d06055256955656692f43e971dcfcbbb692eec50b316d91d3c65695fe42ed
7
- data.tar.gz: 1dccbf346dbc37dd71c217f900ea6a07382a431a2663c10a62b10d7654559d972d5cdedd6e21ad80a121a94f64edfd0e07628dc944212e0f9bd45b563faaed12
6
+ metadata.gz: 0633f4de5953b60ab7e9f0543bfe25de05b99e2e7378478c4c5858e17f61d271fb63ff8b73f2fe9f991c0c9848ea6bb0cf40cb1c9bba790cfff95d4f84fa9fe6
7
+ data.tar.gz: fa388b6846808f7e7a0b78c3822ad741b4f8302bdbff50c92527bf6af5a90ec002c3cade3a6ae96d24f85c23b19d26a53713321f52402d46b68d9a0e234ac044
@@ -89,6 +89,7 @@
89
89
  }
90
90
  }
91
91
 
92
+
92
93
  .table-header-cells-active:first-child {
93
94
  color: $primary !important;
94
95
  }
@@ -178,7 +179,7 @@
178
179
  }
179
180
 
180
181
  // Responsive Styles
181
- @media only screen and (max-width: $screen-xl-min) {
182
+ @media only screen and (max-width: $screen-xl-min) {
182
183
  &[class*="advanced-table-responsive-scroll"] {
183
184
  border-radius: 4px;
184
185
  box-shadow: 1px 0 0 0px $border_light,
@@ -214,7 +215,7 @@
214
215
  .bg-white td:first-child {
215
216
  background-color: $white;
216
217
  }
217
-
218
+
218
219
  }
219
220
  }
220
221
  @media only screen and (min-width: $screen-xl-min) {
@@ -305,4 +306,4 @@
305
306
  }
306
307
  }
307
308
  }
308
- }
309
+ }
@@ -133,18 +133,15 @@ export default class PbAdvancedTable extends PbEnhancedElement {
133
133
  if (!elements.length) return;
134
134
 
135
135
  const isVisible = elements[0].classList.contains("is-visible");
136
-
137
- isVisible ? this.hideElement(elements) : this.showElement(elements);
138
- isVisible ? this.displayDownArrow() : this.displayUpArrow();
139
-
140
- const row = this.element.closest("tr");
141
- if (row) {
142
- row.classList.toggle("bg-silver", !isVisible);
143
- row.classList.toggle("bg-white", isVisible);
136
+ if (isVisible) {
137
+ this.hideElement(elements);
138
+ this.displayDownArrow();
139
+ } else {
140
+ this.showElement(elements);
141
+ this.displayUpArrow();
144
142
  }
145
143
  }
146
144
 
147
-
148
145
  displayDownArrow() {
149
146
  this.element.querySelector(DOWN_ARROW_SELECTOR).style.display =
150
147
  "inline-block";
@@ -14,13 +14,10 @@
14
14
  <div style="padding-left: <%= depth * 1.25 %>em">
15
15
  <%= pb_rails("flex", props:{align: "center", column_gap: "xs"}) do %>
16
16
  <% if index.zero? && object.row[:children].present? %>
17
- <button
18
- id="<%= "#{object.id}_#{object.row.object_id}" %>"
19
- class="gray-icon expand-toggle-icon"
20
- data-advanced-table="true">
21
- <%= pb_rails("icon", props: { id: "advanced-table_open_icon", icon: "circle-play", cursor: "pointer" }) %>
22
- <%= pb_rails("icon", props: { id: "advanced-table_close_icon", display: "none", icon: "circle-play", cursor: "pointer", rotation: 90 }) %>
23
- </button>
17
+ <button id="<%= "#{object.id}_#{object.row.object_id}" %>" class="gray-icon expand-toggle-icon" data-advanced-table="true" >
18
+ <%= pb_rails("icon", props: { id: "advanced-table_open_icon", icon: "circle-play", cursor: "pointer" }) %>
19
+ <%= pb_rails("icon", props: { id: "advanced-table_close_icon", display: "none", icon: "circle-play", cursor: "pointer", rotation: 90 }) %>
20
+ </button>
24
21
  <% end %>
25
22
  <%= pb_rails("flex/flex_item", props:{padding_left: index.zero? && object.row[:children].present? ? "none" : "xs"}) do %>
26
23
  <% if column[:custom_renderer].present? %>
@@ -45,4 +42,4 @@
45
42
  <% end %>
46
43
  <% end %>
47
44
  <% end %>
48
- <% end %>
45
+ <% end %>
@@ -65,7 +65,7 @@ module Playbook
65
65
  end
66
66
 
67
67
  def tag
68
- link && !disabled ? "a" : "button"
68
+ link ? "a" : "button"
69
69
  end
70
70
 
71
71
  def valid_emoji(icon)
@@ -14,7 +14,6 @@ type PbDateProps = {
14
14
  alignment?: "left" | "center" | "right";
15
15
  aria?: { [key: string]: string };
16
16
  className?: string;
17
- dark?: boolean;
18
17
  data?: { [key: string]: string };
19
18
  htmlOptions?: { [key: string]: string | number | boolean | (() => void) };
20
19
  id?: string;
@@ -30,7 +29,6 @@ const PbDate = (props: PbDateProps): React.ReactElement => {
30
29
  aria = {},
31
30
  alignment = "left",
32
31
  className,
33
- dark = false,
34
32
  data = {},
35
33
  htmlOptions = {},
36
34
  id,
@@ -58,7 +56,7 @@ const PbDate = (props: PbDateProps): React.ReactElement => {
58
56
  );
59
57
 
60
58
  return (
61
- <div
59
+ <div
62
60
  {...ariaProps}
63
61
  {...dataProps}
64
62
  {...htmlProps}
@@ -95,9 +93,7 @@ const PbDate = (props: PbDateProps): React.ReactElement => {
95
93
  </>
96
94
  : size == "md" || size == "lg"
97
95
  ? (
98
- <Title
99
- dark={dark}
100
- size={4}
96
+ <Title size={4}
101
97
  tag="h4"
102
98
  >
103
99
  {showIcon && (
@@ -131,7 +127,6 @@ const PbDate = (props: PbDateProps): React.ReactElement => {
131
127
  <>
132
128
  {showIcon && (
133
129
  <Caption className="pb_icon_kit_container"
134
- dark={dark}
135
130
  tag="span"
136
131
  >
137
132
  <Icon fixedWidth
@@ -143,20 +138,15 @@ const PbDate = (props: PbDateProps): React.ReactElement => {
143
138
 
144
139
  {showDayOfWeek && (
145
140
  <>
146
- <Caption dark={dark}
147
- tag="div">
148
- {weekday}
149
- </Caption>
141
+ <Caption tag="div">{weekday}</Caption>
150
142
  <Caption color="light"
151
- dark={dark}
152
143
  tag="div"
153
144
  text=" • "
154
145
  />
155
146
  </>
156
147
  )}
157
148
 
158
- <Caption dark={dark}
159
- tag="span">
149
+ <Caption tag="span">
160
150
  {month} {day}
161
151
  {currentYear != year && <>{`, ${year}`}</>}
162
152
  </Caption>
@@ -18,7 +18,7 @@ const DateDefault = (props) => {
18
18
  value={"2012-08-03"}
19
19
  {...props}
20
20
  />
21
- <Caption {...props}>{"(Hyphenated Date)"}</Caption>
21
+ <Caption>{"(Hyphenated Date)"}</Caption>
22
22
  </div>
23
23
 
24
24
  <br />
@@ -56,7 +56,6 @@ const DateDefault = (props) => {
56
56
  <Title
57
57
  size={4}
58
58
  text={"(Hyphenated Date)"}
59
- {...props}
60
59
  />
61
60
  </div>
62
61
 
@@ -4,8 +4,7 @@ import { Caption, Date as FormattedDate, Title } from 'playbook-ui'
4
4
  const DateUnstyled = (props) => {
5
5
  return (
6
6
  <>
7
- <Caption {...props}
8
- size="xs"
7
+ <Caption size="xs"
9
8
  text="Basic unstyled example"
10
9
  />
11
10
  <FormattedDate
@@ -16,14 +15,10 @@ const DateUnstyled = (props) => {
16
15
 
17
16
  <br />
18
17
 
19
- <Caption {...props}
20
-
21
- size="xs"
18
+ <Caption size="xs"
22
19
  text="Example with wrapping typography kit"
23
20
  />
24
- <Title {...props}
25
- size={1}
26
- >
21
+ <Title size={1}>
27
22
  <FormattedDate
28
23
  unstyled
29
24
  value={new Date('25 Dec 1995')}
@@ -33,13 +28,10 @@ const DateUnstyled = (props) => {
33
28
 
34
29
  <br />
35
30
 
36
- <Caption {...props}
37
- size="xs"
31
+ <Caption size="xs"
38
32
  text="Example with icon + subcaption"
39
33
  />
40
- <Caption {...props}
41
- size="xs"
42
- >
34
+ <Caption size="xs">
43
35
  <FormattedDate
44
36
  showDayOfWeek
45
37
  showIcon
@@ -134,7 +134,7 @@ useEffect(() => {
134
134
  yearRange,
135
135
  required: false,
136
136
  }, scrollContainer)
137
- })
137
+ }, [])
138
138
  const filteredProps = {...props}
139
139
  if (filteredProps.marginBottom === undefined) {
140
140
  filteredProps.marginBottom = "sm"
@@ -2,7 +2,6 @@
2
2
  @import "../tokens/screen_sizes";
3
3
 
4
4
  $slides-margin: $space-md;
5
- $lightbox-z-index-floor: $z_10 !default;
6
5
 
7
6
  .carousel {
8
7
 
@@ -14,7 +13,7 @@ $lightbox-z-index-floor: $z_10 !default;
14
13
  top: 0;
15
14
  left: 0;
16
15
  right: 0;
17
- z-index: $lightbox-z-index-floor + 99;
16
+ z-index: 9999999;
18
17
  align-items: center;
19
18
  transition: all .5s;
20
19
 
@@ -56,7 +55,7 @@ $lightbox-z-index-floor: $z_10 !default;
56
55
  justify-content: space-between;
57
56
  flex-direction: column;
58
57
  background-color: black;
59
- z-index: $lightbox-z-index-floor + 1;
58
+ z-index: 1;
60
59
  overflow: hidden;
61
60
  }
62
61
 
@@ -64,7 +63,7 @@ $lightbox-z-index-floor: $z_10 !default;
64
63
  display: flex;
65
64
  height: calc(100% - 120px);
66
65
  width: 100%;
67
- z-index: $lightbox-z-index-floor + 1;
66
+ z-index: 1;
68
67
 
69
68
  [class^="react-transform-wrapper"] {
70
69
  flex-shrink: 0;
@@ -88,7 +87,7 @@ $lightbox-z-index-floor: $z_10 !default;
88
87
  .carousel-arrow-left {
89
88
  display: block;
90
89
  position: absolute;
91
- z-index: $lightbox-z-index-floor + 4;
90
+ z-index: 4;
92
91
  top: 50%;
93
92
  @media only screen and (max-width: $screen-xs-max) {
94
93
  display: none;
@@ -98,7 +97,7 @@ $lightbox-z-index-floor: $z_10 !default;
98
97
  .carousel-arrow-right {
99
98
  display: block;
100
99
  position: absolute;
101
- z-index: $lightbox-z-index-floor + 4;
100
+ z-index: 4;
102
101
  top: 50%;
103
102
  right: 0;
104
103
  @media only screen and (max-width: $screen-xs-max) {
@@ -141,7 +140,7 @@ $lightbox-z-index-floor: $z_10 !default;
141
140
  width: 100vw;
142
141
  padding: 3px;
143
142
  overflow: scroll;
144
- z-index: $lightbox-z-index-floor + 20;
143
+ z-index: 20;
145
144
  &.centered {
146
145
  justify-content: center;
147
146
  }