@mx-cartographer/experiences 6.3.4-alpha.sms1 → 6.3.4-alpha.sms10
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.
@@ -1,4 +1,11 @@
|
|
1
1
|
import { WidgetProps } from '../common';
|
2
|
+
export declare enum SettingsTabEnums {
|
3
|
+
Profile = 0,
|
4
|
+
Devices = 1,
|
5
|
+
Notifications = 2,
|
6
|
+
TransactionRules = 3,
|
7
|
+
Help = 4
|
8
|
+
}
|
2
9
|
export declare const SettingsWidget: (({ onBackClick, sx }: WidgetProps) => import("react/jsx-runtime").JSX.Element) & {
|
3
10
|
displayName: string;
|
4
11
|
};
|
@@ -0,0 +1,8 @@
|
|
1
|
+
import { SettingsTabEnums } from '../SettingsWidget';
|
2
|
+
interface SettingsWidgetContentsProps {
|
3
|
+
selectedTab: SettingsTabEnums;
|
4
|
+
}
|
5
|
+
export declare const SettingsWidgetContents: (({ selectedTab }: SettingsWidgetContentsProps) => import("react/jsx-runtime").JSX.Element) & {
|
6
|
+
displayName: string;
|
7
|
+
};
|
8
|
+
export {};
|
package/dist/settings/index.d.ts
CHANGED
@@ -1,6 +1,7 @@
|
|
1
1
|
export { SettingsApi } from './api/SettingsApi';
|
2
2
|
export { SettingsStore } from './stores/SettingsStore';
|
3
|
-
export { SettingsWidget } from './SettingsWidget';
|
3
|
+
export { SettingsWidget, SettingsTabEnums } from './SettingsWidget';
|
4
|
+
export { SettingsWidgetContents } from './components/SettingsWidgetContents';
|
4
5
|
export { default as ProfileTab } from './components/profile/ProfileTab';
|
5
6
|
export { default as DeviceTab } from './components/devices/DeviceTab';
|
6
7
|
export { NotificationSettings } from './components/notifications/NotificationSettings';
|