@simplybusiness/theme-simplybusiness 1.27.12 → 1.28.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 +29 -0
- package/dist/index.css +15 -6
- package/package.json +7 -7
- package/src/index.css +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,34 @@
|
|
|
1
1
|
# @simplybusiness/theme-simplybusiness
|
|
2
2
|
|
|
3
|
+
## 1.28.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 01a15ad: Added Percentage Question
|
|
8
|
+
- Updated dependencies [01a15ad]
|
|
9
|
+
- Updated dependencies [041546c]
|
|
10
|
+
- Updated dependencies [990a7ba]
|
|
11
|
+
- Updated dependencies [91de94c]
|
|
12
|
+
- @simplybusiness/mobius-journey@8.68.0
|
|
13
|
+
- @simplybusiness/mobius@5.32.0
|
|
14
|
+
- @simplybusiness/mobius-interventions@1.79.0
|
|
15
|
+
- @simplybusiness/mobius-chatbot@1.4.29
|
|
16
|
+
- @simplybusiness/mobius-datepicker@6.7.13
|
|
17
|
+
- @simplybusiness/theme-core@7.10.1
|
|
18
|
+
|
|
19
|
+
## 1.28.0
|
|
20
|
+
|
|
21
|
+
### Minor Changes
|
|
22
|
+
|
|
23
|
+
- 0b966c6: Removing checkmark/tick as list item CSS in favor of simple bullet point disc. They were causing confusion for customers in the negative cases.
|
|
24
|
+
|
|
25
|
+
### Patch Changes
|
|
26
|
+
|
|
27
|
+
- Updated dependencies [0b966c6]
|
|
28
|
+
- Updated dependencies [cfe3035]
|
|
29
|
+
- @simplybusiness/mobius-journey@8.67.0
|
|
30
|
+
- @simplybusiness/theme-core@7.10.0
|
|
31
|
+
|
|
3
32
|
## 1.27.12
|
|
4
33
|
|
|
5
34
|
### Patch Changes
|
package/dist/index.css
CHANGED
|
@@ -4032,6 +4032,13 @@ svg:not(:host).svg-inline--mobius-icon{
|
|
|
4032
4032
|
padding:0;
|
|
4033
4033
|
text-align:left;
|
|
4034
4034
|
}
|
|
4035
|
+
.mobius-percentage-question__total{
|
|
4036
|
+
display:inline-flex;
|
|
4037
|
+
align-items:center;
|
|
4038
|
+
padding:var(--input-field-padding);
|
|
4039
|
+
background-color:var(--color-background-highlight);
|
|
4040
|
+
border-radius:var(--input-border-radius);
|
|
4041
|
+
}
|
|
4035
4042
|
.mobius-section{
|
|
4036
4043
|
margin-bottom:var(--size-xxl);
|
|
4037
4044
|
}
|
|
@@ -4063,10 +4070,8 @@ svg:not(:host).svg-inline--mobius-icon{
|
|
|
4063
4070
|
list-style-type:none;
|
|
4064
4071
|
}
|
|
4065
4072
|
:is(.mobius-section ul) li:not(.mobius-combobox__option):not(.mobius-combobox__group-label){
|
|
4066
|
-
|
|
4067
|
-
|
|
4068
|
-
background-repeat:no-repeat;
|
|
4069
|
-
padding-left:var(--size-lg);
|
|
4073
|
+
list-style-type:disc;
|
|
4074
|
+
margin-left:var(--size-lg);
|
|
4070
4075
|
}
|
|
4071
4076
|
.mobius-submission{
|
|
4072
4077
|
display:flex;
|
|
@@ -6764,12 +6769,15 @@ svg:not(:host).svg-inline--mobius-icon{
|
|
|
6764
6769
|
.discount-voucher__text div{
|
|
6765
6770
|
gap:var(--size-xs);
|
|
6766
6771
|
}
|
|
6767
|
-
.mobius-discount-voucher-button
|
|
6772
|
+
.mobius-discount-voucher-button{
|
|
6768
6773
|
background-color:var(--color-background);
|
|
6769
6774
|
}
|
|
6770
|
-
.mobius-discount-voucher-button
|
|
6775
|
+
.mobius-discount-voucher-button:hover{
|
|
6771
6776
|
background-color:var(--button-secondary-color);
|
|
6772
6777
|
--button-content-color:var(--color-background)}
|
|
6778
|
+
.mobius-discount-voucher-button:hover .mobius-loading-indicator{
|
|
6779
|
+
color:var(--color-background);
|
|
6780
|
+
}
|
|
6773
6781
|
.mobius-discount-voucher-button.discount-voucher__button--desktop{
|
|
6774
6782
|
min-width:238px;
|
|
6775
6783
|
text-align:center;
|
|
@@ -7009,6 +7017,7 @@ svg:not(:host).svg-inline--mobius-icon{
|
|
|
7009
7017
|
display:inline;
|
|
7010
7018
|
}
|
|
7011
7019
|
.sticky-footer__disclaimer{
|
|
7020
|
+
display:block;
|
|
7012
7021
|
font-size:var(--font-size-1);
|
|
7013
7022
|
margin:0;
|
|
7014
7023
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@simplybusiness/theme-simplybusiness",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.28.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": "^5.
|
|
30
|
-
"@simplybusiness/mobius-chatbot": "^1.4.
|
|
31
|
-
"@simplybusiness/mobius-datepicker": "^6.7.
|
|
32
|
-
"@simplybusiness/mobius-interventions": "^1.
|
|
33
|
-
"@simplybusiness/mobius-journey": "^8.
|
|
34
|
-
"@simplybusiness/theme-core": "^7.
|
|
29
|
+
"@simplybusiness/mobius": "^5.32.0",
|
|
30
|
+
"@simplybusiness/mobius-chatbot": "^1.4.29",
|
|
31
|
+
"@simplybusiness/mobius-datepicker": "^6.7.13",
|
|
32
|
+
"@simplybusiness/mobius-interventions": "^1.79.0",
|
|
33
|
+
"@simplybusiness/mobius-journey": "^8.68.0",
|
|
34
|
+
"@simplybusiness/theme-core": "^7.10.1"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
37
|
"build-scripts": "^1.0.1",
|
package/src/index.css
CHANGED
|
@@ -36,6 +36,7 @@
|
|
|
36
36
|
@import "@simplybusiness/mobius-journey/src/components/Questionnaire/Section/Question/QuestionFactory/questions/DateQuestion/DateQuestion.css";
|
|
37
37
|
@import "@simplybusiness/mobius-journey/src/components/Questionnaire/Section/Question/QuestionFactory/questions/RadioButtonsQuestion/RadioButtonsQuestion.css";
|
|
38
38
|
@import "@simplybusiness/mobius-journey/src/components/Questionnaire/Section/Question/QuestionFactory/questions/TradeQuestion/TradeQuestion.css";
|
|
39
|
+
@import "@simplybusiness/mobius-journey/src/components/Questionnaire/Section/Question/QuestionFactory/questions/PercentageQuestion/PercentageQuestion.css";
|
|
39
40
|
@import "@simplybusiness/mobius-journey/src/components/Questionnaire/Section/Section.css";
|
|
40
41
|
@import "@simplybusiness/mobius-journey/src/components/Questionnaire/Section/Submission.css";
|
|
41
42
|
@import "@simplybusiness/mobius-journey/src/components/Questionnaire/SecurityLocks/SecurityLocks.css";
|