@simplybusiness/theme-simplybusiness 1.26.5 → 1.26.7

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,32 @@
1
1
  # @simplybusiness/theme-simplybusiness
2
2
 
3
+ ## 1.26.7
4
+
5
+ ### Patch Changes
6
+
7
+ - @simplybusiness/mobius@5.31.5
8
+ - @simplybusiness/mobius-chatbot@1.4.22
9
+ - @simplybusiness/mobius-datepicker@6.7.8
10
+ - @simplybusiness/mobius-interventions@1.75.5
11
+ - @simplybusiness/mobius-journey@8.53.1
12
+ - @simplybusiness/theme-core@7.9.5
13
+
14
+ ## 1.26.6
15
+
16
+ ### Patch Changes
17
+
18
+ - 251db93: added token for radio icon color
19
+ - Updated dependencies [3c1b085]
20
+ - Updated dependencies [251db93]
21
+ - Updated dependencies [73941e3]
22
+ - Updated dependencies [966479b]
23
+ - @simplybusiness/mobius-journey@8.53.0
24
+ - @simplybusiness/mobius@5.31.4
25
+ - @simplybusiness/mobius-chatbot@1.4.21
26
+ - @simplybusiness/mobius-datepicker@6.7.7
27
+ - @simplybusiness/mobius-interventions@1.75.4
28
+ - @simplybusiness/theme-core@7.9.4
29
+
3
30
  ## 1.26.5
4
31
 
5
32
  ### Patch Changes
package/dist/index.css CHANGED
@@ -1343,6 +1343,9 @@ a.mobius-button:focus-visible,
1343
1343
  grid-template-columns:var(--size-md) 1fr;
1344
1344
  gap:var(--size-xs);
1345
1345
  }
1346
+ .mobius-radio__content .mobius-icon{
1347
+ color:var(--radio-icon-color);
1348
+ }
1346
1349
  .mobius-segment-group{
1347
1350
  box-sizing:border-box;
1348
1351
  display:flex;
@@ -7193,6 +7196,7 @@ svg:not(:host).svg-inline--mobius-icon{
7193
7196
  --progress-steps-active-line-color:var(--progress-steps-secondary-color);
7194
7197
  --section-max-width:552px;
7195
7198
  --questionnaire-list-icon:url("data:image/svg+xml,%3Csvg xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22 width%3D%22448%22 height%3D%22512%22 viewbox%3D%220 0 24 24%22%3E %3Cpath d%3D%22M448 130L431 147 177.5 399.2l-16.9 16.9-16.9-16.9L17 273.1 0 256.2l33.9-34 17 16.9L160.6 348.3 397.1 112.9l17-16.9L448 130z%22 fill%3D%22%23e943c9%22 %2F%3E%3C%2Fsvg%3E");
7199
+ --radio-icon-color:var(--color-accent);
7196
7200
  }
7197
7201
  html,
7198
7202
  body{
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@simplybusiness/theme-simplybusiness",
3
- "version": "1.26.5",
3
+ "version": "1.26.7",
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.31.3",
30
- "@simplybusiness/mobius-chatbot": "^1.4.20",
31
- "@simplybusiness/mobius-datepicker": "^6.7.6",
32
- "@simplybusiness/mobius-interventions": "^1.75.3",
33
- "@simplybusiness/mobius-journey": "^8.52.1",
34
- "@simplybusiness/theme-core": "^7.9.3"
29
+ "@simplybusiness/mobius": "^5.31.5",
30
+ "@simplybusiness/mobius-chatbot": "^1.4.22",
31
+ "@simplybusiness/mobius-datepicker": "^6.7.8",
32
+ "@simplybusiness/mobius-interventions": "^1.75.5",
33
+ "@simplybusiness/mobius-journey": "^8.53.1",
34
+ "@simplybusiness/theme-core": "^7.9.5"
35
35
  },
36
36
  "devDependencies": {
37
37
  "css-loader": "^7.1.2",
package/src/variables.css CHANGED
@@ -47,4 +47,7 @@
47
47
  /* Section */
48
48
  --section-max-width: 552px;
49
49
  --questionnaire-list-icon: url("./images/tick.svg");
50
+
51
+ /* Radio */
52
+ --radio-icon-color: var(--color-accent);
50
53
  }