@skyhook-io/k8s-ui 1.7.2 → 1.7.4

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@skyhook-io/k8s-ui",
3
- "version": "1.7.2",
3
+ "version": "1.7.4",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "https://github.com/skyhook-io/radar",
@@ -63,7 +63,7 @@
63
63
  "dependencies": {
64
64
  "@monaco-editor/react": "^4.7.0",
65
65
  "html-to-image": "^1.11.0",
66
- "react-virtuoso": "^4.18.6",
66
+ "react-virtuoso": "^4.18.7",
67
67
  "shiki": "^4.0.0"
68
68
  },
69
69
  "peerDependencies": {
@@ -90,7 +90,7 @@
90
90
  "clsx": "^2.1.1",
91
91
  "diff": "^9.0.0",
92
92
  "elkjs": "^0.11.1",
93
- "lucide-react": "^1.12.0",
93
+ "lucide-react": "^1.16.0",
94
94
  "react": "^19.2.6",
95
95
  "react-dom": "^19.2.6",
96
96
  "typescript": "^6.0.2",
@@ -25,6 +25,13 @@ export interface CheckMeta {
25
25
  description: string
26
26
  remediation: string
27
27
  frameworks?: string[]
28
+ references?: CheckReference[]
29
+ }
30
+
31
+ /** An authoritative link for a check (K8s docs, CIS, NSA/CISA, …). */
32
+ export interface CheckReference {
33
+ label: string
34
+ url: string
28
35
  }
29
36
 
30
37
  export interface AuditFindingsTableProps {