@mx-cartographer/experiences 6.3.11-alpha.sms9 → 6.3.12

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,11 +1,4 @@
1
1
  import { WidgetProps } from '../common';
2
- export declare enum SettingsTabs {
3
- Profile = 0,
4
- Devices = 1,
5
- Notifications = 2,
6
- TransactionRules = 3,
7
- Help = 4
8
- }
9
2
  export declare const SettingsWidget: (({ onBackClick, sx }: WidgetProps) => import("react/jsx-runtime").JSX.Element) & {
10
3
  displayName: string;
11
4
  };
@@ -1,3 +1,4 @@
1
- import { default as React } from 'react';
2
- declare const _default: React.MemoExoticComponent<React.ForwardRefExoticComponent<Omit<React.RefAttributes<unknown>, "ref"> & React.RefAttributes<unknown>>>;
1
+ declare const _default: (() => import("react/jsx-runtime").JSX.Element) & {
2
+ displayName: string;
3
+ };
3
4
  export default _default;
@@ -1,7 +1,6 @@
1
1
  export { SettingsApi } from './api/SettingsApi';
2
2
  export { SettingsStore } from './stores/SettingsStore';
3
- export { SettingsWidget, SettingsTabs } from './SettingsWidget';
4
- export { SettingsWidgetContents } from './components/SettingsWidgetContents';
3
+ export { SettingsWidget } from './SettingsWidget';
5
4
  export { default as ProfileTab } from './components/profile/ProfileTab';
6
5
  export { default as DeviceTab } from './components/devices/DeviceTab';
7
6
  export { NotificationSettings, type NotificationSettingsProps, } from './components/notifications/NotificationSettings';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mx-cartographer/experiences",
3
- "version": "6.3.11-alpha.sms9",
3
+ "version": "6.3.12",
4
4
  "description": "Library containing experience widgets",
5
5
  "main": "dist/index.es.js",
6
6
  "types": "dist/index.d.ts",
@@ -1,8 +0,0 @@
1
- import { SettingsTabs } from '../SettingsWidget';
2
- interface SettingsWidgetContentsProps {
3
- selectedTab: SettingsTabs;
4
- }
5
- export declare const SettingsWidgetContents: (({ selectedTab }: SettingsWidgetContentsProps) => import("react/jsx-runtime").JSX.Element) & {
6
- displayName: string;
7
- };
8
- export {};