@mx-cartographer/insights-ui 1.4.6-alpha.mega8 → 1.4.6

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.
package/README.md CHANGED
@@ -5,6 +5,10 @@ In order to run the project you will need to make sure that you have yarn instal
5
5
  1. From the project root dir, run `yarn` or `yarn install` to install dependencies
6
6
  1. To start the project run `yarn dev` (the project should automatically run in the browser)
7
7
 
8
+ ## Publishing alpha versions
9
+ 1. Bump the version in package.json using the format `major.minor.patch-alpha.<yourinitials><n>`
10
+ 1. Run `npm publish --tag alpha`.
11
+
8
12
  ## Merging and Publishing
9
13
 
10
14
  1. After MR is approved, type `shipit` in the comments. Wait for shipit to merge your branch.
@@ -2,13 +2,10 @@ export * from './shared/GoalProgress';
2
2
  export * from './shared/GradientBox';
3
3
  export * from './shared/ProgressBar';
4
4
  export * from './shared/BottomSheet';
5
- export * from './shared/Charts/BarChart';
6
5
  export * from './shared/DirectDeposit/DirectDeposit';
7
6
  export * from './shared/DirectDeposit/DirectDepositSubHeader';
8
7
  export * from './shared/DirectDeposit/FullFeedBodyHeader';
9
- export * from './shared/DirectDeposit/FullFeedLogoSection';
10
8
  export * from './shared/DirectDeposit/LeftBox';
11
- export * from './shared/DirectDeposit/LowerBoxSection';
12
9
  export * from './shared/DirectDeposit/MiniBodyHeader';
13
10
  export * from './shared/DirectDeposit/RightBox';
14
11
  export * from './shared/InsightsCard/BeatCard';
@@ -19,6 +16,7 @@ export * from './shared/InsightsCard/CardError';
19
16
  export * from './shared/InsightsCard/ContentAndDescription';
20
17
  export * from './shared/InsightsCard/Description';
21
18
  export * from './shared/InsightsCard/InsightButton';
19
+ export * from './shared/ZeroState/LinedCardZeroState';
22
20
  export * from './shared/InsightsCard/Shell';
23
21
  export * from './shared/GenericFeedback/FeedbackHeader';
24
22
  export * from './shared/GenericFeedback/FeedbackButtons';
@@ -0,0 +1,5 @@
1
+ export declare const Confetti: ({ height, width, shouldRun }: {
2
+ height?: number | undefined;
3
+ width?: number | undefined;
4
+ shouldRun?: boolean | undefined;
5
+ }) => import("react/jsx-runtime").JSX.Element;
@@ -1,16 +1,3 @@
1
1
  import { default as React } from 'react';
2
- interface DirectDepositProps {
3
- accountGuid: string;
4
- animation: {
5
- shouldRun?: boolean;
6
- };
7
- leftLowerText: string;
8
- leftUpperText: string;
9
- headerString: string;
10
- isComplete?: boolean;
11
- isMini: boolean;
12
- rightLowerText: string;
13
- rightUpperText: string;
14
- }
15
- export declare const DirectDeposit: React.FC<DirectDepositProps>;
16
- export {};
2
+ import { DepositBodyBaseProps } from '../../../types/DirectDeposit';
3
+ export declare const DirectDeposit: React.FC<DepositBodyBaseProps>;
@@ -1,5 +1,9 @@
1
1
  import { default as React } from 'react';
2
2
  interface BodyHeaderProps {
3
+ account: {
4
+ guid: string;
5
+ logo_alt_text: string;
6
+ };
3
7
  headerString: string;
4
8
  }
5
9
  export declare const FullFeedBodyHeader: React.FC<BodyHeaderProps>;
@@ -1,6 +1,9 @@
1
1
  import { default as React } from 'react';
2
2
  interface MiniBodyHeaderProps {
3
- accountGuid: string;
3
+ account: {
4
+ guid: string;
5
+ logo_alt_text: string;
6
+ };
4
7
  headerString: string;
5
8
  }
6
9
  export declare const MiniBodyHeader: React.FC<MiniBodyHeaderProps>;
@@ -0,0 +1 @@
1
+ export declare const LinedCardZeroState: () => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,5 @@
1
+ import { default as React } from 'react';
2
+ export declare const useContainerDimensions: (containerRef: React.RefObject<HTMLDivElement>) => {
3
+ width: number;
4
+ height: number;
5
+ };