@midas-ds/table-styles 2.0.112 → 2.0.114

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +17 -0
  2. package/package.json +9 -3
package/CHANGELOG.md CHANGED
@@ -1,3 +1,20 @@
1
+ ## 2.0.114 (2026-09-04)
2
+
3
+ ### 🩹 Fixes
4
+
5
+ - **table-styles,select-styles:** fix incorrect dependency classification ([d67e5d22859](https://github.com/migrationsverket/midas/commit/d67e5d22859))
6
+ - **table-styles:** declare react-aria as a dependency, was undeclared ([c4d48882e68](https://github.com/migrationsverket/midas/commit/c4d48882e68))
7
+
8
+ ### 🧱 Updated Dependencies
9
+
10
+ - Updated components to 17.23.6
11
+
12
+ ## 2.0.113 (2026-09-03)
13
+
14
+ ### 🧱 Updated Dependencies
15
+
16
+ - Updated components to 17.23.5
17
+
1
18
  ## 2.0.112 (2026-09-01)
2
19
 
3
20
  ### 🔧 Maintenance
package/package.json CHANGED
@@ -14,7 +14,7 @@
14
14
  "description": "Midas table components and styles for TanStack Table",
15
15
  "homepage": "https://designsystem.migrationsverket.se/",
16
16
  "license": "CC0-1.0",
17
- "version": "2.0.112",
17
+ "version": "2.0.114",
18
18
  "main": "./index.mjs",
19
19
  "types": "./index.d.ts",
20
20
  "files": [
@@ -31,10 +31,16 @@
31
31
  }
32
32
  },
33
33
  "dependencies": {
34
- "@midas-ds/components": "17.23.4",
34
+ "@midas-ds/components": "17.23.6",
35
35
  "@midas-ds/theme": "3.17.0",
36
36
  "lucide-react": "^0.563.0",
37
- "react-aria-components": "1.20.0",
37
+ "react-aria": "^3.51.0",
38
+ "react-aria-components": "1.20.0"
39
+ },
40
+ "peerDependencies": {
41
+ "@tanstack/react-table": "^8.21.3"
42
+ },
43
+ "devDependencies": {
38
44
  "@tanstack/react-table": "^8.21.3"
39
45
  }
40
46
  }