@scbt-ecom/ui 0.41.0 → 0.42.0

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.
@@ -26,5 +26,5 @@ type SingleDayPickerProps = Omit<CalendarProps, 'mode'> & {
26
26
  */
27
27
  externalHandlers?: ExternalHandlers;
28
28
  };
29
- export declare const SingleDayPicker: ({ inputProps, classes, value, onChange, externalHandlers, ...props }: SingleDayPickerProps) => import("react/jsx-runtime").JSX.Element;
29
+ export declare const SingleDayPicker: ({ inputProps, classes, value, onChange, externalHandlers, month, onMonthChange, ...props }: SingleDayPickerProps) => import("react/jsx-runtime").JSX.Element;
30
30
  export {};
@@ -4,7 +4,8 @@ export interface NotificationProps {
4
4
  intent: 'info' | 'error';
5
5
  text: string | ReactElement;
6
6
  customIcon?: ReactElement;
7
- content?: ReactElement;
7
+ link?: string;
8
+ linkText?: string;
8
9
  closure?: boolean;
9
10
  }
10
11
  export declare const Notification: (props: NotificationProps) => string | null;
@@ -6,5 +6,5 @@ declare const toastContainerConfig: (props?: ({
6
6
  } & import('class-variance-authority/types').ClassProp) | undefined) => string;
7
7
  type TContainerConfig = VariantProps<typeof toastContainerConfig>;
8
8
  export type ICustomToastProps = NotificationProps & TContainerConfig & Toast;
9
- export declare const CustomToast: ({ intent, text, customIcon, closure, content, id }: ICustomToastProps) => import("react/jsx-runtime").JSX.Element;
9
+ export declare const CustomToast: ({ intent, text, customIcon, closure, link, linkText, id }: ICustomToastProps) => import("react/jsx-runtime").JSX.Element;
10
10
  export {};