@simplybusiness/theme-simplybusiness 2.6.1 → 2.7.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 CHANGED
@@ -1,5 +1,37 @@
1
1
  # @simplybusiness/theme-simplybusiness
2
2
 
3
+ ## 2.7.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [1ea736f]
8
+ - Updated dependencies [fc83cfa]
9
+ - Updated dependencies [bfbd0aa]
10
+ - Updated dependencies [7572b55]
11
+ - Updated dependencies [d6a3467]
12
+ - Updated dependencies [5c1cfc4]
13
+ - @simplybusiness/mobius-journey@11.10.0
14
+
15
+ ## 2.7.0
16
+
17
+ ### Minor Changes
18
+
19
+ - e8ff62c: Switches to theme level import of ScrollableText.css
20
+
21
+ ### Patch Changes
22
+
23
+ - Updated dependencies [28ddeda]
24
+ - Updated dependencies [1b71bb3]
25
+ - Updated dependencies [3693ca4]
26
+ - Updated dependencies [e8ff62c]
27
+ - Updated dependencies [182bc5d]
28
+ - @simplybusiness/mobius-journey@11.9.0
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/theme-core@7.13.22
34
+
3
35
  ## 2.6.1
4
36
 
5
37
  ### 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--has-children{
4133
- display:grid;
4134
- gap:var(--size-sm);
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.6.1",
3
+ "version": "2.7.1",
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.1",
30
- "@simplybusiness/mobius-chatbot": "^2.0.30",
31
- "@simplybusiness/mobius-datepicker": "^7.1.24",
32
- "@simplybusiness/mobius-interventions": "^3.1.2",
33
- "@simplybusiness/mobius-journey": "^11.8.0",
34
- "@simplybusiness/theme-core": "^7.13.21"
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.10.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";