@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/README.md +37 -18
- package/dist/index.cjs.js +64 -64
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +2 -2
- package/dist/index.es.js +3228 -3203
- package/dist/index.es.js.map +1 -1
- package/package.json +1 -1
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?: "
|
|
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?: "
|
|
505
|
+
scope?: NotificationListParams["scope"];
|
|
506
506
|
onAction?: (payload: any) => void;
|
|
507
507
|
fullWidth?: boolean;
|
|
508
508
|
maxHeight?: string;
|