@simplybusiness/theme-simplybusiness 1.15.11 → 1.16.0
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 +13 -0
- package/dist/index.css +24 -8
- package/package.json +2 -2
- package/src/index.css +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# @simplybusiness/theme-simplybusiness
|
|
2
2
|
|
|
3
|
+
## 1.16.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 1099cf1: Adds child questions to Personalised Cover options
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies [8d3368e]
|
|
12
|
+
- Updated dependencies [1099cf1]
|
|
13
|
+
- Updated dependencies [40cfeff]
|
|
14
|
+
- @simplybusiness/mobius-journey@7.3.0
|
|
15
|
+
|
|
3
16
|
## 1.15.11
|
|
4
17
|
|
|
5
18
|
### Patch Changes
|
package/dist/index.css
CHANGED
|
@@ -2777,6 +2777,15 @@ svg:not(:host).svg-inline--mobius-icon{
|
|
|
2777
2777
|
.mobius-agent-resources .mobius-link-button{
|
|
2778
2778
|
text-align:center;
|
|
2779
2779
|
}
|
|
2780
|
+
.mobius-child-question__primary-text{
|
|
2781
|
+
color:var(--color-text);
|
|
2782
|
+
}
|
|
2783
|
+
@media only screen and (min-width: 641px){
|
|
2784
|
+
.mobius-child-question__input-wrapper{
|
|
2785
|
+
display:grid;
|
|
2786
|
+
grid-template-columns:2fr 1fr;
|
|
2787
|
+
}
|
|
2788
|
+
}
|
|
2780
2789
|
.mobius-cover-option{
|
|
2781
2790
|
box-sizing:border-box;
|
|
2782
2791
|
width:100%;
|
|
@@ -2806,11 +2815,6 @@ svg:not(:host).svg-inline--mobius-icon{
|
|
|
2806
2815
|
.mobius-cover-option .mobius-select__outer{
|
|
2807
2816
|
margin-top:var(--size-sm)
|
|
2808
2817
|
}
|
|
2809
|
-
@media only screen and (min-width: 641px){
|
|
2810
|
-
.mobius-cover-option .mobius-select__wrapper{
|
|
2811
|
-
max-width:66.67%;
|
|
2812
|
-
}
|
|
2813
|
-
}
|
|
2814
2818
|
.mobius-cover-option__limit-button{
|
|
2815
2819
|
padding:0;
|
|
2816
2820
|
margin-bottom:10px;
|
|
@@ -6056,7 +6060,7 @@ svg:not(:host).svg-inline--mobius-icon{
|
|
|
6056
6060
|
.mobius-interventions__trade-selected-insurers > div{
|
|
6057
6061
|
background-position:center center;
|
|
6058
6062
|
background-repeat:no-repeat;
|
|
6059
|
-
background-size:
|
|
6063
|
+
background-size:auto;
|
|
6060
6064
|
height:30px;
|
|
6061
6065
|
width:80px;
|
|
6062
6066
|
margin-bottom:10px;
|
|
@@ -6185,10 +6189,12 @@ svg:not(:host).svg-inline--mobius-icon{
|
|
|
6185
6189
|
border:2px solid #4632d8;
|
|
6186
6190
|
border-radius:5px;
|
|
6187
6191
|
padding:15px 10px;
|
|
6192
|
+
text-align:center;
|
|
6188
6193
|
}
|
|
6189
6194
|
.mobius-interventions__price-estimate-text{
|
|
6190
6195
|
margin-bottom:0px;
|
|
6191
|
-
margin-top:0px
|
|
6196
|
+
margin-top:0px;
|
|
6197
|
+
font-weight:600;
|
|
6192
6198
|
}
|
|
6193
6199
|
.mobius-interventions__price-estimate-container{
|
|
6194
6200
|
padding-top:20px;
|
|
@@ -6196,11 +6202,21 @@ svg:not(:host).svg-inline--mobius-icon{
|
|
|
6196
6202
|
.price-estimate-footer{
|
|
6197
6203
|
color:#5d5d60;
|
|
6198
6204
|
margin-bottom:0;
|
|
6199
|
-
padding-top:
|
|
6205
|
+
padding-top:32px;
|
|
6200
6206
|
font-size:14px;
|
|
6201
6207
|
font-size:1rem;
|
|
6202
6208
|
line-height:1.4rem;
|
|
6203
6209
|
}
|
|
6210
|
+
.mobius-interventions__trade-selected-insurers-text{
|
|
6211
|
+
font-weight:600;
|
|
6212
|
+
padding:8px 32px 8px 16px;
|
|
6213
|
+
text-wrap:wrap;
|
|
6214
|
+
}
|
|
6215
|
+
.mobius-interventions__trade-selected-insurers-mobile-text{
|
|
6216
|
+
font-weight:600;
|
|
6217
|
+
padding:8px 8px 8px 8px;
|
|
6218
|
+
text-wrap:wrap;
|
|
6219
|
+
}
|
|
6204
6220
|
:root,
|
|
6205
6221
|
:host{
|
|
6206
6222
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@simplybusiness/theme-simplybusiness",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.16.0",
|
|
4
4
|
"main": "dist/index.css",
|
|
5
5
|
"simplyBusiness": {
|
|
6
6
|
"publishToPublicNpm": true
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"dependencies": {
|
|
29
29
|
"@simplybusiness/mobius": "^5.24.2",
|
|
30
30
|
"@simplybusiness/mobius-datepicker": "^6.5.3",
|
|
31
|
-
"@simplybusiness/mobius-journey": "^7.
|
|
31
|
+
"@simplybusiness/mobius-journey": "^7.3.0",
|
|
32
32
|
"@simplybusiness/theme-core": "^7.5.3"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
package/src/index.css
CHANGED
|
@@ -10,6 +10,7 @@
|
|
|
10
10
|
@import "@simplybusiness/mobius-journey/src/components/AgentActions/AgentActions.css";
|
|
11
11
|
@import "@simplybusiness/mobius-journey/src/components/AgentReferral/InfoCard/InfoCard.css";
|
|
12
12
|
@import "@simplybusiness/mobius-journey/src/components/AgentResources/AgentResources.css";
|
|
13
|
+
@import "@simplybusiness/mobius-journey/src/components/CoverOptions/ChildQuestion/ChildQuestion.css";
|
|
13
14
|
@import "@simplybusiness/mobius-journey/src/components/CoverOptions/CoverOption/CoverOption.css";
|
|
14
15
|
@import "@simplybusiness/mobius-journey/src/components/CoverTogglesContainer/CoverTogglesContainer.css";
|
|
15
16
|
@import "@simplybusiness/mobius-journey/src/components/CoverageSummary/CoverageSummary.css";
|