@simplybusiness/theme-simplybusiness 1.9.14 → 1.9.16

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 CHANGED
@@ -1,5 +1,30 @@
1
1
  # @simplybusiness/theme-simplybusiness
2
2
 
3
+ ## 1.9.16
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [57dc622]
8
+ - Updated dependencies [fe1f994]
9
+ - Updated dependencies [64b4fb5]
10
+ - Updated dependencies [6d4c55f]
11
+ - @simplybusiness/mobius-journey@6.52.0
12
+ - @simplybusiness/mobius-datepicker@6.4.0
13
+
14
+ ## 1.9.15
15
+
16
+ ### Patch Changes
17
+
18
+ - 74b3c30: Move PersistentCartPaymentOptions from journey-components to mobius
19
+ - Updated dependencies [a54330c]
20
+ - Updated dependencies [57d1f19]
21
+ - Updated dependencies [74b3c30]
22
+ - Updated dependencies [0e5fcc0]
23
+ - @simplybusiness/mobius@5.18.0
24
+ - @simplybusiness/mobius-journey@6.51.0
25
+ - @simplybusiness/mobius-datepicker@6.3.6
26
+ - @simplybusiness/theme-core@7.3.1
27
+
3
28
  ## 1.9.14
4
29
 
5
30
  ### 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
- overflow:clip;
3520
- height:0;
3521
- opacity:0;
3522
- transition:height var(--animation-duration), content-visibility var(--animation-duration);
3523
- transition-behavior:allow-discreet;
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
- height:auto;
3538
- opacity:1;
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;
@@ -3805,6 +3830,65 @@ svg:not(:host).svg-inline--mobius-icon{
3805
3830
  width:100%;
3806
3831
  height:auto;
3807
3832
  }
3833
+ .partial-quotes-referral__container{
3834
+ display:grid;
3835
+ grid-template-columns:1fr;
3836
+ align-items:center;
3837
+ justify-content:start;
3838
+ text-align:left;
3839
+ background:var(--color-background-highlight);
3840
+ border-radius:var(--radius-2);
3841
+ padding:var(--size-md);
3842
+ margin-bottom:var(--size-lg);
3843
+ }
3844
+ .partial-quotes-referral__main{
3845
+ display:grid;
3846
+ grid-template-columns:1fr;
3847
+ gap:var(--size-sm);
3848
+ }
3849
+ .partial-quotes-referral__main p{
3850
+ margin:0;
3851
+ }
3852
+ .partial-quotes-referral__title{
3853
+ font-weight:normal;
3854
+ margin-top:0;
3855
+ }
3856
+ .partial-quotes-referral__insurer-panel{
3857
+ display:grid;
3858
+ grid-template-columns:repeat(auto-fit, minmax(96px, 1fr));
3859
+ gap:var(--size-xs);
3860
+ opacity:0.8;
3861
+ }
3862
+ .partial-quotes-referral__insurer-panel *{
3863
+ justify-self:center;
3864
+ }
3865
+ .partial-quotes-referral-logo{
3866
+ width:64px;
3867
+ height:30px;
3868
+ object-fit:contain;
3869
+ object-position:center;
3870
+ gap:var(--size-xs);
3871
+ }
3872
+ @media (min-width: 850px){
3873
+ .partial-quotes-referral__main{
3874
+ gap:var(--size-lg);
3875
+ }
3876
+
3877
+ .partial-quotes-referral__container-variant-b .partial-quotes-referral__main{
3878
+ grid-template-columns:repeat(2, 1fr);
3879
+ grid-template-rows:1fr;
3880
+ }
3881
+
3882
+ .partial-quotes-referral__insurer-panel{
3883
+ grid-template-columns:repeat(auto-fit, minmax(128px, 1fr));
3884
+ gap:var(--size-md);
3885
+ }
3886
+
3887
+ .partial-quotes-referral-logo{
3888
+ width:128px;
3889
+ height:60px;
3890
+ }
3891
+ }
3808
3892
  .mobius-no-quotes-card{
3809
3893
  margin:0;
3810
3894
  border:1px solid var(--color-border);
@@ -5113,6 +5197,9 @@ svg:not(:host).svg-inline--mobius-icon{
5113
5197
  .mobius-date-picker__container:not(.--is-touch-device) .mobius-text-field__input::-webkit-calendar-picker-indicator{
5114
5198
  display:none;
5115
5199
  }
5200
+ .mobius-date-picker__container.--is-touch-device .mobius-text-field__input{
5201
+ min-height:52;
5202
+ }
5116
5203
  .mobius-date-picker.mobius-text-field__input{
5117
5204
  line-height:1;
5118
5205
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@simplybusiness/theme-simplybusiness",
3
- "version": "1.9.14",
3
+ "version": "1.9.16",
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.17.0",
30
- "@simplybusiness/mobius-datepicker": "^6.3.5",
31
- "@simplybusiness/mobius-journey": "^6.50.0",
32
- "@simplybusiness/theme-core": "^7.3.0"
29
+ "@simplybusiness/mobius": "^5.18.0",
30
+ "@simplybusiness/mobius-datepicker": "^6.4.0",
31
+ "@simplybusiness/mobius-journey": "^6.52.0",
32
+ "@simplybusiness/theme-core": "^7.3.1"
33
33
  },
34
34
  "devDependencies": {
35
35
  "css-loader": "^7.1.2",
package/src/index.css CHANGED
@@ -36,6 +36,7 @@
36
36
  @import "@simplybusiness/mobius-journey/src/components/Questionnaire/Section/Section.css";
37
37
  @import "@simplybusiness/mobius-journey/src/components/Questionnaire/Section/Submission.css";
38
38
  @import "@simplybusiness/mobius-journey/src/components/Questionnaire/SecurityLocks/SecurityLocks.css";
39
+ @import "@simplybusiness/mobius-journey/src/components/QuoteCards/PartialQuotesReferral/PartialQuotesReferral.css";
39
40
  @import "@simplybusiness/mobius-journey/src/components/QuoteCards/NoQuotesCard/NoQuotesCard.css";
40
41
  @import "@simplybusiness/mobius-journey/src/components/QuoteCards/NoQuotesReferral/NoQuotesReferral.css";
41
42
  @import "@simplybusiness/mobius-journey/src/components/QuoteCards/QuoteCard/Cover/Cover.css";