@northlight/ui 2.15.0 → 2.15.2
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/es/northlight.d.ts +1 -1
- package/dist/es/northlight.js +2 -2
- package/dist/es/northlight.js.map +1 -1
- package/dist/umd/northlight.cjs +2 -2
- package/dist/umd/northlight.cjs.map +1 -1
- package/dist/umd/northlight.min.cjs +2 -2
- package/dist/umd/northlight.min.cjs.map +1 -1
- package/package.json +3 -3
package/dist/umd/northlight.cjs
CHANGED
|
@@ -6834,7 +6834,7 @@
|
|
|
6834
6834
|
items: identifierItems,
|
|
6835
6835
|
strategy: strategy || sortable.rectSortingStrategy
|
|
6836
6836
|
},
|
|
6837
|
-
items.map((item) => {
|
|
6837
|
+
items.map((item, index) => {
|
|
6838
6838
|
const id = createKey(item);
|
|
6839
6839
|
return /* @__PURE__ */ React.createElement(
|
|
6840
6840
|
SortableItem,
|
|
@@ -6845,7 +6845,7 @@
|
|
|
6845
6845
|
dblClickThreshold,
|
|
6846
6846
|
disableDrag
|
|
6847
6847
|
},
|
|
6848
|
-
(listeners, props) => typeof children === "function" ? children(item, listeners, props) : children
|
|
6848
|
+
(listeners, props) => typeof children === "function" ? children(item, listeners, props, index) : children
|
|
6849
6849
|
);
|
|
6850
6850
|
})
|
|
6851
6851
|
),
|