@ansible/ansible-ui-framework 0.0.732 → 0.0.734
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.
@@ -1,6 +1,11 @@
|
|
1
1
|
import { CSSProperties, ReactNode } from 'react';
|
2
|
+
export type PageDashboardCardWidth = 'xs' | 'sm' | 'md' | 'lg' | 'xl' | 'xxl';
|
3
|
+
export type PageDashboardCardHeight = 'xs' | 'sm' | 'md' | 'lg' | 'xl' | 'xxl';
|
2
4
|
export declare function PageDashboardCard(props: {
|
5
|
+
title?: string;
|
3
6
|
to?: string;
|
4
|
-
children
|
7
|
+
children?: ReactNode;
|
8
|
+
width?: PageDashboardCardWidth;
|
9
|
+
height?: PageDashboardCardHeight;
|
5
10
|
style?: CSSProperties;
|
6
11
|
}): JSX.Element;
|
@@ -18,6 +18,7 @@ export declare const pfDanger = "var(--pf-global--danger-color--100)";
|
|
18
18
|
export declare const pfWarning = "var(--pf-global--warning-color--100)";
|
19
19
|
export declare const pfInfo = "var(--pf-global--info-color--100)";
|
20
20
|
export declare const pfDisabled = "var(--pf-global--disabled-color--100)";
|
21
|
+
export declare const pfLink = "var(--pf-global--link--Color)";
|
21
22
|
export declare enum LabelColorE {
|
22
23
|
blue = "blue",
|
23
24
|
cyan = "cyan",
|