@mx-cartographer/insights-ui 1.3.1-alpha.j4 → 1.4.0-alpha.ram1
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/dist/components/index.d.ts +1 -0
- package/dist/components/insights/FederalBankHoliday/FederalBankHoliday.d.ts +3 -0
- package/dist/components/insights/FederalBankHoliday/index.d.ts +1 -1
- package/dist/components/insights/MonthlySpendingComparisonV2/MonthlySpendingComparisonV2.d.ts +3 -0
- package/dist/components/insights/MonthlySpendingComparisonV2/index.d.ts +1 -0
- package/dist/components/insights/index.d.ts +1 -0
- package/dist/components/shared/BottomSheet.d.ts +4 -2
- package/dist/components/shared/Charts/BarChart/BarChart.d.ts +2 -0
- package/dist/components/shared/Charts/BarChart/ChartLegend.d.ts +7 -0
- package/dist/components/shared/Charts/BarChart/CustomBarPlot.d.ts +8 -0
- package/dist/components/shared/Charts/BarChart/index.d.ts +1 -0
- package/dist/components/shared/Charts/index.d.ts +1 -0
- package/dist/components/shared/ThemedSVGImage.d.ts +1 -1
- package/dist/index.es.js +802 -587
- package/dist/index.es.js.map +1 -1
- package/package.json +4 -3
- package/dist/components/insights/FederalBankHoliday/FederalBankHolidayBody.d.ts +0 -4
- package/dist/components/insights/withTheme.d.ts +0 -9
|
@@ -2,6 +2,7 @@ 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';
|
|
5
6
|
export * from './shared/DirectDeposit/DirectDeposit';
|
|
6
7
|
export * from './shared/DirectDeposit/FullFeedBodyHeader';
|
|
7
8
|
export * from './shared/DirectDeposit/FullFeedLogoSection';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from './
|
|
1
|
+
export * from './FederalBankHoliday';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './MonthlySpendingComparisonV2';
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { default as React } from 'react';
|
|
2
|
-
interface
|
|
2
|
+
interface BottomSheetBaseProps {
|
|
3
|
+
isDarkMode?: boolean;
|
|
3
4
|
allowScroll?: boolean;
|
|
4
5
|
children: any;
|
|
5
6
|
height?: number | string;
|
|
@@ -9,5 +10,6 @@ interface BottomSheetProps {
|
|
|
9
10
|
showBackground?: boolean;
|
|
10
11
|
width?: number | string;
|
|
11
12
|
}
|
|
12
|
-
export declare const
|
|
13
|
+
export declare const BottomSheetBase: React.FC<BottomSheetBaseProps>;
|
|
14
|
+
export declare const BottomSheet: React.FC<BottomSheetBaseProps>;
|
|
13
15
|
export {};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export interface LegendProps {
|
|
2
|
+
average?: number;
|
|
3
|
+
color: string;
|
|
4
|
+
legendLabelAvg?: string;
|
|
5
|
+
legendLabelMain?: string;
|
|
6
|
+
}
|
|
7
|
+
export declare const Legend: ({ average, color, legendLabelAvg, legendLabelMain }: LegendProps) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { BarDataProps } from '../../../../types/Charts/BarChart';
|
|
2
|
+
export interface CustomBarPlotProps {
|
|
3
|
+
colorRange: string[];
|
|
4
|
+
data: BarDataProps[];
|
|
5
|
+
dataIndex: number;
|
|
6
|
+
style: React.CSSProperties | undefined;
|
|
7
|
+
}
|
|
8
|
+
export declare const CustomBarPlot: ({ colorRange, data, dataIndex, style, ...restProps }: CustomBarPlotProps) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './BarChart';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './BarChart';
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { ThemedSVGImageProps } from '../../types/ThemeSVGImage';
|
|
2
|
-
export declare const ThemedSVGImage: ({
|
|
2
|
+
export declare const ThemedSVGImage: ({ divProps, image: SVG, isMini }: ThemedSVGImageProps) => import("react/jsx-runtime").JSX.Element;
|