@simplybusiness/theme-core 7.7.2 → 7.8.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.8.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 87f6d58: feat: add CTM Header component
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies [87f6d58]
12
+ - @simplybusiness/mobius@5.29.0
13
+
14
+ ## 7.7.3
15
+
16
+ ### Patch Changes
17
+
18
+ - @simplybusiness/mobius@5.28.3
19
+
3
20
  ## 7.7.2
4
21
 
5
22
  ### Patch Changes
package/dist/index.css CHANGED
@@ -1043,7 +1043,7 @@ a.mobius-button:focus-visible,
1043
1043
  box-sizing:border-box;
1044
1044
  font-family:var(--font-family);
1045
1045
  line-height:var(--line-height-normal);
1046
- color:var(--color-secondary);
1046
+ color:var(--color-link);
1047
1047
  outline:none;
1048
1048
  border-radius:var(--radius-1);
1049
1049
  }
@@ -1066,6 +1066,14 @@ a.mobius-button:focus-visible,
1066
1066
  cursor:not-allowed;
1067
1067
  }
1068
1068
 
1069
+ .mobius-link--secondary{
1070
+ color:var(--color-link-secondary);
1071
+ }
1072
+
1073
+ .mobius-link--secondary:hover,.mobius-link--secondary:active{
1074
+ color:var(--color-link-secondary);
1075
+ }
1076
+
1069
1077
  .mobius-list{
1070
1078
  box-sizing:border-box;
1071
1079
  font-family:var(--font-family);
@@ -3095,6 +3103,8 @@ svg:not(:host).svg-inline--mobius-icon{
3095
3103
  --switch-transition-duration:150ms;
3096
3104
  --table-border-width:1px;
3097
3105
  --title-decorator-width:8px;
3106
+ --color-link:var(--color-secondary);
3107
+ --color-link-secondary:var(--color-link);
3098
3108
  }
3099
3109
 
3100
3110
  :root{
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@simplybusiness/theme-core",
3
- "version": "7.7.2",
3
+ "version": "7.8.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.28.2"
29
+ "@simplybusiness/mobius": "^5.29.0"
30
30
  },
31
31
  "devDependencies": {
32
32
  "css-loader": "^7.1.2",
@@ -43,7 +43,7 @@
43
43
  "resolve-url-loader": "^5.0.0",
44
44
  "sass": "^1.85.1",
45
45
  "sass-loader": "^14.2.1",
46
- "webpack": "^5.99.4",
46
+ "webpack": "^5.99.7",
47
47
  "webpack-cli": "^5.1.4"
48
48
  }
49
49
  }
package/src/variables.css CHANGED
@@ -221,4 +221,8 @@
221
221
  --switch-transition-duration: 150ms;
222
222
  --table-border-width: 1px;
223
223
  --title-decorator-width: 8px;
224
+
225
+ /* Link Colors */
226
+ --color-link: var(--color-secondary);
227
+ --color-link-secondary: var(--color-link);
224
228
  }