@robot-admin/layout 2.3.1 → 2.3.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@robot-admin/layout",
3
- "version": "2.3.1",
3
+ "version": "2.3.2",
4
4
  "description": "Layout and settings management system for Robot Admin - v2.0 with decoupled architecture",
5
5
  "type": "module",
6
6
  "keywords": [
@@ -48,7 +48,8 @@
48
48
  "scripts": {
49
49
  "dev": "vite build --watch",
50
50
  "build": "vue-tsc --noEmit && vite build",
51
- "clean": "rm -rf dist",
51
+ "clean": "node -e \"require('fs').rmSync('dist',{recursive:true,force:true})\"",
52
+ "test": "vitest run tests",
52
53
  "type-check": "vue-tsc --noEmit",
53
54
  "prepublishOnly": "bun run build"
54
55
  },
@@ -57,7 +58,7 @@
57
58
  "vue-router": "^4.0.0",
58
59
  "pinia": "^2.0.0 || ^3.0.0",
59
60
  "naive-ui": "^2.38.0",
60
- "@robot-admin/theme": "^0.1.0"
61
+ "@robot-admin/theme": "^0.3.0 || ^0.4.0"
61
62
  },
62
63
  "devDependencies": {
63
64
  "@robot-admin/theme": "workspace:*",
@@ -96,6 +96,12 @@
96
96
  }
97
97
  }
98
98
 
99
+ .preset-card:focus-visible,
100
+ .layout-item:focus-visible {
101
+ outline: 2px solid var(--n-color-target);
102
+ outline-offset: 2px;
103
+ }
104
+
99
105
  .preset-icon {
100
106
  font-size: 36px;
101
107
  margin-bottom: 10px;