@noya-app/noya-file-explorer 0.0.31 → 0.0.33
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 +21 -0
- package/dist/index.css +268 -87
- package/dist/index.css.map +1 -1
- package/dist/index.d.mts +30 -2
- package/dist/index.d.ts +30 -2
- package/dist/index.js +731 -211
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +759 -212
- package/dist/index.mjs.map +1 -1
- package/package.json +6 -6
- package/src/GitFileExplorer.tsx +432 -0
- package/src/git/gitFileTree.ts +110 -0
- package/src/git/useGitFileOperations.ts +184 -0
- package/src/git/useGitFileTree.ts +91 -0
- package/src/index.ts +1 -0
- package/src/utils/handleFileDrop.ts +2 -84
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
|
-
[32mESM[39m [1mdist/index.mjs [22m[
|
|
12
|
-
[32mESM[39m [1mdist/index.css [22m[
|
|
13
|
-
[32mESM[39m [1mdist/index.
|
|
14
|
-
[32mESM[39m [1mdist/index.
|
|
15
|
-
[32mESM[39m ⚡️ Build success in
|
|
16
|
-
[32mCJS[39m [1mdist/index.
|
|
17
|
-
[32mCJS[39m [1mdist/index.
|
|
18
|
-
[32mCJS[39m [1mdist/index.
|
|
19
|
-
[32mCJS[39m [1mdist/index.
|
|
20
|
-
[32mCJS[39m ⚡️ Build success in
|
|
11
|
+
[32mESM[39m [1mdist/index.mjs [22m[32m133.25 KB[39m
|
|
12
|
+
[32mESM[39m [1mdist/index.css [22m[32m79.43 KB[39m
|
|
13
|
+
[32mESM[39m [1mdist/index.mjs.map [22m[32m240.27 KB[39m
|
|
14
|
+
[32mESM[39m [1mdist/index.css.map [22m[32m118.36 KB[39m
|
|
15
|
+
[32mESM[39m ⚡️ Build success in 142ms
|
|
16
|
+
[32mCJS[39m [1mdist/index.css [22m[32m79.43 KB[39m
|
|
17
|
+
[32mCJS[39m [1mdist/index.js [22m[32m139.49 KB[39m
|
|
18
|
+
[32mCJS[39m [1mdist/index.css.map [22m[32m118.36 KB[39m
|
|
19
|
+
[32mCJS[39m [1mdist/index.js.map [22m[32m238.82 KB[39m
|
|
20
|
+
[32mCJS[39m ⚡️ Build success in 151ms
|
|
21
21
|
DTS Build start
|
|
22
|
-
DTS ⚡️ Build success in
|
|
22
|
+
DTS ⚡️ Build success in 6061ms
|
|
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,26 @@
|
|
|
1
1
|
# @noya-app/noya-file-explorer
|
|
2
2
|
|
|
3
|
+
## 0.0.33
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [900b8f3]
|
|
8
|
+
- @noya-app/noya-designsystem@0.1.78
|
|
9
|
+
- @noya-app/noya-icons@0.1.18
|
|
10
|
+
- @noya-app/noya-multiplayer-react@0.1.79
|
|
11
|
+
|
|
12
|
+
## 0.0.32
|
|
13
|
+
|
|
14
|
+
### Patch Changes
|
|
15
|
+
|
|
16
|
+
- 3128375: Update packages
|
|
17
|
+
- Updated dependencies [3128375]
|
|
18
|
+
- @noya-app/noya-multiplayer-react@0.1.78
|
|
19
|
+
- @noya-app/noya-designsystem@0.1.77
|
|
20
|
+
- @noya-app/react-utils@0.1.29
|
|
21
|
+
- @noya-app/noya-schemas@0.1.9
|
|
22
|
+
- @noya-app/noya-icons@0.1.17
|
|
23
|
+
|
|
3
24
|
## 0.0.31
|
|
4
25
|
|
|
5
26
|
### Patch Changes
|