@scbt-ecom/ui 0.63.1 → 0.64.1

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.
@@ -3,5 +3,5 @@ import { TypeOf, ZodTypeAny } from 'zod';
3
3
  interface UseControlledForm<T extends ZodTypeAny> extends UseFormProps<TypeOf<T>> {
4
4
  schema: T;
5
5
  }
6
- export declare const useControlledForm: <T extends ZodTypeAny>({ schema, ...formConfig }: UseControlledForm<T>) => import('react-hook-form').UseFormReturn<TypeOf<T>, any, undefined>;
6
+ export declare const useControlledForm: <T extends ZodTypeAny>({ schema, ...formConfig }: UseControlledForm<T>) => import('react-hook-form').UseFormReturn<TypeOf<T>, any, TypeOf<T>>;
7
7
  export {};
@@ -1,3 +1,4 @@
1
- type IframeModalContentProps = React.IframeHTMLAttributes<HTMLIFrameElement>;
2
- export declare const IframeModalContent: ({ children, className, ...props }: IframeModalContentProps) => import("react/jsx-runtime").JSX.Element;
3
- export {};
1
+ export declare const IframeModalContent: import('react').ForwardRefExoticComponent<{
2
+ children: (body: HTMLElement) => React.ReactNode;
3
+ className?: string;
4
+ } & Omit<import('react').IframeHTMLAttributes<HTMLIFrameElement>, "children"> & import('react').RefAttributes<HTMLIFrameElement>>;