@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 +4 -0
- package/dist/components/index.d.ts +1 -3
- package/dist/components/shared/Confetti.d.ts +5 -0
- package/dist/components/shared/DirectDeposit/DirectDeposit.d.ts +2 -15
- package/dist/components/shared/DirectDeposit/FullFeedBodyHeader.d.ts +4 -0
- package/dist/components/shared/DirectDeposit/MiniBodyHeader.d.ts +4 -1
- package/dist/components/shared/InsightsCard/__tests__/ContentAndDescription.test.d.ts +1 -0
- package/dist/components/shared/ZeroState/LinedCardZeroState.d.ts +1 -0
- package/dist/hooks/__tests__/useContainerDimensions.test.d.ts +0 -0
- package/dist/hooks/useContainerDimensions.d.ts +5 -0
- package/dist/index.es.js +705 -914
- package/dist/index.es.js.map +1 -1
- package/package.json +14 -5
- package/dist/components/shared/Charts/BarChart/BarChart.d.ts +0 -2
- package/dist/components/shared/Charts/BarChart/ChartLegend.d.ts +0 -7
- package/dist/components/shared/Charts/BarChart/CustomBarPlot.d.ts +0 -8
- package/dist/components/shared/Charts/BarChart/index.d.ts +0 -1
- package/dist/components/shared/Charts/index.d.ts +0 -1
- package/dist/components/shared/DirectDeposit/FullFeedLogoSection.d.ts +0 -6
- package/dist/components/shared/DirectDeposit/LowerBoxSection.d.ts +0 -10
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';
|
|
@@ -1,16 +1,3 @@
|
|
|
1
1
|
import { default as React } from 'react';
|
|
2
|
-
|
|
3
|
-
|
|
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>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const LinedCardZeroState: () => import("react/jsx-runtime").JSX.Element;
|
|
File without changes
|