@simplybusiness/theme-simplybusiness 1.9.16 → 1.9.18
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 +26 -0
- package/dist/index.css +185 -10
- package/package.json +5 -5
- package/src/index.css +3 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,31 @@
|
|
|
1
1
|
# @simplybusiness/theme-simplybusiness
|
|
2
2
|
|
|
3
|
+
## 1.9.18
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- d8f280f: Export journey-component atoms
|
|
8
|
+
- Updated dependencies [d8f280f]
|
|
9
|
+
- @simplybusiness/mobius-journey@6.53.1
|
|
10
|
+
|
|
11
|
+
## 1.9.17
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- Updated dependencies [2392c6b]
|
|
16
|
+
- Updated dependencies [86d7cfa]
|
|
17
|
+
- Updated dependencies [80e40ef]
|
|
18
|
+
- Updated dependencies [d64d502]
|
|
19
|
+
- Updated dependencies [691d321]
|
|
20
|
+
- Updated dependencies [b640c01]
|
|
21
|
+
- Updated dependencies [455315b]
|
|
22
|
+
- Updated dependencies [3820074]
|
|
23
|
+
- Updated dependencies [d9efcc9]
|
|
24
|
+
- @simplybusiness/mobius-journey@6.53.0
|
|
25
|
+
- @simplybusiness/mobius@5.19.0
|
|
26
|
+
- @simplybusiness/mobius-datepicker@6.4.1
|
|
27
|
+
- @simplybusiness/theme-core@7.3.2
|
|
28
|
+
|
|
3
29
|
## 1.9.16
|
|
4
30
|
|
|
5
31
|
### 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);
|
|
@@ -5187,6 +5197,171 @@ svg:not(:host).svg-inline--mobius-icon{
|
|
|
5187
5197
|
padding-right:var(--size-sm);
|
|
5188
5198
|
transition:height 1s;
|
|
5189
5199
|
}
|
|
5200
|
+
.mobius-payment_summary__styled-div{
|
|
5201
|
+
display:grid;
|
|
5202
|
+
row-gap:var(--size-sm);
|
|
5203
|
+
margin-top:var(--size-sm);
|
|
5204
|
+
}
|
|
5205
|
+
.mobius-payment_summary__styled-div .incomplete-quote-actions{
|
|
5206
|
+
padding:14px;
|
|
5207
|
+
}
|
|
5208
|
+
@media (max-width: 640px){
|
|
5209
|
+
.mobius-payment_summary__styled-div .incomplete-quote-actions{
|
|
5210
|
+
padding:16px;
|
|
5211
|
+
}
|
|
5212
|
+
}
|
|
5213
|
+
.mobius-payment_summary__button-div{
|
|
5214
|
+
display:flex;
|
|
5215
|
+
justify-content:space-around;
|
|
5216
|
+
margin-top:25px;
|
|
5217
|
+
margin-bottom:0;
|
|
5218
|
+
gap:var(--size-sm);
|
|
5219
|
+
}
|
|
5220
|
+
.mobius-payment_summary__big-button-span{
|
|
5221
|
+
font-weight:700;
|
|
5222
|
+
margin-left:10px;
|
|
5223
|
+
margin-right:10px;
|
|
5224
|
+
}
|
|
5225
|
+
.mobius-payment_summary__styled-divider{
|
|
5226
|
+
height:var(--size-sm) !important;
|
|
5227
|
+
}
|
|
5228
|
+
.mobius-payment_summary__styled-flex{
|
|
5229
|
+
width:100%;
|
|
5230
|
+
flex-direction:row;
|
|
5231
|
+
justify-content:space-between;
|
|
5232
|
+
}
|
|
5233
|
+
.mobius-payment_summary__styled-flex .today-payment,.mobius-payment_summary__styled-flex .total-payment{
|
|
5234
|
+
font-weight:bold;
|
|
5235
|
+
}
|
|
5236
|
+
.mobius-payment_summary__styled-wrapper{
|
|
5237
|
+
width:100%;
|
|
5238
|
+
flex-direction:column;
|
|
5239
|
+
}
|
|
5240
|
+
.mobius-payment_summary__styled-wrapper.combined-styles .mobius-text.--is-small{
|
|
5241
|
+
line-height:18px;
|
|
5242
|
+
color:var(--color-text);
|
|
5243
|
+
}
|
|
5244
|
+
.mobius-payment_summary__styled-wrapper.combined-styles .today-payment,.mobius-payment_summary__styled-wrapper.combined-styles .total-payment{
|
|
5245
|
+
font-weight:normal;
|
|
5246
|
+
}
|
|
5247
|
+
.mobius-payment_summary__styled-wrapper.combined-styles .monthly-payment{
|
|
5248
|
+
margin-top:var(--size-xs);
|
|
5249
|
+
}
|
|
5250
|
+
.mobius-payment_summary__styled-wrapper.combined-styles .mobius-divider{
|
|
5251
|
+
height:var(--size-sm);
|
|
5252
|
+
}
|
|
5253
|
+
.mobius-payment_summary__styled-wrapper.combined-styles .mobius-divider__inner{
|
|
5254
|
+
background-color:var(--color-border-medium);
|
|
5255
|
+
}
|
|
5256
|
+
.mobius-payment_summary__summary-fragment-wrapper .arrow{
|
|
5257
|
+
display:inline-block;
|
|
5258
|
+
width:9px;
|
|
5259
|
+
height:9px;
|
|
5260
|
+
border-top:1px solid var(--color-primary);
|
|
5261
|
+
border-right:1px solid var(--color-primary);
|
|
5262
|
+
margin-right:8px;
|
|
5263
|
+
transform-origin:center;
|
|
5264
|
+
margin-bottom:3px;
|
|
5265
|
+
}
|
|
5266
|
+
.mobius-payment_summary__summary-fragment-wrapper .arrow-top{
|
|
5267
|
+
transform:rotate(-45deg);
|
|
5268
|
+
}
|
|
5269
|
+
.mobius-payment_summary__summary-fragment-wrapper .arrow-bottom{
|
|
5270
|
+
transform:rotate(135deg);
|
|
5271
|
+
}
|
|
5272
|
+
.mobius-payment_summary__summary-fragment-wrapper .additional_covers{
|
|
5273
|
+
border-top:1px solid #cccccc;
|
|
5274
|
+
padding-top:16px;
|
|
5275
|
+
}
|
|
5276
|
+
.mobius-payment_summary__summary-fragment-wrapper .additional_covers ~ .additional_covers{
|
|
5277
|
+
border:none;
|
|
5278
|
+
padding-top:0px;
|
|
5279
|
+
}
|
|
5280
|
+
.mobius-payment_summary__summary-fragment-wrapper .align-right{
|
|
5281
|
+
text-align:right;
|
|
5282
|
+
}
|
|
5283
|
+
.mobius-payment_summary__summary-fragment-wrapper.combined-styles .mobius-divider__inner{
|
|
5284
|
+
background-color:var(--color-border-medium);
|
|
5285
|
+
}
|
|
5286
|
+
.mobius-payment_summary__section-header-text{
|
|
5287
|
+
margin-top:0;
|
|
5288
|
+
margin-bottom:16px;
|
|
5289
|
+
font-size:16px;
|
|
5290
|
+
font-weight:bold;
|
|
5291
|
+
}
|
|
5292
|
+
.mobius-payment_summary__styled-grid{
|
|
5293
|
+
display:grid;
|
|
5294
|
+
grid-template-columns:65% 35%;
|
|
5295
|
+
width:100%;
|
|
5296
|
+
}
|
|
5297
|
+
.mobius-payment_summary__price-summary-group{
|
|
5298
|
+
padding:13px;
|
|
5299
|
+
box-sizing:border-box;
|
|
5300
|
+
}
|
|
5301
|
+
.mobius-payment_summary__border-bottom{
|
|
5302
|
+
border-bottom:1px solid #ccc;
|
|
5303
|
+
}
|
|
5304
|
+
.mobius-payment_summary__form-actions-box{
|
|
5305
|
+
grid-area:form-actions;
|
|
5306
|
+
}
|
|
5307
|
+
.mobius-payment_summary__payment-summary-box{
|
|
5308
|
+
grid-area:payment-summary;
|
|
5309
|
+
}
|
|
5310
|
+
.mobius-payment_summary__product-payment-options{
|
|
5311
|
+
grid-area:mobius-payment_summary__product-payment-options;
|
|
5312
|
+
display:flex;
|
|
5313
|
+
flex-direction:column;
|
|
5314
|
+
border-radius:8px;
|
|
5315
|
+
}
|
|
5316
|
+
.mobius-payment_summary__product-payment-options .mobius-segment-group{
|
|
5317
|
+
margin-bottom:0;
|
|
5318
|
+
}
|
|
5319
|
+
.mobius-payment_summary__product-payment-options .mobius-segment-group + .mobius-segment-group{
|
|
5320
|
+
margin-top:32px;
|
|
5321
|
+
}
|
|
5322
|
+
.mobius-payment_summary__product-payment-options .non-purchasable-product{
|
|
5323
|
+
border:3px solid var(--color-primary);
|
|
5324
|
+
}
|
|
5325
|
+
.mobius-payment_summary__product-payment-options .exclude-for-purchase{
|
|
5326
|
+
opacity:0.5;
|
|
5327
|
+
cursor:not-allowed;
|
|
5328
|
+
}
|
|
5329
|
+
.mobius-payment_summary__product-payment-options .non-eligible-item{
|
|
5330
|
+
flex-flow:wrap;
|
|
5331
|
+
}
|
|
5332
|
+
.mobius-payment_summary__product-payment-options.combined-styles .mobius-segment-group:not(.non-purchasable-product){
|
|
5333
|
+
border:1px solid var(--color-border-medium);
|
|
5334
|
+
}
|
|
5335
|
+
.mobius-payment_summary__outer-grid{
|
|
5336
|
+
display:grid;
|
|
5337
|
+
gap:var(--font-size-6);
|
|
5338
|
+
grid-template-columns:2fr 1fr;
|
|
5339
|
+
grid-template-areas:"mobius-payment_summary__product-payment-options payment-summary" "continuation-notice payment-summary" "form-actions payment-summary";
|
|
5340
|
+
}
|
|
5341
|
+
.mobius-payment_summary__outer-grid.combined-payment-page{
|
|
5342
|
+
gap:var(--font-size-3);
|
|
5343
|
+
grid-template-columns:1fr;
|
|
5344
|
+
grid-template-areas:"mobius-payment_summary__product-payment-options" "continuation-notice" "payment-summary" "form-actions";
|
|
5345
|
+
}
|
|
5346
|
+
@media (max-width: 640px){
|
|
5347
|
+
.mobius-payment_summary__outer-grid{
|
|
5348
|
+
grid-template-columns:1fr;
|
|
5349
|
+
grid-template-areas:"mobius-payment_summary__product-payment-options" "continuation-notice" "payment-summary" "form-actions";
|
|
5350
|
+
}
|
|
5351
|
+
}
|
|
5352
|
+
.mobius-payment_summary__outer-grid.show-payment-summary-only{
|
|
5353
|
+
grid-template-columns:1fr;
|
|
5354
|
+
grid-template-areas:"payment-summary";
|
|
5355
|
+
}
|
|
5356
|
+
.mobius-payment_summary__styled-image{
|
|
5357
|
+
margin-bottom:12px;
|
|
5358
|
+
max-height:45px;
|
|
5359
|
+
max-width:100%;
|
|
5360
|
+
}
|
|
5361
|
+
.mobius-payment_summary__persistent-price-summary{
|
|
5362
|
+
background-color:white;
|
|
5363
|
+
width:fit-content;
|
|
5364
|
+
}
|
|
5190
5365
|
:root,
|
|
5191
5366
|
:host{
|
|
5192
5367
|
--date-picker-day-size:38px;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@simplybusiness/theme-simplybusiness",
|
|
3
|
-
"version": "1.9.
|
|
3
|
+
"version": "1.9.18",
|
|
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.4.
|
|
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.1",
|
|
32
|
+
"@simplybusiness/theme-core": "^7.3.2"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
35
|
"css-loader": "^7.1.2",
|
package/src/index.css
CHANGED
|
@@ -70,6 +70,9 @@
|
|
|
70
70
|
@import "@simplybusiness/mobius-journey/src/pages/AgentReferralPage/AgentReferralContainer.css";
|
|
71
71
|
@import "@simplybusiness/mobius-journey/src/pages/Main.css";
|
|
72
72
|
|
|
73
|
+
/* Journey Components (payment summary, etc.) */
|
|
74
|
+
@import "@simplybusiness/mobius-journey/src/components/shared/PersistentSummary/styles.css";
|
|
75
|
+
|
|
73
76
|
/* @simplybusiness/mobius-datepicker */
|
|
74
77
|
@import "@simplybusiness/mobius-datepicker/src/components/DatePicker/DatePicker.css";
|
|
75
78
|
|