@mx-cartographer/insights-ui 1.5.0-alpha.mega7 → 1.5.1-alpha.sms1
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/insights/DiscoveredAccounts/DiscoveredAccountsBody.d.ts +1 -1
- package/dist/components/insights/FederalBankHoliday/__tests__/FederalBankHoliday.test.d.ts +1 -0
- package/dist/components/shared/InsightsCard/CardHeader.d.ts +0 -1
- package/dist/components/shared/InsightsCard/ContentAndDescription.d.ts +0 -1
- package/dist/components/shared/InsightsCard/Description.d.ts +0 -1
- package/dist/index.es.js +490 -546
- package/dist/index.es.js.map +1 -1
- package/package.json +1 -1
|
@@ -4,7 +4,7 @@ interface DiscoveredAccountsBodyProps {
|
|
|
4
4
|
account_guid_2: string;
|
|
5
5
|
account_1_alt_text: string;
|
|
6
6
|
account_2_alt_text: string;
|
|
7
|
-
isSuccess
|
|
7
|
+
isSuccess: boolean;
|
|
8
8
|
}
|
|
9
9
|
export declare const DiscoveredAccountsBody: React.FC<DiscoveredAccountsBodyProps>;
|
|
10
10
|
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -2,7 +2,6 @@ import { default as React } from 'react';
|
|
|
2
2
|
import { MenuItemProps } from './CardMenuItem';
|
|
3
3
|
export interface CardHeaderProps {
|
|
4
4
|
ariaLabel?: string;
|
|
5
|
-
isMini?: boolean;
|
|
6
5
|
menuItems?: MenuItemProps[];
|
|
7
6
|
onOpen?: () => void;
|
|
8
7
|
onClick?: (index: number, key: string) => void;
|
|
@@ -6,7 +6,6 @@ export interface ContentAndDescriptionProps {
|
|
|
6
6
|
descriptionPlacement?: 'top' | 'bottom';
|
|
7
7
|
hideDescription?: boolean;
|
|
8
8
|
inDescriptionCtaOnClick?: (event?: React.MouseEvent<HTMLButtonElement, MouseEvent> | string) => void;
|
|
9
|
-
isMini?: boolean;
|
|
10
9
|
hasFullWidthImage?: boolean;
|
|
11
10
|
hasFooterButton?: boolean;
|
|
12
11
|
}
|
|
@@ -3,7 +3,6 @@ import { Beat } from '../../../types/CommonBeat';
|
|
|
3
3
|
interface DescriptionProps {
|
|
4
4
|
beat: Beat;
|
|
5
5
|
inDescriptionCtaOnClick?: (event?: React.MouseEvent<HTMLButtonElement, MouseEvent> | string) => void;
|
|
6
|
-
isMini?: boolean;
|
|
7
6
|
hasFullWidthImage?: boolean;
|
|
8
7
|
footerButton: boolean;
|
|
9
8
|
}
|