@ansible/ansible-ui-framework 2.4.265 → 2.4.267

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@ansible/ansible-ui-framework",
3
3
  "description": "A framework for building applications using PatternFly.",
4
- "version": "2.4.265",
4
+ "version": "2.4.267",
5
5
  "license": "Apache-2.0",
6
6
  "repository": {
7
7
  "type": "git",
@@ -1,20 +0,0 @@
1
- import { ReactNode } from 'react';
2
- import { FieldPath, FieldPathValue, FieldValues, Validate } from 'react-hook-form';
3
- import { IFormGroupSelectOption } from './FormGroupSelectOption';
4
- export type PageFormSelectOptionProps<TFieldValues extends FieldValues = FieldValues, TFieldName extends FieldPath<TFieldValues> = FieldPath<TFieldValues>, TSelection = unknown> = {
5
- id?: string;
6
- name: TFieldName;
7
- label?: string;
8
- labelHelpTitle?: string;
9
- labelHelp?: ReactNode;
10
- additionalControls?: ReactNode;
11
- placeholderText?: string;
12
- options: IFormGroupSelectOption<TSelection>[];
13
- footer?: ReactNode;
14
- helperText?: string;
15
- isDisabled?: boolean;
16
- isReadOnly?: boolean;
17
- isRequired?: boolean;
18
- validate?: Validate<FieldPathValue<TFieldValues, TFieldName>, TFieldValues> | Record<string, Validate<FieldPathValue<TFieldValues, TFieldName>, TFieldValues>>;
19
- };
20
- export declare function PageFormSelectOption<TFieldValues extends FieldValues = FieldValues, TFieldName extends FieldPath<TFieldValues> = FieldPath<TFieldValues>, TSelection = unknown>(props: PageFormSelectOptionProps<TFieldValues, TFieldName, TSelection>): import("react/jsx-runtime").JSX.Element;
@@ -1,13 +0,0 @@
1
- export declare function FormTextSelect<T>(props: {
2
- id?: string;
3
- label: string;
4
- name: string;
5
- helperText?: string;
6
- required?: boolean;
7
- secret?: boolean;
8
- autoFocus?: boolean;
9
- placeholder?: string;
10
- selectTitle?: string;
11
- selectValue?: (item: T) => string | number;
12
- selectOpen?: (callback: (item: T) => void, title: string) => void;
13
- }): import("react/jsx-runtime").JSX.Element;