@wacht/jsx 1.0.0-beta.2 → 1.0.0-beta.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
@@ -474,7 +474,7 @@ export declare function NotificationBell({ className, showBadge, scope, onAction
474
474
  declare interface NotificationBellProps {
475
475
  className?: string;
476
476
  showBadge?: boolean;
477
- scope?: "all" | "current" | "user";
477
+ scope?: NotificationListParams["scope"];
478
478
  onAction?: (payload: any) => void;
479
479
  }
480
480
 
@@ -502,7 +502,7 @@ export declare interface NotificationMessage {
502
502
  export declare const NotificationPanel: ForwardRefExoticComponent<NotificationPanelProps & RefAttributes<HTMLDivElement>>;
503
503
 
504
504
  declare interface NotificationPanelProps {
505
- scope?: "all" | "current" | "user";
505
+ scope?: NotificationListParams["scope"];
506
506
  onAction?: (payload: any) => void;
507
507
  fullWidth?: boolean;
508
508
  maxHeight?: string;