@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.
@@ -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';
@@ -0,0 +1,3 @@
1
+ import { default as React } from 'react';
2
+ import { FederalBankHolidayProps } from './types/FederalBankHoliday';
3
+ export declare const FederalBankHoliday: React.FC<FederalBankHolidayProps>;
@@ -1 +1 @@
1
- export * from './FederalBankHolidayBody';
1
+ export * from './FederalBankHoliday';
@@ -0,0 +1,3 @@
1
+ import { default as React } from 'react';
2
+ import { BeatBodyProps } from './types/BeatBodyProps';
3
+ export declare const MonthlySpendingComparisonV2: React.FC<BeatBodyProps>;
@@ -0,0 +1 @@
1
+ export * from './MonthlySpendingComparisonV2';
@@ -2,3 +2,4 @@ export * from './FederalBankHoliday';
2
2
  export * from './MonthlyEmergencyFundReview';
3
3
  export * from './SetUpDirectDeposit';
4
4
  export * from './SwitchDirectDeposit';
5
+ export * from './MonthlySpendingComparisonV2';
@@ -1,5 +1,6 @@
1
1
  import { default as React } from 'react';
2
- interface BottomSheetProps {
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 BottomSheet: React.FC<BottomSheetProps>;
13
+ export declare const BottomSheetBase: React.FC<BottomSheetBaseProps>;
14
+ export declare const BottomSheet: React.FC<BottomSheetBaseProps>;
13
15
  export {};
@@ -0,0 +1,2 @@
1
+ import { BarChartProps } from '../../../../types/Charts/BarChart';
2
+ export declare const BarChart: ({ average, color, data, legendLabelAvg, legendLabelMain, selectedTabIndex, onBarClick, }: BarChartProps) => import("react/jsx-runtime").JSX.Element;
@@ -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: ({ clientColorscheme, divProps, image: SVG, isMini, }: ThemedSVGImageProps) => import("react/jsx-runtime").JSX.Element;
2
+ export declare const ThemedSVGImage: ({ divProps, image: SVG, isMini }: ThemedSVGImageProps) => import("react/jsx-runtime").JSX.Element;