finance-shared 0.0.4 → 0.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.
@@ -24584,7 +24584,7 @@ const initialState = {
24584
24584
  tenantListForDropdown: [],
24585
24585
  tenantListForDropdownPagination: {
24586
24586
  pageIndex: 0,
24587
- pageSize: 10,
24587
+ pageSize: 20,
24588
24588
  totalCount: 0
24589
24589
  },
24590
24590
  dropdownFilters: {
@@ -30301,8 +30301,12 @@ const CustomAutocomplete = React.memo(
30301
30301
  }, [isUpperCase]);
30302
30302
  const renderOption = React.useCallback((props2, option) => /* @__PURE__ */ createElement("li", { ...props2, key: option.id || option.label || option }, option.label || option), []);
30303
30303
  const listboxProps = React.useMemo(() => ({
30304
- onScroll: getListboxProps.onScroll
30305
- }), [getListboxProps.onScroll]);
30304
+ onScroll: getListboxProps == null ? void 0 : getListboxProps.onScroll,
30305
+ style: {
30306
+ maxHeight: "40vh",
30307
+ overflow: "auto"
30308
+ }
30309
+ }), [getListboxProps]);
30306
30310
  const renderInput = React.useCallback((params) => /* @__PURE__ */ jsx(
30307
30311
  TextField$1,
30308
30312
  {