@conduction/components 2.2.43 → 2.2.44

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/README.md CHANGED
@@ -4,6 +4,7 @@
4
4
 
5
5
  - **Version 2.2 (breaking changes from 2.1.x)**
6
6
 
7
+ - 2.2.44: Updated PrimaryTopNav to allow font-weight.
7
8
  - 2.2.43: Updated DownloadCard to allow size as string.
8
9
  - 2.2.42:
9
10
  - Updated PrimaryTopNav to have seperate dropdown tokens.
@@ -110,6 +110,7 @@
110
110
 
111
111
  .currentLink {
112
112
  color: var(--conduction-primary-top-nav-current-color) !important;
113
+ font-weight: var(--conduction-primary-top-nav-current-font-weight);
113
114
  }
114
115
 
115
116
  .currentLink svg path {
@@ -127,10 +128,12 @@
127
128
 
128
129
  .dropdownCurrent:hover > .dropdownCurrentLink {
129
130
  color: var(--conduction-primary-top-nav-dropdown-hover-color, var(--conduction-primary-top-nav-hover-color)) !important;
131
+ font-weight: var(--conduction-primary-top-nav-dropdown-current-font-weight) !important;
130
132
  }
131
133
 
132
134
  .dropdownCurrentLink {
133
135
  color: var(--conduction-primary-top-nav-dropdown-current-color, var(--conduction-primary-top-nav-current-color)) !important;
136
+ font-weight: var(--conduction-primary-top-nav-dropdown-current-font-weight);
134
137
  }
135
138
 
136
139
  .dropdownCurrentLink svg path {
@@ -158,8 +161,9 @@
158
161
  fill: var(--conduction-primary-top-nav-color);
159
162
  }
160
163
 
161
- .primary .li:hover .link {
164
+ .primary .li:hover > .link {
162
165
  color: var(--conduction-primary-top-nav-hover-color);
166
+ font-weight: var(--conduction-primary-top-nav-hover-font-weight);
163
167
  }
164
168
 
165
169
  .primary .li:hover svg path {
@@ -203,6 +207,7 @@
203
207
 
204
208
  .primary .dropdown .li:hover .link {
205
209
  color: var(--conduction-primary-top-nav-dropdown-hover-color, var(--conduction-primary-top-nav-hover-color));
210
+ font-weight: var(--conduction-primary-top-nav-dropdown-hover-font-weight);
206
211
  }
207
212
 
208
213
  .dropdown .li:hover {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@conduction/components",
3
- "version": "2.2.43",
3
+ "version": "2.2.44",
4
4
  "description": "React (Gatsby) components used within the Conduction Skeleton Application (and its implementations)",
5
5
  "main": "lib/index.js",
6
6
  "scripts": {
@@ -110,6 +110,7 @@
110
110
 
111
111
  .currentLink {
112
112
  color: var(--conduction-primary-top-nav-current-color) !important;
113
+ font-weight: var(--conduction-primary-top-nav-current-font-weight);
113
114
  }
114
115
 
115
116
  .currentLink svg path {
@@ -127,10 +128,12 @@
127
128
 
128
129
  .dropdownCurrent:hover > .dropdownCurrentLink {
129
130
  color: var(--conduction-primary-top-nav-dropdown-hover-color, var(--conduction-primary-top-nav-hover-color)) !important;
131
+ font-weight: var(--conduction-primary-top-nav-dropdown-current-font-weight) !important;
130
132
  }
131
133
 
132
134
  .dropdownCurrentLink {
133
135
  color: var(--conduction-primary-top-nav-dropdown-current-color, var(--conduction-primary-top-nav-current-color)) !important;
136
+ font-weight: var(--conduction-primary-top-nav-dropdown-current-font-weight);
134
137
  }
135
138
 
136
139
  .dropdownCurrentLink svg path {
@@ -158,8 +161,9 @@
158
161
  fill: var(--conduction-primary-top-nav-color);
159
162
  }
160
163
 
161
- .primary .li:hover .link {
164
+ .primary .li:hover > .link {
162
165
  color: var(--conduction-primary-top-nav-hover-color);
166
+ font-weight: var(--conduction-primary-top-nav-hover-font-weight);
163
167
  }
164
168
 
165
169
  .primary .li:hover svg path {
@@ -203,6 +207,7 @@
203
207
 
204
208
  .primary .dropdown .li:hover .link {
205
209
  color: var(--conduction-primary-top-nav-dropdown-hover-color, var(--conduction-primary-top-nav-hover-color));
210
+ font-weight: var(--conduction-primary-top-nav-dropdown-hover-font-weight);
206
211
  }
207
212
 
208
213
  .dropdown .li:hover {