@vacano/ui 1.6.0 → 1.6.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.
package/dist/index.d.ts CHANGED
@@ -445,7 +445,7 @@ export declare type MultiSelectVariant = 'normal' | 'error';
445
445
 
446
446
  declare type Notification_2 = {
447
447
  id: string;
448
- message: string;
448
+ message: ReactNode;
449
449
  variant: NotificationVariant;
450
450
  duration: number;
451
451
  };
@@ -461,7 +461,7 @@ export declare type NotificationAction = {
461
461
  };
462
462
 
463
463
  export declare type NotificationContextValue = {
464
- show: (message: string, variant?: NotificationVariant, duration?: number) => void;
464
+ show: (message: ReactNode, variant?: NotificationVariant, duration?: number) => void;
465
465
  hide: () => void;
466
466
  };
467
467