@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.
- package/CHANGELOG.md +2 -7
- package/dist/index.es.js +3093 -2977
- package/dist/index.es.js.map +1 -1
- package/dist/insights/components/beats/SwitchDirectDeposit/SwitchDirectDepositBody.d.ts +22 -0
- package/dist/insights/components/beats/SwitchDirectDeposit/components/AccountBox.d.ts +8 -0
- package/dist/insights/components/beats/SwitchDirectDeposit/components/SwitchDirectDepositMainContainer.d.ts +10 -0
- package/dist/insights/components/shared/DirectDeposit.d.ts +17 -0
- package/dist/insights/components/{beats/SetUpDirectDeposit → shared}/components/LeftBox.d.ts +0 -1
- package/dist/insights/components/{beats/SetUpDirectDeposit → shared}/components/LowerBoxesSection.d.ts +0 -1
- package/dist/insights/components/{beats/SetUpDirectDeposit → shared}/components/RightBox.d.ts +0 -1
- package/dist/insights/index.d.ts +4 -3
- package/dist/microinsights/stores/InsightsMicroWidgetStore.d.ts +1 -2
- package/package.json +2 -2
- /package/dist/insights/components/{beats/SetUpDirectDeposit → shared}/components/FullFeedBodyHeader.d.ts +0 -0
- /package/dist/insights/components/{beats/SetUpDirectDeposit → shared}/components/FullFeedLogoSection.d.ts +0 -0
- /package/dist/insights/components/{beats/SetUpDirectDeposit → shared}/components/MiniBodyHeader.d.ts +0 -0
- /package/dist/insights/components/{beats/SetUpDirectDeposit → shared}/components/index.d.ts +0 -0
@@ -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,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 {};
|
package/dist/insights/index.d.ts
CHANGED
@@ -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.
|
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
|
+
}
|
File without changes
|
File without changes
|
/package/dist/insights/components/{beats/SetUpDirectDeposit → shared}/components/MiniBodyHeader.d.ts
RENAMED
File without changes
|
File without changes
|