chop-logic-components 3.7.2 → 3.7.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.d.ts CHANGED
@@ -616,12 +616,13 @@ declare type useKeyPressParams = {
616
616
 
617
617
  export declare const useModalFocusTrap: ({ modalRef, isOpened }: ModalFocusTrapParams) => void;
618
618
 
619
- export declare function useRemainingTimer({ isOpened, isHovered, onClose, autoCloseDelay, }: UseRemainingTimerProps): number;
619
+ export declare function useRemainingTimer({ isOpened, isHovered, onClose, autoClose, autoCloseDelay, }: UseRemainingTimerProps): number;
620
620
 
621
621
  declare type UseRemainingTimerProps = {
622
622
  isOpened: boolean;
623
623
  isHovered: boolean;
624
624
  onClose: () => void;
625
+ autoClose?: boolean;
625
626
  autoCloseDelay?: number;
626
627
  };
627
628