@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.
@@ -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
  ),