@mx-cartographer/experiences 3.9.2 → 3.9.5-alpha.sms1
Sign up to get free protection for your applications and to get access to all the features.
- package/CHANGELOG.md +13 -0
- package/dist/index.es.js +2058 -2008
- package/dist/index.es.js.map +1 -1
- package/dist/insights/components/beats/SetUpDirectDeposit/components/FullFeedBodyHeader.d.ts +7 -0
- package/dist/insights/components/beats/SetUpDirectDeposit/components/FullFeedLogoSection.d.ts +8 -0
- package/dist/insights/components/beats/SetUpDirectDeposit/components/LeftBox.d.ts +9 -0
- package/dist/insights/components/beats/SetUpDirectDeposit/components/LowerBoxesSection.d.ts +12 -0
- package/dist/insights/components/beats/SetUpDirectDeposit/components/MiniBodyHeader.d.ts +8 -0
- package/dist/insights/components/beats/SetUpDirectDeposit/components/RightBox.d.ts +10 -0
- package/dist/insights/components/beats/SetUpDirectDeposit/components/index.d.ts +6 -0
- package/dist/microinsights/stores/InsightsMicroWidgetStore.d.ts +2 -1
- package/package.json +2 -2
@@ -0,0 +1,12 @@
|
|
1
|
+
import { default as React } from 'react';
|
2
|
+
|
3
|
+
interface LowerBoxSectionProps {
|
4
|
+
isComplete?: boolean;
|
5
|
+
isDarkMode: boolean;
|
6
|
+
leftLowerText: string;
|
7
|
+
leftUpperText: string;
|
8
|
+
rightLowerText: string;
|
9
|
+
rightUpperText: string;
|
10
|
+
}
|
11
|
+
export declare const LowerBoxesSection: React.FC<LowerBoxSectionProps>;
|
12
|
+
export {};
|
@@ -0,0 +1,6 @@
|
|
1
|
+
export { LeftBox } from './LeftBox';
|
2
|
+
export { FullFeedBodyHeader } from './FullFeedBodyHeader';
|
3
|
+
export { FullFeedLogoSection } from './FullFeedLogoSection';
|
4
|
+
export { LowerBoxesSection } from './LowerBoxesSection';
|
5
|
+
export { MiniBodyHeader } from './MiniBodyHeader';
|
6
|
+
export { RightBox } from './RightBox';
|
@@ -10,7 +10,8 @@ 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;
|
13
14
|
constructor();
|
14
15
|
initialize: (endpoint: string, token: string, logOutUser: () => void) => Promise<void>;
|
15
|
-
updateBeat: (beat: Beat) =>
|
16
|
+
updateBeat: (beat: Beat) => void;
|
16
17
|
}
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@mx-cartographer/experiences",
|
3
|
-
"version": "3.9.
|
3
|
+
"version": "3.9.5-alpha.sms1",
|
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
|
+
}
|