@conduction/components 2.2.47 → 2.2.48

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.48: Updated CardHeader and package.json.
7
8
  - 2.2.46 / 2.2.47: Fixed minor css parse error.
8
9
  - 2.2.45: Updated Pagination and select to ensure more WCAG compliancy.
9
10
  - 2.2.44: Updated PrimaryTopNav to allow font-weight.
@@ -6,6 +6,7 @@
6
6
  /* --conduction-card-header-hover-border-bottom-style: unset; */
7
7
  /* --conduction-card-header-hover-border-bottom-color: unset; */
8
8
  --conduction-card-header-title-color: #000000;
9
+ /* --conduction-card-header-title-hover-color: #000000; */
9
10
  --conduction-card-header-date-color: #000000;
10
11
  --conduction-card-header-date-font-size: 16px;
11
12
  --conduction-card-header-date-font-weight: 100;
@@ -28,6 +29,10 @@
28
29
  color: var(--conduction-card-header-title-color) !important;
29
30
  }
30
31
 
32
+ .title:hover > * {
33
+ color: var(--conduction-card-header-title-hover-color, var(--conduction-card-header-title-color)) !important;
34
+ }
35
+
31
36
  .date {
32
37
  color: var(--conduction-card-header-date-color);
33
38
  font-size: var(--conduction-card-header-date-font-size);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@conduction/components",
3
- "version": "2.2.47",
3
+ "version": "2.2.48",
4
4
  "description": "React (Gatsby) components used within the Conduction Skeleton Application (and its implementations)",
5
5
  "main": "lib/index.js",
6
6
  "scripts": {
@@ -22,29 +22,29 @@
22
22
  },
23
23
  "homepage": "https://github.com/ConductionNL/conduction-components#readme",
24
24
  "dependencies": {
25
- "@fortawesome/fontawesome-svg-core": "^6.4.2",
26
- "@fortawesome/free-solid-svg-icons": "^6.4.2",
25
+ "@fortawesome/fontawesome-svg-core": "^6.5.1",
26
+ "@fortawesome/free-solid-svg-icons": "^6.5.1",
27
27
  "@fortawesome/react-fontawesome": "^0.2.0",
28
- "@utrecht/component-library-react": "2.0.0",
29
- "clsx": "^2.0.0",
30
- "gatsby": "^5.12.9",
28
+ "@utrecht/component-library-react": "3.0.0",
29
+ "clsx": "^2.1.0",
30
+ "gatsby": "^5.13.3",
31
31
  "react": "^18.2.0",
32
- "react-datepicker": "^4.23.0",
33
- "react-hook-form": "7.48.2",
32
+ "react-datepicker": "^6.3.0",
33
+ "react-hook-form": "7.51.0",
34
34
  "react-paginate": "^8.2.0",
35
35
  "react-select": "5.8.0",
36
36
  "react-tabs": "^6.0.2",
37
- "react-tooltip": "^5.24.0"
37
+ "react-tooltip": "^5.26.3"
38
38
  },
39
39
  "devDependencies": {
40
- "@types/node": "^20.9.3",
41
- "@types/react": "^18.2.38",
42
- "@types/react-datepicker": "^4.19.3",
43
- "@types/react-dom": "^18.2.16",
40
+ "@types/node": "^20.11.27",
41
+ "@types/react": "^18.2.66",
42
+ "@types/react-datepicker": "^6.2.0",
43
+ "@types/react-dom": "^18.2.22",
44
44
  "copyfiles": "^2.4.1",
45
45
  "npm-run-all": "^4.1.5",
46
46
  "rimraf": "^5.0.5",
47
47
  "tsc-hooks": "^1.1.2",
48
- "typescript": "^5.3.2"
48
+ "typescript": "^5.4.2"
49
49
  }
50
50
  }
@@ -6,6 +6,7 @@
6
6
  /* --conduction-card-header-hover-border-bottom-style: unset; */
7
7
  /* --conduction-card-header-hover-border-bottom-color: unset; */
8
8
  --conduction-card-header-title-color: #000000;
9
+ /* --conduction-card-header-title-hover-color: #000000; */
9
10
  --conduction-card-header-date-color: #000000;
10
11
  --conduction-card-header-date-font-size: 16px;
11
12
  --conduction-card-header-date-font-weight: 100;
@@ -28,6 +29,10 @@
28
29
  color: var(--conduction-card-header-title-color) !important;
29
30
  }
30
31
 
32
+ .title:hover > * {
33
+ color: var(--conduction-card-header-title-hover-color, var(--conduction-card-header-title-color)) !important;
34
+ }
35
+
31
36
  .date {
32
37
  color: var(--conduction-card-header-date-color);
33
38
  font-size: var(--conduction-card-header-date-font-size);