@careevolution/mydatahelps-ui 2.22.0 → 2.23.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.
- package/dist/cjs/index.js +8 -8
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/components/container/NotificationList/NotificationList.d.ts +1 -0
- package/dist/cjs/types/components/container/NotificationList/NotificationList.stories.d.ts +8 -0
- package/dist/esm/index.js +2 -2
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/components/container/NotificationList/NotificationList.d.ts +1 -0
- package/dist/esm/types/components/container/NotificationList/NotificationList.stories.d.ts +8 -0
- package/dist/index.d.ts +1 -0
- package/package.json +1 -1
|
@@ -6,4 +6,5 @@ export interface NotificationListProps {
|
|
|
6
6
|
innerRef?: React.Ref<HTMLDivElement>;
|
|
7
7
|
}
|
|
8
8
|
export type NotificationListPreviewState = "Default" | "NoData";
|
|
9
|
+
/** Notification List. Can be filtered by Email/Push/SMS */
|
|
9
10
|
export default function (props: NotificationListProps): React.JSX.Element;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { Meta, StoryObj } from "@storybook/react";
|
|
2
|
+
import NotificationList from "./NotificationList";
|
|
3
|
+
declare const meta: Meta<typeof NotificationList>;
|
|
4
|
+
export default meta;
|
|
5
|
+
type Story = StoryObj<typeof NotificationList>;
|
|
6
|
+
export declare const Default: Story;
|
|
7
|
+
export declare const NoData: Story;
|
|
8
|
+
export declare const Live: Story;
|