@spteck/react-controls-v2 2.0.4 → 2.0.5

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/index.mjs CHANGED
@@ -8808,7 +8808,7 @@ const DataGridV2 = React.forwardRef((props, ref) => {
8808
8808
  style: dataGridBodyStyles,
8809
8809
  children: [
8810
8810
  /* @__PURE__ */ jsx$2(DataGridHeader$1, { children: /* @__PURE__ */ jsx$2(DataGridRow$1, { children: ({ renderHeaderCell }) => /* @__PURE__ */ jsx$2(DataGridHeaderCell$1, { children: renderHeaderCell() }) }) }),
8811
- /* @__PURE__ */ jsx$2(
8811
+ /* @__PURE__ */ jsx$2("div", { className: mergeClasses(scrollbarClassName), children: /* @__PURE__ */ jsx$2(
8812
8812
  DataGridBody$1,
8813
8813
  {
8814
8814
  itemSize: virtualizedItemSize,
@@ -8817,7 +8817,6 @@ const DataGridV2 = React.forwardRef((props, ref) => {
8817
8817
  listProps: {
8818
8818
  onItemsRendered: handleItemsRendered
8819
8819
  },
8820
- className: mergeClasses(scrollbarClassName),
8821
8820
  children: (row, style) => (() => {
8822
8821
  const item = row.item;
8823
8822
  const idx = itemIndexMap.get(item) ?? items.indexOf(item);
@@ -8843,7 +8842,7 @@ const DataGridV2 = React.forwardRef((props, ref) => {
8843
8842
  );
8844
8843
  })()
8845
8844
  }
8846
- )
8845
+ ) })
8847
8846
  ]
8848
8847
  },
8849
8848
  gridKey