@oliasoft-open-source/react-ui-library 4.16.2-beta-2 → 4.16.2-beta-3

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.js CHANGED
@@ -14760,31 +14760,28 @@ const List = ({
14760
14760
  {
14761
14761
  className: listStyles.virtualRows,
14762
14762
  style: { height: `${virtualizer.getTotalSize()}px` },
14763
- children: virtualizer.getVirtualItems().map((virtualRow2) => {
14764
- return /* @__PURE__ */ jsx(
14765
- "div",
14766
- {
14767
- "data-index": virtualRow2.index,
14768
- className: listStyles.virtualRow,
14769
- style: {
14770
- transform: `translateY(${virtualRow2.start}px)`,
14771
- height: `${virtualRow2.size}px`
14772
- },
14773
- ref: virtualizer.measureElement,
14774
- children: /* @__PURE__ */ jsx(
14775
- ListRow,
14776
- {
14777
- index: virtualRow2.index,
14778
- draggable,
14779
- item: list2.items[virtualRow2.index],
14780
- expanding,
14781
- invokeEditOnRowClick
14782
- }
14783
- )
14763
+ children: virtualizer.getVirtualItems().map((virtualRow2) => /* @__PURE__ */ jsx(
14764
+ "div",
14765
+ {
14766
+ "data-index": virtualRow2.index,
14767
+ className: listStyles.virtualRow,
14768
+ style: {
14769
+ transform: `translateY(${virtualRow2.start}px)`
14784
14770
  },
14785
- virtualRow2.key
14786
- );
14787
- })
14771
+ ref: virtualizer.measureElement,
14772
+ children: /* @__PURE__ */ jsx(
14773
+ ListRow,
14774
+ {
14775
+ index: virtualRow2.index,
14776
+ draggable,
14777
+ item: list2.items[virtualRow2.index],
14778
+ expanding,
14779
+ invokeEditOnRowClick
14780
+ }
14781
+ )
14782
+ },
14783
+ virtualRow2.key
14784
+ ))
14788
14785
  }
14789
14786
  )
14790
14787
  }