@mx-cartographer/insights-ui 1.11.0-alpha.mega1 → 1.11.0-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.
- package/dist/index.es.js +233 -263
- package/dist/index.es.js.map +1 -1
- package/dist/src/components/index.d.ts +0 -1
- package/dist/src/components/insights/MonthlySpendToIncomeComparisonV2/__tests__/MonthlySpendToIncomeComparisonV2.test.d.ts +1 -0
- package/package.json +1 -1
- package/dist/src/components/shared/InsightsCard/CardMenuButton.d.ts +0 -7
- package/dist/src/components/shared/InsightsCard/CardMenuItem.d.ts +0 -13
- package/dist/src/components/shared/InsightsCard/Shell.d.ts +0 -13
|
@@ -21,7 +21,6 @@ export * from './shared/InsightsCard/ContentAndDescription';
|
|
|
21
21
|
export * from './shared/InsightsCard/Description';
|
|
22
22
|
export * from './shared/InsightsCard/InsightButton';
|
|
23
23
|
export * from './shared/InsightsCard/MiniDescription';
|
|
24
|
-
export * from './shared/InsightsCard/Shell';
|
|
25
24
|
export * from './shared/ZeroState/LinedCardZeroState';
|
|
26
25
|
export * from './shared/GenericFeedback/FeedbackHeader';
|
|
27
26
|
export * from './shared/GenericFeedback/FeedbackButtons';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/package.json
CHANGED
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import { default as React } from 'react';
|
|
2
|
-
interface CardMenuButtonProps {
|
|
3
|
-
ariaLabel: string;
|
|
4
|
-
onClick: React.MouseEventHandler<HTMLButtonElement>;
|
|
5
|
-
}
|
|
6
|
-
export declare const CardMenuButton: React.MemoExoticComponent<({ ariaLabel, onClick }: CardMenuButtonProps) => import("react/jsx-runtime").JSX.Element>;
|
|
7
|
-
export {};
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
export interface MenuItemProps {
|
|
2
|
-
key: string;
|
|
3
|
-
icon: React.ReactNode;
|
|
4
|
-
text: string;
|
|
5
|
-
}
|
|
6
|
-
interface CardMenuItemProps {
|
|
7
|
-
anchorEl: Element;
|
|
8
|
-
handleClose: () => void;
|
|
9
|
-
handleMenuItem: (index: number, key: string) => void;
|
|
10
|
-
menuItems: MenuItemProps[];
|
|
11
|
-
}
|
|
12
|
-
export declare const CardMenuItem: ({ anchorEl, handleClose, handleMenuItem, menuItems, }: CardMenuItemProps) => import("react/jsx-runtime").JSX.Element;
|
|
13
|
-
export {};
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import { default as React } from 'react';
|
|
2
|
-
interface ShellProps {
|
|
3
|
-
ariaHidden?: boolean;
|
|
4
|
-
beat: {
|
|
5
|
-
[key: string]: any;
|
|
6
|
-
};
|
|
7
|
-
children?: React.ReactNode;
|
|
8
|
-
DismissedBeatSwitcher?: React.ReactNode;
|
|
9
|
-
elementTag?: string;
|
|
10
|
-
setRefs?: (...args: any[]) => void;
|
|
11
|
-
}
|
|
12
|
-
export declare const Shell: React.FC<ShellProps>;
|
|
13
|
-
export {};
|