@phillips/seldon 1.238.0 → 1.240.0
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.
- package/dist/_virtual/index12.js +2 -2
- package/dist/_virtual/index13.js +2 -2
- package/dist/node_modules/ics/dist/schema/index.js +1 -1
- package/dist/node_modules/ics/dist/utils/index.js +1 -1
- package/dist/scss/_vars.scss +9 -0
- package/dist/scss/_vars.scss.js +9 -0
- package/dist/scss/components/ComposedModal/_composedModal.scss +10 -6
- package/dist/scss/patterns/FiltersInline/_filterButton.scss +3 -3
- package/package.json +1 -1
package/dist/_virtual/index12.js
CHANGED
package/dist/_virtual/index13.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { __exports as u } from "../../../../_virtual/
|
|
1
|
+
import { __exports as u } from "../../../../_virtual/index12.js";
|
|
2
2
|
import { __require as g } from "./format-date.js";
|
|
3
3
|
import { __require as b } from "./set-geolocation.js";
|
|
4
4
|
import { __require as p } from "./set-contact.js";
|
package/dist/scss/_vars.scss
CHANGED
|
@@ -282,6 +282,9 @@ $breakpoint-xl: 1801px;
|
|
|
282
282
|
// Temporary token for mobile breakpoint added to support [L3-7681](https://phillipsauctions.atlassian.net/browse/L3-7681)
|
|
283
283
|
$breakpoint-snw-mobile: 768px;
|
|
284
284
|
|
|
285
|
+
// Temporary token for mobile breakpoint added to support [L3-10837](https://phillipsauctions.atlassian.net/browse/L3-10837)
|
|
286
|
+
$breakpoint-snw-sm-desktop: 561px;
|
|
287
|
+
|
|
285
288
|
////////////////////////
|
|
286
289
|
/// FONT SIZE TOKENS:
|
|
287
290
|
///////////////////////
|
|
@@ -378,6 +381,12 @@ $margin-lg: var(--spacing-lg);
|
|
|
378
381
|
$margin-xl: var(--spacing-xl);
|
|
379
382
|
$margin-xxl: var(--spacing-xxl);
|
|
380
383
|
|
|
384
|
+
////////////////////////
|
|
385
|
+
/// modal-min-width TOKEN:
|
|
386
|
+
///////////////////////
|
|
387
|
+
$mobile-modal-min-width: 22.5rem;
|
|
388
|
+
$desktop-modal-min-width: 35rem;
|
|
389
|
+
|
|
381
390
|
////////////////////////
|
|
382
391
|
/// max-site-width TOKEN:
|
|
383
392
|
///////////////////////
|
package/dist/scss/_vars.scss.js
CHANGED
|
@@ -282,6 +282,9 @@ $breakpoint-xl: 1801px;
|
|
|
282
282
|
// Temporary token for mobile breakpoint added to support [L3-7681](https://phillipsauctions.atlassian.net/browse/L3-7681)
|
|
283
283
|
$breakpoint-snw-mobile: 768px;
|
|
284
284
|
|
|
285
|
+
// Temporary token for mobile breakpoint added to support [L3-10837](https://phillipsauctions.atlassian.net/browse/L3-10837)
|
|
286
|
+
$breakpoint-snw-sm-desktop: 561px;
|
|
287
|
+
|
|
285
288
|
////////////////////////
|
|
286
289
|
/// FONT SIZE TOKENS:
|
|
287
290
|
///////////////////////
|
|
@@ -378,6 +381,12 @@ $margin-lg: var(--spacing-lg);
|
|
|
378
381
|
$margin-xl: var(--spacing-xl);
|
|
379
382
|
$margin-xxl: var(--spacing-xxl);
|
|
380
383
|
|
|
384
|
+
////////////////////////
|
|
385
|
+
/// modal-min-width TOKEN:
|
|
386
|
+
///////////////////////
|
|
387
|
+
$mobile-modal-min-width: 22.5rem;
|
|
388
|
+
$desktop-modal-min-width: 35rem;
|
|
389
|
+
|
|
381
390
|
////////////////////////
|
|
382
391
|
/// max-site-width TOKEN:
|
|
383
392
|
///////////////////////
|
|
@@ -5,13 +5,21 @@ $breakpoint-mobile-small: 450px;
|
|
|
5
5
|
.#{$px}-composed-modal {
|
|
6
6
|
border-radius: $radius-md;
|
|
7
7
|
max-width: 95vw;
|
|
8
|
-
min-width:
|
|
8
|
+
min-width: 100%;
|
|
9
9
|
padding: $spacing-lg 0 $spacing-sm 0;
|
|
10
|
-
|
|
10
|
+
|
|
11
11
|
&:not(:has(.#{$px}-composed-modal__btns-group)) {
|
|
12
12
|
padding-bottom: $spacing-lg;
|
|
13
13
|
}
|
|
14
14
|
|
|
15
|
+
@media (min-width: $breakpoint-sm) {
|
|
16
|
+
min-width: $mobile-modal-min-width;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
@media (min-width: $breakpoint-md) {
|
|
20
|
+
min-width: $desktop-modal-min-width;
|
|
21
|
+
}
|
|
22
|
+
|
|
15
23
|
&__body {
|
|
16
24
|
margin: 0 $spacing-lg $spacing-md;
|
|
17
25
|
max-height: var('--max-modal-body-height');
|
|
@@ -55,10 +63,6 @@ $breakpoint-mobile-small: 450px;
|
|
|
55
63
|
margin-top: $spacing-sm;
|
|
56
64
|
padding: 0 $spacing-md;
|
|
57
65
|
}
|
|
58
|
-
|
|
59
|
-
@media (min-width: $breakpoint-md) {
|
|
60
|
-
width: auto;
|
|
61
|
-
}
|
|
62
66
|
}
|
|
63
67
|
|
|
64
68
|
.#{$px}-composed-modal__body {
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
@use '../../allPartials' as *;
|
|
2
2
|
|
|
3
3
|
.#{$px}-filter-button {
|
|
4
|
-
border:
|
|
4
|
+
border: 2px solid $bg-border;
|
|
5
5
|
gap: 4px;
|
|
6
6
|
height: inherit;
|
|
7
7
|
padding: $spacing-xsm $spacing-sm;
|
|
8
8
|
|
|
9
9
|
&:hover {
|
|
10
|
-
border:
|
|
10
|
+
border: 2px solid $black-100;
|
|
11
11
|
box-shadow: none;
|
|
12
12
|
}
|
|
13
13
|
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
}
|
|
18
18
|
|
|
19
19
|
&--selected {
|
|
20
|
-
border:
|
|
20
|
+
border: 2px solid $black-100;
|
|
21
21
|
|
|
22
22
|
&:focus-visible {
|
|
23
23
|
box-shadow: 0 0 0 0.5px $black-100;
|