@aiquants/directory-tree 1.13.0 → 1.14.0
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/index.js +3 -3
- package/package.json +12 -11
package/dist/index.js
CHANGED
|
@@ -8,7 +8,7 @@ var _e;
|
|
|
8
8
|
function ze() {
|
|
9
9
|
if (_e) return de;
|
|
10
10
|
_e = 1;
|
|
11
|
-
var e =
|
|
11
|
+
var e = Symbol.for("react.transitional.element"), r = Symbol.for("react.fragment");
|
|
12
12
|
function o(l, n, a) {
|
|
13
13
|
var i = null;
|
|
14
14
|
if (a !== void 0 && (i = "" + a), n.key !== void 0 && (i = "" + n.key), "key" in n) {
|
|
@@ -223,7 +223,7 @@ React keys must be passed directly to JSX without using spread:
|
|
|
223
223
|
function p(t) {
|
|
224
224
|
return typeof t == "object" && t !== null && t.$$typeof === w;
|
|
225
225
|
}
|
|
226
|
-
var g = Fe, w =
|
|
226
|
+
var g = Fe, w = Symbol.for("react.transitional.element"), u = Symbol.for("react.portal"), s = Symbol.for("react.fragment"), h = Symbol.for("react.strict_mode"), R = Symbol.for("react.profiler"), _ = Symbol.for("react.consumer"), x = Symbol.for("react.context"), d = Symbol.for("react.forward_ref"), F = Symbol.for("react.suspense"), E = Symbol.for("react.suspense_list"), N = Symbol.for("react.memo"), M = Symbol.for("react.lazy"), C = Symbol.for("react.activity"), G = Symbol.for("react.client.reference"), B = g.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE, Y = Object.prototype.hasOwnProperty, H = Array.isArray, X = console.createTask ? console.createTask : function() {
|
|
227
227
|
return null;
|
|
228
228
|
};
|
|
229
229
|
g = {
|
|
@@ -528,7 +528,7 @@ const L = {
|
|
|
528
528
|
return l.length ? l : null;
|
|
529
529
|
}
|
|
530
530
|
const o = e.type;
|
|
531
|
-
if (o && o.$$typeof ===
|
|
531
|
+
if (o && o.$$typeof === Symbol.for("react.lazy"))
|
|
532
532
|
return console.warn(`[DirectoryTree] Lazy component for "${r}". Not supported.`), null;
|
|
533
533
|
}
|
|
534
534
|
return e;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aiquants/directory-tree",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.14.0",
|
|
4
4
|
"description": "High-performance directory tree component for React with virtual scrolling and file selection",
|
|
5
5
|
"sideEffects": [
|
|
6
6
|
"**/*.css"
|
|
@@ -48,30 +48,31 @@
|
|
|
48
48
|
"publish:minor": "npm version minor && npm publish",
|
|
49
49
|
"publish:major": "npm version major && npm publish"
|
|
50
50
|
},
|
|
51
|
+
"dependencies": {
|
|
52
|
+
"@aiquants/virtualscroll": "workspace:*",
|
|
53
|
+
"@heroicons/react": "^2.2.0",
|
|
54
|
+
"@phosphor-icons/react": "^2.1.10",
|
|
55
|
+
"tailwind-merge": "^3.4.0"
|
|
56
|
+
},
|
|
51
57
|
"peerDependencies": {
|
|
52
58
|
"react": "^19.1.1",
|
|
53
59
|
"react-dom": "^19.1.1"
|
|
54
60
|
},
|
|
55
61
|
"devDependencies": {
|
|
56
|
-
"@
|
|
57
|
-
"@
|
|
58
|
-
"@heroicons/react": "^2.2.0",
|
|
59
|
-
"@phosphor-icons/react": "^2.1.10",
|
|
60
|
-
"@tailwindcss/cli": "^4.1.17",
|
|
61
|
-
"@tailwindcss/vite": "^4.1.17",
|
|
62
|
+
"@tailwindcss/cli": "^4.1.18",
|
|
63
|
+
"@tailwindcss/vite": "^4.1.18",
|
|
62
64
|
"@testing-library/jest-dom": "^6.9.1",
|
|
63
65
|
"@testing-library/react": "^16.3.0",
|
|
64
66
|
"@testing-library/user-event": "^14.6.1",
|
|
65
67
|
"@types/react": "^19.2.7",
|
|
66
68
|
"@types/react-dom": "^19.2.3",
|
|
67
|
-
"@vitejs/plugin-react": "^5.1.
|
|
69
|
+
"@vitejs/plugin-react": "^5.1.2",
|
|
68
70
|
"jsdom": "^26.1.0",
|
|
69
71
|
"rimraf": "^6.1.2",
|
|
70
|
-
"
|
|
71
|
-
"tailwindcss": "^4.1.17",
|
|
72
|
+
"tailwindcss": "^4.1.18",
|
|
72
73
|
"tailwindcss-animate": "^1.0.7",
|
|
73
74
|
"typescript": "^5.9.3",
|
|
74
|
-
"vite": "^7.2.
|
|
75
|
+
"vite": "^7.2.7",
|
|
75
76
|
"vite-plugin-dts": "^4.5.4",
|
|
76
77
|
"vitest": "^3.2.4"
|
|
77
78
|
},
|