@ansible/ansible-ui-framework 2.4.468 → 2.4.469
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.
- package/framework/PageForm/PageForm.d.ts +5 -4
 - package/framework/PageWizard/PageWizard.d.ts +8 -0
 - package/framework/PageWizard/PageWizardBody.d.ts +4 -0
 - package/framework/PageWizard/PageWizardFooter.d.ts +5 -0
 - package/framework/PageWizard/PageWizardNavigation.d.ts +1 -0
 - package/framework/PageWizard/PageWizardProvider.d.ts +8 -0
 - package/framework/PageWizard/PageWizardToggle.d.ts +1 -0
 - package/framework/PageWizard/index.d.ts +3 -0
 - package/framework/PageWizard/types.d.ts +21 -0
 - package/framework/index.d.ts +2 -0
 - package/framework/publish/index.d.ts +125 -123
 - package/index.js +11436 -11205
 - package/index.umd.cjs +185 -185
 - package/package.json +1 -1
 - package/style.css +1 -1
 
| 
         @@ -1,10 +1,8 @@ 
     | 
|
| 
       1 
     | 
    
         
            -
            import { JSONSchema6 } from 'json-schema';
         
     | 
| 
       2 
1 
     | 
    
         
             
            import { CSSProperties, ReactNode } from 'react';
         
     | 
| 
       3 
2 
     | 
    
         
             
            import { DefaultValues, ErrorOption, FieldPath, FieldValues, UseFormReturn } from 'react-hook-form';
         
     | 
| 
       4 
