@ansible/ansible-ui-framework 0.0.732 → 0.0.734

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ import { ReactNode } from 'react';
2
+ export declare const PageDashboardContext: import("react").Context<{
3
+ columns: number;
4
+ }>;
5
+ export declare function PageDashboard(props: {
6
+ children: ReactNode;
7
+ }): JSX.Element;
@@ -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: ReactNode;
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",