@ansible/ansible-ui-framework 2.4.174 → 2.4.176

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,5 +1,5 @@
1
1
  import { CSSProperties, ReactNode } from 'react';
2
- export type PageDashboardCardWidth = 'xs' | 'sm' | 'md' | 'lg' | 'xl' | 'xxl';
2
+ export type PageDashboardCardWidth = 'xxs' | '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
  supertitle?: string;
@@ -0,0 +1,7 @@
1
+ export type PageDashboardCountProps = {
2
+ title: string;
3
+ linkText?: string;
4
+ to?: string;
5
+ count: number;
6
+ };
7
+ export declare function PageDashboardCount(props: PageDashboardCountProps): import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,8 @@
1
+ export type PageDashboardCountBarProps = {
2
+ counts: {
3
+ title: string;
4
+ count: number;
5
+ to: string;
6
+ }[];
7
+ };
8
+ export declare function PageDashboardCountBar(props: PageDashboardCountBarProps): import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,11 @@
1
+ import { ReactNode } from 'react';
2
+ export interface PageDashboardGettingStartedStep {
3
+ title: string;
4
+ description: string;
5
+ to: string;
6
+ isComplete: boolean;
7
+ }
8
+ export declare function PageDashboardGettingStarted(props: {
9
+ steps: PageDashboardGettingStartedStep[];
10
+ children: ReactNode;
11
+ }): import("react/jsx-runtime").JSX.Element;
@@ -13,6 +13,8 @@ export * from './PageDashboard/PageChartContainer';
13
13
  export * from './PageDashboard/PageDashboard';
14
14
  export * from './PageDashboard/PageDashboardCard';
15
15
  export * from './PageDashboard/PageDashboardChart';
16
+ export * from './PageDashboard/PageDashboardCount';
17
+ export * from './PageDashboard/PageDashboardGettingStarted';
16
18
  export * from './PageDashboard/PageDonutChart';
17
19
  export * from './PageDetails/PageDetail';
18
20
  export * from './PageDetails/PageDetails';