@simplybusiness/theme-simplybusiness 0.5.1 → 0.5.3
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 +32 -0
- package/dist/index.css +147 -21
- package/package.json +6 -6
- package/src/index.css +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,37 @@
|
|
|
1
1
|
# @simplybusiness/theme-simplybusiness
|
|
2
2
|
|
|
3
|
+
## 0.5.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 591033f: Adds No Quotes Referral content for UK
|
|
8
|
+
- Updated dependencies [35dedb3]
|
|
9
|
+
- Updated dependencies [8c5f210]
|
|
10
|
+
- Updated dependencies [7ba4708]
|
|
11
|
+
- Updated dependencies [982456d]
|
|
12
|
+
- Updated dependencies [591033f]
|
|
13
|
+
- Updated dependencies [e4b945a]
|
|
14
|
+
- Updated dependencies [8bafced]
|
|
15
|
+
- Updated dependencies [8ef7a22]
|
|
16
|
+
- Updated dependencies [8e8b480]
|
|
17
|
+
- Updated dependencies [749961a]
|
|
18
|
+
- Updated dependencies [fe4fc40]
|
|
19
|
+
- Updated dependencies [cf95eca]
|
|
20
|
+
- Updated dependencies [144feef]
|
|
21
|
+
- Updated dependencies [b71410a]
|
|
22
|
+
- @simplybusiness/mobius-journey@6.7.0
|
|
23
|
+
- @simplybusiness/mobius@5.3.0
|
|
24
|
+
- @simplybusiness/mobius-datepicker@6.0.6
|
|
25
|
+
- @simplybusiness/theme-core@7.1.4
|
|
26
|
+
|
|
27
|
+
## 0.5.2
|
|
28
|
+
|
|
29
|
+
### Patch Changes
|
|
30
|
+
|
|
31
|
+
- Updated dependencies [e52207c]
|
|
32
|
+
- Updated dependencies [eef7833]
|
|
33
|
+
- @simplybusiness/mobius-journey@6.6.1
|
|
34
|
+
|
|
3
35
|
## 0.5.1
|
|
4
36
|
|
|
5
37
|
### Patch Changes
|
package/dist/index.css
CHANGED
|
@@ -3177,11 +3177,17 @@ svg:not(:host).svg-inline--mobius-icon{
|
|
|
3177
3177
|
}
|
|
3178
3178
|
.mobius-cover-toggles-container__outer.--is-payment-aside{
|
|
3179
3179
|
display:grid;
|
|
3180
|
-
grid-template-columns:1fr
|
|
3180
|
+
grid-template-columns:1fr;
|
|
3181
3181
|
column-gap:var(--size-lg);
|
|
3182
3182
|
row-gap:var(--size-sm);
|
|
3183
3183
|
align-items:self-start;
|
|
3184
3184
|
}
|
|
3185
|
+
.mobius-cover-toggles-container{
|
|
3186
|
+
display:grid;
|
|
3187
|
+
grid-template-columns:repeat(auto-fill, minmax(300px, 1fr));
|
|
3188
|
+
gap:var(--size-sm);
|
|
3189
|
+
margin-bottom:var(--size-sm);
|
|
3190
|
+
}
|
|
3185
3191
|
.mobius-cover-toggles-container .mobius-cover-toggle{
|
|
3186
3192
|
margin-bottom:0;
|
|
3187
3193
|
align-self:end;
|
|
@@ -3189,16 +3195,14 @@ svg:not(:host).svg-inline--mobius-icon{
|
|
|
3189
3195
|
.mobius-cover-toggles-container .mobius-select__outer{
|
|
3190
3196
|
margin-bottom:0;
|
|
3191
3197
|
}
|
|
3192
|
-
.mobius-cover-toggles-container.--is-desktop{
|
|
3193
|
-
display:grid;
|
|
3194
|
-
grid-template-columns:repeat(3, 1fr);
|
|
3195
|
-
column-gap:var(--size-lg);
|
|
3196
|
-
row-gap:var(--size-sm);
|
|
3197
|
-
align-items:end;
|
|
3198
|
-
}
|
|
3199
3198
|
.mobius-cover-toggles-container.--is-collapsible{
|
|
3200
3199
|
padding-top:var(--size-xs);
|
|
3201
3200
|
}
|
|
3201
|
+
@media (min-width: 600px){
|
|
3202
|
+
.mobius-cover-toggles-container__outer.--is-payment-aside{
|
|
3203
|
+
grid-template-columns:1fr auto;
|
|
3204
|
+
}
|
|
3205
|
+
}
|
|
3202
3206
|
.mobius-edit-limits__button{
|
|
3203
3207
|
display:flex;
|
|
3204
3208
|
gap:var(--size-xs);
|
|
@@ -3316,12 +3320,15 @@ svg:not(:host).svg-inline--mobius-icon{
|
|
|
3316
3320
|
.mobius-quote-headline__highlight{
|
|
3317
3321
|
color:var(--color-primary);
|
|
3318
3322
|
}
|
|
3319
|
-
.mobius-quote-headline__text
|
|
3323
|
+
.mobius-quote-headline__text{
|
|
3320
3324
|
font-size:var(--font-size-3);
|
|
3321
3325
|
margin:0 4%;
|
|
3322
3326
|
text-align:center;
|
|
3323
3327
|
}
|
|
3324
|
-
.mobius-quote-
|
|
3328
|
+
.mobius-quote-headline__text--variant-without-qdp-drawer{
|
|
3329
|
+
font-size:var(--font-size-2);
|
|
3330
|
+
}
|
|
3331
|
+
.mobius-quote-headline__title{
|
|
3325
3332
|
font-size:var(--font-size-title);
|
|
3326
3333
|
margin:0;
|
|
3327
3334
|
}
|
|
@@ -3344,10 +3351,14 @@ svg:not(:host).svg-inline--mobius-icon{
|
|
|
3344
3351
|
margin-bottom:var(--size-lg);
|
|
3345
3352
|
}
|
|
3346
3353
|
@media (min-width: 850px){
|
|
3347
|
-
|
|
3348
|
-
|
|
3349
|
-
|
|
3350
|
-
|
|
3354
|
+
.mobius-quote-headline__text{
|
|
3355
|
+
font-size:var(--font-size-4);
|
|
3356
|
+
margin:20px;
|
|
3357
|
+
}
|
|
3358
|
+
|
|
3359
|
+
.mobius-quote-headline__text--variant-without-qdp-drawer{
|
|
3360
|
+
font-size:var(--font-size-2);
|
|
3361
|
+
}
|
|
3351
3362
|
}
|
|
3352
3363
|
:root,
|
|
3353
3364
|
:host{
|
|
@@ -3651,9 +3662,13 @@ svg:not(:host).svg-inline--mobius-icon{
|
|
|
3651
3662
|
text-decoration:underline;
|
|
3652
3663
|
text-underline-offset:6px;
|
|
3653
3664
|
}
|
|
3654
|
-
.mobius-quote-actions{
|
|
3665
|
+
.mobius-quote-actions-form{
|
|
3666
|
+
display:flex;
|
|
3655
3667
|
align-items:flex-end;
|
|
3656
3668
|
}
|
|
3669
|
+
.mobius-quote-actions{
|
|
3670
|
+
width:100%;
|
|
3671
|
+
}
|
|
3657
3672
|
@supports (-webkit-touch-callout: none) and (not (translate: none)){
|
|
3658
3673
|
.mobius-quote-actions :not(:last-child){
|
|
3659
3674
|
margin-right:var(--size-sm);
|
|
@@ -3708,7 +3723,7 @@ svg:not(:host).svg-inline--mobius-icon{
|
|
|
3708
3723
|
@media (min-width: 850px){
|
|
3709
3724
|
.--is-horizontal .mobius-quote-card{
|
|
3710
3725
|
grid-template-areas:"header coverage pricing" "header coverage actions";
|
|
3711
|
-
grid-template-columns:
|
|
3726
|
+
grid-template-columns:160px 1fr 1fr;
|
|
3712
3727
|
grid-template-rows:repeat(2, auto);
|
|
3713
3728
|
row-gap:49px;
|
|
3714
3729
|
padding:var(--size-lg);
|
|
@@ -3735,6 +3750,9 @@ svg:not(:host).svg-inline--mobius-icon{
|
|
|
3735
3750
|
margin-top:var(--size-xs);
|
|
3736
3751
|
margin-bottom:var(--size-sm);
|
|
3737
3752
|
}
|
|
3753
|
+
.mobius-quote-card__badges.--is-uk{
|
|
3754
|
+
margin:0;
|
|
3755
|
+
}
|
|
3738
3756
|
@supports (-webkit-touch-callout: none) and (not (translate: none)){
|
|
3739
3757
|
.mobius-quote-card__badges:not(:last-child){
|
|
3740
3758
|
margin-bottom:var(--size-xs);
|
|
@@ -3803,15 +3821,23 @@ svg:not(:host).svg-inline--mobius-icon{
|
|
|
3803
3821
|
margin:0;
|
|
3804
3822
|
font-size:var(--font-size-small-paragraph);
|
|
3805
3823
|
}
|
|
3824
|
+
.--is-horizontal .mobius-quote-card__coverage{
|
|
3825
|
+
margin-bottom:0;
|
|
3826
|
+
border:none;
|
|
3827
|
+
}
|
|
3806
3828
|
@media (min-width: 850px){
|
|
3807
3829
|
.--is-horizontal .mobius-quote-card__coverage{
|
|
3808
|
-
border-top:none;
|
|
3809
|
-
border-right:1px solid var(--color-border-light);
|
|
3810
3830
|
padding-right:var(--size-sm);
|
|
3811
|
-
margin-bottom:0;
|
|
3812
|
-
margin-right:var(--size-sm);
|
|
3813
3831
|
}
|
|
3814
3832
|
}
|
|
3833
|
+
:is(.--is-horizontal .mobius-quote-card__coverage) .mobius-quote-card__coverage-item{
|
|
3834
|
+
display:grid;
|
|
3835
|
+
align-items:center;
|
|
3836
|
+
grid-template-columns:3fr minmax(0, 2fr) minmax(0, 1fr);
|
|
3837
|
+
}
|
|
3838
|
+
:is(.--is-horizontal .mobius-quote-card__coverage) .mobius-grid__item{
|
|
3839
|
+
line-height:var(--line-height-normal);
|
|
3840
|
+
}
|
|
3815
3841
|
.mobius-quote-card__coverage-title.mobius-text{
|
|
3816
3842
|
margin:0 0 16px 0;
|
|
3817
3843
|
text-transform:uppercase;
|
|
@@ -3846,6 +3872,13 @@ svg:not(:host).svg-inline--mobius-icon{
|
|
|
3846
3872
|
margin-right:var(--size-xs);
|
|
3847
3873
|
min-width:var(--size-sm);
|
|
3848
3874
|
}
|
|
3875
|
+
.mobius-quote-card__coverage-cross-icon{
|
|
3876
|
+
margin-top:2px;
|
|
3877
|
+
width:var(--size-sm);
|
|
3878
|
+
color:var(--color-error);
|
|
3879
|
+
margin-right:var(--size-xs);
|
|
3880
|
+
min-width:var(--size-sm);
|
|
3881
|
+
}
|
|
3849
3882
|
.mobius-quote-card__included-by-insurer-icon{
|
|
3850
3883
|
margin-bottom:5px;
|
|
3851
3884
|
width:var(--size-sm);
|
|
@@ -3893,6 +3926,33 @@ svg:not(:host).svg-inline--mobius-icon{
|
|
|
3893
3926
|
:is(.mobius-quote-card__coverage-item .mobius-accordion__content) .mobius-quote-card__cover:last-child{
|
|
3894
3927
|
margin-bottom:0;
|
|
3895
3928
|
}
|
|
3929
|
+
.mobius-quote-card__coverage-item-excess-link{
|
|
3930
|
+
-webkit-text-decoration:underline;
|
|
3931
|
+
text-decoration:underline;
|
|
3932
|
+
text-underline-offset:5px;
|
|
3933
|
+
}
|
|
3934
|
+
.mobius-quote-card__coverage-item-excess-modal .mobius-modal__header{
|
|
3935
|
+
align-items:center;
|
|
3936
|
+
font-size:var(--font-size-lead);
|
|
3937
|
+
padding-bottom:0;
|
|
3938
|
+
}
|
|
3939
|
+
.mobius-quote-card__coverage-item-excess-modal .mobius-modal__content{
|
|
3940
|
+
margin-top:var(--size-xs);
|
|
3941
|
+
}
|
|
3942
|
+
.mobius-quote-card__coverage-item-excess-modal .mobius-quote-card__cover{
|
|
3943
|
+
color:var(--color-text);
|
|
3944
|
+
font-size:var(--font-size-small-paragraph);
|
|
3945
|
+
margin:var(--size-xxs) 0;
|
|
3946
|
+
padding-left:0;
|
|
3947
|
+
}
|
|
3948
|
+
.mobius-quote-card__coverage-item-excess-modal .mobius-quote-card__cover-amount{
|
|
3949
|
+
max-width:70%;
|
|
3950
|
+
text-align:right;
|
|
3951
|
+
}
|
|
3952
|
+
.mobius-quote-card__coverage-item-excess-modal .mobius-modal__close{
|
|
3953
|
+
font-size:var(--font-size-regular);
|
|
3954
|
+
padding:calc(var(--size-xs) + var(--size-xxs)) calc(var(--size-sm) + 2px);
|
|
3955
|
+
}
|
|
3896
3956
|
.mobius-quote-card__deductibles-title.--is-p{
|
|
3897
3957
|
margin-top:4px;
|
|
3898
3958
|
margin-bottom:0;
|
|
@@ -3945,11 +4005,22 @@ svg:not(:host).svg-inline--mobius-icon{
|
|
|
3945
4005
|
}
|
|
3946
4006
|
}
|
|
3947
4007
|
.mobius-quote-card__header-logo{
|
|
3948
|
-
max-width:144px;
|
|
3949
4008
|
max-height:var(--size-xl);
|
|
3950
4009
|
object-fit:contain;
|
|
3951
4010
|
object-position:left;
|
|
3952
4011
|
}
|
|
4012
|
+
.mobius-quote-card__header-logo.--is-uk{
|
|
4013
|
+
object-position:center;
|
|
4014
|
+
max-height:50px;
|
|
4015
|
+
margin-bottom:var(--size-sm);
|
|
4016
|
+
}
|
|
4017
|
+
@media (min-width: 850px){
|
|
4018
|
+
.mobius-quote-card__header-logo.--is-uk{
|
|
4019
|
+
object-position:left;
|
|
4020
|
+
max-height:var(--size-xl);
|
|
4021
|
+
margin-bottom:0;
|
|
4022
|
+
}
|
|
4023
|
+
}
|
|
3953
4024
|
.mobius-quote-card__explainer-title{
|
|
3954
4025
|
color:var(--color-text-medium);
|
|
3955
4026
|
-webkit-text-decoration:underline;
|
|
@@ -4033,6 +4104,9 @@ svg:not(:host).svg-inline--mobius-icon{
|
|
|
4033
4104
|
grid-area:pricing;
|
|
4034
4105
|
width:100%;
|
|
4035
4106
|
}
|
|
4107
|
+
.mobius-quote-card__pricing.--is-uk{
|
|
4108
|
+
margin-top:0;
|
|
4109
|
+
}
|
|
4036
4110
|
.mobius-quote-card__pricing-primary-amount.mobius-text{
|
|
4037
4111
|
font-size:var(--font-size-title);
|
|
4038
4112
|
font-weight:var(--font-weight-bold);
|
|
@@ -4040,6 +4114,9 @@ svg:not(:host).svg-inline--mobius-icon{
|
|
|
4040
4114
|
margin-top:0;
|
|
4041
4115
|
margin-bottom:0;
|
|
4042
4116
|
}
|
|
4117
|
+
.mobius-quote-card__pricing-primary-amount.mobius-text.--is-uk{
|
|
4118
|
+
font-size:28px;
|
|
4119
|
+
}
|
|
4043
4120
|
.mobius-quote-card__pricing-total-amount.mobius-text{
|
|
4044
4121
|
font-weight:var(--font-weight-bold);
|
|
4045
4122
|
text-align:right;
|
|
@@ -4068,6 +4145,19 @@ svg:not(:host).svg-inline--mobius-icon{
|
|
|
4068
4145
|
border-left:var(--size-xxs) solid var(--color-accent);
|
|
4069
4146
|
padding-left:var(--size-xs);
|
|
4070
4147
|
}
|
|
4148
|
+
.mobius-quote-card__instalments-grid{
|
|
4149
|
+
display:grid;
|
|
4150
|
+
grid-template-columns:1fr auto;
|
|
4151
|
+
margin-top:var(--size-xs);
|
|
4152
|
+
color:var(--color-text-medium);
|
|
4153
|
+
}
|
|
4154
|
+
.mobius-quote-card__instalments-grid p{
|
|
4155
|
+
font-size:var(--font-size-small-paragraph);
|
|
4156
|
+
margin:0;
|
|
4157
|
+
}
|
|
4158
|
+
.mobius-quote-card__instalments-grid .mobius-quote-card__instalment_amount{
|
|
4159
|
+
text-align:right;
|
|
4160
|
+
}
|
|
4071
4161
|
.mobius-quote-card__amount-due-iterated.mobius-text{
|
|
4072
4162
|
font-size:var(--font-size-small-paragraph);
|
|
4073
4163
|
color:var(--color-text-medium);
|
|
@@ -4249,6 +4339,42 @@ svg:not(:host).svg-inline--mobius-icon{
|
|
|
4249
4339
|
width:290px;
|
|
4250
4340
|
}
|
|
4251
4341
|
}
|
|
4342
|
+
.no-quotes-referral__container{
|
|
4343
|
+
display:grid;
|
|
4344
|
+
grid-template-columns:1fr;
|
|
4345
|
+
align-items:center;
|
|
4346
|
+
justify-content:center;
|
|
4347
|
+
gap:var(--size-xs);
|
|
4348
|
+
text-align:center;
|
|
4349
|
+
}
|
|
4350
|
+
.no-quotes-referral__insurer-panel{
|
|
4351
|
+
display:grid;
|
|
4352
|
+
grid-template-columns:repeat(auto-fit, minmax(64px, 1fr));
|
|
4353
|
+
gap:var(--size-xs);
|
|
4354
|
+
}
|
|
4355
|
+
.no-quotes-referral__insurer-panel *{
|
|
4356
|
+
justify-self:center;
|
|
4357
|
+
}
|
|
4358
|
+
.no-quotes-referral-logo{
|
|
4359
|
+
width:64px;
|
|
4360
|
+
height:30px;
|
|
4361
|
+
object-fit:contain;
|
|
4362
|
+
object-position:center;
|
|
4363
|
+
gap:var(--size-xs);
|
|
4364
|
+
}
|
|
4365
|
+
@media (min-width: 850px){
|
|
4366
|
+
.no-quotes-referral__container{
|
|
4367
|
+
gap:var(--size-lg);
|
|
4368
|
+
}
|
|
4369
|
+
.no-quotes-referral__insurer-panel{
|
|
4370
|
+
grid-template-columns:repeat(auto-fit, minmax(128px, 1fr));
|
|
4371
|
+
gap:var(--size-md);
|
|
4372
|
+
}
|
|
4373
|
+
.no-quotes-referral-logo{
|
|
4374
|
+
width:128px;
|
|
4375
|
+
height:60px;
|
|
4376
|
+
}
|
|
4377
|
+
}
|
|
4252
4378
|
.mobius-quote-help{
|
|
4253
4379
|
--chopin-quote-help-message-background:var(--color-background-highlight);
|
|
4254
4380
|
--chopin-quote-help-arrow-size:var(--size-xs);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@simplybusiness/theme-simplybusiness",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.3",
|
|
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.0.
|
|
31
|
-
"@simplybusiness/mobius-journey": "^6.
|
|
32
|
-
"@simplybusiness/theme-core": "^7.1.
|
|
29
|
+
"@simplybusiness/mobius": "^5.3.0",
|
|
30
|
+
"@simplybusiness/mobius-datepicker": "^6.0.6",
|
|
31
|
+
"@simplybusiness/mobius-journey": "^6.7.0",
|
|
32
|
+
"@simplybusiness/theme-core": "^7.1.4"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
35
|
"css-loader": "^7.1.2",
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
"resolve-url-loader": "^5.0.0",
|
|
45
45
|
"ts-loader": "^9.5.1",
|
|
46
46
|
"typescript": "^5.6.2",
|
|
47
|
-
"webpack": "^5.
|
|
47
|
+
"webpack": "^5.95.0",
|
|
48
48
|
"webpack-cli": "^5.1.4"
|
|
49
49
|
}
|
|
50
50
|
}
|
package/src/index.css
CHANGED
|
@@ -29,6 +29,7 @@
|
|
|
29
29
|
@import "@simplybusiness/mobius-journey/src/components/QuoteComparison/Headline/QuoteHeadline.css";
|
|
30
30
|
@import "@simplybusiness/mobius-journey/src/components/QuoteComparison/PaymentToggle/PaymentToggle.css";
|
|
31
31
|
@import "@simplybusiness/mobius-journey/src/components/QuoteComparison/QuoteCards/QuoteCards.css";
|
|
32
|
+
@import "@simplybusiness/mobius-journey/src/components/QuoteComparison/QuoteCards/NoQuotesReferral/NoQuotesReferral.css";
|
|
32
33
|
@import "@simplybusiness/mobius-journey/src/components/QuoteHelp/QuoteHelp.css";
|
|
33
34
|
@import "@simplybusiness/mobius-journey/src/components/Referral/Referral.css";
|
|
34
35
|
@import "@simplybusiness/mobius-journey/src/components/TradeSelector/TradeSelector.css";
|