@mx-cartographer/experiences 6.3.8-alpha.san2 → 6.3.9
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/CHANGELOG.md +4 -0
- package/dist/index.es.js +1943 -1929
- package/dist/index.es.js.map +1 -1
- package/dist/settings/components/notifications/DeliveryMethods.d.ts +6 -1
- package/dist/settings/components/notifications/NotificationSettings.d.ts +3 -2
- package/dist/settings/index.d.ts +1 -1
- package/package.json +1 -1
@@ -1,3 +1,8 @@
|
|
1
|
-
|
1
|
+
import { TheWholeHog } from '../../../microinsights/interfaces';
|
2
|
+
type DeliveryMethodsProps = {
|
3
|
+
posthog?: TheWholeHog;
|
4
|
+
};
|
5
|
+
export declare const DeliveryMethods: (({ posthog }: DeliveryMethodsProps) => import("react/jsx-runtime").JSX.Element) & {
|
2
6
|
displayName: string;
|
3
7
|
};
|
8
|
+
export {};
|
@@ -1,12 +1,13 @@
|
|
1
1
|
import { default as React } from 'react';
|
2
|
+
import { TheWholeHog } from '../../../microinsights/interfaces';
|
2
3
|
export declare enum Types {
|
3
4
|
Accounts = "accounts",
|
4
5
|
Budgets = "budgets",
|
5
6
|
Insights = "insights",
|
6
7
|
Delivery = "delivery"
|
7
8
|
}
|
8
|
-
interface NotificationSettingsProps {
|
9
|
+
export interface NotificationSettingsProps {
|
9
10
|
notificationTypes?: Types[];
|
11
|
+
posthog?: TheWholeHog;
|
10
12
|
}
|
11
13
|
export declare const NotificationSettings: React.FC<NotificationSettingsProps>;
|
12
|
-
export {};
|
package/dist/settings/index.d.ts
CHANGED
@@ -3,5 +3,5 @@ export { SettingsStore } from './stores/SettingsStore';
|
|
3
3
|
export { SettingsWidget } from './SettingsWidget';
|
4
4
|
export { default as ProfileTab } from './components/profile/ProfileTab';
|
5
5
|
export { default as DeviceTab } from './components/devices/DeviceTab';
|
6
|
-
export { NotificationSettings } from './components/notifications/NotificationSettings';
|
6
|
+
export { NotificationSettings, type NotificationSettingsProps, } from './components/notifications/NotificationSettings';
|
7
7
|
export { default as TransactionRulesTab } from './components/transactionrules/TransactionRulesTab';
|