@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.
@@ -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';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mx-cartographer/insights-ui",
3
- "version": "1.11.0-alpha.mega1",
3
+ "version": "1.11.0-alpha.mega2",
4
4
  "description": "Package containing MX theme and common controls for MUI",
5
5
  "main": "dist/index.es.js",
6
6
  "types": "dist/index.d.ts",
@@ -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 {};