@simplybusiness/theme-simplybusiness 2.3.18 → 2.3.19
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 +15 -0
- package/dist/index.css +14 -19
- package/package.json +7 -7
- package/src/index.css +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# @simplybusiness/theme-simplybusiness
|
|
2
2
|
|
|
3
|
+
## 2.3.19
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- c46c9f9: Make radio button focus shadow themeable and consolidate radio styling
|
|
8
|
+
- Updated dependencies [bd0a6a3]
|
|
9
|
+
- Updated dependencies [c46c9f9]
|
|
10
|
+
- Updated dependencies [83da228]
|
|
11
|
+
- @simplybusiness/mobius-journey@10.32.0
|
|
12
|
+
- @simplybusiness/mobius@6.5.2
|
|
13
|
+
- @simplybusiness/theme-core@7.13.15
|
|
14
|
+
- @simplybusiness/mobius-chatbot@2.0.24
|
|
15
|
+
- @simplybusiness/mobius-datepicker@7.1.18
|
|
16
|
+
- @simplybusiness/mobius-interventions@2.7.15
|
|
17
|
+
|
|
3
18
|
## 2.3.18
|
|
4
19
|
|
|
5
20
|
### Patch Changes
|
package/dist/index.css
CHANGED
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
}
|
|
47
47
|
.mobius-accordion__link:focus-visible{
|
|
48
48
|
outline:none;
|
|
49
|
-
box-shadow:var(--box-shadow-default);
|
|
49
|
+
box-shadow:var(--accordion-box-shadow, var(--box-shadow-default));
|
|
50
50
|
}
|
|
51
51
|
h1.mobius-accordion__link-text,
|
|
52
52
|
h2.mobius-accordion__link-text,
|
|
@@ -255,6 +255,9 @@ h6.mobius-accordion__link-text,
|
|
|
255
255
|
.mobius-button:where(.--variant-basic):where(:hover){
|
|
256
256
|
background:var(--color-background-light);
|
|
257
257
|
}
|
|
258
|
+
.mobius-button:where(.--variant-basic):where(:focus-visible){
|
|
259
|
+
box-shadow:var(--box-shadow-default);
|
|
260
|
+
}
|
|
258
261
|
.mobius-button:where(.--variant-basic):where(.--is-disabled){
|
|
259
262
|
--button-content-color:var(--color-text-light);
|
|
260
263
|
background:var(--color-background-medium);
|
|
@@ -299,11 +302,12 @@ h6.mobius-accordion__link-text,
|
|
|
299
302
|
fill:var(--button-content-color);
|
|
300
303
|
}
|
|
301
304
|
.mobius-button:where(.--variant-link){
|
|
302
|
-
--button-content-color:var(--color-secondary);
|
|
305
|
+
--button-content-color:var(--button-link-color, var(--color-secondary));
|
|
303
306
|
appearance:none;
|
|
304
307
|
padding:var(--size-xxs);
|
|
305
308
|
background:transparent;
|
|
306
309
|
font-weight:normal;
|
|
310
|
+
border-radius:var(--button-link-border-radius, var(--button-border-radius));
|
|
307
311
|
}
|
|
308
312
|
.mobius-button:where(.--variant-link):where(:not(.--is-loading)){
|
|
309
313
|
-webkit-text-decoration:underline;
|
|
@@ -311,11 +315,12 @@ h6.mobius-accordion__link-text,
|
|
|
311
315
|
text-decoration:underline;
|
|
312
316
|
}
|
|
313
317
|
.mobius-button:where(.--variant-link):hover,.mobius-button:where(.--variant-link):active{
|
|
314
|
-
--button-content-color:var(--color-secondary-hover);
|
|
318
|
+
--button-content-color:var(--button-link-hover-color, var(--color-secondary-hover));
|
|
319
|
+
text-decoration:var(--button-link-hover-text-decoration, underline);
|
|
315
320
|
cursor:pointer;
|
|
316
321
|
}
|
|
317
322
|
.mobius-button:where(.--variant-link):focus-visible{
|
|
318
|
-
box-shadow:
|
|
323
|
+
box-shadow:var(--button-link-box-shadow, var(--box-shadow-default));
|
|
319
324
|
}
|
|
320
325
|
.mobius-button.--is-disabled:where(.--variant-link){
|
|
321
326
|
--button-content-color:var(--color-text-light);
|
|
@@ -330,10 +335,6 @@ h6.mobius-accordion__link-text,
|
|
|
330
335
|
display:grid;
|
|
331
336
|
place-items:center;
|
|
332
337
|
}
|
|
333
|
-
a.mobius-button:focus-visible,
|
|
334
|
-
.mobius-button:focus-visible{
|
|
335
|
-
box-shadow:var(--box-shadow-default);
|
|
336
|
-
}
|
|
337
338
|
.mobius-checkbox__input{
|
|
338
339
|
appearance:none;
|
|
339
340
|
position:absolute;
|
|
@@ -890,14 +891,12 @@ a.mobius-button:focus-visible,
|
|
|
890
891
|
border-radius:var(--radius-1);
|
|
891
892
|
}
|
|
892
893
|
.mobius-link:hover,.mobius-link:active{
|
|
893
|
-
-
|
|
894
|
-
-webkit-text-decoration:underline;
|
|
895
|
-
text-decoration:underline;
|
|
894
|
+
text-decoration:var(--link-hover-text-decoration, underline);
|
|
896
895
|
cursor:pointer;
|
|
897
896
|
color:var(--color-link-hover);
|
|
898
897
|
}
|
|
899
898
|
.mobius-link:focus-visible{
|
|
900
|
-
box-shadow:var(--box-shadow-default);
|
|
899
|
+
box-shadow:var(--link-box-shadow, var(--box-shadow-default));
|
|
901
900
|
padding:3px 0;
|
|
902
901
|
}
|
|
903
902
|
.mobius-link.--is-disabled{
|
|
@@ -1268,6 +1267,7 @@ a.mobius-button:focus-visible,
|
|
|
1268
1267
|
background-color:transparent;
|
|
1269
1268
|
}
|
|
1270
1269
|
.mobius-radio__input:focus-visible{
|
|
1270
|
+
outline-color:var(--color-primary);
|
|
1271
1271
|
outline-offset:0;
|
|
1272
1272
|
}
|
|
1273
1273
|
.mobius-radio__input::after{
|
|
@@ -1341,7 +1341,7 @@ a.mobius-button:focus-visible,
|
|
|
1341
1341
|
background-color:var(--color-primary);
|
|
1342
1342
|
}
|
|
1343
1343
|
.mobius-radio__label:has(:focus-visible):not(.--is-disabled){
|
|
1344
|
-
box-shadow:var(--box-shadow
|
|
1344
|
+
box-shadow:var(--radio-box-shadow);
|
|
1345
1345
|
}
|
|
1346
1346
|
.mobius-radio__label:has(:focus-visible):not(.--is-disabled):not(.--is-invalid .mobius-radio__label:has(:focus-visible):not(.--is-disabled)){
|
|
1347
1347
|
border-color:var(--color-primary);
|
|
@@ -2640,6 +2640,7 @@ svg:not(:host).svg-inline--mobius-icon{
|
|
|
2640
2640
|
--radio-label-background-focus:var(--color-background-input-active);
|
|
2641
2641
|
--radio-label-background-invalid:var(--color-error-background);
|
|
2642
2642
|
--radio-label-padding:var(--input-field-padding-tight);
|
|
2643
|
+
--radio-box-shadow:var(--box-shadow-default);
|
|
2643
2644
|
--radio-content-font-size:var(--font-size-regular);
|
|
2644
2645
|
--radio-content-color:inherit;
|
|
2645
2646
|
--radio-content-line-height:normal;
|
|
@@ -4119,12 +4120,6 @@ svg:not(:host).svg-inline--mobius-icon{
|
|
|
4119
4120
|
column-gap:var(--size-sm);
|
|
4120
4121
|
margin-bottom:var(--size-sm);
|
|
4121
4122
|
}
|
|
4122
|
-
.mobius-radio-buttons-question.--is-horizontal .mobius-radio__label:not(:last-child){
|
|
4123
|
-
margin-right:var(--size-sm);
|
|
4124
|
-
}
|
|
4125
|
-
.mobius-radio-buttons-question.--is-vertical .mobius-radio__label:not(:last-child){
|
|
4126
|
-
margin-bottom:var(--size-sm);
|
|
4127
|
-
}
|
|
4128
4123
|
.mobius-trade-question__note{
|
|
4129
4124
|
margin-top:var(--size-sm);
|
|
4130
4125
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@simplybusiness/theme-simplybusiness",
|
|
3
|
-
"version": "2.3.
|
|
3
|
+
"version": "2.3.19",
|
|
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.5.
|
|
30
|
-
"@simplybusiness/mobius-chatbot": "^2.0.
|
|
31
|
-
"@simplybusiness/mobius-datepicker": "^7.1.
|
|
32
|
-
"@simplybusiness/mobius-interventions": "^2.7.
|
|
33
|
-
"@simplybusiness/mobius-journey": "^10.
|
|
34
|
-
"@simplybusiness/theme-core": "^7.13.
|
|
29
|
+
"@simplybusiness/mobius": "^6.5.2",
|
|
30
|
+
"@simplybusiness/mobius-chatbot": "^2.0.24",
|
|
31
|
+
"@simplybusiness/mobius-datepicker": "^7.1.18",
|
|
32
|
+
"@simplybusiness/mobius-interventions": "^2.7.15",
|
|
33
|
+
"@simplybusiness/mobius-journey": "^10.32.0",
|
|
34
|
+
"@simplybusiness/theme-core": "^7.13.15"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
37
|
"build-scripts": "^1.0.2",
|
package/src/index.css
CHANGED
|
@@ -35,7 +35,6 @@
|
|
|
35
35
|
@import "@simplybusiness/mobius-journey/src/components/Questionnaire/Section/Question/Question.css";
|
|
36
36
|
@import "@simplybusiness/mobius-journey/src/components/Questionnaire/Section/Question/QuestionFactory/questions/AnnualTurnoverQuestion/AnnualTurnoverQuestion.css";
|
|
37
37
|
@import "@simplybusiness/mobius-journey/src/components/Questionnaire/Section/Question/QuestionFactory/questions/DateQuestion/DateQuestion.css";
|
|
38
|
-
@import "@simplybusiness/mobius-journey/src/components/Questionnaire/Section/Question/QuestionFactory/questions/RadioButtonsQuestion/RadioButtonsQuestion.css";
|
|
39
38
|
@import "@simplybusiness/mobius-journey/src/components/Questionnaire/Section/Question/QuestionFactory/questions/TradeQuestion/TradeQuestion.css";
|
|
40
39
|
@import "@simplybusiness/mobius-journey/src/components/Questionnaire/Section/Question/QuestionFactory/questions/TradeQuestion/AiTradeQuestion/AiTradeQuestion.css";
|
|
41
40
|
@import "@simplybusiness/mobius-journey/src/components/Questionnaire/Section/Question/QuestionFactory/questions/PercentageQuestion/PercentageQuestion.css";
|