@ansible/ansible-ui-framework 2.4.2053 → 2.4.2055

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1 @@
1
+ export declare function PageSettingsDetails(): import("react/jsx-runtime").JSX.Element;
@@ -1,2 +1 @@
1
- export declare function PageSettings(): import("react/jsx-runtime").JSX.Element;
2
1
  export declare function PageSettingsForm(): import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,9 @@
1
+ import { PageSelectOption } from '../PageInputs/PageSelectOption';
2
+ export interface IPageSettingsOption {
3
+ name: string;
4
+ label: string;
5
+ helpText: string;
6
+ options: PageSelectOption<string | number>[];
7
+ defaultValue: string | number;
8
+ }
9
+ export declare function usePageSettingsOptions(): IPageSettingsOption[];