@ansible/ansible-ui-framework 2.4.2622 → 2.4.2623
Sign up to get free protection for your applications and to get access to all the features.
- package/PageCells/TextCell.d.ts +3 -1
- package/index.js +362 -347
- package/index.umd.cjs +1 -1
- package/package.json +1 -1
- package/publish/index.d.ts +2 -2
package/PageCells/TextCell.d.ts
CHANGED
@@ -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;
|