File: WizardBody.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 (27 lines) | stat: -rw-r--r-- 1,226 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/// <reference types="react" />
/**
 * Used as a wrapper for WizardStep content, where the wrapping element is customizable.
 */
export interface WizardBodyProps extends React.HTMLProps<HTMLElement> {
    /** Anything that can be rendered in the Wizard body */
    children: React.ReactNode;
    /** Additional classes spread to the wizard body */
    className?: string;
    /** Flag to remove the default body padding */
    hasNoPadding?: boolean;
    /** Adds an accessible name to the wrapper element when the content overflows and renders
     * a scrollbar.
     */
    'aria-label'?: string;
    /** Adds an accessible name to the wrapper element by passing the the id of one or more elements.
     * The aria-labelledby will only be applied when the content overflows and renders a scrollbar.
     */
    'aria-labelledby'?: string;
    /** Component used as the wrapping content container */
    component?: React.ElementType;
}
export declare const WizardBody: {
    ({ children, className, hasNoPadding, "aria-label": ariaLabel, "aria-labelledby": ariaLabelledBy, component, ...props }: WizardBodyProps): import("react/jsx-runtime").JSX.Element;
    displayName: string;
};
//# sourceMappingURL=WizardBody.d.ts.map