@simplybusiness/theme-simplybusiness 1.12.5 → 1.13.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 +14 -0
- package/dist/index.css +43 -0
- package/package.json +5 -5
- package/src/index.css +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @simplybusiness/theme-simplybusiness
|
|
2
2
|
|
|
3
|
+
## 1.13.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 0fd403d: Add CoverOption and CoverOptions components (Personalised Cover Page experiment)
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies [0fd403d]
|
|
12
|
+
- @simplybusiness/mobius-journey@6.66.0
|
|
13
|
+
- @simplybusiness/mobius@5.22.0
|
|
14
|
+
- @simplybusiness/mobius-datepicker@6.4.7
|
|
15
|
+
- @simplybusiness/theme-core@7.4.3
|
|
16
|
+
|
|
3
17
|
## 1.12.5
|
|
4
18
|
|
|
5
19
|
### Patch Changes
|
package/dist/index.css
CHANGED
|
@@ -2771,6 +2771,47 @@ svg:not(:host).svg-inline--mobius-icon{
|
|
|
2771
2771
|
.mobius-agent-resources .mobius-link-button{
|
|
2772
2772
|
text-align:center;
|
|
2773
2773
|
}
|
|
2774
|
+
.mobius-cover-option{
|
|
2775
|
+
box-sizing:border-box;
|
|
2776
|
+
width:100%;
|
|
2777
|
+
padding:var(--size-sm);
|
|
2778
|
+
line-height:var(--line-height-normal);
|
|
2779
|
+
border:var(--border-default);
|
|
2780
|
+
border-color:var(--color-neutral-300);
|
|
2781
|
+
border-radius:var(--radius-1);
|
|
2782
|
+
transition:border-color 0.15s;
|
|
2783
|
+
}
|
|
2784
|
+
.mobius-cover-option--is-checked{
|
|
2785
|
+
border-color:var(--color-primary);
|
|
2786
|
+
}
|
|
2787
|
+
.mobius-cover-option--is-checked .mobius-cover-option__primary-text{
|
|
2788
|
+
color:unset;
|
|
2789
|
+
}
|
|
2790
|
+
.mobius-cover-option__header{
|
|
2791
|
+
margin-bottom:10px;
|
|
2792
|
+
}
|
|
2793
|
+
.mobius-cover-option__primary-text{
|
|
2794
|
+
margin:0;
|
|
2795
|
+
color:var(--color-text-medium);
|
|
2796
|
+
}
|
|
2797
|
+
.mobius-cover-option .mobius-accordion__content{
|
|
2798
|
+
color:var(--color-text-medium);
|
|
2799
|
+
}
|
|
2800
|
+
.mobius-cover-option .mobius-select__outer{
|
|
2801
|
+
margin-top:var(--size-sm)
|
|
2802
|
+
}
|
|
2803
|
+
@media only screen and (min-width: 641px){
|
|
2804
|
+
.mobius-cover-option .mobius-select__wrapper{
|
|
2805
|
+
max-width:66.67%;
|
|
2806
|
+
}
|
|
2807
|
+
}
|
|
2808
|
+
.mobius-cover-option__limit-button{
|
|
2809
|
+
padding:0;
|
|
2810
|
+
margin-bottom:10px;
|
|
2811
|
+
}
|
|
2812
|
+
.mobius-cover-option__limit-button .mobius-icon{
|
|
2813
|
+
margin-left:var(--size-xxs);
|
|
2814
|
+
}
|
|
2774
2815
|
.mobius-cover-toggles-container__outer.--is-payment-aside{
|
|
2775
2816
|
display:grid;
|
|
2776
2817
|
grid-template-columns:1fr;
|
|
@@ -3356,6 +3397,8 @@ svg:not(:host).svg-inline--mobius-icon{
|
|
|
3356
3397
|
.mobius-personalised-cover__container.--is-md{
|
|
3357
3398
|
max-width:626px;
|
|
3358
3399
|
border-radius:var(--radius-2);
|
|
3400
|
+
display:grid;
|
|
3401
|
+
gap:var(--size-sm);
|
|
3359
3402
|
}
|
|
3360
3403
|
.mobius-personalised-cover__actions{
|
|
3361
3404
|
display:grid;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@simplybusiness/theme-simplybusiness",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.13.0",
|
|
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.4.
|
|
29
|
+
"@simplybusiness/mobius": "^5.22.0",
|
|
30
|
+
"@simplybusiness/mobius-datepicker": "^6.4.7",
|
|
31
|
+
"@simplybusiness/mobius-journey": "^6.66.0",
|
|
32
|
+
"@simplybusiness/theme-core": "^7.4.3"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
35
|
"css-loader": "^7.1.2",
|
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/CoverOption/CoverOption.css";
|
|
13
14
|
@import "@simplybusiness/mobius-journey/src/components/CoverTogglesContainer/CoverTogglesContainer.css";
|
|
14
15
|
@import "@simplybusiness/mobius-journey/src/components/CoverageSummary/CoverageSummary.css";
|
|
15
16
|
@import "@simplybusiness/mobius-journey/src/components/CoverageSummary/PaymentSummary/PaymentSummary.css";
|