File: TextInputGroup.d.ts

package info (click to toggle)
cockpit 354-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 308,956 kB
  • sloc: javascript: 775,606; python: 40,351; ansic: 35,655; cpp: 11,117; sh: 3,511; makefile: 580; xml: 261
file content (18 lines) | stat: -rw-r--r-- 961 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/// <reference types="react" />
export interface TextInputGroupProps extends React.HTMLProps<HTMLDivElement> {
    /** Content rendered inside the text input group */
    children?: React.ReactNode;
    /** Additional classes applied to the text input group container */
    className?: string;
    /** Adds disabled styling and a disabled context value which text input group main hooks into for the input itself */
    isDisabled?: boolean;
    /** Flag to indicate the toggle has no border or background */
    isPlain?: boolean;
    /** Status variant of the text input group. */
    validated?: 'success' | 'warning' | 'error';
    /** @hide A reference object to attach to the input box */
    innerRef?: React.RefObject<any>;
}
export declare const TextInputGroupContext: import("react").Context<Partial<TextInputGroupProps>>;
export declare const TextInputGroup: React.FunctionComponent<TextInputGroupProps>;
//# sourceMappingURL=TextInputGroup.d.ts.map