@vuu-ui/vuu-table-extras 0.7.0-debug → 0.7.1-debug

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/esm/index.js CHANGED
@@ -2862,15 +2862,10 @@ var DataSourceStats = ({
2862
2862
  className: classNameProp,
2863
2863
  dataSource
2864
2864
  }) => {
2865
- const [optimize, setOptimize] = useState5(
2866
- dataSource.optimize
2867
- );
2868
2865
  const [range, setRange] = useState5(dataSource.range);
2869
2866
  const [size, setSize] = useState5(dataSource.size);
2870
2867
  useEffect3(() => {
2871
- setOptimize(dataSource.optimize);
2872
2868
  setSize(dataSource.size);
2873
- dataSource.on("optimize", setOptimize);
2874
2869
  dataSource.on("resize", setSize);
2875
2870
  dataSource.on("range", setRange);
2876
2871
  }, [dataSource]);
@@ -2883,8 +2878,7 @@ var DataSourceStats = ({
2883
2878
  /* @__PURE__ */ jsx13("span", { className: `${classBase10}-range`, children: from }),
2884
2879
  /* @__PURE__ */ jsx13("span", { className: `${classBase10}-range`, children: to }),
2885
2880
  /* @__PURE__ */ jsx13("span", { children: "of" }),
2886
- /* @__PURE__ */ jsx13("span", { className: `${classBase10}-size`, children: value }),
2887
- /* @__PURE__ */ jsx13("span", { className: `${classBase10}-optimize`, children: optimize })
2881
+ /* @__PURE__ */ jsx13("span", { className: `${classBase10}-size`, children: value })
2888
2882
  ] });
2889
2883
  };
2890
2884
  export {