@simplybusiness/theme-core 7.8.8 → 7.9.0

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,22 @@
1
1
  # Changelog
2
2
 
3
+ ## 7.9.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 6bbda62: default styling on radio when first child is an icon
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies [6bbda62]
12
+ - @simplybusiness/mobius@5.30.0
13
+
14
+ ## 7.8.9
15
+
16
+ ### Patch Changes
17
+
18
+ - bee7b47: Alias for colors to respect the palette
19
+
3
20
  ## 7.8.8
4
21
 
5
22
  ### Patch Changes
package/dist/index.css CHANGED
@@ -1605,6 +1605,13 @@ a.mobius-button:focus-visible,
1605
1605
  padding-top:calc(var(--size-xxs) - 1px);
1606
1606
  }
1607
1607
 
1608
+ .mobius-radio__label.--has-icon-first .mobius-radio__content{
1609
+ display:grid;
1610
+ align-items:center;
1611
+ grid-template-columns:var(--size-md) 1fr;
1612
+ gap:var(--size-xs);
1613
+ }
1614
+
1608
1615
  .mobius-segment-group{
1609
1616
  box-sizing:border-box;
1610
1617
  display:flex;
@@ -2893,7 +2900,8 @@ svg:not(:host).svg-inline--mobius-icon{
2893
2900
  --color-primary-light:var(--color-azure-400);
2894
2901
  --color-primary-lighter:var(--color-azure-300);
2895
2902
  --color-primary:var(--color-azure-500);
2896
- --color-primary-hover:var(--color-azure-600);
2903
+ --color-primary-darker:var(--color-azure-600);
2904
+ --color-primary-hover:var(--color-primary-darker);
2897
2905
  --color-secondary:var(--color-azure-500);
2898
2906
  --color-secondary-hover:var(--color-azure-600);
2899
2907
  --color-focus:var(--color-bubblegum-500);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@simplybusiness/theme-core",
3
- "version": "7.8.8",
3
+ "version": "7.9.0",
4
4
  "main": "dist/index.css",
5
5
  "simplyBusiness": {
6
6
  "publishToPublicNpm": true
@@ -26,7 +26,7 @@
26
26
  "./fonts": "./dist/fonts.css"
27
27
  },
28
28
  "dependencies": {
29
- "@simplybusiness/mobius": "^5.29.9"
29
+ "@simplybusiness/mobius": "^5.30.0"
30
30
  },
31
31
  "devDependencies": {
32
32
  "css-loader": "^7.1.2",
package/src/variables.css CHANGED
@@ -45,7 +45,8 @@
45
45
  --color-primary-light: var(--color-azure-400);
46
46
  --color-primary-lighter: var(--color-azure-300);
47
47
  --color-primary: var(--color-azure-500);
48
- --color-primary-hover: var(--color-azure-600);
48
+ --color-primary-darker: var(--color-azure-600);
49
+ --color-primary-hover: var(--color-primary-darker);
49
50
 
50
51
  /* Secondary */
51
52
  --color-secondary: var(--color-azure-500);