@ansible/ansible-ui-framework 2.4.2621 → 2.4.2623

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,4 +1,4 @@
1
- import { ReactNode } from 'react';
1
+ import { ReactElement, ReactNode } from 'react';
2
2
  import { PFColor } from '../components/pfcolors';
3
3
  export interface TextCellProps {
4
4
  icon?: ReactNode;
@@ -11,5 +11,7 @@ export interface TextCellProps {
11
11
  iconColor?: PFColor;
12
12
  maxWidth?: number;
13
13
  disableLinks?: boolean;
14
+ tooltip?: ReactElement;
15
+ tooltipId?: number;
14
16
  }
15
17
  export declare function TextCell(props: Readonly<TextCellProps>): import("react/jsx-runtime").JSX.Element;