@mx-cartographer/experiences 7.2.9-alpha-ram1 → 7.2.9-alpha.san3
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/common/types/Widgets.d.ts +2 -0
- package/dist/finstrong/FinstrongWidget.d.ts +1 -1
- package/dist/finstrong/components/KeyIndicatorsSpendTab.d.ts +4 -1
- package/dist/finstrong/components/KeyIndicatorsTabItem.d.ts +2 -0
- package/dist/finstrong/components/KeyIndicatorsTabItemDrawer.d.ts +3 -1
- package/dist/finstrong/components/KeyIndicatorsTabsWidget.d.ts +4 -1
- package/dist/finstrong/components/SpendLessThanYouMake/SpendLessThanYouMakeComponent.d.ts +4 -1
- package/dist/finstrong/index.es.js +934 -912
- package/package.json +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { WidgetProps } from '../common';
|
|
2
|
-
declare const _default: (({ onBackClick, sx }: WidgetProps) => import("react/jsx-runtime").JSX.Element) & {
|
|
2
|
+
declare const _default: (({ onBackClick, sx, onTrendsClick, onSpendingClick }: WidgetProps) => import("react/jsx-runtime").JSX.Element) & {
|
|
3
3
|
displayName: string;
|
|
4
4
|
};
|
|
5
5
|
export default _default;
|
|
@@ -6,6 +6,8 @@ interface KeyIndicatorsTabsItemProps {
|
|
|
6
6
|
title: string;
|
|
7
7
|
description: string;
|
|
8
8
|
cardState: keyof typeof CardStatus;
|
|
9
|
+
onTrendClick?: () => void;
|
|
10
|
+
onSpendingClick?: () => void;
|
|
9
11
|
}
|
|
10
12
|
declare const KeyIndicatorsTabsItem: React.FC<KeyIndicatorsTabsItemProps>;
|
|
11
13
|
export default KeyIndicatorsTabsItem;
|
|
@@ -3,8 +3,10 @@ interface KeyIndicatorsTabItemDrawerProps {
|
|
|
3
3
|
drawerFor: KeyIndicatorsTabItemType;
|
|
4
4
|
isOpen: boolean;
|
|
5
5
|
onClose: () => void;
|
|
6
|
+
onTrendClick?: () => void;
|
|
7
|
+
onSpendingClick?: () => void;
|
|
6
8
|
}
|
|
7
|
-
declare const _default: (({ drawerFor, isOpen, onClose, }: KeyIndicatorsTabItemDrawerProps) => import("react/jsx-runtime").JSX.Element) & {
|
|
9
|
+
declare const _default: (({ drawerFor, isOpen, onClose, onTrendClick, onSpendingClick, }: KeyIndicatorsTabItemDrawerProps) => import("react/jsx-runtime").JSX.Element) & {
|
|
8
10
|
displayName: string;
|
|
9
11
|
};
|
|
10
12
|
export default _default;
|