@simplybusiness/theme-simplybusiness 2.0.9 → 2.0.11
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 +33 -0
- package/dist/index.css +67 -0
- package/package.json +7 -7
- package/src/index.css +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,38 @@
|
|
|
1
1
|
# @simplybusiness/theme-simplybusiness
|
|
2
2
|
|
|
3
|
+
## 2.0.11
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [1f192c7]
|
|
8
|
+
- Updated dependencies [2cbaa91]
|
|
9
|
+
- Updated dependencies [19cda13]
|
|
10
|
+
- Updated dependencies [df39bf7]
|
|
11
|
+
- Updated dependencies [01bc45e]
|
|
12
|
+
- Updated dependencies [48183d3]
|
|
13
|
+
- Updated dependencies [7725ddb]
|
|
14
|
+
- Updated dependencies [b54a6c1]
|
|
15
|
+
- @simplybusiness/mobius-journey@10.5.0
|
|
16
|
+
- @simplybusiness/mobius-interventions@2.5.0
|
|
17
|
+
- @simplybusiness/mobius-chatbot@2.0.3
|
|
18
|
+
|
|
19
|
+
## 2.0.10
|
|
20
|
+
|
|
21
|
+
### Patch Changes
|
|
22
|
+
|
|
23
|
+
- Updated dependencies [85f0647]
|
|
24
|
+
- Updated dependencies [ea9d17a]
|
|
25
|
+
- Updated dependencies [dd0fdce]
|
|
26
|
+
- Updated dependencies [a13d906]
|
|
27
|
+
- Updated dependencies [65725bf]
|
|
28
|
+
- Updated dependencies [02b50b0]
|
|
29
|
+
- @simplybusiness/mobius-journey@10.4.0
|
|
30
|
+
- @simplybusiness/mobius-interventions@2.4.1
|
|
31
|
+
- @simplybusiness/mobius@6.1.1
|
|
32
|
+
- @simplybusiness/mobius-chatbot@2.0.2
|
|
33
|
+
- @simplybusiness/mobius-datepicker@7.1.1
|
|
34
|
+
- @simplybusiness/theme-core@7.11.1
|
|
35
|
+
|
|
3
36
|
## 2.0.9
|
|
4
37
|
|
|
5
38
|
### Patch Changes
|
package/dist/index.css
CHANGED
|
@@ -5746,6 +5746,11 @@ svg:not(:host).svg-inline--mobius-icon{
|
|
|
5746
5746
|
padding-right:var(--size-sm);
|
|
5747
5747
|
transition:height 1s;
|
|
5748
5748
|
}
|
|
5749
|
+
.stripe-payment__journey-errors,
|
|
5750
|
+
.stripe-payment__js-errors{
|
|
5751
|
+
color:var(--color-red-500);
|
|
5752
|
+
font-family:museosans, sans-serif;
|
|
5753
|
+
}
|
|
5749
5754
|
.mobius-payment-summary__styled-div{
|
|
5750
5755
|
display:grid;
|
|
5751
5756
|
row-gap:var(--size-sm);
|
|
@@ -6974,6 +6979,68 @@ input[type="date"]::-webkit-datetime-edit-year-field{
|
|
|
6974
6979
|
min-width:238px;
|
|
6975
6980
|
}
|
|
6976
6981
|
}
|
|
6982
|
+
.live-chat__text{
|
|
6983
|
+
display:grid;
|
|
6984
|
+
grid-template-columns:auto 1fr;
|
|
6985
|
+
align-items:center;
|
|
6986
|
+
color:var(--color-secondary);
|
|
6987
|
+
}
|
|
6988
|
+
.live-chat .sticky__content{
|
|
6989
|
+
grid-template-columns:auto 1fr auto;
|
|
6990
|
+
}
|
|
6991
|
+
.live-chat button{
|
|
6992
|
+
--button-content-color:var(--color-text-inverted);
|
|
6993
|
+
|
|
6994
|
+
background:var(--button-secondary-hover-color);
|
|
6995
|
+
border-color:var(--button-secondary-hover-color);
|
|
6996
|
+
border-radius:19px;
|
|
6997
|
+
}
|
|
6998
|
+
.live-chat button:hover{
|
|
6999
|
+
--button-content-color:var(--button-secondary-hover-color);
|
|
7000
|
+
|
|
7001
|
+
background:var(--color-text-inverted);
|
|
7002
|
+
border-color:var(--button-secondary-color);
|
|
7003
|
+
}
|
|
7004
|
+
@media (max-width: 768px){
|
|
7005
|
+
.sticky__footer{
|
|
7006
|
+
grid-template-columns:1fr;
|
|
7007
|
+
align-items:flex-start;
|
|
7008
|
+
}
|
|
7009
|
+
|
|
7010
|
+
.live-chat .sticky__content{
|
|
7011
|
+
grid-template-columns:1fr;
|
|
7012
|
+
gap:var(--size-xs);
|
|
7013
|
+
align-items:flex-start;
|
|
7014
|
+
}
|
|
7015
|
+
|
|
7016
|
+
.live-chat__text{
|
|
7017
|
+
grid-template-columns:1fr;
|
|
7018
|
+
gap:var(--size-xs);
|
|
7019
|
+
align-items:flex-start;
|
|
7020
|
+
}
|
|
7021
|
+
|
|
7022
|
+
.live-chat__images{
|
|
7023
|
+
grid-auto-flow:row;
|
|
7024
|
+
gap:var(--size-xs);
|
|
7025
|
+
}
|
|
7026
|
+
|
|
7027
|
+
.live-chat__image{
|
|
7028
|
+
max-height:var(--size-lg);
|
|
7029
|
+
width:auto;
|
|
7030
|
+
}
|
|
7031
|
+
|
|
7032
|
+
.live-chat__text-container{
|
|
7033
|
+
display:grid;
|
|
7034
|
+
grid-template-columns:1fr auto;
|
|
7035
|
+
align-items:center;
|
|
7036
|
+
width:100%;
|
|
7037
|
+
}
|
|
7038
|
+
|
|
7039
|
+
.live-chat__image{
|
|
7040
|
+
max-height:var(--size-lg);
|
|
7041
|
+
max-width:110px;
|
|
7042
|
+
}
|
|
7043
|
+
}
|
|
6977
7044
|
.reassurance__text{
|
|
6978
7045
|
display:grid;
|
|
6979
7046
|
grid-template-columns:auto 1fr;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@simplybusiness/theme-simplybusiness",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.11",
|
|
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.1.
|
|
30
|
-
"@simplybusiness/mobius-chatbot": "^2.0.
|
|
31
|
-
"@simplybusiness/mobius-datepicker": "^7.1.
|
|
32
|
-
"@simplybusiness/mobius-interventions": "^2.
|
|
33
|
-
"@simplybusiness/mobius-journey": "^10.
|
|
34
|
-
"@simplybusiness/theme-core": "^7.11.
|
|
29
|
+
"@simplybusiness/mobius": "^6.1.1",
|
|
30
|
+
"@simplybusiness/mobius-chatbot": "^2.0.3",
|
|
31
|
+
"@simplybusiness/mobius-datepicker": "^7.1.1",
|
|
32
|
+
"@simplybusiness/mobius-interventions": "^2.5.0",
|
|
33
|
+
"@simplybusiness/mobius-journey": "^10.5.0",
|
|
34
|
+
"@simplybusiness/theme-core": "^7.11.1"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
37
|
"build-scripts": "^1.0.1",
|
package/src/index.css
CHANGED
|
@@ -84,6 +84,7 @@
|
|
|
84
84
|
@import "@simplybusiness/mobius-journey/src/components/SkipToNextCoverage/SkipToNextCoverage.css";
|
|
85
85
|
@import "@simplybusiness/mobius-journey/src/pages/AgentReferralPage/AgentReferralContainer.css";
|
|
86
86
|
@import "@simplybusiness/mobius-journey/src/pages/Main.css";
|
|
87
|
+
@import "@simplybusiness/mobius-journey/src/components/shared/PaymentElementCardForm/PaymentElementCardForm.css";
|
|
87
88
|
|
|
88
89
|
/* Journey Components (payment summary, etc.) */
|
|
89
90
|
@import "@simplybusiness/mobius-journey/src/components/shared/PersistentSummary/styles.css";
|