@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.
@@ -0,0 +1,7 @@
1
+ import { default as React } from 'react';
2
+
3
+ interface BodyHeaderProps {
4
+ headerString: string;
5
+ }
6
+ export declare const FullFeedBodyHeader: React.FC<BodyHeaderProps>;
7
+ export {};
@@ -0,0 +1,8 @@
1
+ import { default as React } from 'react';
2
+
3
+ interface FullFeedLogoSectionProps {
4
+ accountGuid: string;
5
+ width: string | number;
6
+ }
7
+ export declare const FullFeedLogoSection: React.FC<FullFeedLogoSectionProps>;
8
+ export {};
@@ -0,0 +1,9 @@
1
+ import { default as React } from 'react';
2
+
3
+ interface LeftBoxProps {
4
+ isDarkMode: boolean;
5
+ leftLowerText: string;
6
+ leftUpperText: string;
7
+ }
8
+ export declare const LeftBox: React.FC<LeftBoxProps>;
9
+ export {};
@@ -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,8 @@
1
+ import { default as React } from 'react';
2
+
3
+ interface MiniBodyHeaderProps {
4
+ accountGuid: string;
5
+ headerString: string;
6
+ }
7
+ export declare const MiniBodyHeader: React.FC<MiniBodyHeaderProps>;
8
+ export {};
@@ -0,0 +1,10 @@
1
+ import { default as React } from 'react';
2
+
3
+ interface RightBoxProps {
4
+ isComplete?: boolean;
5
+ isDarkMode: boolean;
6
+ rightLowerText: string;
7
+ rightUpperText: string;
8
+ }
9
+ export declare const RightBox: React.FC<RightBoxProps>;
10
+ 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) => Promise<void>;
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.2",
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
+ }