@mx-cartographer/insights-ui 1.16.24-alpha.sms3 → 1.16.26-alpha.mega1
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 +4 -1
- package/dist/components/insights/FederalBankHoliday/FederalBankHolidayMUI.d.ts +3 -0
- package/dist/components/insights/FederalBankHoliday/index.d.ts +1 -0
- package/dist/components/shared/CarouselControls.d.ts +14 -0
- package/dist/components/shared/InsightsCard/CardFooter.d.ts +6 -0
- package/dist/components/shared/InsightsCard/EmbeddedCard.d.ts +10 -0
- package/dist/index.es.js +965 -880
- package/dist/index.es.js.map +1 -1
- package/package.json +2 -2
|
@@ -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,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,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 {};
|