@simplybusiness/theme-simplybusiness 1.9.13 → 1.9.15
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/CHANGELOG.md +24 -0
- package/dist/index.css +34 -9
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,29 @@
|
|
|
1
1
|
# @simplybusiness/theme-simplybusiness
|
|
2
2
|
|
|
3
|
+
## 1.9.15
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 74b3c30: Move PersistentCartPaymentOptions from journey-components to mobius
|
|
8
|
+
- Updated dependencies [a54330c]
|
|
9
|
+
- Updated dependencies [57d1f19]
|
|
10
|
+
- Updated dependencies [74b3c30]
|
|
11
|
+
- Updated dependencies [0e5fcc0]
|
|
12
|
+
- @simplybusiness/mobius@5.18.0
|
|
13
|
+
- @simplybusiness/mobius-journey@6.51.0
|
|
14
|
+
- @simplybusiness/mobius-datepicker@6.3.6
|
|
15
|
+
- @simplybusiness/theme-core@7.3.1
|
|
16
|
+
|
|
17
|
+
## 1.9.14
|
|
18
|
+
|
|
19
|
+
### Patch Changes
|
|
20
|
+
|
|
21
|
+
- Updated dependencies [92710bb]
|
|
22
|
+
- Updated dependencies [332736c]
|
|
23
|
+
- Updated dependencies [7dafb0b]
|
|
24
|
+
- @simplybusiness/mobius-journey@6.50.0
|
|
25
|
+
- @simplybusiness/mobius-datepicker@6.3.5
|
|
26
|
+
|
|
3
27
|
## 1.9.13
|
|
4
28
|
|
|
5
29
|
### Patch Changes
|
package/dist/index.css
CHANGED
|
@@ -606,7 +606,16 @@ a.mobius-button:focus-visible,
|
|
|
606
606
|
height:var(--drawer-height);
|
|
607
607
|
max-height:var(--drawer-height);
|
|
608
608
|
transition:transform var(--drawer-transition-duration) ease-in-out;
|
|
609
|
+
padding-bottom:80px;
|
|
609
610
|
}
|
|
611
|
+
@supports (height: 100dvh){
|
|
612
|
+
|
|
613
|
+
.mobius-drawer.--top,.mobius-drawer.--bottom{
|
|
614
|
+
height:100dvh;
|
|
615
|
+
max-height:100dvh;
|
|
616
|
+
padding-bottom:0;
|
|
617
|
+
}
|
|
618
|
+
}
|
|
610
619
|
.mobius-drawer.--left,.mobius-drawer.--right{
|
|
611
620
|
bottom:0;
|
|
612
621
|
width:100%;
|
|
@@ -614,6 +623,15 @@ a.mobius-button:focus-visible,
|
|
|
614
623
|
height:100vh;
|
|
615
624
|
max-height:100vh;
|
|
616
625
|
transition:transform var(--drawer-transition-duration) ease-in-out;
|
|
626
|
+
padding-bottom:80px;
|
|
627
|
+
}
|
|
628
|
+
@supports (height: 100dvh){
|
|
629
|
+
|
|
630
|
+
.mobius-drawer.--left,.mobius-drawer.--right{
|
|
631
|
+
height:100dvh;
|
|
632
|
+
max-height:100dvh;
|
|
633
|
+
padding-bottom:0;
|
|
634
|
+
}
|
|
617
635
|
}
|
|
618
636
|
.mobius-drawer:not(.--should-transition){
|
|
619
637
|
display:none;
|
|
@@ -3516,12 +3534,15 @@ svg:not(:host).svg-inline--mobius-icon{
|
|
|
3516
3534
|
}
|
|
3517
3535
|
}
|
|
3518
3536
|
.mobius-collapsible__details::details-content{
|
|
3519
|
-
|
|
3520
|
-
|
|
3521
|
-
|
|
3522
|
-
|
|
3523
|
-
|
|
3524
|
-
}
|
|
3537
|
+
overflow:clip;
|
|
3538
|
+
height:0;
|
|
3539
|
+
opacity:0;
|
|
3540
|
+
transition:height var(--animation-duration), content-visibility var(--animation-duration);
|
|
3541
|
+
transition-behavior:allow-discreet;
|
|
3542
|
+
}
|
|
3543
|
+
.mobius-collapsible__details .mobius-collapsible__content,.mobius-collapsible__details .mobius-collapsible__actions{
|
|
3544
|
+
opacity:0;
|
|
3545
|
+
}
|
|
3525
3546
|
@media (prefers-reduced-motion: reduce){
|
|
3526
3547
|
.mobius-collapsible__details::details-content{
|
|
3527
3548
|
transition:opacity var(--animation-duration), content-visibility var(--animation-duration);
|
|
@@ -3534,9 +3555,13 @@ svg:not(:host).svg-inline--mobius-icon{
|
|
|
3534
3555
|
display:none;
|
|
3535
3556
|
}
|
|
3536
3557
|
.mobius-collapsible__details[open]::details-content{
|
|
3537
|
-
|
|
3538
|
-
|
|
3539
|
-
}
|
|
3558
|
+
height:auto;
|
|
3559
|
+
opacity:1;
|
|
3560
|
+
}
|
|
3561
|
+
.mobius-collapsible__details[open] .mobius-collapsible__content,.mobius-collapsible__details[open] .mobius-collapsible__actions{
|
|
3562
|
+
opacity:1;
|
|
3563
|
+
transition:opacity var(--animation-duration);
|
|
3564
|
+
}
|
|
3540
3565
|
.mobius-collapsible__summary{
|
|
3541
3566
|
list-style-type:"";
|
|
3542
3567
|
display:flex;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@simplybusiness/theme-simplybusiness",
|
|
3
|
-
"version": "1.9.
|
|
3
|
+
"version": "1.9.15",
|
|
4
4
|
"main": "dist/index.css",
|
|
5
5
|
"simplyBusiness": {
|
|
6
6
|
"publishToPublicNpm": true
|
|
@@ -26,10 +26,10 @@
|
|
|
26
26
|
"./fonts": "./dist/fonts.css"
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"@simplybusiness/mobius": "^5.
|
|
30
|
-
"@simplybusiness/mobius-datepicker": "^6.3.
|
|
31
|
-
"@simplybusiness/mobius-journey": "^6.
|
|
32
|
-
"@simplybusiness/theme-core": "^7.3.
|
|
29
|
+
"@simplybusiness/mobius": "^5.18.0",
|
|
30
|
+
"@simplybusiness/mobius-datepicker": "^6.3.6",
|
|
31
|
+
"@simplybusiness/mobius-journey": "^6.51.0",
|
|
32
|
+
"@simplybusiness/theme-core": "^7.3.1"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
35
|
"css-loader": "^7.1.2",
|