@mx-cartographer/insights-ui 1.16.24-alpha.sms3 → 1.16.26-alpha.mega2

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.
@@ -1,4 +1,5 @@
1
1
  export * from './shared/BottomSheet';
2
+ export * from './shared/CarouselControls';
2
3
  export * from './shared/Confetti';
3
4
  export * from './shared/GoalProgress';
4
5
  export * from './shared/GradientBox';
@@ -13,12 +14,14 @@ export * from './shared/DirectDeposit/LeftBox';
13
14
  export * from './shared/DirectDeposit/MiniBodyHeader';
14
15
  export * from './shared/DirectDeposit/RightBox';
15
16
  export * from './shared/InsightsCard/BeatCard';
17
+ export * from './shared/InsightsCard/CardButtonSection';
18
+ export * from './shared/InsightsCard/CardFooter';
16
19
  export * from './shared/InsightsCard/CardHeader';
17
20
  export * from './shared/InsightsCard/CardLoading';
18
- export * from './shared/InsightsCard/CardButtonSection';
19
21
  export * from './shared/InsightsCard/CardError';
20
22
  export * from './shared/InsightsCard/ContentAndDescription';
21
23
  export * from './shared/InsightsCard/Description';
24
+ export * from './shared/InsightsCard/EmbeddedCard';
22
25
  export * from './shared/InsightsCard/InsightButton';
23
26
  export * from './shared/InsightsCard/MiniDescription';
24
27
  export * from './shared/ZeroState/LinedCardZeroState';
@@ -0,0 +1,3 @@
1
+ import { default as React } from 'react';
2
+ import { FederalBankHolidayProps } from './types/FederalBankHoliday';
3
+ export declare const FederalBankHolidayMUI: React.FC<FederalBankHolidayProps>;
@@ -1 +1,2 @@
1
1
  export * from './FederalBankHoliday';
2
+ export * from './FederalBankHolidayMUI';
@@ -0,0 +1,14 @@
1
+ interface CarouselAriaLabels {
2
+ next: string;
3
+ previous: string;
4
+ }
5
+ interface CarouselNavigationProps {
6
+ activeIndex: number;
7
+ ariaLabels: CarouselAriaLabels;
8
+ onNext: () => void;
9
+ onPrevious: () => void;
10
+ shouldApplyDotAnimation?: boolean;
11
+ totalItems: number;
12
+ }
13
+ declare const CarouselNavigation: ({ activeIndex, ariaLabels, onNext, onPrevious, shouldApplyDotAnimation, totalItems, }: CarouselNavigationProps) => import("react/jsx-runtime").JSX.Element;
14
+ export default CarouselNavigation;
@@ -0,0 +1,6 @@
1
+ interface CardFooterProps {
2
+ accountName?: string;
3
+ date?: string;
4
+ }
5
+ declare const CardFooter: ({ accountName, date }: CardFooterProps) => import("react/jsx-runtime").JSX.Element;
6
+ export default CardFooter;
@@ -0,0 +1,10 @@
1
+ interface EmbeddedCardProps {
2
+ title: string;
3
+ description: string;
4
+ callToAction: string;
5
+ instanceSlot?: React.ReactNode;
6
+ onMenuClick?: () => void;
7
+ onCtaClick?: () => void;
8
+ }
9
+ export declare const EmbeddedCard: ({ title, description, callToAction, instanceSlot, onMenuClick, onCtaClick, }: EmbeddedCardProps) => import("react/jsx-runtime").JSX.Element;
10
+ export {};