@unciatech/file-manager 0.0.26 → 0.0.27

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/dist/styles.css CHANGED
@@ -90,9 +90,7 @@
90
90
  /* ── Focus ring ───────────────────────────────────────────────── */
91
91
  /* Suppress the thick native browser outline on all elements */
92
92
  *:focus-visible {
93
- outline: 2px solid var(--color-ring);
94
- outline-offset: 2px;
95
- box-shadow: none;
93
+ outline: none !important;
96
94
  }
97
95
 
98
96
  /* ── Scrollbar ────────────────────────────────────────────────── */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@unciatech/file-manager",
3
- "version": "0.0.26",
3
+ "version": "0.0.27",
4
4
  "description": "Modern file manager component for React and Next.js",
5
5
  "author": "Avi",
6
6
  "license": "MIT",
@@ -53,7 +53,7 @@
53
53
  "build": "next build",
54
54
  "build:pkg": "tsup && cp styles.css dist/styles.css",
55
55
  "clean": "rm -rf dist .next",
56
- "prepublishOnly": "npm run build:pkg",
56
+ "prepublish": "npm run build:pkg",
57
57
  "release": "npm run build:pkg && npm publish",
58
58
  "lint": "next lint"
59
59
  },
package/styles.css CHANGED
@@ -90,9 +90,7 @@
90
90
  /* ── Focus ring ───────────────────────────────────────────────── */
91
91
  /* Suppress the thick native browser outline on all elements */
92
92
  *:focus-visible {
93
- outline: 2px solid var(--color-ring);
94
- outline-offset: 2px;
95
- box-shadow: none;
93
+ outline: none !important;
96
94
  }
97
95
 
98
96
  /* ── Scrollbar ────────────────────────────────────────────────── */