@mx-cartographer/experiences 3.9.5-alpha.sms1 → 3.10.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,22 @@
1
+ import { default as React } from 'react';
2
+
3
+ interface SwitchDirectDepositBodyProps {
4
+ accountGuid: string;
5
+ animation: {
6
+ shouldRun?: boolean;
7
+ };
8
+ destinationAccountGuid: string;
9
+ externalAccountName: string;
10
+ heldAccountName: string;
11
+ headerString: string;
12
+ isComplete?: boolean;
13
+ isDarkMode: boolean;
14
+ isMini: boolean;
15
+ leftLowerText: string;
16
+ leftUpperText: string;
17
+ rightLowerText: string;
18
+ rightUpperText: string;
19
+ sourceAccountGuid: string;
20
+ }
21
+ export declare const SwitchDirectDepositBody: React.FC<SwitchDirectDepositBodyProps>;
22
+ export {};
@@ -0,0 +1,8 @@
1
+ import { default as React } from 'react';
2
+
3
+ interface AccountBoxProps {
4
+ accountGuid: string;
5
+ accountName: string;
6
+ }
7
+ export declare const AccountBox: React.FC<AccountBoxProps>;
8
+ export {};
@@ -0,0 +1,10 @@
1
+ import { default as React } from 'react';
2
+
3
+ interface SwitchDirectDepositMainContainerProps {
4
+ destinationAccountGuid: string;
5
+ externalAccountName: string;
6
+ heldAccountName: string;
7
+ sourceAccountGuid: string;
8
+ }
9
+ export declare const SwitchDirectDepositMainContainer: React.FC<SwitchDirectDepositMainContainerProps>;
10
+ export {};
@@ -0,0 +1,17 @@
1
+ import { default as React } from 'react';
2
+
3
+ interface DirectDepositProps {
4
+ accountGuid: string;
5
+ animation: {
6
+ shouldRun?: boolean;
7
+ };
8
+ leftLowerText: string;
9
+ leftUpperText: string;
10
+ headerString: string;
11
+ isComplete?: boolean;
12
+ isMini: boolean;
13
+ rightLowerText: string;
14
+ rightUpperText: string;
15
+ }
16
+ export declare const DirectDeposit: React.FC<DirectDepositProps>;
17
+ export {};
@@ -1,7 +1,6 @@
1
1
  import { default as React } from 'react';
2
2
 
3
3
  interface LeftBoxProps {
4
- isDarkMode: boolean;
5
4
  leftLowerText: string;
6
5
  leftUpperText: string;
7
6
  }
@@ -2,7 +2,6 @@ import { default as React } from 'react';
2
2
 
3
3
  interface LowerBoxSectionProps {
4
4
  isComplete?: boolean;
5
- isDarkMode: boolean;
6
5
  leftLowerText: string;
7
6
  leftUpperText: string;
8
7
  rightLowerText: string;
@@ -2,7 +2,6 @@ import { default as React } from 'react';
2
2
 
3
3
  interface RightBoxProps {
4
4
  isComplete?: boolean;
5
- isDarkMode: boolean;
6
5
  rightLowerText: string;
7
6
  rightUpperText: string;
8
7
  }
@@ -1,6 +1,7 @@
1
- export { ManageAccountsDrawer } from './settings/manageaccounts/components/ManageAccountsDrawer';
2
- export { HiddenInsightsDrawerWrapper as HiddenInsightsDrawer } from './settings/hiddeninsights/components/HiddenInsightsDrawerWrapper';
3
- export { default as SettingsDrawer } from './settings/SettingsDrawer';
4
1
  export { SetUpDirectDepositBody } from './components/beats/SetUpDirectDeposit/SetUpDirectDepositBody';
2
+ export { SwitchDirectDepositBody } from './components/beats/SwitchDirectDeposit/SwitchDirectDepositBody';
5
3
  export type { DisabledBeatTemplate } from './settings/hiddeninsights/types';
6
4
  export type { ManageAccountsStore } from './settings/manageaccounts/types/index';
5
+ export { ManageAccountsDrawer } from './settings/manageaccounts/components/ManageAccountsDrawer';
6
+ export { HiddenInsightsDrawerWrapper as HiddenInsightsDrawer } from './settings/hiddeninsights/components/HiddenInsightsDrawerWrapper';
7
+ export { default as SettingsDrawer } from './settings/SettingsDrawer';
@@ -10,8 +10,7 @@ export declare class InsightsMicroWidgetStore {
10
10
  onAnalyticEvent: (event: string, session: AnalyticSession) => ErrPromise<string, AnalyticSession>;
11
11
  onAnalyticPageView: (event: string, session: AnalyticSession) => ErrPromise<string, AnalyticSession>;
12
12
  beatApi: BeatApi;
13
- sessionIsExpired: boolean;
14
13
  constructor();
15
14
  initialize: (endpoint: string, token: string, logOutUser: () => void) => Promise<void>;
16
- updateBeat: (beat: Beat) => void;
15
+ updateBeat: (beat: Beat) => Promise<void>;
17
16
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mx-cartographer/experiences",
3
- "version": "3.9.5-alpha.sms1",
3
+ "version": "3.10.0",
4
4
  "description": "Library containing experience widgets",
5
5
  "main": "dist/index.es.js",
6
6
  "types": "dist/index.d.ts",
@@ -122,4 +122,4 @@
122
122
  "README.md"
123
123
  ],
124
124
  "packageManager": "yarn@4.4.1"
125
- }
125
+ }