@simplybusiness/theme-simplybusiness 1.0.0 → 1.1.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 +11 -0
- package/dist/index.css +71 -71
- package/package.json +2 -2
- package/src/index.css +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# @simplybusiness/theme-simplybusiness
|
|
2
2
|
|
|
3
|
+
## 1.1.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 0a50f0d: Add `QuestionFactory` to handle different question types (Questionnaire journey)
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies [0a50f0d]
|
|
12
|
+
- @simplybusiness/mobius-journey@6.15.0
|
|
13
|
+
|
|
3
14
|
## 1.0.0
|
|
4
15
|
|
|
5
16
|
### Major Changes
|
package/dist/index.css
CHANGED
|
@@ -3307,6 +3307,66 @@ svg:not(:host).svg-inline--mobius-icon{
|
|
|
3307
3307
|
display:block;
|
|
3308
3308
|
}
|
|
3309
3309
|
}
|
|
3310
|
+
.mobius-actions__container{
|
|
3311
|
+
width:100%;
|
|
3312
|
+
}
|
|
3313
|
+
.mobius-actions__back{
|
|
3314
|
+
display:inline-flex;
|
|
3315
|
+
gap:var(--size-xs);
|
|
3316
|
+
align-items:center;
|
|
3317
|
+
text-underline-offset:var(--size-xxs);
|
|
3318
|
+
}
|
|
3319
|
+
.mobius-actions__back .mobius-icon{
|
|
3320
|
+
font-size:var(--font-size-lead);
|
|
3321
|
+
}
|
|
3322
|
+
.mobius-actions__next{
|
|
3323
|
+
display:inline-flex;
|
|
3324
|
+
gap:var(--size-xs);
|
|
3325
|
+
align-items:center;
|
|
3326
|
+
}
|
|
3327
|
+
.mobius-question__help-link{
|
|
3328
|
+
display:inline-flex;
|
|
3329
|
+
align-items:center;
|
|
3330
|
+
gap:var(--size-xxs);
|
|
3331
|
+
margin-bottom:var(--size-sm);
|
|
3332
|
+
-webkit-text-decoration:underline;
|
|
3333
|
+
text-decoration:underline;
|
|
3334
|
+
text-underline-offset:var(--size-xxs);
|
|
3335
|
+
}
|
|
3336
|
+
.mobius-question__help-link-drawer .mobius-drawer__content{
|
|
3337
|
+
color:var(--color-text-medium);
|
|
3338
|
+
line-height:var(--line-height-normal);
|
|
3339
|
+
}
|
|
3340
|
+
.mobius-question__label{
|
|
3341
|
+
display:block;
|
|
3342
|
+
font-size:var(--font-size-lead);
|
|
3343
|
+
margin-bottom:var(--size-xs);
|
|
3344
|
+
}
|
|
3345
|
+
.mobius-question__secondary-text{
|
|
3346
|
+
color:var(--color-text-medium);
|
|
3347
|
+
margin-top:0;
|
|
3348
|
+
margin-bottom:var(--size-xs);
|
|
3349
|
+
}
|
|
3350
|
+
.mobius-section{
|
|
3351
|
+
max-width:552px;
|
|
3352
|
+
}
|
|
3353
|
+
.mobius-section__title{
|
|
3354
|
+
font-size:var(--font-size-small-title);
|
|
3355
|
+
line-height:var(--line-height-tight);
|
|
3356
|
+
margin:var(--size-md) 0;
|
|
3357
|
+
}
|
|
3358
|
+
.mobius-section__preamble{
|
|
3359
|
+
color:var(--color-text-medium);
|
|
3360
|
+
margin-bottom:var(--size-xxl);
|
|
3361
|
+
}
|
|
3362
|
+
.mobius-section__postamble{
|
|
3363
|
+
color:var(--color-text-medium);
|
|
3364
|
+
margin-top:var(--size-xxl);
|
|
3365
|
+
}
|
|
3366
|
+
.mobius-section__question-container{
|
|
3367
|
+
display:grid;
|
|
3368
|
+
gap:var(--size-lg);
|
|
3369
|
+
}
|
|
3310
3370
|
.mobius-no-quotes-card{
|
|
3311
3371
|
margin:0;
|
|
3312
3372
|
border:1px solid var(--color-border);
|
|
@@ -4228,17 +4288,6 @@ svg:not(:host).svg-inline--mobius-icon{
|
|
|
4228
4288
|
.mobius-quote-card__tag svg{
|
|
4229
4289
|
margin-right:var(--size-xxs);
|
|
4230
4290
|
}
|
|
4231
|
-
.mobius-unquotable-card{
|
|
4232
|
-
border:1px solid var(--color-neutral-300);
|
|
4233
|
-
border-radius:var(--radius-2);
|
|
4234
|
-
padding:var(--size-xl) var(--size-lg);
|
|
4235
|
-
}
|
|
4236
|
-
.mobius-unquotable-card__title{
|
|
4237
|
-
margin-top:0;
|
|
4238
|
-
}
|
|
4239
|
-
.mobius-unquotable-card__text{
|
|
4240
|
-
margin-bottom:0;
|
|
4241
|
-
}
|
|
4242
4291
|
.mobius-quote-cards__grid{
|
|
4243
4292
|
--column-count:1;
|
|
4244
4293
|
display:grid;
|
|
@@ -4282,6 +4331,17 @@ svg:not(:host).svg-inline--mobius-icon{
|
|
|
4282
4331
|
max-width:1024px;
|
|
4283
4332
|
}
|
|
4284
4333
|
}
|
|
4334
|
+
.mobius-unquotable-card{
|
|
4335
|
+
border:1px solid var(--color-neutral-300);
|
|
4336
|
+
border-radius:var(--radius-2);
|
|
4337
|
+
padding:var(--size-xl) var(--size-lg);
|
|
4338
|
+
}
|
|
4339
|
+
.mobius-unquotable-card__title{
|
|
4340
|
+
margin-top:0;
|
|
4341
|
+
}
|
|
4342
|
+
.mobius-unquotable-card__text{
|
|
4343
|
+
margin-bottom:0;
|
|
4344
|
+
}
|
|
4285
4345
|
.mobius-quote-help{
|
|
4286
4346
|
--chopin-quote-help-message-background:var(--color-background-highlight);
|
|
4287
4347
|
--chopin-quote-help-arrow-size:var(--size-xs);
|
|
@@ -4392,46 +4452,6 @@ svg:not(:host).svg-inline--mobius-icon{
|
|
|
4392
4452
|
.mobius-trust-section__list .mobius-list__item-content{
|
|
4393
4453
|
align-items:center;
|
|
4394
4454
|
}
|
|
4395
|
-
.mobius-actions__container{
|
|
4396
|
-
width:100%;
|
|
4397
|
-
}
|
|
4398
|
-
.mobius-actions__back{
|
|
4399
|
-
display:inline-flex;
|
|
4400
|
-
gap:var(--size-xs);
|
|
4401
|
-
align-items:center;
|
|
4402
|
-
text-underline-offset:var(--size-xxs);
|
|
4403
|
-
}
|
|
4404
|
-
.mobius-actions__back .mobius-icon{
|
|
4405
|
-
font-size:var(--font-size-lead);
|
|
4406
|
-
}
|
|
4407
|
-
.mobius-actions__next{
|
|
4408
|
-
display:inline-flex;
|
|
4409
|
-
gap:var(--size-xs);
|
|
4410
|
-
align-items:center;
|
|
4411
|
-
}
|
|
4412
|
-
.mobius-question__help-link{
|
|
4413
|
-
display:inline-flex;
|
|
4414
|
-
align-items:center;
|
|
4415
|
-
gap:var(--size-xxs);
|
|
4416
|
-
margin-bottom:var(--size-sm);
|
|
4417
|
-
-webkit-text-decoration:underline;
|
|
4418
|
-
text-decoration:underline;
|
|
4419
|
-
text-underline-offset:var(--size-xxs);
|
|
4420
|
-
}
|
|
4421
|
-
.mobius-question__help-link-drawer .mobius-drawer__content{
|
|
4422
|
-
color:var(--color-text-medium);
|
|
4423
|
-
line-height:var(--line-height-normal);
|
|
4424
|
-
}
|
|
4425
|
-
.mobius-question__label{
|
|
4426
|
-
display:block;
|
|
4427
|
-
font-size:var(--font-size-lead);
|
|
4428
|
-
margin-bottom:var(--size-xs);
|
|
4429
|
-
}
|
|
4430
|
-
.mobius-question__secondary-text{
|
|
4431
|
-
color:var(--color-text-medium);
|
|
4432
|
-
margin-top:0;
|
|
4433
|
-
margin-bottom:var(--size-xs);
|
|
4434
|
-
}
|
|
4435
4455
|
:root,
|
|
4436
4456
|
:host{
|
|
4437
4457
|
--duration:0.15s;
|
|
@@ -4501,26 +4521,6 @@ svg:not(:host).svg-inline--mobius-icon{
|
|
|
4501
4521
|
.mobius-payment-toggle__text.--yearly{
|
|
4502
4522
|
color:var(--color-primary);
|
|
4503
4523
|
}
|
|
4504
|
-
.mobius-section{
|
|
4505
|
-
max-width:552px;
|
|
4506
|
-
}
|
|
4507
|
-
.mobius-section__title{
|
|
4508
|
-
font-size:var(--font-size-small-title);
|
|
4509
|
-
line-height:var(--line-height-tight);
|
|
4510
|
-
margin:var(--size-md) 0;
|
|
4511
|
-
}
|
|
4512
|
-
.mobius-section__preamble{
|
|
4513
|
-
color:var(--color-text-medium);
|
|
4514
|
-
margin-bottom:var(--size-xxl);
|
|
4515
|
-
}
|
|
4516
|
-
.mobius-section__postamble{
|
|
4517
|
-
color:var(--color-text-medium);
|
|
4518
|
-
margin-top:var(--size-xxl);
|
|
4519
|
-
}
|
|
4520
|
-
.mobius-section__question-container{
|
|
4521
|
-
display:grid;
|
|
4522
|
-
gap:var(--size-lg);
|
|
4523
|
-
}
|
|
4524
4524
|
.mobius-trade-selector{
|
|
4525
4525
|
display:inline-flex;
|
|
4526
4526
|
flex-direction:column;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@simplybusiness/theme-simplybusiness",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.1.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.4.0",
|
|
30
30
|
"@simplybusiness/mobius-datepicker": "^6.0.8",
|
|
31
|
-
"@simplybusiness/mobius-journey": "^6.
|
|
31
|
+
"@simplybusiness/mobius-journey": "^6.15.0",
|
|
32
32
|
"@simplybusiness/theme-core": "^7.1.6"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
package/src/index.css
CHANGED
|
@@ -23,6 +23,10 @@
|
|
|
23
23
|
@import "@simplybusiness/mobius-journey/src/components/PreFooter/InsuranceBenefits.css";
|
|
24
24
|
@import "@simplybusiness/mobius-journey/src/components/PreFooter/PreFooter.css";
|
|
25
25
|
@import "@simplybusiness/mobius-journey/src/components/ProgressSteps/ProgressSteps.css";
|
|
26
|
+
@import "@simplybusiness/mobius-journey/src/components/Questionnaire/Section/Actions/Actions.css";
|
|
27
|
+
@import "@simplybusiness/mobius-journey/src/components/Questionnaire/Section/Question/HelpLink/HelpLink.css";
|
|
28
|
+
@import "@simplybusiness/mobius-journey/src/components/Questionnaire/Section/Question/Question.css";
|
|
29
|
+
@import "@simplybusiness/mobius-journey/src/components/Questionnaire/Section/Section.css";
|
|
26
30
|
@import "@simplybusiness/mobius-journey/src/components/QuoteCards/NoQuotesCard/NoQuotesCard.css";
|
|
27
31
|
@import "@simplybusiness/mobius-journey/src/components/QuoteCards/NoQuotesReferral/NoQuotesReferral.css";
|
|
28
32
|
@import "@simplybusiness/mobius-journey/src/components/QuoteCards/QuoteCard/Cover/Cover.css";
|
|
@@ -44,17 +48,13 @@
|
|
|
44
48
|
@import "@simplybusiness/mobius-journey/src/components/QuoteCards/QuoteCard/QuoteCardBadges/QuoteCardBadges.css";
|
|
45
49
|
@import "@simplybusiness/mobius-journey/src/components/QuoteCards/QuoteCard/Ratings/ExperimentIteratedQcp/Ratings.css";
|
|
46
50
|
@import "@simplybusiness/mobius-journey/src/components/QuoteCards/QuoteCard/Tag/Tag.css";
|
|
47
|
-
@import "@simplybusiness/mobius-journey/src/components/QuoteCards/Unquotable/Unquotable.css";
|
|
48
51
|
@import "@simplybusiness/mobius-journey/src/components/QuoteCards/QuoteCards.css";
|
|
49
52
|
@import "@simplybusiness/mobius-journey/src/components/QuoteCards/Section/Section.css";
|
|
53
|
+
@import "@simplybusiness/mobius-journey/src/components/QuoteCards/Unquotable/Unquotable.css";
|
|
50
54
|
@import "@simplybusiness/mobius-journey/src/components/QuoteHelp/QuoteHelp.css";
|
|
51
55
|
@import "@simplybusiness/mobius-journey/src/components/Referral/Referral.css";
|
|
52
56
|
@import "@simplybusiness/mobius-journey/src/components/Referral/TrustSection/TrustSection.css";
|
|
53
|
-
@import "@simplybusiness/mobius-journey/src/components/shared/Actions/Actions.css";
|
|
54
|
-
@import "@simplybusiness/mobius-journey/src/components/shared/Question/HelpLink/HelpLink.css";
|
|
55
|
-
@import "@simplybusiness/mobius-journey/src/components/shared/Question/Question.css";
|
|
56
57
|
@import "@simplybusiness/mobius-journey/src/components/shared/PaymentToggle/PaymentToggle.css";
|
|
57
|
-
@import "@simplybusiness/mobius-journey/src/components/shared/Section/Section.css";
|
|
58
58
|
@import "@simplybusiness/mobius-journey/src/components/TradeSelector/TradeSelector.css";
|
|
59
59
|
@import "@simplybusiness/mobius-journey/src/pages/AgentReferralPage/AgentReferralContainer.css";
|
|
60
60
|
@import "@simplybusiness/mobius-journey/src/pages/Main.css";
|