@sustaina/shared-ui 1.70.3 → 1.70.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.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -7875,7 +7875,7 @@ var ConditionLookupInput = ({
|
|
|
7875
7875
|
field.onChange([]);
|
|
7876
7876
|
onClear("value");
|
|
7877
7877
|
};
|
|
7878
|
-
return /* @__PURE__ */ jsxs(FormItem, { className: "relative w-full
|
|
7878
|
+
return /* @__PURE__ */ jsxs(FormItem, { className: "relative w-full min-w-0", children: [
|
|
7879
7879
|
/* @__PURE__ */ jsx(FormControl, { children: /* @__PURE__ */ jsx(
|
|
7880
7880
|
LookupSelect,
|
|
7881
7881
|
{
|
|
@@ -9475,7 +9475,7 @@ var useTableVirtualizer = ({
|
|
|
9475
9475
|
virtual
|
|
9476
9476
|
}) => {
|
|
9477
9477
|
const rowModel = table.getRowModel().rows;
|
|
9478
|
-
const columnsEnabled = virtual?.columns?.enabled ??
|
|
9478
|
+
const columnsEnabled = enabled && (virtual?.columns?.enabled ?? true);
|
|
9479
9479
|
const centerColumns = table.getCenterVisibleLeafColumns();
|
|
9480
9480
|
const getRowVirtualItemKey = useCallback((index) => rowModel[index]?.id ?? index, [rowModel]);
|
|
9481
9481
|
const getColumnVirtualItemKey = useCallback(
|