@unciatech/file-manager 0.0.33 → 0.0.34
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/chunk-DXJH5W7A.js +18 -0
- package/dist/chunk-SV5VFLC2.cjs +18 -0
- package/dist/cli.cjs +254 -172
- package/dist/cli.js +254 -149
- package/dist/index.cjs +18 -7801
- package/dist/index.js +18 -7753
- package/dist/mock.cjs +1 -1395
- package/dist/mock.js +1 -1361
- package/package.json +1 -2
- package/styles.css +0 -81
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@unciatech/file-manager",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.34",
|
|
4
4
|
"description": "Modern file manager component for React applications",
|
|
5
5
|
"author": "Avi",
|
|
6
6
|
"license": "MIT",
|
|
@@ -43,7 +43,6 @@
|
|
|
43
43
|
},
|
|
44
44
|
"files": [
|
|
45
45
|
"dist",
|
|
46
|
-
"styles.css",
|
|
47
46
|
"README.md"
|
|
48
47
|
],
|
|
49
48
|
"sideEffects": [
|
package/styles.css
DELETED
|
@@ -1,81 +0,0 @@
|
|
|
1
|
-
/* @unciatech/file-manager — Tailwind v4 Theme
|
|
2
|
-
* Import this in your root CSS to automatically inject all required colors.
|
|
3
|
-
*
|
|
4
|
-
* Usage in your globals.css or index.css:
|
|
5
|
-
* @import "tailwindcss";
|
|
6
|
-
* @import "@unciatech/file-manager/styles";
|
|
7
|
-
* @source "../node_modules/@unciatech/file-manager";
|
|
8
|
-
*/
|
|
9
|
-
|
|
10
|
-
@custom-variant dark (&:is(.dark *));
|
|
11
|
-
|
|
12
|
-
@theme {
|
|
13
|
-
--color-border: hsl(var(--border));
|
|
14
|
-
--color-input: hsl(var(--input));
|
|
15
|
-
--color-ring: hsl(var(--ring));
|
|
16
|
-
--color-background: hsl(var(--background));
|
|
17
|
-
--color-foreground: hsl(var(--foreground));
|
|
18
|
-
--color-primary: hsl(var(--primary));
|
|
19
|
-
--color-primary-foreground: hsl(var(--primary-foreground));
|
|
20
|
-
--color-secondary: hsl(var(--secondary));
|
|
21
|
-
--color-secondary-foreground: hsl(var(--secondary-foreground));
|
|
22
|
-
--color-destructive: hsl(var(--destructive));
|
|
23
|
-
--color-destructive-foreground: hsl(var(--destructive-foreground));
|
|
24
|
-
--color-muted: hsl(var(--muted));
|
|
25
|
-
--color-muted-foreground: hsl(var(--muted-foreground));
|
|
26
|
-
--color-accent: hsl(var(--accent));
|
|
27
|
-
--color-accent-foreground: hsl(var(--accent-foreground));
|
|
28
|
-
--color-popover: hsl(var(--popover));
|
|
29
|
-
--color-popover-foreground: hsl(var(--popover-foreground));
|
|
30
|
-
--color-card: hsl(var(--card));
|
|
31
|
-
--color-card-foreground: hsl(var(--card-foreground));
|
|
32
|
-
--radius-lg: var(--radius);
|
|
33
|
-
--radius-md: calc(var(--radius) - 2px);
|
|
34
|
-
--radius-sm: calc(var(--radius) - 4px);
|
|
35
|
-
}
|
|
36
|
-
|
|
37
|
-
@layer base {
|
|
38
|
-
:root {
|
|
39
|
-
--background: 0 0% 100%;
|
|
40
|
-
--foreground: 222.2 84% 4.9%;
|
|
41
|
-
--card: 0 0% 100%;
|
|
42
|
-
--card-foreground: 222.2 84% 4.9%;
|
|
43
|
-
--popover: 0 0% 100%;
|
|
44
|
-
--popover-foreground: 222.2 84% 4.9%;
|
|
45
|
-
--primary: 221.2 83.2% 53.3%;
|
|
46
|
-
--primary-foreground: 210 40% 98%;
|
|
47
|
-
--secondary: 210 40% 96.1%;
|
|
48
|
-
--secondary-foreground: 222.2 47.4% 11.2%;
|
|
49
|
-
--muted: 210 40% 96.1%;
|
|
50
|
-
--muted-foreground: 215.4 16.3% 46.9%;
|
|
51
|
-
--accent: 210 40% 96.1%;
|
|
52
|
-
--accent-foreground: 222.2 47.4% 11.2%;
|
|
53
|
-
--destructive: 0 84.2% 60.2%;
|
|
54
|
-
--destructive-foreground: 210 40% 98%;
|
|
55
|
-
--border: 214.3 31.8% 91.4%;
|
|
56
|
-
--input: 214.3 31.8% 91.4%;
|
|
57
|
-
--ring: 221.2 83.2% 53.3%;
|
|
58
|
-
--radius: 0.5rem;
|
|
59
|
-
}
|
|
60
|
-
.dark {
|
|
61
|
-
--background: 222.2 84% 4.9%;
|
|
62
|
-
--foreground: 210 40% 98%;
|
|
63
|
-
--card: 222.2 84% 4.9%;
|
|
64
|
-
--card-foreground: 210 40% 98%;
|
|
65
|
-
--popover: 222.2 84% 4.9%;
|
|
66
|
-
--popover-foreground: 210 40% 98%;
|
|
67
|
-
--primary: 217.2 91.2% 59.8%;
|
|
68
|
-
--primary-foreground: 210 40% 98%;
|
|
69
|
-
--secondary: 217.2 32.6% 17.5%;
|
|
70
|
-
--secondary-foreground: 210 40% 98%;
|
|
71
|
-
--muted: 217.2 32.6% 17.5%;
|
|
72
|
-
--muted-foreground: 215 20.2% 65.1%;
|
|
73
|
-
--accent: 217.2 32.6% 17.5%;
|
|
74
|
-
--accent-foreground: 210 40% 98%;
|
|
75
|
-
--destructive: 0 62.8% 30.6%;
|
|
76
|
-
--destructive-foreground: 210 40% 98%;
|
|
77
|
-
--border: 217.2 32.6% 17.5%;
|
|
78
|
-
--input: 217.2 32.6% 17.5%;
|
|
79
|
-
--ring: 212.7 26.8% 83.9%;
|
|
80
|
-
}
|
|
81
|
-
}
|