@simplybusiness/theme-simplybusiness 1.5.14 → 1.8.1
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 +79 -0
- package/dist/index.css +74 -7
- package/package.json +3 -3
- package/src/index.css +6 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,84 @@
|
|
|
1
1
|
# @simplybusiness/theme-simplybusiness
|
|
2
2
|
|
|
3
|
+
## 1.8.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [6990505]
|
|
8
|
+
- @simplybusiness/mobius-journey@6.39.1
|
|
9
|
+
|
|
10
|
+
## 1.8.0
|
|
11
|
+
|
|
12
|
+
### Minor Changes
|
|
13
|
+
|
|
14
|
+
- fc1e967: Add GL+IM combined QCPRedirect component
|
|
15
|
+
|
|
16
|
+
### Patch Changes
|
|
17
|
+
|
|
18
|
+
- Updated dependencies [fc1e967]
|
|
19
|
+
- @simplybusiness/mobius-journey@6.39.0
|
|
20
|
+
|
|
21
|
+
## 1.7.1
|
|
22
|
+
|
|
23
|
+
### Patch Changes
|
|
24
|
+
|
|
25
|
+
- Updated dependencies [fe2cd73]
|
|
26
|
+
- Updated dependencies [fd52a63]
|
|
27
|
+
- Updated dependencies [0683996]
|
|
28
|
+
- Updated dependencies [fd58b2c]
|
|
29
|
+
- Updated dependencies [ccab0f0]
|
|
30
|
+
- @simplybusiness/mobius-journey@6.38.0
|
|
31
|
+
|
|
32
|
+
## 1.7.0
|
|
33
|
+
|
|
34
|
+
### Minor Changes
|
|
35
|
+
|
|
36
|
+
- 819fc3b: Questionnaire: added DateQuestion component
|
|
37
|
+
|
|
38
|
+
### Patch Changes
|
|
39
|
+
|
|
40
|
+
- Updated dependencies [819fc3b]
|
|
41
|
+
- @simplybusiness/mobius-datepicker@6.1.0
|
|
42
|
+
- @simplybusiness/mobius-journey@6.37.0
|
|
43
|
+
|
|
44
|
+
## 1.6.2
|
|
45
|
+
|
|
46
|
+
### Patch Changes
|
|
47
|
+
|
|
48
|
+
- Updated dependencies [dc0521d]
|
|
49
|
+
- @simplybusiness/mobius-journey@6.36.1
|
|
50
|
+
|
|
51
|
+
## 1.6.1
|
|
52
|
+
|
|
53
|
+
### Patch Changes
|
|
54
|
+
|
|
55
|
+
- Updated dependencies [059302c]
|
|
56
|
+
- @simplybusiness/mobius-journey@6.36.0
|
|
57
|
+
|
|
58
|
+
## 1.6.0
|
|
59
|
+
|
|
60
|
+
### Minor Changes
|
|
61
|
+
|
|
62
|
+
- 7ed92f4: Add submission button to assumptions page
|
|
63
|
+
|
|
64
|
+
### Patch Changes
|
|
65
|
+
|
|
66
|
+
- d8756fe: Add index.css for mobius-interventions, add CSS import for IP intervention
|
|
67
|
+
- Updated dependencies [3f2e4cc]
|
|
68
|
+
- Updated dependencies [fe29907]
|
|
69
|
+
- Updated dependencies [d5c6ff8]
|
|
70
|
+
- Updated dependencies [37f9659]
|
|
71
|
+
- Updated dependencies [7ed92f4]
|
|
72
|
+
- Updated dependencies [912652b]
|
|
73
|
+
- Updated dependencies [1016003]
|
|
74
|
+
- @simplybusiness/mobius-journey@6.35.0
|
|
75
|
+
|
|
76
|
+
## 1.5.15
|
|
77
|
+
|
|
78
|
+
### Patch Changes
|
|
79
|
+
|
|
80
|
+
- @simplybusiness/mobius-journey@6.34.3
|
|
81
|
+
|
|
3
82
|
## 1.5.14
|
|
4
83
|
|
|
5
84
|
### Patch Changes
|
package/dist/index.css
CHANGED
|
@@ -3439,6 +3439,10 @@ svg:not(:host).svg-inline--mobius-icon{
|
|
|
3439
3439
|
display:block;
|
|
3440
3440
|
}
|
|
3441
3441
|
}
|
|
3442
|
+
.mobius-qcp-redirect{
|
|
3443
|
+
text-align:center;
|
|
3444
|
+
margin-bottom:10px;
|
|
3445
|
+
}
|
|
3442
3446
|
.mobius-questionnaire{
|
|
3443
3447
|
margin-top:var(--size-xl);
|
|
3444
3448
|
}
|
|
@@ -3681,12 +3685,18 @@ svg:not(:host).svg-inline--mobius-icon{
|
|
|
3681
3685
|
.mobius-question__secondary-text{
|
|
3682
3686
|
color:var(--color-text-medium);
|
|
3683
3687
|
margin-top:0;
|
|
3684
|
-
margin-bottom:var(--size-
|
|
3688
|
+
margin-bottom:var(--size-sm);
|
|
3685
3689
|
}
|
|
3686
3690
|
.mobius-address-lookup__container{
|
|
3687
3691
|
display:grid;
|
|
3688
3692
|
gap:var(--size-sm);
|
|
3689
3693
|
}
|
|
3694
|
+
.mobius-question__date-question-actions{
|
|
3695
|
+
display:grid;
|
|
3696
|
+
grid-template-columns:repeat(2, 1fr);
|
|
3697
|
+
column-gap:var(--size-sm);
|
|
3698
|
+
margin-bottom:var(--size-sm);
|
|
3699
|
+
}
|
|
3690
3700
|
:root,
|
|
3691
3701
|
:host{
|
|
3692
3702
|
--section-max-width:552px;
|
|
@@ -3708,9 +3718,7 @@ svg:not(:host).svg-inline--mobius-icon{
|
|
|
3708
3718
|
margin-bottom:var(--size-xxl);
|
|
3709
3719
|
}
|
|
3710
3720
|
.mobius-section__postamble{
|
|
3711
|
-
max-width:var(--section-max-width);
|
|
3712
3721
|
color:var(--color-text-medium);
|
|
3713
|
-
margin-top:var(--size-xxl);
|
|
3714
3722
|
}
|
|
3715
3723
|
.mobius-section__question-container{
|
|
3716
3724
|
max-width:var(--section-max-width);
|
|
@@ -3730,6 +3738,26 @@ svg:not(:host).svg-inline--mobius-icon{
|
|
|
3730
3738
|
background-repeat:no-repeat;
|
|
3731
3739
|
padding-left:var(--size-lg);
|
|
3732
3740
|
}
|
|
3741
|
+
.mobius-submission{
|
|
3742
|
+
display:flex;
|
|
3743
|
+
align-items:center;
|
|
3744
|
+
background-color:var(--color-background-highlight);
|
|
3745
|
+
padding:var(--size-md);
|
|
3746
|
+
max-width:748px;
|
|
3747
|
+
gap:var(--size-sm);
|
|
3748
|
+
}
|
|
3749
|
+
@media (max-width: 768px){
|
|
3750
|
+
.mobius-submission{
|
|
3751
|
+
flex-direction:column;
|
|
3752
|
+
}
|
|
3753
|
+
}
|
|
3754
|
+
.mobius-submission .mobius-section__postamble{
|
|
3755
|
+
margin:0;
|
|
3756
|
+
}
|
|
3757
|
+
.mobius-submission__button{
|
|
3758
|
+
flex-grow:1;
|
|
3759
|
+
flex-shrink:0;
|
|
3760
|
+
}
|
|
3733
3761
|
.mobius-security-locks{
|
|
3734
3762
|
display:grid;
|
|
3735
3763
|
grid-template-columns:repeat(2, 1fr);
|
|
@@ -4470,7 +4498,7 @@ svg:not(:host).svg-inline--mobius-icon{
|
|
|
4470
4498
|
.mobius-payment-info__multi-product-text{
|
|
4471
4499
|
margin-top:var(--size-xs);
|
|
4472
4500
|
margin-bottom:var(--size-xs);
|
|
4473
|
-
line-height:
|
|
4501
|
+
line-height:1.8rem;
|
|
4474
4502
|
}
|
|
4475
4503
|
.mobius-payment-info__multi-product{
|
|
4476
4504
|
border:1px solid var(--color-border);
|
|
@@ -4824,12 +4852,12 @@ svg:not(:host).svg-inline--mobius-icon{
|
|
|
4824
4852
|
}
|
|
4825
4853
|
}
|
|
4826
4854
|
.mobius-cross-sell{
|
|
4827
|
-
grid-template-areas:"referralText" "coverageSummary" "nextCoverage" "trustSection"
|
|
4855
|
+
grid-template-areas:"referralText" "coverageSummary" "nextCoverage" "trustSection";
|
|
4828
4856
|
}
|
|
4829
4857
|
@media (min-width: 960px){
|
|
4830
4858
|
.mobius-cross-sell{
|
|
4831
4859
|
grid-template-columns:2fr 1.25fr;
|
|
4832
|
-
grid-template-areas:"referralText coverageSummary" "nextCoverage coverageSummary" "nextCoverage coverageSummary" "
|
|
4860
|
+
grid-template-areas:"referralText coverageSummary" "nextCoverage coverageSummary" "nextCoverage coverageSummary" "nextCoverage trustSection";
|
|
4833
4861
|
}
|
|
4834
4862
|
}
|
|
4835
4863
|
.mobius-trust-section{
|
|
@@ -4845,7 +4873,7 @@ svg:not(:host).svg-inline--mobius-icon{
|
|
|
4845
4873
|
grid-area:coverageSummary;
|
|
4846
4874
|
}
|
|
4847
4875
|
.mobius-checkout-buttons{
|
|
4848
|
-
|
|
4876
|
+
margin-top:var(--size-md);
|
|
4849
4877
|
display:flex;
|
|
4850
4878
|
justify-content:space-between;
|
|
4851
4879
|
gap:var(--size-lg);
|
|
@@ -5179,6 +5207,45 @@ svg:not(:host).svg-inline--mobius-icon{
|
|
|
5179
5207
|
border:none;
|
|
5180
5208
|
cursor:pointer;
|
|
5181
5209
|
}
|
|
5210
|
+
#priceNudgeIntervention .mobius-modal{
|
|
5211
|
+
padding:12px 18px 32px;
|
|
5212
|
+
width:700px;
|
|
5213
|
+
}
|
|
5214
|
+
@media (max-width: 700px){
|
|
5215
|
+
#priceNudgeIntervention .mobius-modal{
|
|
5216
|
+
width:86%;
|
|
5217
|
+
}
|
|
5218
|
+
}
|
|
5219
|
+
#priceNudgeIntervention .mobius-modal__close{
|
|
5220
|
+
color:#4632d8;
|
|
5221
|
+
font-size:16px;
|
|
5222
|
+
}
|
|
5223
|
+
#priceNudgeIntervention .mobius-modal__header{
|
|
5224
|
+
padding:0;
|
|
5225
|
+
}
|
|
5226
|
+
#priceNudgeIntervention .mobius-modal__content{
|
|
5227
|
+
margin:0;
|
|
5228
|
+
}
|
|
5229
|
+
.mobius-interventions__pricing-nudge>.mobius-flex{
|
|
5230
|
+
gap:0;
|
|
5231
|
+
}
|
|
5232
|
+
.mobius-interventions__pricing-nudge-text{
|
|
5233
|
+
font-size:30px;
|
|
5234
|
+
margin:24px 0;
|
|
5235
|
+
text-align:center;
|
|
5236
|
+
text-wrap-style:auto;
|
|
5237
|
+
}
|
|
5238
|
+
.mobius-interventions__pricing-nudge-subtext{
|
|
5239
|
+
font-size:18px;
|
|
5240
|
+
margin:0 0 32px 0;
|
|
5241
|
+
text-align:center;
|
|
5242
|
+
}
|
|
5243
|
+
.mobius-interventions__pricing-nudge-emphasized-text{
|
|
5244
|
+
color:mediumpurple;
|
|
5245
|
+
}
|
|
5246
|
+
.mobius-interventions__pricing-nudge-cta{
|
|
5247
|
+
padding:14px 16px;
|
|
5248
|
+
}
|
|
5182
5249
|
:root,
|
|
5183
5250
|
:host{
|
|
5184
5251
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@simplybusiness/theme-simplybusiness",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.8.1",
|
|
4
4
|
"main": "dist/index.css",
|
|
5
5
|
"simplyBusiness": {
|
|
6
6
|
"publishToPublicNpm": true
|
|
@@ -27,8 +27,8 @@
|
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
29
|
"@simplybusiness/mobius": "^5.15.4",
|
|
30
|
-
"@simplybusiness/mobius-datepicker": "^6.0
|
|
31
|
-
"@simplybusiness/mobius-journey": "^6.
|
|
30
|
+
"@simplybusiness/mobius-datepicker": "^6.1.0",
|
|
31
|
+
"@simplybusiness/mobius-journey": "^6.39.1",
|
|
32
32
|
"@simplybusiness/theme-core": "^7.2.19"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
package/src/index.css
CHANGED
|
@@ -24,13 +24,16 @@
|
|
|
24
24
|
@import "@simplybusiness/mobius-journey/src/components/PreFooter/InsuranceBenefits.css";
|
|
25
25
|
@import "@simplybusiness/mobius-journey/src/components/PreFooter/PreFooter.css";
|
|
26
26
|
@import "@simplybusiness/mobius-journey/src/components/ProgressSteps/ProgressSteps.css";
|
|
27
|
+
@import "@simplybusiness/mobius-journey/src/components/QCPRedirect/QCPRedirect.css";
|
|
27
28
|
@import "@simplybusiness/mobius-journey/src/components/Questionnaire/Questionnaire.css";
|
|
28
29
|
@import "@simplybusiness/mobius-journey/src/components/Questionnaire/Collapsible/Collapsible.css";
|
|
29
30
|
@import "@simplybusiness/mobius-journey/src/components/Questionnaire/Actions/Actions.css";
|
|
30
31
|
@import "@simplybusiness/mobius-journey/src/components/Questionnaire/Section/Question/HelpLink/HelpLink.css";
|
|
31
32
|
@import "@simplybusiness/mobius-journey/src/components/Questionnaire/Section/Insurers/Insurers.css";
|
|
32
33
|
@import "@simplybusiness/mobius-journey/src/components/Questionnaire/Section/Question/Question.css";
|
|
34
|
+
@import "@simplybusiness/mobius-journey/src/components/Questionnaire/Section/Question/QuestionFactory/questions/DateQuestion/DateQuestion.css";
|
|
33
35
|
@import "@simplybusiness/mobius-journey/src/components/Questionnaire/Section/Section.css";
|
|
36
|
+
@import "@simplybusiness/mobius-journey/src/components/Questionnaire/Section/Submission.css";
|
|
34
37
|
@import "@simplybusiness/mobius-journey/src/components/Questionnaire/SecurityLocks/SecurityLocks.css";
|
|
35
38
|
@import "@simplybusiness/mobius-journey/src/components/QuoteCards/NoQuotesCard/NoQuotesCard.css";
|
|
36
39
|
@import "@simplybusiness/mobius-journey/src/components/QuoteCards/NoQuotesReferral/NoQuotesReferral.css";
|
|
@@ -68,6 +71,9 @@
|
|
|
68
71
|
/* @simplybusiness/mobius-datepicker */
|
|
69
72
|
@import "@simplybusiness/mobius-datepicker/src/components/DatePicker/DatePicker.css";
|
|
70
73
|
|
|
74
|
+
/* @simplybusiness/mobius-interventions*/
|
|
75
|
+
@import "@simplybusiness/mobius-interventions/src/index.css";
|
|
76
|
+
|
|
71
77
|
/* Base customisation */
|
|
72
78
|
@import "./fonts.css";
|
|
73
79
|
@import "./variables.css";
|