@noya-app/noya-file-explorer 0.0.38 → 0.0.40
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 +16 -0
- package/dist/index.css +18 -0
- package/dist/index.css.map +1 -1
- package/dist/index.js +33 -5
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +35 -6
- package/dist/index.mjs.map +1 -1
- package/package.json +3 -3
- package/src/ResourceExplorer.tsx +51 -5
package/.turbo/turbo-build.log
CHANGED
|
@@ -7,17 +7,17 @@ $ tsup
|
|
|
7
7
|
[34mCLI[39m Target: esnext
|
|
8
8
|
[34mCJS[39m Build start
|
|
9
9
|
[34mESM[39m Build start
|
|
10
|
-
[
|
|
11
|
-
[
|
|
12
|
-
[
|
|
13
|
-
[
|
|
14
|
-
[
|
|
15
|
-
[
|
|
16
|
-
[
|
|
17
|
-
[
|
|
18
|
-
[
|
|
19
|
-
[
|
|
10
|
+
[32mESM[39m [1mdist/index.mjs [22m[32m134.32 KB[39m
|
|
11
|
+
[32mESM[39m [1mdist/index.css [22m[32m80.06 KB[39m
|
|
12
|
+
[32mESM[39m [1mdist/index.mjs.map [22m[32m242.11 KB[39m
|
|
13
|
+
[32mESM[39m [1mdist/index.css.map [22m[32m119.40 KB[39m
|
|
14
|
+
[32mESM[39m ⚡️ Build success in 630ms
|
|
15
|
+
[32mCJS[39m [1mdist/index.js [22m[32m140.58 KB[39m
|
|
16
|
+
[32mCJS[39m [1mdist/index.css [22m[32m80.06 KB[39m
|
|
17
|
+
[32mCJS[39m [1mdist/index.js.map [22m[32m240.65 KB[39m
|
|
18
|
+
[32mCJS[39m [1mdist/index.css.map [22m[32m119.40 KB[39m
|
|
19
|
+
[32mCJS[39m ⚡️ Build success in 634ms
|
|
20
20
|
[34mDTS[39m Build start
|
|
21
|
-
[32mDTS[39m ⚡️ Build success in
|
|
21
|
+
[32mDTS[39m ⚡️ Build success in 39097ms
|
|
22
22
|
[32mDTS[39m [1mdist/index.d.ts [22m[32m2.14 MB[39m
|
|
23
23
|
[32mDTS[39m [1mdist/index.d.mts [22m[32m2.14 MB[39m
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @noya-app/noya-file-explorer
|
|
2
2
|
|
|
3
|
+
## 0.0.40
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 722c541: Update packages
|
|
8
|
+
- Updated dependencies [722c541]
|
|
9
|
+
- @noya-app/noya-designsystem@0.1.85
|
|
10
|
+
- @noya-app/noya-multiplayer-react@0.1.82
|
|
11
|
+
|
|
12
|
+
## 0.0.39
|
|
13
|
+
|
|
14
|
+
### Patch Changes
|
|
15
|
+
|
|
16
|
+
- Updated dependencies [f56dd18]
|
|
17
|
+
- @noya-app/noya-designsystem@0.1.84
|
|
18
|
+
|
|
3
19
|
## 0.0.38
|
|
4
20
|
|
|
5
21
|
### Patch Changes
|
package/dist/index.css
CHANGED
|
@@ -755,6 +755,9 @@
|
|
|
755
755
|
.n-fixed {
|
|
756
756
|
position: fixed;
|
|
757
757
|
}
|
|
758
|
+
.\!n-absolute {
|
|
759
|
+
position: absolute !important;
|
|
760
|
+
}
|
|
758
761
|
.n-absolute {
|
|
759
762
|
position: absolute;
|
|
760
763
|
}
|
|
@@ -831,6 +834,9 @@
|
|
|
831
834
|
.n-top-1\/2 {
|
|
832
835
|
top: 50%;
|
|
833
836
|
}
|
|
837
|
+
.n-top-2 {
|
|
838
|
+
top: .5rem;
|
|
839
|
+
}
|
|
834
840
|
.n-top-4 {
|
|
835
841
|
top: 1rem;
|
|
836
842
|
}
|
|
@@ -849,6 +855,9 @@
|
|
|
849
855
|
.-n-z-10 {
|
|
850
856
|
z-index: -10;
|
|
851
857
|
}
|
|
858
|
+
.n-z-10 {
|
|
859
|
+
z-index: 10;
|
|
860
|
+
}
|
|
852
861
|
.n-z-20 {
|
|
853
862
|
z-index: 20;
|
|
854
863
|
}
|
|
@@ -960,6 +969,9 @@
|
|
|
960
969
|
.n-mr-\[2px\] {
|
|
961
970
|
margin-right: 2px;
|
|
962
971
|
}
|
|
972
|
+
.n-mt-1 {
|
|
973
|
+
margin-top: .25rem;
|
|
974
|
+
}
|
|
963
975
|
.n-mt-3 {
|
|
964
976
|
margin-top: .75rem;
|
|
965
977
|
}
|
|
@@ -1056,6 +1068,9 @@
|
|
|
1056
1068
|
.n-h-\[5px\] {
|
|
1057
1069
|
height: 5px;
|
|
1058
1070
|
}
|
|
1071
|
+
.n-h-\[calc\(var\(--n-toolbar-height\)\+1px\)\] {
|
|
1072
|
+
height: calc(var(--n-toolbar-height) + 1px);
|
|
1073
|
+
}
|
|
1059
1074
|
.n-h-full {
|
|
1060
1075
|
height: 100%;
|
|
1061
1076
|
}
|
|
@@ -1951,6 +1966,9 @@
|
|
|
1951
1966
|
.n-pr-1\.5 {
|
|
1952
1967
|
padding-right: .375rem;
|
|
1953
1968
|
}
|
|
1969
|
+
.n-pr-10 {
|
|
1970
|
+
padding-right: 2.5rem;
|
|
1971
|
+
}
|
|
1954
1972
|
.n-pr-4 {
|
|
1955
1973
|
padding-right: 1rem;
|
|
1956
1974
|
}
|