@novu/js 2.6.5 → 3.0.0-canary.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/{chunk-AC2626TB.js → chunk-MCK3RKPK.js} +308 -281
- package/dist/cjs/index.d.ts +2 -2
- package/dist/cjs/index.js +14 -14
- package/dist/{esm/novu-DbpFmjhC.d.mts → cjs/novu-C2hAbM3b.d.ts} +20 -4
- package/dist/cjs/themes/index.d.ts +2 -2
- package/dist/cjs/themes/index.js +4 -3
- package/dist/cjs/types-CKkldJh0.d.ts +102 -0
- package/dist/cjs/ui/index.d.ts +22 -9
- package/dist/cjs/ui/index.js +1359 -843
- package/dist/esm/{chunk-Y7364ZBB.mjs → chunk-B2OUPMZV.mjs} +308 -281
- package/dist/esm/index.d.mts +2 -2
- package/dist/esm/index.mjs +1 -1
- package/dist/{cjs/novu-DbpFmjhC.d.ts → esm/novu-C2hAbM3b.d.mts} +20 -4
- package/dist/esm/themes/index.d.mts +2 -2
- package/dist/esm/themes/index.mjs +4 -3
- package/dist/esm/types-Bi5NkU2g.d.mts +102 -0
- package/dist/esm/ui/index.d.mts +22 -9
- package/dist/esm/ui/index.mjs +1358 -842
- package/dist/index.css +1 -1
- package/dist/novu.min.js +10 -10
- package/dist/novu.min.js.gz +0 -0
- package/package.json +19 -19
- package/dist/cjs/types-B8jOWXQS.d.ts +0 -98
- package/dist/esm/types-DVZXB5KI.d.mts +0 -98
package/dist/novu.min.js.gz
CHANGED
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@novu/js",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "3.0.0-canary.0",
|
|
4
4
|
"repository": "https://github.com/novuhq/novu",
|
|
5
|
-
"description": "Novu
|
|
5
|
+
"description": "Novu JavaScript SDK for <Inbox />",
|
|
6
6
|
"author": "",
|
|
7
7
|
"license": "ISC",
|
|
8
8
|
"main": "dist/cjs/index.js",
|
|
@@ -65,6 +65,19 @@
|
|
|
65
65
|
"publishConfig": {
|
|
66
66
|
"access": "public"
|
|
67
67
|
},
|
|
68
|
+
"scripts": {
|
|
69
|
+
"clean": "rimraf ./dist",
|
|
70
|
+
"start:server": "http-server ./dist -p 4010",
|
|
71
|
+
"build": "pnpm run clean && NODE_ENV=production tsup",
|
|
72
|
+
"postbuild": "./scripts/copy-package-json.sh && node scripts/size-limit.mjs && pnpm run check-exports",
|
|
73
|
+
"build:umd": "webpack --config webpack.config.cjs",
|
|
74
|
+
"build:watch": "concurrently \"NODE_ENV=development pnpm run tsup:watch\" \"pnpm run start:server\"",
|
|
75
|
+
"tsup:watch": "tsup --watch",
|
|
76
|
+
"check-exports": "attw --pack .",
|
|
77
|
+
"lint": "eslint src",
|
|
78
|
+
"lint:fix": "pnpm lint -- --fix",
|
|
79
|
+
"test": "jest"
|
|
80
|
+
},
|
|
68
81
|
"browserslist": {
|
|
69
82
|
"production": [
|
|
70
83
|
">0.2%",
|
|
@@ -78,7 +91,7 @@
|
|
|
78
91
|
]
|
|
79
92
|
},
|
|
80
93
|
"devDependencies": {
|
|
81
|
-
"@arethetypeswrong/cli": "^0.
|
|
94
|
+
"@arethetypeswrong/cli": "^0.17.4",
|
|
82
95
|
"@types/jest": "^29.2.3",
|
|
83
96
|
"@types/node": "^20.15.0",
|
|
84
97
|
"autoprefixer": "^10.4.0",
|
|
@@ -112,32 +125,19 @@
|
|
|
112
125
|
"webpack-cli": "^5.1.4"
|
|
113
126
|
},
|
|
114
127
|
"dependencies": {
|
|
115
|
-
"@floating-ui/dom": "^1.6.
|
|
128
|
+
"@floating-ui/dom": "^1.6.13",
|
|
116
129
|
"class-variance-authority": "^0.7.0",
|
|
117
130
|
"clsx": "^2.1.1",
|
|
118
131
|
"mitt": "^3.0.1",
|
|
119
132
|
"socket.io-client": "4.7.2",
|
|
120
133
|
"solid-floating-ui": "^0.3.1",
|
|
121
134
|
"solid-js": "^1.8.11",
|
|
122
|
-
"solid-motionone": "^1.0.
|
|
135
|
+
"solid-motionone": "^1.0.3",
|
|
123
136
|
"tailwind-merge": "^2.4.0"
|
|
124
137
|
},
|
|
125
138
|
"nx": {
|
|
126
139
|
"tags": [
|
|
127
140
|
"type:package"
|
|
128
141
|
]
|
|
129
|
-
},
|
|
130
|
-
"scripts": {
|
|
131
|
-
"clean": "rimraf ./dist",
|
|
132
|
-
"start:server": "http-server ./dist -p 4010",
|
|
133
|
-
"build": "pnpm run clean && NODE_ENV=production tsup",
|
|
134
|
-
"postbuild": "./scripts/copy-package-json.sh && node scripts/size-limit.mjs && pnpm run check-exports",
|
|
135
|
-
"build:umd": "webpack --config webpack.config.cjs",
|
|
136
|
-
"build:watch": "concurrently \"pnpm run tsup:watch\" \"pnpm run start:server\"",
|
|
137
|
-
"tsup:watch": "tsup --watch",
|
|
138
|
-
"check-exports": "attw --pack .",
|
|
139
|
-
"lint": "eslint src",
|
|
140
|
-
"lint:fix": "pnpm lint -- --fix",
|
|
141
|
-
"test": "jest"
|
|
142
142
|
}
|
|
143
|
-
}
|
|
143
|
+
}
|
|
@@ -1,98 +0,0 @@
|
|
|
1
|
-
import { u as Notification, N as NotificationFilter, s as NovuOptions, b as Novu } from './novu-DbpFmjhC.js';
|
|
2
|
-
|
|
3
|
-
declare const defaultLocalization: {
|
|
4
|
-
readonly locale: "en-US";
|
|
5
|
-
readonly 'inbox.filters.dropdownOptions.unread': "Unread only";
|
|
6
|
-
readonly 'inbox.filters.dropdownOptions.default': "Unread & read";
|
|
7
|
-
readonly 'inbox.filters.dropdownOptions.archived': "Archived";
|
|
8
|
-
readonly 'inbox.filters.labels.unread': "Unread";
|
|
9
|
-
readonly 'inbox.filters.labels.default': "Inbox";
|
|
10
|
-
readonly 'inbox.filters.labels.archived': "Archived";
|
|
11
|
-
readonly 'notifications.emptyNotice': "No notifications";
|
|
12
|
-
readonly 'notifications.actions.readAll': "Mark all as read";
|
|
13
|
-
readonly 'notifications.actions.archiveAll': "Archive all";
|
|
14
|
-
readonly 'notifications.actions.archiveRead': "Archive read";
|
|
15
|
-
readonly 'notifications.newNotifications': ({ notificationCount }: {
|
|
16
|
-
notificationCount: number;
|
|
17
|
-
}) => string;
|
|
18
|
-
readonly 'notification.actions.read.tooltip': "Mark as read";
|
|
19
|
-
readonly 'notification.actions.unread.tooltip': "Mark as unread";
|
|
20
|
-
readonly 'notification.actions.archive.tooltip': "Archive";
|
|
21
|
-
readonly 'notification.actions.unarchive.tooltip': "Unarchive";
|
|
22
|
-
readonly 'preferences.title': "Notification Preferences";
|
|
23
|
-
readonly 'preferences.global': "Global Preferences";
|
|
24
|
-
readonly 'preferences.workflow.disabled.notice': "Contact admin to enable subscription management for this critical notification.";
|
|
25
|
-
readonly 'preferences.workflow.disabled.tooltip': "Contact admin to edit";
|
|
26
|
-
};
|
|
27
|
-
|
|
28
|
-
declare const appearanceKeys: readonly ["button", "popoverContent", "popoverTrigger", "dropdownContent", "dropdownTrigger", "dropdownItem", "dropdownItemLabel", "dropdownItemLabelContainer", "dropdownItemLeftIcon", "dropdownItemRightIcon", "tooltipContent", "tooltipTrigger", "back__button", "skeletonText", "skeletonAvatar", "tabsRoot", "tabsList", "tabsContent", "tabsTrigger", "dots", "root", "bellIcon", "bellContainer", "bellDot", "preferences__button", "preferencesContainer", "inboxHeader", "loading", "inboxContent", "inbox__popoverTrigger", "inbox__popoverContent", "notificationListContainer", "notificationList", "notificationListEmptyNoticeContainer", "notificationListEmptyNotice", "notificationListEmptyNoticeIcon", "notificationListNewNotificationsNotice__button", "notification", "notificationDot", "notificationSubject", "notificationSubject__strong", "notificationBody", "notificationBody__strong", "notificationBodyContainer", "notificationImage", "notificationDate", "notificationDefaultActions", "notificationCustomActions", "notificationPrimaryAction__button", "notificationSecondaryAction__button", "notificationRead__button", "notificationUnread__button", "notificationArchive__button", "notificationUnarchive__button", "notificationsTabs__tabsRoot", "notificationsTabs__tabsList", "notificationsTabs__tabsContent", "notificationsTabs__tabsTrigger", "notificationsTabsTriggerLabel", "notificationsTabsTriggerCount", "inboxStatus__title", "inboxStatus__dropdownTrigger", "inboxStatus__dropdownContent", "inboxStatus__dropdownItem", "inboxStatus__dropdownItemLabel", "inboxStatus__dropdownItemLabelContainer", "inboxStatus__dropdownItemLeft__icon", "inboxStatus__dropdownItemRight__icon", "moreActionsContainer", "moreActions__dropdownTrigger", "moreActions__dropdownContent", "moreActions__dropdownItem", "moreActions__dropdownItemLabel", "moreActions__dropdownItemLeft__icon", "moreActions__dots", "moreTabs__button", "moreTabs__dots", "moreTabs__dropdownTrigger", "moreTabs__dropdownContent", "moreTabs__dropdownItem", "moreTabs__dropdownItemLabel", "moreTabs__dropdownItemRight__icon", "workflowContainer", "workflowLabel", "workflowLabelHeader", "workflowLabelContainer", "workflowContainerDisabledNotice", "workflowLabelDisabled__icon", "workflowContainerRight__icon", "workflowArrow__icon", "channelContainer", "channelsContainerCollapsible", "channelsContainer", "channelLabel", "channelLabelContainer", "channelDescription", "channelName", "channelSwitchContainer", "channelSwitch", "channelSwitchThumb", "preferencesHeader", "preferencesHeader__back__button", "preferencesHeader__title", "preferencesLoadingContainer", "strong"];
|
|
29
|
-
|
|
30
|
-
type LocalizationKey = keyof typeof defaultLocalization;
|
|
31
|
-
type Localization = {
|
|
32
|
-
[K in LocalizationKey]?: (typeof defaultLocalization)[K] extends (...args: infer P) => any ? ((...args: P) => ReturnType<(typeof defaultLocalization)[K]>) | string : string;
|
|
33
|
-
} & {
|
|
34
|
-
dynamic?: Record<string, string>;
|
|
35
|
-
};
|
|
36
|
-
|
|
37
|
-
type NotificationClickHandler = (notification: Notification) => void;
|
|
38
|
-
type NotificationActionClickHandler = (notification: Notification) => void;
|
|
39
|
-
type NotificationRenderer = (el: HTMLDivElement, notification: Notification) => () => void;
|
|
40
|
-
type BellRenderer = (el: HTMLDivElement, unreadCount: number) => () => void;
|
|
41
|
-
type RouterPush = (path: string) => void;
|
|
42
|
-
type Tab = {
|
|
43
|
-
label: string;
|
|
44
|
-
/**
|
|
45
|
-
* @deprecated Use `filter` instead
|
|
46
|
-
*/
|
|
47
|
-
value?: Array<string>;
|
|
48
|
-
filter?: Pick<NotificationFilter, 'tags'>;
|
|
49
|
-
};
|
|
50
|
-
type CSSProperties = {
|
|
51
|
-
[key: string]: string | number;
|
|
52
|
-
};
|
|
53
|
-
type ElementStyles = string | CSSProperties;
|
|
54
|
-
type Variables = {
|
|
55
|
-
colorBackground?: string;
|
|
56
|
-
colorForeground?: string;
|
|
57
|
-
colorPrimary?: string;
|
|
58
|
-
colorPrimaryForeground?: string;
|
|
59
|
-
colorSecondary?: string;
|
|
60
|
-
colorSecondaryForeground?: string;
|
|
61
|
-
colorCounter?: string;
|
|
62
|
-
colorCounterForeground?: string;
|
|
63
|
-
colorNeutral?: string;
|
|
64
|
-
colorShadow?: string;
|
|
65
|
-
fontSize?: string;
|
|
66
|
-
borderRadius?: string;
|
|
67
|
-
};
|
|
68
|
-
type AppearanceKey = (typeof appearanceKeys)[number];
|
|
69
|
-
type Elements = Partial<Record<AppearanceKey, ElementStyles>>;
|
|
70
|
-
type Theme = {
|
|
71
|
-
variables?: Variables;
|
|
72
|
-
elements?: Elements;
|
|
73
|
-
animations?: boolean;
|
|
74
|
-
};
|
|
75
|
-
type Appearance = Theme & {
|
|
76
|
-
baseTheme?: Theme | Theme[];
|
|
77
|
-
};
|
|
78
|
-
type BaseNovuProviderProps = {
|
|
79
|
-
appearance?: Appearance;
|
|
80
|
-
localization?: Localization;
|
|
81
|
-
options: NovuOptions;
|
|
82
|
-
tabs?: Array<Tab>;
|
|
83
|
-
preferencesFilter?: PreferencesFilter;
|
|
84
|
-
routerPush?: RouterPush;
|
|
85
|
-
novu?: Novu;
|
|
86
|
-
};
|
|
87
|
-
type NovuProviderProps = BaseNovuProviderProps & {
|
|
88
|
-
renderNotification?: NotificationRenderer;
|
|
89
|
-
renderBell?: BellRenderer;
|
|
90
|
-
};
|
|
91
|
-
declare enum NotificationStatus {
|
|
92
|
-
UNREAD_READ = "unreadRead",
|
|
93
|
-
UNREAD = "unread",
|
|
94
|
-
ARCHIVED = "archived"
|
|
95
|
-
}
|
|
96
|
-
type PreferencesFilter = Pick<NotificationFilter, 'tags'>;
|
|
97
|
-
|
|
98
|
-
export { type Appearance as A, type BellRenderer as B, type CSSProperties as C, type ElementStyles as E, type Localization as L, type NotificationRenderer as N, type PreferencesFilter as P, type RouterPush as R, type Tab as T, type Variables as V, type NotificationClickHandler as a, type NotificationActionClickHandler as b, type NovuProviderProps as c, type BaseNovuProviderProps as d, type AppearanceKey as e, type Elements as f, type Theme as g, NotificationStatus as h, type LocalizationKey as i };
|
|
@@ -1,98 +0,0 @@
|
|
|
1
|
-
import { u as Notification, N as NotificationFilter, s as NovuOptions, b as Novu } from './novu-DbpFmjhC.mjs';
|
|
2
|
-
|
|
3
|
-
declare const defaultLocalization: {
|
|
4
|
-
readonly locale: "en-US";
|
|
5
|
-
readonly 'inbox.filters.dropdownOptions.unread': "Unread only";
|
|
6
|
-
readonly 'inbox.filters.dropdownOptions.default': "Unread & read";
|
|
7
|
-
readonly 'inbox.filters.dropdownOptions.archived': "Archived";
|
|
8
|
-
readonly 'inbox.filters.labels.unread': "Unread";
|
|
9
|
-
readonly 'inbox.filters.labels.default': "Inbox";
|
|
10
|
-
readonly 'inbox.filters.labels.archived': "Archived";
|
|
11
|
-
readonly 'notifications.emptyNotice': "No notifications";
|
|
12
|
-
readonly 'notifications.actions.readAll': "Mark all as read";
|
|
13
|
-
readonly 'notifications.actions.archiveAll': "Archive all";
|
|
14
|
-
readonly 'notifications.actions.archiveRead': "Archive read";
|
|
15
|
-
readonly 'notifications.newNotifications': ({ notificationCount }: {
|
|
16
|
-
notificationCount: number;
|
|
17
|
-
}) => string;
|
|
18
|
-
readonly 'notification.actions.read.tooltip': "Mark as read";
|
|
19
|
-
readonly 'notification.actions.unread.tooltip': "Mark as unread";
|
|
20
|
-
readonly 'notification.actions.archive.tooltip': "Archive";
|
|
21
|
-
readonly 'notification.actions.unarchive.tooltip': "Unarchive";
|
|
22
|
-
readonly 'preferences.title': "Notification Preferences";
|
|
23
|
-
readonly 'preferences.global': "Global Preferences";
|
|
24
|
-
readonly 'preferences.workflow.disabled.notice': "Contact admin to enable subscription management for this critical notification.";
|
|
25
|
-
readonly 'preferences.workflow.disabled.tooltip': "Contact admin to edit";
|
|
26
|
-
};
|
|
27
|
-
|
|
28
|
-
declare const appearanceKeys: readonly ["button", "popoverContent", "popoverTrigger", "dropdownContent", "dropdownTrigger", "dropdownItem", "dropdownItemLabel", "dropdownItemLabelContainer", "dropdownItemLeftIcon", "dropdownItemRightIcon", "tooltipContent", "tooltipTrigger", "back__button", "skeletonText", "skeletonAvatar", "tabsRoot", "tabsList", "tabsContent", "tabsTrigger", "dots", "root", "bellIcon", "bellContainer", "bellDot", "preferences__button", "preferencesContainer", "inboxHeader", "loading", "inboxContent", "inbox__popoverTrigger", "inbox__popoverContent", "notificationListContainer", "notificationList", "notificationListEmptyNoticeContainer", "notificationListEmptyNotice", "notificationListEmptyNoticeIcon", "notificationListNewNotificationsNotice__button", "notification", "notificationDot", "notificationSubject", "notificationSubject__strong", "notificationBody", "notificationBody__strong", "notificationBodyContainer", "notificationImage", "notificationDate", "notificationDefaultActions", "notificationCustomActions", "notificationPrimaryAction__button", "notificationSecondaryAction__button", "notificationRead__button", "notificationUnread__button", "notificationArchive__button", "notificationUnarchive__button", "notificationsTabs__tabsRoot", "notificationsTabs__tabsList", "notificationsTabs__tabsContent", "notificationsTabs__tabsTrigger", "notificationsTabsTriggerLabel", "notificationsTabsTriggerCount", "inboxStatus__title", "inboxStatus__dropdownTrigger", "inboxStatus__dropdownContent", "inboxStatus__dropdownItem", "inboxStatus__dropdownItemLabel", "inboxStatus__dropdownItemLabelContainer", "inboxStatus__dropdownItemLeft__icon", "inboxStatus__dropdownItemRight__icon", "moreActionsContainer", "moreActions__dropdownTrigger", "moreActions__dropdownContent", "moreActions__dropdownItem", "moreActions__dropdownItemLabel", "moreActions__dropdownItemLeft__icon", "moreActions__dots", "moreTabs__button", "moreTabs__dots", "moreTabs__dropdownTrigger", "moreTabs__dropdownContent", "moreTabs__dropdownItem", "moreTabs__dropdownItemLabel", "moreTabs__dropdownItemRight__icon", "workflowContainer", "workflowLabel", "workflowLabelHeader", "workflowLabelContainer", "workflowContainerDisabledNotice", "workflowLabelDisabled__icon", "workflowContainerRight__icon", "workflowArrow__icon", "channelContainer", "channelsContainerCollapsible", "channelsContainer", "channelLabel", "channelLabelContainer", "channelDescription", "channelName", "channelSwitchContainer", "channelSwitch", "channelSwitchThumb", "preferencesHeader", "preferencesHeader__back__button", "preferencesHeader__title", "preferencesLoadingContainer", "strong"];
|
|
29
|
-
|
|
30
|
-
type LocalizationKey = keyof typeof defaultLocalization;
|
|
31
|
-
type Localization = {
|
|
32
|
-
[K in LocalizationKey]?: (typeof defaultLocalization)[K] extends (...args: infer P) => any ? ((...args: P) => ReturnType<(typeof defaultLocalization)[K]>) | string : string;
|
|
33
|
-
} & {
|
|
34
|
-
dynamic?: Record<string, string>;
|
|
35
|
-
};
|
|
36
|
-
|
|
37
|
-
type NotificationClickHandler = (notification: Notification) => void;
|
|
38
|
-
type NotificationActionClickHandler = (notification: Notification) => void;
|
|
39
|
-
type NotificationRenderer = (el: HTMLDivElement, notification: Notification) => () => void;
|
|
40
|
-
type BellRenderer = (el: HTMLDivElement, unreadCount: number) => () => void;
|
|
41
|
-
type RouterPush = (path: string) => void;
|
|
42
|
-
type Tab = {
|
|
43
|
-
label: string;
|
|
44
|
-
/**
|
|
45
|
-
* @deprecated Use `filter` instead
|
|
46
|
-
*/
|
|
47
|
-
value?: Array<string>;
|
|
48
|
-
filter?: Pick<NotificationFilter, 'tags'>;
|
|
49
|
-
};
|
|
50
|
-
type CSSProperties = {
|
|
51
|
-
[key: string]: string | number;
|
|
52
|
-
};
|
|
53
|
-
type ElementStyles = string | CSSProperties;
|
|
54
|
-
type Variables = {
|
|
55
|
-
colorBackground?: string;
|
|
56
|
-
colorForeground?: string;
|
|
57
|
-
colorPrimary?: string;
|
|
58
|
-
colorPrimaryForeground?: string;
|
|
59
|
-
colorSecondary?: string;
|
|
60
|
-
colorSecondaryForeground?: string;
|
|
61
|
-
colorCounter?: string;
|
|
62
|
-
colorCounterForeground?: string;
|
|
63
|
-
colorNeutral?: string;
|
|
64
|
-
colorShadow?: string;
|
|
65
|
-
fontSize?: string;
|
|
66
|
-
borderRadius?: string;
|
|
67
|
-
};
|
|
68
|
-
type AppearanceKey = (typeof appearanceKeys)[number];
|
|
69
|
-
type Elements = Partial<Record<AppearanceKey, ElementStyles>>;
|
|
70
|
-
type Theme = {
|
|
71
|
-
variables?: Variables;
|
|
72
|
-
elements?: Elements;
|
|
73
|
-
animations?: boolean;
|
|
74
|
-
};
|
|
75
|
-
type Appearance = Theme & {
|
|
76
|
-
baseTheme?: Theme | Theme[];
|
|
77
|
-
};
|
|
78
|
-
type BaseNovuProviderProps = {
|
|
79
|
-
appearance?: Appearance;
|
|
80
|
-
localization?: Localization;
|
|
81
|
-
options: NovuOptions;
|
|
82
|
-
tabs?: Array<Tab>;
|
|
83
|
-
preferencesFilter?: PreferencesFilter;
|
|
84
|
-
routerPush?: RouterPush;
|
|
85
|
-
novu?: Novu;
|
|
86
|
-
};
|
|
87
|
-
type NovuProviderProps = BaseNovuProviderProps & {
|
|
88
|
-
renderNotification?: NotificationRenderer;
|
|
89
|
-
renderBell?: BellRenderer;
|
|
90
|
-
};
|
|
91
|
-
declare enum NotificationStatus {
|
|
92
|
-
UNREAD_READ = "unreadRead",
|
|
93
|
-
UNREAD = "unread",
|
|
94
|
-
ARCHIVED = "archived"
|
|
95
|
-
}
|
|
96
|
-
type PreferencesFilter = Pick<NotificationFilter, 'tags'>;
|
|
97
|
-
|
|
98
|
-
export { type Appearance as A, type BellRenderer as B, type CSSProperties as C, type ElementStyles as E, type Localization as L, type NotificationRenderer as N, type PreferencesFilter as P, type RouterPush as R, type Tab as T, type Variables as V, type NotificationClickHandler as a, type NotificationActionClickHandler as b, type NovuProviderProps as c, type BaseNovuProviderProps as d, type AppearanceKey as e, type Elements as f, type Theme as g, NotificationStatus as h, type LocalizationKey as i };
|