@ansible/ansible-ui-framework 2.4.70 → 2.4.72

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.70",
4
+ "version": "2.4.72",
5
5
  "license": "Apache-2.0",
6
6
  "repository": {
7
7
  "type": "git",
@@ -1,23 +0,0 @@
1
- /// <reference types="react" />
2
- import { StringOptions } from '@sinclair/typebox';
3
- import { JSONSchema6 } from 'json-schema';
4
- import { IFormGroupSelectOption } from './Inputs/FormGroupSelectOption';
5
- export declare function PageFormSchema(props: {
6
- schema: JSONSchema6;
7
- base?: string;
8
- }): JSX.Element;
9
- export type TypeTextInputOptions = StringOptions & {
10
- placeholder?: string;
11
- autoComplete?: string;
12
- };
13
- export declare function TypeTextInput(options: TypeTextInputOptions): import("@sinclair/typebox").TString;
14
- export type TypeSecretInputOptions = StringOptions & {
15
- placeholder?: string;
16
- autoComplete: string;
17
- };
18
- export declare function TypeSecretInput(options: TypeSecretInputOptions): import("@sinclair/typebox").TString;
19
- export type TypeSelectOptions<T> = StringOptions & {
20
- placeholder?: string;
21
- options: IFormGroupSelectOption<T>[];
22
- };
23
- export declare function TypeSelect<T extends string | number>(options: TypeSelectOptions<T>): import("@sinclair/typebox").TString;