3 
     | 
    
         
             
            export declare function PageForm<T extends object>(props: {
         
     | 
| 
       5 
     | 
    
         
            -
                schema?: JSONSchema6;
         
     | 
| 
       6 
4 
     | 
    
         
             
                children?: ReactNode;
         
     | 
| 
       7 
     | 
    
         
            -
                submitText 
     | 
| 
      
 5 
     | 
    
         
            +
                submitText?: string;
         
     | 
| 
       8 
6 
     | 
    
         
             
                additionalActionText?: string;
         
     | 
| 
       9 
7 
     | 
    
         
             
                onClickAdditionalAction?: PageFormSubmitHandler<T>;
         
     | 
| 
       10 
8 
     | 
    
         
             
                onSubmit: PageFormSubmitHandler<T>;
         
     | 
| 
         @@ -16,13 +14,16 @@ export declare function PageForm<T extends object>(props: { 
     | 
|
| 
       16 
14 
     | 
    
         
             
                disableScrolling?: boolean;
         
     | 
| 
       17 
15 
     | 
    
         
             
                disableBody?: boolean;
         
     | 
| 
       18 
16 
     | 
    
         
             
                disablePadding?: boolean;
         
     | 
| 
      
 17 
     | 
    
         
            +
                disableGrid?: boolean;
         
     | 
| 
      
 18 
     | 
    
         
            +
                autoComplete?: string;
         
     | 
| 
      
 19 
     | 
    
         
            +
                footer?: ReactNode;
         
     | 
| 
       19 
20 
     | 
    
         
             
            }): import("react/jsx-runtime").JSX.Element;
         
     | 
| 
      
 21 
     | 
    
         
            +
            export type PageFormSubmitHandler<T extends FieldValues> = (data: T, setError: (error: string) => void, setFieldError: (fieldName: FieldPath<T>, error: ErrorOption) => void, from: UseFormReturn<T> | undefined) => Promise<unknown>;
         
     | 
| 
       20 
22 
     | 
    
         
             
            export declare function PageFormGrid(props: {
         
     | 
| 
       21 
23 
     | 
    
         
             
                children?: ReactNode;
         
     | 
| 
       22 
24 
     | 
    
         
             
                isVertical?: boolean;
         
     | 
| 
       23 
25 
     | 
    
         
             
                singleColumn?: boolean;
         
     | 
| 
       24 
26 
     | 
    
         
             
            }): import("react/jsx-runtime").JSX.Element;
         
     | 
| 
       25 
     | 
    
         
            -
            export type PageFormSubmitHandler<T extends FieldValues> = (data: T, setError: (error: string) => void, setFieldError: (fieldName: FieldPath<T>, error: ErrorOption) => void, from: UseFormReturn<T> | undefined) => Promise<unknown>;
         
     | 
| 
       26 
27 
     | 
    
         
             
            export declare function PageFormSubmitButton(props: {
         
     | 
| 
       27 
28 
     | 
    
         
             
                children: ReactNode;
         
     | 
| 
       28 
29 
     | 
    
         
             
                style?: CSSProperties;
         
     | 
| 
         @@ -0,0 +1,8 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            import '@patternfly/patternfly/components/Wizard/wizard.css';
         
     | 
| 
      
 2 
     | 
    
         
            +
            import type { PageWizardStep } from './types';
         
     | 
| 
      
 3 
     | 
    
         
            +
            export default function PageWizard<T extends object>(props: {
         
     | 
| 
      
 4 
     | 
    
         
            +
                steps: PageWizardStep[];
         
     | 
| 
      
 5 
     | 
    
         
            +
                defaultValue?: Record<string, object>;
         
     | 
| 
      
 6 
     | 
    
         
            +
                onCancel?: () => void;
         
     | 
| 
      
 7 
     | 
    
         
            +
                onSubmit: (wizardData: T) => Promise<void>;
         
     | 
| 
      
 8 
     | 
    
         
            +
            }): import("react/jsx-runtime").JSX.Element;
         
     | 
| 
         @@ -0,0 +1 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            export default function PageWizardNavigation(): import("react/jsx-runtime").JSX.Element | undefined;
         
     | 
| 
         @@ -0,0 +1,8 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            import { ReactNode } from 'react';
         
     | 
| 
      
 2 
     | 
    
         
            +
            import type { PageWizardStep, PageWizardState } from './types';
         
     | 
| 
      
 3 
     | 
    
         
            +
            export declare const PageWizardContext: import("react").Context<PageWizardState>;
         
     | 
| 
      
 4 
     | 
    
         
            +
            export declare function PageWizardProvider<T extends object>(props: {
         
     | 
| 
      
 5 
     | 
    
         
            +
                children: ReactNode;
         
     | 
| 
      
 6 
     | 
    
         
            +
                steps: PageWizardStep[];
         
     | 
| 
      
 7 
     | 
    
         
            +
                defaultValue?: Record<string, object>;
         
     | 
| 
      
 8 
     | 
    
         
            +
            }): import("react/jsx-runtime").JSX.Element;
         
     | 
| 
         @@ -0,0 +1 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            export default function PageWizardToggle(): import("react/jsx-runtime").JSX.Element;
         
     | 
| 
         @@ -0,0 +1,21 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            import { SetStateAction } from 'react';
         
     | 
| 
      
 2 
     | 
    
         
            +
            export interface PageWizardStep {
         
     | 
| 
      
 3 
     | 
    
         
            +
                id: string;
         
     | 
| 
      
 4 
     | 
    
         
            +
                label: string;
         
     | 
| 
      
 5 
     | 
    
         
            +
                inputs?: React.ReactNode;
         
     | 
| 
      
 6 
     | 
    
         
            +
                element?: React.ReactNode;
         
     | 
| 
      
 7 
     | 
    
         
            +
                hidden?: (wizardData: object) => boolean;
         
     | 
| 
      
 8 
     | 
    
         
            +
            }
         
     | 
| 
      
 9 
     | 
    
         
            +
            export interface PageWizardState {
         
     | 
| 
      
 10 
     | 
    
         
            +
                activeStep: PageWizardStep | null;
         
     | 
| 
      
 11 
     | 
    
         
            +
                isToggleExpanded: boolean;
         
     | 
| 
      
 12 
     | 
    
         
            +
                setActiveStep: (step: PageWizardStep) => void;
         
     | 
| 
      
 13 
     | 
    
         
            +
                setStepData: React.Dispatch<SetStateAction<Record<string, object>>>;
         
     | 
| 
      
 14 
     | 
    
         
            +
                setStepError: React.Dispatch<SetStateAction<Record<string, object>>>;
         
     | 
| 
      
 15 
     | 
    
         
            +
                setToggleExpanded: (update: (toggleNavExpanded: boolean) => boolean) => void;
         
     | 
| 
      
 16 
     | 
    
         
            +
                setWizardData: (data: object) => void;
         
     | 
| 
      
 17 
     | 
    
         
            +
                stepData: Record<string, object>;
         
     | 
| 
      
 18 
     | 
    
         
            +
                stepError: Record<string, object>;
         
     | 
| 
      
 19 
     | 
    
         
            +
                steps: PageWizardStep[];
         
     | 
| 
      
 20 
     | 
    
         
            +
                wizardData: object;
         
     | 
| 
      
 21 
     | 
    
         
            +
            }
         
     | 
    
        package/framework/index.d.ts
    CHANGED
    
    | 
         @@ -52,10 +52,12 @@ export * from './PageTable/useTableItems'; 
     | 
|
| 
       52 
52 
     | 
    
         
             
            export * from './PageTabs';
         
     | 
| 
       53 
53 
     | 
    
         
             
            export * from './PageToolbar/PageToolbar';
         
     | 
| 
       54 
54 
     | 
    
         
             
            export * from './PageToolbar/PageToolbarFilter';
         
     | 
| 
      
 55 
     | 
    
         
            +
            export * from './PageWizard';
         
     | 
| 
       55 
56 
     | 
    
         
             
            export * from './Settings';
         
     | 
| 
       56 
57 
     | 
    
         
             
            export * from './components/BulkSelector';
         
     | 
| 
       57 
58 
     | 
    
         
             
            export * from './components/Collapse';
         
     | 
| 
       58 
59 
     | 
    
         
             
            export * from './components/Help';
         
     | 
| 
      
 60 
     | 
    
         
            +
            export * from './components/LoadingPage';
         
     | 
| 
       59 
61 
     | 
    
         
             
            export * from './components/Scrollable';
         
     | 
| 
       60 
62 
     | 
    
         
             
            export * from './components/icons/RunningIcon';
         
     | 
| 
       61 
63 
     | 
    
         
             
            export * from './components/pfcolors';
         
     | 
| 
         @@ -1,124 +1,126 @@ 
     | 
|
| 
       1 
     | 
    
         
            -
            declare function  
     | 
| 
       2 
     | 
    
         
            -
            declare function  
     | 
| 
       3 
     | 
    
         
            -
            declare function  
     | 
| 
       4 
     | 
    
         
            -
            declare function  
     | 
| 
       5 
     | 
    
         
            -
            declare var  
     | 
| 
       6 
     | 
    
         
            -
            declare var  
     | 
| 
       7 
     | 
    
         
            -
            declare var  
     | 
| 
      
 1 
     | 
    
         
            +
            declare function d_e(e: any): any;
         
     | 
| 
      
 2 
     | 
    
         
            +
            declare function $Ae(e: any): any;
         
     | 
| 
      
 3 
     | 
    
         
            +
            declare function LAe(e: any): any;
         
     | 
| 
      
 4 
     | 
    
         
            +
            declare function cd(e: any): any;
         
     | 
| 
      
 5 
     | 
    
         
            +
            declare var n_e: any;
         
     | 
| 
      
 6 
     | 
    
         
            +
            declare var t_e: any;
         
     | 
| 
      
 7 
     | 
    
         
            +
            declare var r_e: any;
         
     | 
| 
       8 
8 
     | 
    
         
             
            declare var _i: any;
         
     | 
| 
       9 
     | 
    
         
            -
            declare function  
     | 
| 
       10 
     | 
    
         
            -
            declare function  
     | 
| 
       11 
     | 
    
         
            -
            declare function  
     | 
| 
       12 
     | 
    
         
            -
            declare const  
     | 
| 
       13 
     | 
    
         
            -
            declare function  
     | 
| 
       14 
     | 
    
         
            -
            declare function  
     | 
| 
       15 
     | 
    
         
            -
            declare function  
     | 
| 
       16 
     | 
    
         
            -
            declare function  
     | 
| 
       17 
     | 
    
         
            -
            declare function  
     | 
| 
       18 
     | 
    
         
            -
            declare function  
     | 
| 
       19 
     | 
    
         
            -
            declare function  
     | 
| 
       20 
     | 
    
         
            -
            declare var  
     | 
| 
       21 
     | 
    
         
            -
            declare function  
     | 
| 
       22 
     | 
    
         
            -
            declare function  
     | 
| 
       23 
     | 
    
         
            -
            declare  
     | 
| 
      
 9 
     | 
    
         
            +
            declare function RAe(e: any): any;
         
     | 
| 
      
 10 
     | 
    
         
            +
            declare function NAe(e: any): any;
         
     | 
| 
      
 11 
     | 
    
         
            +
            declare function cI(e: any): any;
         
     | 
| 
      
 12 
     | 
    
         
            +
            declare const DAe: L.Context<undefined>;
         
     | 
| 
      
 13 
     | 
    
         
            +
            declare function FAe(e: any): any;
         
     | 
| 
      
 14 
     | 
    
         
            +
            declare function Gl(e: any): any;
         
     | 
| 
      
 15 
     | 
    
         
            +
            declare function eTe(e: any): any;
         
     | 
| 
      
 16 
     | 
    
         
            +
            declare function X5e(e: any): any;
         
     | 
| 
      
 17 
     | 
    
         
            +
            declare function tTe(e: any): any;
         
     | 
| 
      
 18 
     | 
    
         
            +
            declare function O7(e: any): any;
         
     | 
| 
      
 19 
     | 
    
         
            +
            declare function Xs(e: any): any;
         
     | 
| 
      
 20 
     | 
    
         
            +
            declare var hI: any;
         
     | 
| 
      
 21 
     | 
    
         
            +
            declare function uI(e: any): any;
         
     | 
| 
      
 22 
     | 
    
         
            +
            declare function mTe(e: any): any;
         
     | 
| 
      
 23 
     | 
    
         
            +
            declare function JAe(e: any): any;
         
     | 
| 
      
 24 
     | 
    
         
            +
            declare var fI: any;
         
     | 
| 
       24 
25 
     | 
    
         
             
            declare var mt: any;
         
     | 
| 
       25 
     | 
    
         
            -
            declare var  
     | 
| 
       26 
     | 
    
         
            -
            declare function  
     | 
| 
       27 
     | 
    
         
            -
            declare const  
     | 
| 
      
 26 
     | 
    
         
            +
            declare var Wt: any;
         
     | 
| 
      
 27 
     | 
    
         
            +
            declare function Zs(e: any): any;
         
     | 
| 
      
 28 
     | 
    
         
            +
            declare const NO: L.Context<{
         
     | 
| 
       28 
29 
     | 
    
         
             
                addAlert: () => null;
         
     | 
| 
       29 
30 
     | 
    
         
             
                removeAlert: () => null;
         
     | 
| 
       30 
31 
     | 
    
         
             
                replaceAlert: () => null;
         
     | 
| 
       31 
32 
     | 
    
         
             
                removeAlerts: () => null;
         
     | 
| 
       32 
33 
     | 
    
         
             
            }>;
         
     | 
| 
       33 
     | 
    
         
            -
            declare function  
     | 
| 
       34 
     | 
    
         
            -
            declare function  
     | 
| 
       35 
     | 
    
         
            -
            declare function  
     | 
| 
       36 
     | 
    
         
            -
            declare function  
     | 
| 
       37 
     | 
    
         
            -
            declare function  
     | 
| 
       38 
     | 
    
         
            -
            declare function  
     | 
| 
       39 
     | 
    
         
            -
            declare function  
     | 
| 
       40 
     | 
    
         
            -
            declare const  
     | 
| 
      
 34 
     | 
    
         
            +
            declare function R7(e: any): any;
         
     | 
| 
      
 35 
     | 
    
         
            +
            declare function cTe(e: any): any;
         
     | 
| 
      
 36 
     | 
    
         
            +
            declare function N7(e: any): any;
         
     | 
| 
      
 37 
     | 
    
         
            +
            declare function T0(e: any): any;
         
     | 
| 
      
 38 
     | 
    
         
            +
            declare function WAe(e: any): any;
         
     | 
| 
      
 39 
     | 
    
         
            +
            declare function Xp(e: any): any;
         
     | 
| 
      
 40 
     | 
    
         
            +
            declare function BAe(e: any): any;
         
     | 
| 
      
 41 
     | 
    
         
            +
            declare const eA: L.Context<{
         
     | 
| 
       41 
42 
     | 
    
         
             
                columns: number;
         
     | 
| 
       42 
43 
     | 
    
         
             
            }>;
         
     | 
| 
       43 
     | 
    
         
            -
            declare function  
     | 
| 
       44 
     | 
    
         
            -
            declare function DAe(e: any): any;
         
     | 
| 
       45 
     | 
    
         
            -
            declare function jAe(e: any): any;
         
     | 
| 
       46 
     | 
    
         
            -
            declare function bu(e: any): any;
         
     | 
| 
       47 
     | 
    
         
            -
            declare function X1e(e: any): any;
         
     | 
| 
       48 
     | 
    
         
            -
            declare function i_e(e: any): any;
         
     | 
| 
       49 
     | 
    
         
            -
            declare function L7(e: any): any;
         
     | 
| 
       50 
     | 
    
         
            -
            declare function Y1e(e: any): any;
         
     | 
| 
       51 
     | 
    
         
            -
            declare function ZAe(e: any): any;
         
     | 
| 
       52 
     | 
    
         
            -
            declare function NCe(e: any): any;
         
     | 
| 
       53 
     | 
    
         
            -
            declare function UAe(e: any): any;
         
     | 
| 
      
 44 
     | 
    
         
            +
            declare function VAe(e: any): any;
         
     | 
| 
       54 
45 
     | 
    
         
             
            declare function HAe(e: any): any;
         
     | 
| 
       55 
     | 
    
         
            -
            declare function  
     | 
| 
       56 
     | 
    
         
            -
            declare function  
     | 
| 
       57 
     | 
    
         
            -
            declare function  
     | 
| 
       58 
     | 
    
         
            -
            declare function  
     | 
| 
       59 
     | 
    
         
            -
            declare function  
     | 
| 
       60 
     | 
    
         
            -
            declare function  
     | 
| 
       61 
     | 
    
         
            -
            declare function  
     | 
| 
       62 
     | 
    
         
            -
            declare function XAe(e: any): any;
         
     | 
| 
      
 46 
     | 
    
         
            +
            declare function UAe(e: any): any;
         
     | 
| 
      
 47 
     | 
    
         
            +
            declare function wu(e: any): any;
         
     | 
| 
      
 48 
     | 
    
         
            +
            declare function e_e(e: any): any;
         
     | 
| 
      
 49 
     | 
    
         
            +
            declare function s_e(e: any): any;
         
     | 
| 
      
 50 
     | 
    
         
            +
            declare function F7(e: any): any;
         
     | 
| 
      
 51 
     | 
    
         
            +
            declare function X1e(e: any): any;
         
     | 
| 
      
 52 
     | 
    
         
            +
            declare function WCe(e: any): any;
         
     | 
| 
       63 
53 
     | 
    
         
             
            declare function VCe(e: any): any;
         
     | 
| 
       64 
     | 
    
         
            -
            declare function  
     | 
| 
       65 
     | 
    
         
            -
            declare function  
     | 
| 
       66 
     | 
    
         
            -
            declare  
     | 
| 
      
 54 
     | 
    
         
            +
            declare function nTe(e: any): any;
         
     | 
| 
      
 55 
     | 
    
         
            +
            declare function rTe(e: any): any;
         
     | 
| 
      
 56 
     | 
    
         
            +
            declare function BCe(e: any): any;
         
     | 
| 
      
 57 
     | 
    
         
            +
            declare function aTe(e: any): any;
         
     | 
| 
      
 58 
     | 
    
         
            +
            declare function T3(e: any): any;
         
     | 
| 
      
 59 
     | 
    
         
            +
            declare function iTe(e: any): any;
         
     | 
| 
      
 60 
     | 
    
         
            +
            declare function oTe(e: any): any;
         
     | 
| 
      
 61 
     | 
    
         
            +
            declare function lTe(e: any): any;
         
     | 
| 
      
 62 
     | 
    
         
            +
            declare function qCe(e: any): any;
         
     | 
| 
      
 63 
     | 
    
         
            +
            declare function YCe(e: any): any;
         
     | 
| 
      
 64 
     | 
    
         
            +
            declare function KCe(e: any): any;
         
     | 
| 
      
 65 
     | 
    
         
            +
            declare function sTe(e: any): any;
         
     | 
| 
      
 66 
     | 
    
         
            +
            declare function ZCe(): any;
         
     | 
| 
      
 67 
     | 
    
         
            +
            declare const E3: L.Context<{
         
     | 
| 
       67 
68 
     | 
    
         
             
                isOpen: boolean;
         
     | 
| 
       68 
69 
     | 
    
         
             
                setState: () => {};
         
     | 
| 
       69 
70 
     | 
    
         
             
            }>;
         
     | 
| 
       70 
     | 
    
         
            -
            declare function  
     | 
| 
       71 
     | 
    
         
            -
            declare function  
     | 
| 
       72 
     | 
    
         
            -
            declare function  
     | 
| 
       73 
     | 
    
         
            -
            declare function  
     | 
| 
       74 
     | 
    
         
            -
            declare function  
     | 
| 
       75 
     | 
    
         
            -
            declare function  
     | 
| 
       76 
     | 
    
         
            -
            declare function  
     | 
| 
       77 
     | 
    
         
            -
            declare function  
     | 
| 
       78 
     | 
    
         
            -
            declare function  
     | 
| 
       79 
     | 
    
         
            -
            declare  
     | 
| 
       80 
     | 
    
         
            -
            declare  
     | 
| 
       81 
     | 
    
         
            -
            declare function  
     | 
| 
       82 
     | 
    
         
            -
            declare  
     | 
| 
       83 
     | 
    
         
            -
            declare const  
     | 
| 
       84 
     | 
    
         
            -
            declare  
     | 
| 
       85 
     | 
    
         
            -
            declare function  
     | 
| 
       86 
     | 
    
         
            -
            declare function  
     | 
| 
       87 
     | 
    
         
            -
            declare function  
     | 
| 
       88 
     | 
    
         
            -
            declare  
     | 
| 
       89 
     | 
    
         
            -
            declare  
     | 
| 
       90 
     | 
    
         
            -
            declare function  
     | 
| 
       91 
     | 
    
         
            -
            declare function  
     | 
| 
       92 
     | 
    
         
            -
            declare function  
     | 
| 
       93 
     | 
    
         
            -
            declare function  
     | 
| 
       94 
     | 
    
         
            -
            declare function  
     | 
| 
       95 
     | 
    
         
            -
            declare function  
     | 
| 
      
 71 
     | 
    
         
            +
            declare function UCe(e: any): any;
         
     | 
| 
      
 72 
     | 
    
         
            +
            declare function JCe(e: any): any;
         
     | 
| 
      
 73 
     | 
    
         
            +
            declare function zS(e: any): any;
         
     | 
| 
      
 74 
     | 
    
         
            +
            declare function zh(e: any): any;
         
     | 
| 
      
 75 
     | 
    
         
            +
            declare function Zw(e: any): any;
         
     | 
| 
      
 76 
     | 
    
         
            +
            declare function sAe(e: any): any;
         
     | 
| 
      
 77 
     | 
    
         
            +
            declare function dTe(e: any): any;
         
     | 
| 
      
 78 
     | 
    
         
            +
            declare function c5e(e: any): any;
         
     | 
| 
      
 79 
     | 
    
         
            +
            declare function r5e(e: any): any;
         
     | 
| 
      
 80 
     | 
    
         
            +
            declare function hTe(e: any): any;
         
     | 
| 
      
 81 
     | 
    
         
            +
            declare const pAe: any;
         
     | 
| 
      
 82 
     | 
    
         
            +
            declare function Si(e: any): any;
         
     | 
| 
      
 83 
     | 
    
         
            +
            declare function Z5e(e: any): any;
         
     | 
| 
      
 84 
     | 
    
         
            +
            declare const MAe: L.Context<() => null>;
         
     | 
| 
      
 85 
     | 
    
         
            +
            declare const Js: L.Context<{}[]>;
         
     | 
| 
      
 86 
     | 
    
         
            +
            declare function B7(e: any): any;
         
     | 
| 
      
 87 
     | 
    
         
            +
            declare function W7(e: any): any;
         
     | 
| 
      
 88 
     | 
    
         
            +
            declare function Qt(e: any): any;
         
     | 
| 
      
 89 
     | 
    
         
            +
            declare function L1(e: any): any;
         
     | 
| 
      
 90 
     | 
    
         
            +
            declare var n5e: any;
         
     | 
| 
      
 91 
     | 
    
         
            +
            declare function aAe(e: any, t: any, n: any): void;
         
     | 
| 
      
 92 
     | 
    
         
            +
            declare function iAe(e: any, t: any, n: any): void;
         
     | 
| 
      
 93 
     | 
    
         
            +
            declare function oAe(e: any, t: any, n: any): void;
         
     | 
| 
      
 94 
     | 
    
         
            +
            declare function H5e(e: any, t: any): 1 | -1 | 0;
         
     | 
| 
      
 95 
     | 
    
         
            +
            declare function Cu(e: any, t: any): 1 | -1 | 0;
         
     | 
| 
      
 96 
     | 
    
         
            +
            declare function U5e(e: any, t: any): 1 | -1 | 0;
         
     | 
| 
      
 97 
     | 
    
         
            +
            declare function jAe(e: any): {
         
     | 
| 
       96 
98 
     | 
    
         
             
                title: string;
         
     | 
| 
       97 
99 
     | 
    
         
             
                variant: string;
         
     | 
| 
       98 
100 
     | 
    
         
             
                timeout: number;
         
     | 
| 
       99 
101 
     | 
    
         
             
            };
         
     | 
| 
       100 
     | 
    
         
            -
            declare function  
     | 
| 
       101 
     | 
    
         
            -
            declare function  
     | 
| 
       102 
     | 
    
         
            -
            declare const  
     | 
| 
       103 
     | 
    
         
            -
            declare const  
     | 
| 
       104 
     | 
    
         
            -
            declare const  
     | 
| 
       105 
     | 
    
         
            -
            declare const  
     | 
| 
       106 
     | 
    
         
            -
            declare const  
     | 
| 
       107 
     | 
    
         
            -
            declare const  
     | 
| 
       108 
     | 
    
         
            -
            declare function  
     | 
| 
       109 
     | 
    
         
            -
            declare function  
     | 
| 
       110 
     | 
    
         
            -
            declare function  
     | 
| 
       111 
     | 
    
         
            -
            declare function  
     | 
| 
       112 
     | 
    
         
            -
            declare function  
     | 
| 
       113 
     | 
    
         
            -
            declare function  
     | 
| 
       114 
     | 
    
         
            -
            declare function  
     | 
| 
       115 
     | 
    
         
            -
            declare function  
     | 
| 
       116 
     | 
    
         
            -
            declare function  
     | 
| 
       117 
     | 
    
         
            -
            declare function  
     | 
| 
      
 102 
     | 
    
         
            +
            declare function nAe(e: any, t: any): any;
         
     | 
| 
      
 103 
     | 
    
         
            +
            declare function C0(e: any): "var(--pf-global--danger-color--100)" | "var(--pf-global--success-color--100)" | "var(--pf-global--warning-color--100)" | "var(--pf-global--info-color--100)" | "var(--pf-global--disabled-color--100)" | undefined;
         
     | 
| 
      
 104 
     | 
    
         
            +
            declare const HC: "var(--pf-global--danger-color--100)";
         
     | 
| 
      
 105 
     | 
    
         
            +
            declare const GC: "var(--pf-global--disabled-color--100)";
         
     | 
| 
      
 106 
     | 
    
         
            +
            declare const qC: "var(--pf-global--info-color--100)";
         
     | 
| 
      
 107 
     | 
    
         
            +
            declare const zAe: "var(--pf-global--link--Color)";
         
     | 
| 
      
 108 
     | 
    
         
            +
            declare const UC: "var(--pf-global--success-color--100)";
         
     | 
| 
      
 109 
     | 
    
         
            +
            declare const dI: "var(--pf-global--warning-color--100)";
         
     | 
| 
      
 110 
     | 
    
         
            +
            declare function uTe(e: any): any;
         
     | 
| 
      
 111 
     | 
    
         
            +
            declare function rAe(e: any, t: any): any;
         
     | 
| 
      
 112 
     | 
    
         
            +
            declare function Rn(e: any): boolean | undefined;
         
     | 
| 
      
 113 
     | 
    
         
            +
            declare function V5e(): L.Dispatch<L.SetStateAction<undefined>>;
         
     | 
| 
      
 114 
     | 
    
         
            +
            declare function XAe(): (n: any) => void;
         
     | 
| 
      
 115 
     | 
    
         
            +
            declare function YAe(e: any): any;
         
     | 
| 
      
 116 
     | 
    
         
            +
            declare function GAe(e: any): any;
         
     | 
| 
      
 117 
     | 
    
         
            +
            declare function o_e(e: any): any;
         
     | 
| 
      
 118 
     | 
    
         
            +
            declare function l_e(e: any): any;
         
     | 
| 
      
 119 
     | 
    
         
            +
            declare function eP(e: any, t: any): {
         
     | 
| 
       118 
120 
     | 
    
         
             
                filtered: never[];
         
     | 
| 
       119 
121 
     | 
    
         
             
                setFilterFn: (c: any) => void;
         
     | 
| 
       120 
122 
     | 
    
         
             
            };
         
     | 
| 
       121 
     | 
    
         
            -
            declare function  
     | 
| 
      
 123 
     | 
    
         
            +
            declare function jt(): ({
         
     | 
| 
       122 
124 
     | 
    
         
             
                by: string;
         
     | 
| 
       123 
125 
     | 
    
         
             
                cancelText: string;
         
     | 
| 
       124 
126 
     | 
    
         
             
                canceledText: string;
         
     | 
| 
         @@ -155,8 +157,8 @@ declare function Pt(): ({ 
     | 
|
| 
       155 
157 
     | 
    
         
             
                unknownError: string;
         
     | 
| 
       156 
158 
     | 
    
         
             
                validating: string;
         
     | 
| 
       157 
159 
     | 
    
         
             
            } | (() => void))[];
         
     | 
| 
       158 
     | 
    
         
            -
            declare function  
     | 
| 
       159 
     | 
    
         
            -
            declare function  
     | 
| 
      
 160 
     | 
    
         
            +
            declare function lAe(): (t: any, n: any) => any;
         
     | 
| 
      
 161 
     | 
    
         
            +
            declare function gTe(e: any): {
         
     | 
| 
       160 
162 
     | 
    
         
             
                selectedItems: any[];
         
     | 
| 
       161 
163 
     | 
    
         
             
                selectItem: (h: any) => void;
         
     | 
| 
       162 
164 
     | 
    
         
             
                unselectItem: (h: any) => void;
         
     | 
| 
         @@ -182,29 +184,29 @@ declare function rTe(e: any): { 
     | 
|
| 
       182 
184 
     | 
    
         
             
                pageItems: never[] | undefined;
         
     | 
| 
       183 
185 
     | 
    
         
             
                error: any;
         
     | 
| 
       184 
186 
     | 
    
         
             
            };
         
     | 
| 
       185 
     | 
    
         
            -
            declare function  
     | 
| 
       186 
     | 
    
         
            -
            declare function  
     | 
| 
      
 187 
     | 
    
         
            +
            declare function PAe(): string;
         
     | 
| 
      
 188 
     | 
    
         
            +
            declare function FO(): {
         
     | 
| 
       187 
189 
     | 
    
         
             
                addAlert: () => null;
         
     | 
| 
       188 
190 
     | 
    
         
             
                removeAlert: () => null;
         
     | 
| 
       189 
191 
     | 
    
         
             
                replaceAlert: () => null;
         
     | 
| 
       190 
192 
     | 
    
         
             
                removeAlerts: () => null;
         
     | 
| 
       191 
193 
     | 
    
         
             
            };
         
     | 
| 
       192 
194 
     | 
    
         
             
            declare function ka(): ((() => void) | undefined)[];
         
     | 
| 
       193 
     | 
    
         
            -
            declare function  
     | 
| 
       194 
     | 
    
         
            -
            declare function  
     | 
| 
      
 195 
     | 
    
         
            +
            declare function HCe(): (a: any) => void;
         
     | 
| 
      
 196 
     | 
    
         
            +
            declare function Gh(): {
         
     | 
| 
       195 
197 
     | 
    
         
             
                isOpen: boolean;
         
     | 
| 
       196 
198 
     | 
    
         
             
                setState: () => {};
         
     | 
| 
       197 
199 
     | 
    
         
             
            };
         
     | 
| 
       198 
     | 
    
         
            -
            declare function  
     | 
| 
       199 
     | 
    
         
            -
            declare function  
     | 
| 
      
 200 
     | 
    
         
            +
            declare function fTe(): (n: any, r: any) => void;
         
     | 
| 
      
 201 
     | 
    
         
            +
            declare function Fh(e: any): {
         
     | 
| 
       200 
202 
     | 
    
         
             
                paged: never[];
         
     | 
| 
       201 
203 
     | 
    
         
             
                page: number;
         
     | 
| 
       202 
204 
     | 
    
         
             
                setPage: L.Dispatch<L.SetStateAction<number>>;
         
     | 
| 
       203 
205 
     | 
    
         
             
                perPage: number;
         
     | 
| 
       204 
206 
     | 
    
         
             
                setPerPage: L.Dispatch<L.SetStateAction<number>>;
         
     | 
| 
       205 
207 
     | 
    
         
             
            };
         
     | 
| 
       206 
     | 
    
         
            -
            declare function  
     | 
| 
       207 
     | 
    
         
            -
            declare function  
     | 
| 
      
 208 
     | 
    
         
            +
            declare function QAe(e: any): (v: any, y: any) => void;
         
     | 
| 
      
 209 
     | 
    
         
            +
            declare function Jk(e: any, t: any, n: any): {
         
     | 
| 
       208 
210 
     | 
    
         
             
                selectedItems: any[];
         
     | 
| 
       209 
211 
     | 
    
         
             
                selectItem: (g: any) => void;
         
     | 
| 
       210 
212 
     | 
    
         
             
                unselectItem: (g: any) => void;
         
     | 
| 
         @@ -216,7 +218,7 @@ declare function Zk(e: any, t: any, n: any): { 
     | 
|
| 
       216 
218 
     | 
    
         
             
                keyFn: any;
         
     | 
| 
       217 
219 
     | 
    
         
             
                unselectItems: (g: any) => void;
         
     | 
| 
       218 
220 
     | 
    
         
             
            };
         
     | 
| 
       219 
     | 
    
         
            -
            declare function  
     | 
| 
      
 221 
     | 
    
         
            +
            declare function g5e(e: any, t: any): {
         
     | 
| 
       220 
222 
     | 
    
         
             
                selectedItems: any[];
         
     | 
| 
       221 
223 
     | 
    
         
             
                selectItem: (h: any) => void;
         
     | 
| 
       222 
224 
     | 
    
         
             
                unselectItem: (h: any) => void;
         
     | 
| 
         @@ -228,14 +230,14 @@ declare function d5e(e: any, t: any): { 
     | 
|
| 
       228 
230 
     | 
    
         
             
                keyFn: any;
         
     | 
| 
       229 
231 
     | 
    
         
             
                unselectItems: (h: any) => void;
         
     | 
| 
       230 
232 
     | 
    
         
             
            };
         
     | 
| 
       231 
     | 
    
         
            -
            declare function  
     | 
| 
       232 
     | 
    
         
            -
            declare function  
     | 
| 
       233 
     | 
    
         
            -
            declare function  
     | 
| 
      
 233 
     | 
    
         
            +
            declare function Qs(): {};
         
     | 
| 
      
 234 
     | 
    
         
            +
            declare function IAe(e: any): () => void;
         
     | 
| 
      
 235 
     | 
    
         
            +
            declare function Qk(e: any): {
         
     | 
| 
       234 
236 
     | 
    
         
             
                sorted: any;
         
     | 
| 
       235 
237 
     | 
    
         
             
                sort: undefined;
         
     | 
| 
       236 
238 
     | 
    
         
             
                setSort: L.Dispatch<L.SetStateAction<undefined>>;
         
     | 
| 
       237 
239 
     | 
    
         
             
            };
         
     | 
| 
       238 
     | 
    
         
            -
            declare function  
     | 
| 
      
 240 
     | 
    
         
            +
            declare function ZAe(e: any, t: any, n: any): {
         
     | 
| 
       239 
241 
     | 
    
         
             
                allSelected: boolean;
         
     | 
| 
       240 
242 
     | 
    
         
             
                filtered: never[];
         
     | 
| 
       241 
243 
     | 
    
         
             
                isSelected: (g: any) => boolean;
         
     | 
| 
         @@ -259,7 +261,7 @@ declare function NAe(e: any, t: any, n: any): { 
     | 
|
| 
       259 
261 
     | 
    
         
             
                unselectAll: () => void;
         
     | 
| 
       260 
262 
     | 
    
         
             
                unselectItem: (g: any) => void;
         
     | 
| 
       261 
263 
     | 
    
         
             
            };
         
     | 
| 
       262 
     | 
    
         
            -
            declare function  
     | 
| 
      
 264 
     | 
    
         
            +
            declare function SAe(e: any): {
         
     | 
| 
       263 
265 
     | 
    
         
             
                page: number;
         
     | 
| 
       264 
266 
     | 
    
         
             
                setPage: L.Dispatch<L.SetStateAction<number>>;
         
     | 
| 
       265 
267 
     | 
    
         
             
                perPage: number;
         
     | 
| 
         @@ -272,11 +274,11 @@ declare function fAe(e: any): { 
     | 
|
| 
       272 
274 
     | 
    
         
             
                setFilterState: L.Dispatch<any>;
         
     | 
| 
       273 
275 
     | 
    
         
             
                clearAllFilters: () => void;
         
     | 
| 
       274 
276 
     | 
    
         
             
            };
         
     | 
| 
       275 
     | 
    
         
            -
            declare function  
     | 
| 
       276 
     | 
    
         
            -
            declare function  
     | 
| 
       277 
     | 
    
         
            -
            declare function  
     | 
| 
       278 
     | 
    
         
            -
            declare function  
     | 
| 
       279 
     | 
    
         
            -
            declare function  
     | 
| 
       280 
     | 
    
         
            -
            declare function  
     | 
| 
      
 277 
     | 
    
         
            +
            declare function i_e(e: any): any;
         
     | 
| 
      
 278 
     | 
    
         
            +
            declare function qAe(e: any, t: any): any;
         
     | 
| 
      
 279 
     | 
    
         
            +
            declare function a_e(e: any): any;
         
     | 
| 
      
 280 
     | 
    
         
            +
            declare function Ik(e: any): any;
         
     | 
| 
      
 281 
     | 
    
         
            +
            declare function Mk(e: any): any;
         
     | 
| 
      
 282 
     | 
    
         
            +
            declare function T$(): string;
         
     | 
| 
       281 
283 
     | 
    
         
             
            import * as L from "react";
         
     | 
| 
       282 
     | 
    
         
            -
            export {  
     | 
| 
      
 284 
     | 
    
         
            +
            export { d_e as BulkSelector, $Ae as BytesCell, LAe as CapacityCell, cd as Collapse, n_e as ColumnCardOption, t_e as ColumnListOption, r_e as ColumnModalOption, _i as ColumnTableOption, RAe as CopyCell, NAe as DateCell, cI as DateTimeCell, DAe as DialogContext, FAe as ElapsedTimeCell, Gl as FormGroupSelect, eTe as FormGroupSelectOption, X5e as FormGroupTextArea, tTe as FormGroupTextInput, O7 as FrameworkTranslationsProvider, Xs as Help, hI as LabelColorE, uI as LabelsCell, mTe as LoadingPage, JAe as MultiSelectDialog, fI as PFColorE, mt as PageActionSelection, Wt as PageActionType, Zs as PageActions, NO as PageAlertToasterContext, R7 as PageAlertToasterProvider, cTe as PageApp, N7 as PageBody, T0 as PageChartContainer, WAe as PageDashboard, Xp as PageDashboardCard, BAe as PageDashboardChart, eA as PageDashboardContext, VAe as PageDashboardCount, HAe as PageDashboardDonutCard, UAe as PageDashboardGettingStarted, wu as PageDetail, e_e as PageDetails, s_e as PageDetailsFromColumns, F7 as PageDialogProvider, X1e as PageDonutChart, WCe as PageForm, VCe as PageFormCancelButton, nTe as PageFormCheckbox, rTe as PageFormDataEditor, BCe as PageFormGrid, aTe as PageFormSelect, T3 as PageFormSubmitButton, iTe as PageFormSwitch, oTe as PageFormTextArea, lTe as PageFormTextInput, qCe as PageFramework, YCe as PageHeader, KCe as PageLayout, sTe as PageMasthead, ZCe as PageMastheadToggle, E3 as PageNavSideBarContext, UCe as PageNavSideBarProvider, JCe as PageNavigation, zS as PageTab, zh as PageTable, Zw as PageTableCards, sAe as PageTabs, dTe as PageTabsOld, c5e as PageToolbar, r5e as PageToolbarFilters, hTe as PageWizard, pAe as RunningIcon, Si as Scrollable, Z5e as SelectDialog, MAe as SetDialogContext, Js as SettingsContext, B7 as SettingsDialog, W7 as SettingsProvider, Qt as TableColumnCell, L1 as TextCell, n5e as ToolbarFilterType, aAe as addNavigationItem, iAe as addNavigationItemAfter, oAe as addNavigationItemBefore, H5e as compareNumbers, Cu as compareStrings, U5e as compareUnknowns, jAe as errorToAlertProps, nAe as findNavigationItemById, C0 as getPatternflyColor, HC as pfDanger, GC as pfDisabled, qC as pfInfo, zAe as pfLink, UC as pfSuccess, dI as pfWarning, uTe as removeLeadingSlash, rAe as removeNavigationItemById, Rn as useBreakpoint, V5e as useBulkActionDialog, XAe as useBulkConfirmation, YAe as useColumnsWithoutExpandedRow, GAe as useColumnsWithoutSort, o_e as useDescriptionColumns, l_e as useExpandedColumns, eP as useFiltered, jt as useFrameworkTranslations, lAe as useGetPageUrl, gTe as useInMemoryView, PAe as useOrientation, FO as usePageAlertToaster, ka as usePageDialog, HCe as usePageNavBarClick, Gh as usePageNavSideBar, fTe as usePageNavigate, Fh as usePaged, QAe as useSelectDialog, Jk as useSelected, g5e as useSelectedInMemory, Qs as useSettings, IAe as useSettingsDialog, Qk as useSorted, ZAe as useTableItems, SAe as useView, i_e as useVisibleCardColumns, qAe as useVisibleColumns, a_e as useVisibleListColumns, Ik as useVisibleModalColumns, Mk as useVisibleTableColumns, T$ as useWindowSize };
         
     |