@noya-app/noya-file-explorer 0.0.19 → 0.0.20
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/.turbo/turbo-build.log +11 -11
- package/CHANGELOG.md +11 -0
- package/dist/index.css +850 -8
- package/dist/index.css.map +1 -1
- package/dist/index.d.mts +22 -8
- package/dist/index.d.ts +22 -8
- package/dist/index.js +102 -16
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +100 -16
- package/dist/index.mjs.map +1 -1
- package/package.json +5 -5
- package/src/MediaCollection.tsx +25 -17
- package/src/ResourceExplorer.tsx +20 -8
- package/src/index.ts +1 -0
- package/src/utils/contentType.ts +99 -0
- package/src/utils/handleFileDrop.ts +2 -1
package/.turbo/turbo-build.log
CHANGED
|
@@ -8,17 +8,17 @@
|
|
|
8
8
|
[34mCLI[39m Target: esnext
|
|
9
9
|
[34mCJS[39m Build start
|
|
10
10
|
[34mESM[39m Build start
|
|
11
|
+
[32mCJS[39m [1mdist/index.js [22m[32m122.17 KB[39m
|
|
12
|
+
[32mCJS[39m [1mdist/index.css [22m[32m73.49 KB[39m
|
|
13
|
+
[32mCJS[39m [1mdist/index.css.map [22m[32m109.55 KB[39m
|
|
14
|
+
[32mCJS[39m [1mdist/index.js.map [22m[32m209.34 KB[39m
|
|
15
|
+
[32mCJS[39m ⚡️ Build success in 139ms
|
|
16
|
+
[32mESM[39m [1mdist/index.mjs [22m[32m117.03 KB[39m
|
|
17
|
+
[32mESM[39m [1mdist/index.css [22m[32m73.49 KB[39m
|
|
18
|
+
[32mESM[39m [1mdist/index.mjs.map [22m[32m210.12 KB[39m
|
|
19
|
+
[32mESM[39m [1mdist/index.css.map [22m[32m109.55 KB[39m
|
|
20
|
+
[32mESM[39m ⚡️ Build success in 139ms
|
|
11
21
|
DTS Build start
|
|
12
|
-
|
|
13
|
-
[32mCJS[39m [1mdist/index.css [22m[32m45.44 KB[39m
|
|
14
|
-
[32mCJS[39m [1mdist/index.css.map [22m[32m66.15 KB[39m
|
|
15
|
-
[32mCJS[39m [1mdist/index.js.map [22m[32m204.04 KB[39m
|
|
16
|
-
[32mCJS[39m ⚡️ Build success in 213ms
|
|
17
|
-
[32mESM[39m [1mdist/index.mjs [22m[32m114.34 KB[39m
|
|
18
|
-
[32mESM[39m [1mdist/index.css [22m[32m45.44 KB[39m
|
|
19
|
-
[32mESM[39m [1mdist/index.mjs.map [22m[32m204.85 KB[39m
|
|
20
|
-
[32mESM[39m [1mdist/index.css.map [22m[32m66.15 KB[39m
|
|
21
|
-
[32mESM[39m ⚡️ Build success in 214ms
|
|
22
|
-
DTS ⚡️ Build success in 19726ms
|
|
22
|
+
DTS ⚡️ Build success in 5279ms
|
|
23
23
|
DTS dist/index.d.ts 2.14 MB
|
|
24
24
|
DTS dist/index.d.mts 2.14 MB
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# @noya-app/noya-file-explorer
|
|
2
2
|
|
|
3
|
+
## 0.0.20
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 30ac7fe: Bump
|
|
8
|
+
- Updated dependencies [30ac7fe]
|
|
9
|
+
- @noya-app/noya-multiplayer-react@0.1.67
|
|
10
|
+
- @noya-app/noya-designsystem@0.1.67
|
|
11
|
+
- @noya-app/noya-schemas@0.1.8
|
|
12
|
+
- @noya-app/noya-icons@0.1.14
|
|
13
|
+
|
|
3
14
|
## 0.0.19
|
|
4
15
|
|
|
5
16
|
### Patch Changes
|