@ansible/ansible-ui-framework 2.4.2054 → 2.4.2056

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.
@@ -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[];