@ansible/ansible-ui-framework 2.4.435 → 2.4.436
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,7 +1,7 @@
|
|
1
1
|
import { TextInputProps } from '@patternfly/react-core';
|
2
2
|
import { ReactNode } from 'react';
|
3
3
|
import { PageFormGroupProps } from './PageFormGroup';
|
4
|
-
export type FormGroupTextInputProps = Pick<TextInputProps, 'placeholder' | 'value' | 'isDisabled' | 'isReadOnly' | 'isRequired' | 'validated' | 'onChange' | 'type' | 'aria-label' | '
|
4
|
+
export type FormGroupTextInputProps = Pick<TextInputProps, 'placeholder' | 'value' | 'isDisabled' | 'isReadOnly' | 'isRequired' | 'validated' | 'onChange' | 'type' | 'aria-label' | 'autoFocus' | 'innerRef' | 'minLength' | 'maxLength' | 'onBlur' | 'min' | 'max'> & PageFormGroupProps & {
|
5
5
|
children?: ReactNode;
|
6
6
|
};
|
7
7
|
export declare function FormGroupTextInput(props: FormGroupTextInputProps): import("react/jsx-runtime").JSX.Element;
|
@@ -24,6 +24,5 @@ export type PageFormTextInputProps<TFieldValues extends FieldValues = FieldValue
|
|
24
24
|
selectValue?: (selection: TSelection) => FieldPathValue<TSelection, FieldPath<TSelection>>;
|
25
25
|
selectOpen?: (callback: (selection: TSelection) => void, title: string) => void;
|
26
26
|
autoFocus?: boolean;
|
27
|
-
autoComplete?: string;
|
28
27
|
};
|
29
28
|
export declare function PageFormTextInput<TFieldValues extends FieldValues = FieldValues, TFieldName extends FieldPath<TFieldValues> = FieldPath<TFieldValues>, TSelection extends FieldValues = FieldValues>(props: PageFormTextInputProps<TFieldValues, TFieldName, TSelection>): import("react/jsx-runtime").JSX.Element;
|
@@ -16,7 +16,6 @@ export declare function PageForm<T extends object>(props: {
|
|
16
16
|
disableScrolling?: boolean;
|
17
17
|
disableBody?: boolean;
|
18
18
|
disablePadding?: boolean;
|
19
|
-
autoComplete?: string;
|
20
19
|
}): import("react/jsx-runtime").JSX.Element;
|
21
20
|
export declare function PageFormGrid(props: {
|
22
21
|
children?: ReactNode;
|