@ansible/ansible-ui-framework 2.4.5 → 2.4.6

Sign up to get free protection for your applications and to get access to all the features.
@@ -5,4 +5,5 @@ export interface PageContainerSize {
5
5
  }
6
6
  export declare function PageChartContainer(props: {
7
7
  children: (size: PageContainerSize) => ReactNode;
8
+ className?: string;
8
9
  }): JSX.Element;
@@ -3,6 +3,8 @@ export type PageDashboardCardWidth = 'xs' | 'sm' | 'md' | 'lg' | 'xl' | 'xxl';
3
3
  export type PageDashboardCardHeight = 'xs' | 'sm' | 'md' | 'lg' | 'xl' | 'xxl';
4
4
  export declare function PageDashboardCard(props: {
5
5
  title?: string;
6
+ description?: string;
7
+ linkText?: string;
6
8
  to?: string;
7
9
  children?: ReactNode;
8
10
  width?: PageDashboardCardWidth;
@@ -1,4 +1,5 @@
1
1
  /// <reference types="react" />
2
+ import './PageDashboardChart.css';
2
3
  export declare function PageDashboardChart(props: {
3
4
  groups: {
4
5
  color: string;