@kavachos/dashboard 0.1.1 → 0.1.2

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.
@@ -0,0 +1,33 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512">
2
+ <!-- KavachOS - Golden Armor on Dark. Inspired by Karna's Kavach-Kundal. -->
3
+ <defs>
4
+ <linearGradient id="g1" x1="0" y1="0" x2="1" y2="1">
5
+ <stop offset="0%" stop-color="#C9A84C"/>
6
+ <stop offset="100%" stop-color="#8B6914"/>
7
+ </linearGradient>
8
+ <linearGradient id="g2" x1="0" y1="0" x2="1" y2="1">
9
+ <stop offset="0%" stop-color="#D4B65A"/>
10
+ <stop offset="100%" stop-color="#9A7B22"/>
11
+ </linearGradient>
12
+ <linearGradient id="g3" x1="0" y1="0" x2="1" y2="1">
13
+ <stop offset="0%" stop-color="#E0C56A"/>
14
+ <stop offset="100%" stop-color="#AA8B32"/>
15
+ </linearGradient>
16
+ <linearGradient id="g4" x1="0" y1="0" x2="1" y2="1">
17
+ <stop offset="0%" stop-color="#F0D87A"/>
18
+ <stop offset="100%" stop-color="#BFA042"/>
19
+ </linearGradient>
20
+ </defs>
21
+ <rect width="512" height="512" fill="#0a0a0a"/>
22
+ <g transform="translate(256,256)">
23
+ <rect x="-180" y="-180" width="360" height="360" rx="48" fill="url(#g1)"/>
24
+ <rect x="-156" y="-156" width="312" height="312" rx="40" fill="#0a0a0a"/>
25
+ <rect x="-132" y="-132" width="264" height="264" rx="36" fill="url(#g2)"/>
26
+ <rect x="-108" y="-108" width="216" height="216" rx="28" fill="#0a0a0a"/>
27
+ <rect x="-84" y="-84" width="168" height="168" rx="24" fill="url(#g3)"/>
28
+ <rect x="-60" y="-60" width="120" height="120" rx="16" fill="#0a0a0a"/>
29
+ <rect x="-40" y="-40" width="80" height="80" rx="12" fill="url(#g4)"/>
30
+ <rect x="-22" y="-22" width="44" height="44" rx="6" fill="#0a0a0a"/>
31
+ <circle cx="0" cy="0" r="10" fill="#F6D97A"/>
32
+ </g>
33
+ </svg>
@@ -5,8 +5,8 @@
5
5
  <link rel="icon" type="image/svg+xml" href="/favicon.svg" />
6
6
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
7
7
  <title>KavachOS Dashboard</title>
8
- <script type="module" crossorigin src="/assets/index-CpP2fdHW.js"></script>
9
- <link rel="stylesheet" crossorigin href="/assets/index-YNNLwlCL.css">
8
+ <script type="module" crossorigin src="/assets/index-Dd9L49JA.js"></script>
9
+ <link rel="stylesheet" crossorigin href="/assets/index-BC0JsGqJ.css">
10
10
  </head>
11
11
  <body>
12
12
  <div id="root"></div>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kavachos/dashboard",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "type": "module",
5
5
  "description": "KavachOS admin dashboard - React UI for managing agents, permissions, and audit logs",
6
6
  "license": "MIT",
@@ -34,6 +34,7 @@
34
34
  "react-dom": "^19.2.4"
35
35
  },
36
36
  "devDependencies": {
37
+ "@playwright/test": "^1.52.0",
37
38
  "@tailwindcss/vite": "^4.0.0",
38
39
  "@types/react": "^19.2.14",
39
40
  "@types/react-dom": "^19.2.3",
@@ -58,6 +59,8 @@
58
59
  "build:app": "tsc --noEmit && vite build --mode app",
59
60
  "typecheck": "tsc --noEmit",
60
61
  "preview": "vite preview",
61
- "clean": "rm -rf dist"
62
+ "clean": "rm -rf dist",
63
+ "test:e2e": "playwright test",
64
+ "test:e2e:ui": "playwright test --ui"
62
65
  }
63
66
  }