@noya-app/noya-file-explorer 0.0.9 → 0.0.11

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.
@@ -8,17 +8,17 @@
8
8
  CLI Target: esnext
9
9
  CJS Build start
10
10
  ESM Build start
11
- ESM dist/index.mjs 75.40 KB
11
+ ESM dist/index.mjs 75.47 KB
12
12
  ESM dist/index.css 44.07 KB
13
- ESM dist/index.mjs.map 131.92 KB
13
+ ESM dist/index.mjs.map 131.86 KB
14
14
  ESM dist/index.css.map 68.44 KB
15
- ESM ⚡️ Build success in 159ms
16
- CJS dist/index.js 78.31 KB
15
+ ESM ⚡️ Build success in 84ms
16
+ CJS dist/index.js 78.38 KB
17
17
  CJS dist/index.css 44.07 KB
18
- CJS dist/index.js.map 132.98 KB
18
+ CJS dist/index.js.map 132.91 KB
19
19
  CJS dist/index.css.map 68.44 KB
20
- CJS ⚡️ Build success in 159ms
20
+ CJS ⚡️ Build success in 84ms
21
21
  DTS Build start
22
- DTS ⚡️ Build success in 11668ms
22
+ DTS ⚡️ Build success in 7863ms
23
23
  DTS dist/index.d.ts 1.65 MB
24
24
  DTS dist/index.d.mts 1.65 MB
package/CHANGELOG.md CHANGED
@@ -1,5 +1,25 @@
1
1
  # @noya-app/noya-file-explorer
2
2
 
3
+ ## 0.0.11
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [36be169]
8
+ - @noya-app/react-utils@0.1.20
9
+ - @noya-app/noya-multiplayer-react@0.1.59
10
+ - @noya-app/noya-designsystem@0.1.59
11
+
12
+ ## 0.0.10
13
+
14
+ ### Patch Changes
15
+
16
+ - b403ae4: Drag improvements
17
+ - Updated dependencies [7bbd2a6]
18
+ - Updated dependencies [b403ae4]
19
+ - @noya-app/noya-multiplayer-react@0.1.58
20
+ - @noya-app/react-utils@0.1.19
21
+ - @noya-app/noya-designsystem@0.1.58
22
+
3
23
  ## 0.0.9
4
24
 
5
25
  ### Patch Changes
package/dist/index.js CHANGED
@@ -2052,7 +2052,13 @@ var MediaCollection = (0, import_react.memo)(
2052
2052
  );
2053
2053
  return parentIndex === -1 ? void 0 : parentIndex;
2054
2054
  },
2055
- acceptsDrop: (sourceIndex, targetIndex, position, sourceListId, targetListId) => {
2055
+ acceptsDrop: ({
2056
+ sourceIndex,
2057
+ targetIndex,
2058
+ position,
2059
+ sourceListId,
2060
+ targetListId
2061
+ }) => {
2056
2062
  if (sourceListId !== targetListId) {
2057
2063
  return false;
2058
2064
  }
@@ -2075,7 +2081,7 @@ var MediaCollection = (0, import_react.memo)(
2075
2081
  }
2076
2082
  return true;
2077
2083
  },
2078
- onMoveItem: (sourceIndex, targetIndex, position) => {
2084
+ onMoveItem: ({ sourceIndex, targetIndex, position }) => {
2079
2085
  const sourceItem = visibleItems[sourceIndex];
2080
2086
  const targetItem = visibleItems[targetIndex];
2081
2087
  if (position === "inside") {