@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.
@@ -8,4 +8,6 @@ export interface WidgetProps {
8
8
  onBackClick?: () => void;
9
9
  sx?: SxProps;
10
10
  title?: string;
11
+ onTrendsClick?: () => void;
12
+ onSpendingClick?: () => void;
11
13
  }
@@ -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;
@@ -1,3 +1,6 @@
1
1
  import { default as React } from 'react';
2
- declare const _default: React.FunctionComponent<{}>;
2
+ declare const _default: React.FunctionComponent<{
3
+ onTrendsClick?: () => void;
4
+ onSpendingClick?: () => void;
5
+ }>;
3
6
  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;
@@ -1,3 +1,6 @@
1
1
  import { default as React } from 'react';
2
- declare const _default: React.FunctionComponent<{}>;
2
+ declare const _default: React.FunctionComponent<{
3
+ onTrendsClick?: () => void;
4
+ onSpendingClick?: () => void;
5
+ }>;
3
6
  export default _default;
@@ -1,3 +1,6 @@
1
1
  import { default as React } from 'react';
2
- declare const _default: React.FunctionComponent<{}>;
2
+ declare const _default: React.FunctionComponent<{
3
+ onTrendClick?: () => void;
4
+ onSpendingClick?: () => void;
5
+ }>;
3
6
  export default _default;