@ansible/ansible-ui-framework 2.4.7 → 2.4.8

Sign up to get free protection for your applications and to get access to all the features.
@@ -10,4 +10,7 @@ export declare function PageDashboardCard(props: {
10
10
  width?: PageDashboardCardWidth;
11
11
  height?: PageDashboardCardHeight;
12
12
  style?: CSSProperties;
13
+ help?: string[];
14
+ helpTitle?: string;
15
+ helpDocLink?: string;
13
16
  }): JSX.Element;
@@ -1,5 +1,6 @@
1
1
  import { ReactNode } from 'react';
2
2
  export declare function Help(props: {
3
- help?: ReactNode;
3
+ help?: ReactNode | string | string[];
4
4
  title?: string;
5
+ docLink?: string;
5
6
  }): JSX.Element;