@simplybusiness/theme-simplybusiness 1.9.15 → 1.9.17
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 +29 -0
- package/dist/index.css +82 -10
- package/package.json +5 -5
- package/src/index.css +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,34 @@
|
|
|
1
1
|
# @simplybusiness/theme-simplybusiness
|
|
2
2
|
|
|
3
|
+
## 1.9.17
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [2392c6b]
|
|
8
|
+
- Updated dependencies [86d7cfa]
|
|
9
|
+
- Updated dependencies [80e40ef]
|
|
10
|
+
- Updated dependencies [d64d502]
|
|
11
|
+
- Updated dependencies [691d321]
|
|
12
|
+
- Updated dependencies [b640c01]
|
|
13
|
+
- Updated dependencies [455315b]
|
|
14
|
+
- Updated dependencies [3820074]
|
|
15
|
+
- Updated dependencies [d9efcc9]
|
|
16
|
+
- @simplybusiness/mobius-journey@6.53.0
|
|
17
|
+
- @simplybusiness/mobius@5.19.0
|
|
18
|
+
- @simplybusiness/mobius-datepicker@6.4.1
|
|
19
|
+
- @simplybusiness/theme-core@7.3.2
|
|
20
|
+
|
|
21
|
+
## 1.9.16
|
|
22
|
+
|
|
23
|
+
### Patch Changes
|
|
24
|
+
|
|
25
|
+
- Updated dependencies [57dc622]
|
|
26
|
+
- Updated dependencies [fe1f994]
|
|
27
|
+
- Updated dependencies [64b4fb5]
|
|
28
|
+
- Updated dependencies [6d4c55f]
|
|
29
|
+
- @simplybusiness/mobius-journey@6.52.0
|
|
30
|
+
- @simplybusiness/mobius-datepicker@6.4.0
|
|
31
|
+
|
|
3
32
|
## 1.9.15
|
|
4
33
|
|
|
5
34
|
### Patch Changes
|
package/dist/index.css
CHANGED
|
@@ -455,7 +455,9 @@ a.mobius-button:focus-visible,
|
|
|
455
455
|
--combobox-group-color:var(--color-text);
|
|
456
456
|
--combobox-group-background-color:#dad6f7;
|
|
457
457
|
--combobox-selected-background-color:var(--color-primary);
|
|
458
|
-
--listbox-height:
|
|
458
|
+
--listbox-height:min-content;
|
|
459
|
+
--listbox-max-height:350px;
|
|
460
|
+
--listbox-max-height-mobile:240px;
|
|
459
461
|
--listbox-gap:4px;
|
|
460
462
|
--option-padding:var(--size-xs) var(--size-lg);
|
|
461
463
|
}
|
|
@@ -486,6 +488,10 @@ a.mobius-button:focus-visible,
|
|
|
486
488
|
.mobius-combobox--is-expanded .mobius-combobox__list{
|
|
487
489
|
opacity:1;
|
|
488
490
|
height:var(--listbox-height);
|
|
491
|
+
max-height:var(--listbox-max-height);
|
|
492
|
+
}
|
|
493
|
+
.mobius-combobox--is-expanded.mobius-combobox--is-mobile .mobius-combobox__list{
|
|
494
|
+
max-height:var(--listbox-max-height-mobile);
|
|
489
495
|
}
|
|
490
496
|
.mobius-combobox__option{
|
|
491
497
|
padding:var(--option-padding);
|
|
@@ -1217,30 +1223,34 @@ a.mobius-button:focus-visible,
|
|
|
1217
1223
|
flex-direction:column;
|
|
1218
1224
|
}
|
|
1219
1225
|
.mobius-radio__input{
|
|
1226
|
+
position:relative;
|
|
1220
1227
|
align-self:center;
|
|
1221
|
-
appearance:none;
|
|
1222
1228
|
margin:0 calc(var(--size-xs) + 2px) 0 0;
|
|
1223
|
-
padding:
|
|
1224
|
-
|
|
1229
|
+
padding:var(--size-xs);
|
|
1230
|
+
border:2px solid var(--color-primary-light);
|
|
1225
1231
|
border-radius:50%;
|
|
1232
|
+
-webkit-appearance:none;
|
|
1233
|
+
appearance:none;
|
|
1226
1234
|
background-color:transparent;
|
|
1227
1235
|
}
|
|
1228
1236
|
.mobius-radio__input:focus-visible{
|
|
1229
1237
|
outline-offset:0;
|
|
1230
1238
|
}
|
|
1231
1239
|
.mobius-radio__input::after{
|
|
1240
|
+
position:absolute;
|
|
1232
1241
|
content:"";
|
|
1233
1242
|
display:block;
|
|
1234
1243
|
width:10px;
|
|
1235
1244
|
height:10px;
|
|
1236
1245
|
border-radius:50%;
|
|
1237
|
-
|
|
1246
|
+
top:3px;
|
|
1247
|
+
left:3px;
|
|
1238
1248
|
}
|
|
1239
1249
|
.mobius-radio__input:checked::after{
|
|
1240
1250
|
background-color:var(--color-primary);
|
|
1241
1251
|
}
|
|
1242
1252
|
.mobius-radio__input:disabled{
|
|
1243
|
-
|
|
1253
|
+
border-color:var(--color-border-medium);
|
|
1244
1254
|
}
|
|
1245
1255
|
.mobius-radio__input:disabled:checked::after{
|
|
1246
1256
|
background-color:var(--color-background-light);
|
|
@@ -1280,7 +1290,7 @@ a.mobius-button:focus-visible,
|
|
|
1280
1290
|
border-color:var(--color-primary-light);
|
|
1281
1291
|
}
|
|
1282
1292
|
.mobius-radio__label.--is-selected:not(.--is-invalid .mobius-radio__label):not(.--is-disabled) .mobius-radio__input{
|
|
1283
|
-
|
|
1293
|
+
border-color:var(--color-primary-light);
|
|
1284
1294
|
}
|
|
1285
1295
|
:is(.mobius-radio__label.--is-selected:not(.--is-invalid .mobius-radio__label):not(.--is-disabled) .mobius-radio__input):checked::after{
|
|
1286
1296
|
background-color:var(--color-primary-light);
|
|
@@ -1290,7 +1300,7 @@ a.mobius-button:focus-visible,
|
|
|
1290
1300
|
background-color:var(--color-background-input-active);
|
|
1291
1301
|
}
|
|
1292
1302
|
.mobius-radio__label:hover:not(.--is-disabled):not(.--is-invalid .mobius-radio__label) .mobius-radio__input{
|
|
1293
|
-
|
|
1303
|
+
border-color:var(--color-primary);
|
|
1294
1304
|
}
|
|
1295
1305
|
:is(.mobius-radio__label:hover:not(.--is-disabled):not(.--is-invalid .mobius-radio__label) .mobius-radio__input):checked::after{
|
|
1296
1306
|
background-color:var(--color-primary);
|
|
@@ -1303,7 +1313,7 @@ a.mobius-button:focus-visible,
|
|
|
1303
1313
|
background-color:var(--color-background-input-active);
|
|
1304
1314
|
}
|
|
1305
1315
|
.mobius-radio__label:focus-within:not(.--is-disabled):not(.--is-invalid .mobius-radio__label:focus-within:not(.--is-disabled)) .mobius-radio__input{
|
|
1306
|
-
|
|
1316
|
+
border-color:var(--color-primary);
|
|
1307
1317
|
}
|
|
1308
1318
|
:is(.mobius-radio__label:focus-within:not(.--is-disabled):not(.--is-invalid .mobius-radio__label:focus-within:not(.--is-disabled)) .mobius-radio__input):checked::after{
|
|
1309
1319
|
background-color:var(--color-primary);
|
|
@@ -1320,7 +1330,7 @@ a.mobius-button:focus-visible,
|
|
|
1320
1330
|
background-color:var(--color-error-background);
|
|
1321
1331
|
}
|
|
1322
1332
|
:is(.--is-invalid .mobius-radio__label:not(.--is-disabled)) .mobius-radio__input{
|
|
1323
|
-
|
|
1333
|
+
border-color:var(--color-error);
|
|
1324
1334
|
}
|
|
1325
1335
|
:is(:is(.--is-invalid .mobius-radio__label:not(.--is-disabled)) .mobius-radio__input):checked::after{
|
|
1326
1336
|
background-color:var(--color-error);
|
|
@@ -3830,6 +3840,65 @@ svg:not(:host).svg-inline--mobius-icon{
|
|
|
3830
3840
|
width:100%;
|
|
3831
3841
|
height:auto;
|
|
3832
3842
|
}
|
|
3843
|
+
.partial-quotes-referral__container{
|
|
3844
|
+
display:grid;
|
|
3845
|
+
grid-template-columns:1fr;
|
|
3846
|
+
align-items:center;
|
|
3847
|
+
justify-content:start;
|
|
3848
|
+
text-align:left;
|
|
3849
|
+
background:var(--color-background-highlight);
|
|
3850
|
+
border-radius:var(--radius-2);
|
|
3851
|
+
padding:var(--size-md);
|
|
3852
|
+
margin-bottom:var(--size-lg);
|
|
3853
|
+
}
|
|
3854
|
+
.partial-quotes-referral__main{
|
|
3855
|
+
display:grid;
|
|
3856
|
+
grid-template-columns:1fr;
|
|
3857
|
+
gap:var(--size-sm);
|
|
3858
|
+
}
|
|
3859
|
+
.partial-quotes-referral__main p{
|
|
3860
|
+
margin:0;
|
|
3861
|
+
}
|
|
3862
|
+
.partial-quotes-referral__title{
|
|
3863
|
+
font-weight:normal;
|
|
3864
|
+
margin-top:0;
|
|
3865
|
+
}
|
|
3866
|
+
.partial-quotes-referral__insurer-panel{
|
|
3867
|
+
display:grid;
|
|
3868
|
+
grid-template-columns:repeat(auto-fit, minmax(96px, 1fr));
|
|
3869
|
+
gap:var(--size-xs);
|
|
3870
|
+
opacity:0.8;
|
|
3871
|
+
}
|
|
3872
|
+
.partial-quotes-referral__insurer-panel *{
|
|
3873
|
+
justify-self:center;
|
|
3874
|
+
}
|
|
3875
|
+
.partial-quotes-referral-logo{
|
|
3876
|
+
width:64px;
|
|
3877
|
+
height:30px;
|
|
3878
|
+
object-fit:contain;
|
|
3879
|
+
object-position:center;
|
|
3880
|
+
gap:var(--size-xs);
|
|
3881
|
+
}
|
|
3882
|
+
@media (min-width: 850px){
|
|
3883
|
+
.partial-quotes-referral__main{
|
|
3884
|
+
gap:var(--size-lg);
|
|
3885
|
+
}
|
|
3886
|
+
|
|
3887
|
+
.partial-quotes-referral__container-variant-b .partial-quotes-referral__main{
|
|
3888
|
+
grid-template-columns:repeat(2, 1fr);
|
|
3889
|
+
grid-template-rows:1fr;
|
|
3890
|
+
}
|
|
3891
|
+
|
|
3892
|
+
.partial-quotes-referral__insurer-panel{
|
|
3893
|
+
grid-template-columns:repeat(auto-fit, minmax(128px, 1fr));
|
|
3894
|
+
gap:var(--size-md);
|
|
3895
|
+
}
|
|
3896
|
+
|
|
3897
|
+
.partial-quotes-referral-logo{
|
|
3898
|
+
width:128px;
|
|
3899
|
+
height:60px;
|
|
3900
|
+
}
|
|
3901
|
+
}
|
|
3833
3902
|
.mobius-no-quotes-card{
|
|
3834
3903
|
margin:0;
|
|
3835
3904
|
border:1px solid var(--color-border);
|
|
@@ -5138,6 +5207,9 @@ svg:not(:host).svg-inline--mobius-icon{
|
|
|
5138
5207
|
.mobius-date-picker__container:not(.--is-touch-device) .mobius-text-field__input::-webkit-calendar-picker-indicator{
|
|
5139
5208
|
display:none;
|
|
5140
5209
|
}
|
|
5210
|
+
.mobius-date-picker__container.--is-touch-device .mobius-text-field__input{
|
|
5211
|
+
min-height:52;
|
|
5212
|
+
}
|
|
5141
5213
|
.mobius-date-picker.mobius-text-field__input{
|
|
5142
5214
|
line-height:1;
|
|
5143
5215
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@simplybusiness/theme-simplybusiness",
|
|
3
|
-
"version": "1.9.
|
|
3
|
+
"version": "1.9.17",
|
|
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.
|
|
31
|
-
"@simplybusiness/mobius-journey": "^6.
|
|
32
|
-
"@simplybusiness/theme-core": "^7.3.
|
|
29
|
+
"@simplybusiness/mobius": "^5.19.0",
|
|
30
|
+
"@simplybusiness/mobius-datepicker": "^6.4.1",
|
|
31
|
+
"@simplybusiness/mobius-journey": "^6.53.0",
|
|
32
|
+
"@simplybusiness/theme-core": "^7.3.2"
|
|
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";
|