@simplybusiness/theme-simplybusiness 2.6.1 → 2.7.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 +20 -0
- package/dist/index.css +35 -4
- package/package.json +7 -7
- package/src/index.css +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
# @simplybusiness/theme-simplybusiness
|
|
2
2
|
|
|
3
|
+
## 2.7.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- e8ff62c: Switches to theme level import of ScrollableText.css
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies [28ddeda]
|
|
12
|
+
- Updated dependencies [1b71bb3]
|
|
13
|
+
- Updated dependencies [3693ca4]
|
|
14
|
+
- Updated dependencies [e8ff62c]
|
|
15
|
+
- Updated dependencies [182bc5d]
|
|
16
|
+
- @simplybusiness/mobius-journey@11.9.0
|
|
17
|
+
- @simplybusiness/mobius@6.7.2
|
|
18
|
+
- @simplybusiness/mobius-chatbot@2.0.31
|
|
19
|
+
- @simplybusiness/mobius-datepicker@7.1.25
|
|
20
|
+
- @simplybusiness/mobius-interventions@3.1.3
|
|
21
|
+
- @simplybusiness/theme-core@7.13.22
|
|
22
|
+
|
|
3
23
|
## 2.6.1
|
|
4
24
|
|
|
5
25
|
### Patch Changes
|
package/dist/index.css
CHANGED
|
@@ -1547,6 +1547,7 @@ h6.mobius-accordion__link-text,
|
|
|
1547
1547
|
padding-right:var(--size-xxl);
|
|
1548
1548
|
font-family:var(--font-family);
|
|
1549
1549
|
font-size:var(--font-size-regular);
|
|
1550
|
+
color:var(--color-text);
|
|
1550
1551
|
border:var(--border-default);
|
|
1551
1552
|
border-radius:var(--input-border-radius);
|
|
1552
1553
|
background-color:var(--color-background-input);
|
|
@@ -4129,10 +4130,13 @@ svg:not(:host).svg-inline--mobius-icon{
|
|
|
4129
4130
|
border-radius:var(--radius-1);
|
|
4130
4131
|
padding:var(--size-sm);
|
|
4131
4132
|
}
|
|
4132
|
-
.mobius-section__personalised-cover-group
|
|
4133
|
-
|
|
4134
|
-
|
|
4135
|
-
|
|
4133
|
+
.mobius-section__personalised-cover-group.--is-invalid{
|
|
4134
|
+
border:2px solid var(--color-error);
|
|
4135
|
+
}
|
|
4136
|
+
.mobius-section__personalised-cover-group.--has-children{
|
|
4137
|
+
display:grid;
|
|
4138
|
+
gap:var(--size-sm);
|
|
4139
|
+
}
|
|
4136
4140
|
.mobius-question__help-link{
|
|
4137
4141
|
display:inline-flex;
|
|
4138
4142
|
align-items:center;
|
|
@@ -6103,6 +6107,33 @@ svg:not(:host).svg-inline--mobius-icon{
|
|
|
6103
6107
|
display:none;
|
|
6104
6108
|
}
|
|
6105
6109
|
}
|
|
6110
|
+
.mobius-scrollable-text__content{
|
|
6111
|
+
height:100%;
|
|
6112
|
+
box-sizing:border-box;
|
|
6113
|
+
overflow-y:scroll;
|
|
6114
|
+
padding-right:10px;
|
|
6115
|
+
padding-left:20px;
|
|
6116
|
+
}
|
|
6117
|
+
.mobius-scrollable-text{
|
|
6118
|
+
margin-bottom:20px;
|
|
6119
|
+
border:1px solid var(--color-border);
|
|
6120
|
+
border-radius:10px;
|
|
6121
|
+
padding-top:30px;
|
|
6122
|
+
padding-bottom:15px;
|
|
6123
|
+
height:400px;
|
|
6124
|
+
box-sizing:border-box;
|
|
6125
|
+
position:relative;
|
|
6126
|
+
}
|
|
6127
|
+
.mobius-scrollable-text::after{
|
|
6128
|
+
content:" ";
|
|
6129
|
+
width:100%;
|
|
6130
|
+
height:30px;
|
|
6131
|
+
background:linear-gradient(to top, var(--color-background), rgb(255 255 255 / 50%));
|
|
6132
|
+
position:absolute;
|
|
6133
|
+
bottom:0;
|
|
6134
|
+
left:0;
|
|
6135
|
+
border-radius:10px;
|
|
6136
|
+
}
|
|
6106
6137
|
.mobius-payment-toggle{
|
|
6107
6138
|
position:relative;
|
|
6108
6139
|
display:grid;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@simplybusiness/theme-simplybusiness",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.7.0",
|
|
4
4
|
"main": "dist/index.css",
|
|
5
5
|
"simplyBusiness": {
|
|
6
6
|
"publishToPublicNpm": true
|
|
@@ -26,12 +26,12 @@
|
|
|
26
26
|
"./fonts": "./dist/fonts.css"
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"@simplybusiness/mobius": "^6.7.
|
|
30
|
-
"@simplybusiness/mobius-chatbot": "^2.0.
|
|
31
|
-
"@simplybusiness/mobius-datepicker": "^7.1.
|
|
32
|
-
"@simplybusiness/mobius-interventions": "^3.1.
|
|
33
|
-
"@simplybusiness/mobius-journey": "^11.
|
|
34
|
-
"@simplybusiness/theme-core": "^7.13.
|
|
29
|
+
"@simplybusiness/mobius": "^6.7.2",
|
|
30
|
+
"@simplybusiness/mobius-chatbot": "^2.0.31",
|
|
31
|
+
"@simplybusiness/mobius-datepicker": "^7.1.25",
|
|
32
|
+
"@simplybusiness/mobius-interventions": "^3.1.3",
|
|
33
|
+
"@simplybusiness/mobius-journey": "^11.9.0",
|
|
34
|
+
"@simplybusiness/theme-core": "^7.13.22"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
37
|
"build-scripts": "^1.0.2",
|
package/src/index.css
CHANGED
|
@@ -83,6 +83,7 @@
|
|
|
83
83
|
@import "@simplybusiness/mobius-journey/src/components/UnderwriterLegalAgreements/UnderwriterLegalAgreements.css";
|
|
84
84
|
@import "@simplybusiness/mobius-journey/src/components/Referral/TrustSection/TrustSection.css";
|
|
85
85
|
@import "@simplybusiness/mobius-journey/src/components/RewardBanner/RewardBanner.css";
|
|
86
|
+
@import "@simplybusiness/mobius-journey/src/components/ScrollableText/ScrollableText.css";
|
|
86
87
|
@import "@simplybusiness/mobius-journey/src/components/shared/PaymentToggle/PaymentToggle.css";
|
|
87
88
|
@import "@simplybusiness/mobius-journey/src/components/shared/PreQCP/styles.css";
|
|
88
89
|
@import "@simplybusiness/mobius-journey/src/components/SkipToNextCoverage/SkipToNextCoverage.css";
|