@inceptionbg/iui 2.0.56 → 2.0.58

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.d.ts CHANGED
@@ -858,6 +858,7 @@ interface Props$j {
858
858
  placeholder?: string;
859
859
  required?: boolean;
860
860
  disabled?: boolean;
861
+ hideError?: boolean;
861
862
  className?: string;
862
863
  ref?: Ref<HTMLInputElement>;
863
864
  }
@@ -1314,7 +1315,7 @@ declare const PageLayout: FC<IPageLayoutProps>;
1314
1315
  declare const useIsMenuOpen: () => {
1315
1316
  isOpen: boolean;
1316
1317
  onOpen: () => void;
1317
- onClose: () => number;
1318
+ onClose: () => NodeJS.Timeout;
1318
1319
  };
1319
1320
 
1320
1321
  declare const useOnEsc: (onEsc: () => void, disabled?: boolean) => void;