@ansible/ansible-ui-framework 2.4.1205 → 2.4.1206

Sign up to get free protection for your applications and to get access to all the features.
@@ -5,5 +5,5 @@ export type PageFormAsyncMultiSelectProps<TFieldValues extends FieldValues = Fie
5
5
  name: TFieldName;
6
6
  validate?: Validate<FieldPathValue<TFieldValues, TFieldName>, TFieldValues> | Record<string, Validate<FieldPathValue<TFieldValues, TFieldName>, TFieldValues>>;
7
7
  isReadOnly?: boolean;
8
- } & Pick<PageAsyncMultiSelectProps<ValueT>, 'id' | 'placeholder' | 'footer' | 'isDisabled' | 'queryOptions' | 'queryPlaceholder' | 'queryErrorText' | 'disableClearChips' | 'disableClearSelection'> & Pick<PageFormGroupProps, 'label' | 'labelHelp' | 'labelHelpTitle' | 'additionalControls' | 'isRequired' | 'helperText'>;
8
+ } & Pick<PageAsyncMultiSelectProps<ValueT>, 'id' | 'placeholder' | 'footer' | 'isDisabled' | 'queryOptions' | 'queryPlaceholder' | 'queryErrorText' | 'disableClearChips' | 'disableClearSelection' | 'onBrowse' | 'queryLabel'> & Pick<PageFormGroupProps, 'label' | 'labelHelp' | 'labelHelpTitle' | 'additionalControls' | 'isRequired' | 'helperText'>;
9
9
  export declare function PageFormAsyncMultiSelect<TFieldValues extends FieldValues = FieldValues, TFieldName extends FieldPath<TFieldValues> = FieldPath<TFieldValues>>(props: PageFormAsyncMultiSelectProps<TFieldValues, TFieldName>): import("react/jsx-runtime").JSX.Element;
@@ -5,5 +5,5 @@ export type PageFormAsyncSingleSelectProps<TFieldValues extends FieldValues = Fi
5
5
  name: TFieldName;
6
6
  validate?: Validate<FieldPathValue<TFieldValues, TFieldName>, TFieldValues> | Record<string, Validate<FieldPathValue<TFieldValues, TFieldName>, TFieldValues>>;
7
7
  isReadOnly?: boolean;
8
- } & Pick<PageAsyncSingleSelectProps<ValueT>, 'id' | 'placeholder' | 'footer' | 'isDisabled' | 'isRequired' | 'queryOptions' | 'queryPlaceholder' | 'queryErrorText'> & Pick<PageFormGroupProps, 'label' | 'labelHelp' | 'labelHelpTitle' | 'additionalControls' | 'isRequired' | 'helperText'>;
8
+ } & Pick<PageAsyncSingleSelectProps<ValueT>, 'id' | 'placeholder' | 'footer' | 'isDisabled' | 'isRequired' | 'queryOptions' | 'queryPlaceholder' | 'queryErrorText' | 'onBrowse' | 'queryLabel'> & Pick<PageFormGroupProps, 'label' | 'labelHelp' | 'labelHelpTitle' | 'additionalControls' | 'isRequired' | 'helperText'>;
9
9
  export declare function PageFormAsyncSingleSelect<TFieldValues extends FieldValues = FieldValues, TFieldName extends FieldPath<TFieldValues> = FieldPath<TFieldValues>>(props: PageFormAsyncSingleSelectProps<TFieldValues, TFieldName>): import("react/jsx-runtime").JSX.Element;
@@ -1,8 +1,10 @@
1
+ import { SetRequired } from 'type-fest';
1
2
  import { PageAsyncSelectOptionsFn } from './PageAsyncSelectOptions';
2
3
  import { PageMultiSelectProps } from './PageMultiSelect';
3
- export interface PageAsyncMultiSelectProps<ValueT> extends Omit<PageMultiSelectProps<ValueT>, 'options'> {
4
+ export interface PageAsyncMultiSelectProps<ValueT> extends SetRequired<Omit<PageMultiSelectProps<ValueT>, 'options'>, 'queryLabel'> {
4
5
  queryOptions: PageAsyncSelectOptionsFn<ValueT>;
5
6
  queryPlaceholder?: string;
6
7
  queryErrorText?: string | ((error: Error) => string);
8
+ onBrowse?: () => void;
7
9
  }
8
10
  export declare function PageAsyncMultiSelect<ValueT>(props: PageAsyncMultiSelectProps<ValueT>): import("react/jsx-runtime").JSX.Element;
@@ -1,7 +1,13 @@
1
1
  import { PageSelectOption } from './PageSelectOption';
2
+ export type PageAsyncSelectOptionsFn<ValueT> = (queryOptions: PageAsyncSelectQueryOptions) => Promise<PageAsyncSelectQueryResult<ValueT>>;
3
+ export interface PageAsyncSelectQueryOptions {
4
+ next?: string | number;
5
+ search?: string;
6
+ signal: AbortSignal;
7
+ }
2
8
  export interface PageAsyncSelectQueryResult<ValueT> {
3
- total: number;
9
+ remaining: number;
4
10
  options: PageSelectOption<ValueT>[];
11
+ next: string | number;
5
12
  }
6
- export type PageAsyncSelectOptionsFn<ValueT> = (page: number, signal: AbortSignal) => Promise<PageAsyncSelectQueryResult<ValueT>>;
7
13
  export type PageAsyncQueryErrorText = string | ((error: Error) => string);
@@ -1 +1,9 @@
1
- export {};
1
+ import { ReactNode } from 'react';
2
+ import { PageAsyncSelectQueryOptions, PageAsyncSelectQueryResult } from './PageAsyncSelectOptions';
3
+ export declare const asyncSelectTestOptions: {
4
+ value: number;
5
+ label: string;
6
+ description: string;
7
+ }[];
8
+ export declare function asyncSelectTestQuery(queryOptions: PageAsyncSelectQueryOptions): Promise<PageAsyncSelectQueryResult<number>>;
9
+ export declare function asyncSelectTestQueryLabel(value: number): ReactNode;
@@ -1,8 +1,10 @@
1
+ import { SetRequired } from 'type-fest';
1
2
  import { PageAsyncQueryErrorText, PageAsyncSelectOptionsFn } from './PageAsyncSelectOptions';
2
3
  import { PageSingleSelectProps } from './PageSingleSelect';
3
- export interface PageAsyncSingleSelectProps<ValueT> extends Omit<PageSingleSelectProps<ValueT>, 'options'> {
4
+ export interface PageAsyncSingleSelectProps<ValueT> extends SetRequired<Omit<PageSingleSelectProps<ValueT>, 'options'>, 'queryLabel'> {
4
5
  queryOptions: PageAsyncSelectOptionsFn<ValueT>;
5
6
  queryPlaceholder?: string;
6
7
  queryErrorText?: PageAsyncQueryErrorText;
8
+ onBrowse?: () => void;
7
9
  }
8
10
  export declare function PageAsyncSingleSelect<ValueT>(props: PageAsyncSingleSelectProps<ValueT>): import("react/jsx-runtime").JSX.Element;
@@ -10,9 +10,15 @@ export interface PageMultiSelectProps<ValueT> {
10
10
  options: PageSelectOption<ValueT>[];
11
11
  variant?: 'chips' | 'count';
12
12
  footer?: ReactNode;
13
+ open?: boolean;
14
+ setOpen?: (open: boolean) => void;
15
+ searchValue?: string;
16
+ setSearchValue?: (searchValue: string) => void;
17
+ isLoading?: boolean;
13
18
  disableClearSelection?: boolean;
14
19
  disableClearChips?: boolean;
15
20
  maxChipSize?: string;
16
21
  disableSortOptions?: boolean;
22
+ queryLabel?: (value: ValueT) => ReactNode;
17
23
  }
18
24
  export declare function PageMultiSelect<ValueT>(props: PageMultiSelectProps<ValueT>): import("react/jsx-runtime").JSX.Element;
@@ -4,12 +4,19 @@ export interface PageSingleSelectProps<ValueT> {
4
4
  id?: string;
5
5
  icon?: ReactNode;
6
6
  placeholder: ReactNode;
7
- value: ValueT;
7
+ value: ValueT | undefined;
8
8
  onSelect: (value: ValueT) => void;
9
9
  options: PageSelectOption<ValueT>[];
10
10
  footer?: ReactNode;
11
11
  isRequired?: boolean;
12
12
  isDisabled?: boolean;
13
+ open?: boolean;
14
+ setOpen?: (open: boolean) => void;
15
+ searchValue?: string;
16
+ setSearchValue?: (searchValue: string) => void;
17
+ isLoading?: boolean;
18
+ queryLabel?: (value: ValueT) => ReactNode;
19
+ disableAutoSelect?: boolean;
13
20
  disableSortOptions?: boolean;
14
21
  }
15
22
  export declare function PageSingleSelect<ValueT>(props: PageSingleSelectProps<ValueT>): import("react/jsx-runtime").JSX.Element;
@@ -1,3 +1,4 @@
1
+ import { ReactNode } from 'react';
1
2
  import { PageAsyncQueryErrorText, PageAsyncSelectOptionsFn } from '../../PageInputs/PageAsyncSelectOptions';
2
3
  import { ToolbarFilterType } from '../PageToolbarFilter';
3
4
  import { ToolbarFilterCommon } from './ToolbarFilterCommon';
@@ -7,14 +8,10 @@ export interface IToolbarAsyncMultiSelectFilter extends ToolbarFilterCommon {
7
8
  queryOptions: PageAsyncSelectOptionsFn<string>;
8
9
  queryPlaceholder?: string;
9
10
  queryErrorText?: PageAsyncQueryErrorText;
10
- queryLabel?: (value: string) => Promise<string | undefined>;
11
+ queryLabel: (value: string) => ReactNode;
11
12
  openBrowse?: ToolbarOpenMultiSelectBrowse;
12
13
  isRequired?: boolean;
13
14
  disableSortOptions?: boolean;
14
15
  }
15
16
  export declare function multiSelectBrowseAdapter<T>(selectFn: (onItemsSelect: (itemValue: T[]) => void, itemDefaultSelections?: T[]) => void, keyFn: (item: T) => string, objectFn: (name: string) => object, customOnSelect?: (items: T[]) => void): ToolbarOpenMultiSelectBrowse;
16
- export declare function AsyncQueryChip(props: {
17
- value: string;
18
- queryLabel?: (value: string) => Promise<string | undefined>;
19
- }): import("react/jsx-runtime").JSX.Element;
20
17
  export {};
@@ -1,3 +1,4 @@
1
+ import { ReactNode } from 'react';
1
2
  import { PageAsyncQueryErrorText, PageAsyncSelectOptionsFn } from '../../PageInputs/PageAsyncSelectOptions';
2
3
  import { ToolbarFilterType } from '../PageToolbarFilter';
3
4
  import { ToolbarFilterCommon } from './ToolbarFilterCommon';
@@ -8,7 +9,7 @@ export interface IToolbarAsyncSingleSelectFilter extends ToolbarFilterCommon {
8
9
  queryPlaceholder?: string;
9
10
  queryErrorText?: PageAsyncQueryErrorText;
10
11
  openBrowse?: ToolbarOpenSingleSelectBrowse;
11
- queryLabel?: (value: string) => Promise<string | undefined>;
12
+ queryLabel: (value: string) => ReactNode;
12
13
  isRequired?: boolean;
13
14
  disableSortOptions?: boolean;
14
15
  }
@@ -0,0 +1,6 @@
1
+ import { ReactNode } from 'react';
2
+ export declare function AsyncQueryLabel(props: {
3
+ url: string;
4
+ id: number | string | undefined;
5
+ field?: string;
6
+ }): ReactNode;
@@ -0,0 +1 @@
1
+ export declare function useOverridableState<T extends string | boolean | number | undefined>(value: T, setValue?: (value: T) => void): [T, (value: T) => void];
@@ -1,118 +1,118 @@
1
- declare function Gwe(e: any): any;
2
- declare function J_e(e: any): any;
3
- declare function rAe(e: any): any;
4
- declare function Ih(e: any): any;
5
- declare var d_e: any;
1
+ declare function Kwe(e: any): any;
2
+ declare function ewe(e: any): any;
3
+ declare function oAe(e: any): any;
4
+ declare function Lh(e: any): any;
6
5
  declare var p_e: any;
7
- declare var f_e: any;
6
+ declare var m_e: any;
8
7
  declare var h_e: any;
9
- declare var ly: any;
8
+ declare var g_e: any;
9
+ declare var fy: any;
10
10
  declare var Xa: any;
11
- declare function iAe(e: any): any;
12
- declare function oTe(e: any): any;
13
- declare function aTe(e: any): any;
14
- declare function aAe(e: any): any;
15
- declare function C8(e: any): any;
16
- declare function oAe(e: any): any;
17
- declare function NR(e: any): any;
11
+ declare function sAe(e: any): any;
12
+ declare function cTe(e: any): any;
13
+ declare function lTe(e: any): any;
14
+ declare function lAe(e: any): any;
15
+ declare function T8(e: any): any;
16
+ declare function cAe(e: any): any;
17
+ declare function WR(e: any): any;
18
+ declare function OAe(e: any): any;
19
+ declare function yb(e: any): any;
20
+ declare var j8: any;
21
+ declare function A8(e: any): any;
22
+ declare function zAe(e: any): any;
18
23
  declare function _Ae(e: any): any;
19
- declare function gb(e: any): any;
20
24
  declare var k8: any;
21
- declare function E8(e: any): any;
22
- declare function NAe(e: any): any;
23
- declare function yAe(e: any): any;
24
- declare var T8: any;
25
25
  declare var Ct: any;
26
26
  declare var Dt: any;
27
27
  declare function du(e: any): any;
28
- declare const HT: C.Context<{
28
+ declare const qT: O.Context<{
29
29
  addAlert: () => null;
30
30
  removeAlert: () => null;
31
31
  replaceAlert: () => null;
32
32
  removeAlerts: () => null;
33
33
  }>;
34
- declare function YR(e: any): any;
35
- declare function DAe(e: any): any;
36
- declare function nAe(e: any): any;
37
- declare function T0(e: any): any;
38
- declare function cAe(e: any): any;
39
- declare function mb(e: any): any;
40
- declare function uAe(e: any): any;
41
- declare const sk: C.Context<{
34
+ declare function XR(e: any): any;
35
+ declare function LAe(e: any): any;
36
+ declare function aAe(e: any): any;
37
+ declare function P0(e: any): any;
38
+ declare function dAe(e: any): any;
39
+ declare function bb(e: any): any;
40
+ declare function hAe(e: any): any;
41
+ declare const ck: O.Context<{
42
42
  columns: number;
43
43
  }>;
44
- declare function fAe(e: any): any;
45
- declare function hAe(e: any): any;
46
- declare function dAe(e: any): any;
44
+ declare function pAe(e: any): any;
45
+ declare function mAe(e: any): any;
46
+ declare function gAe(e: any): any;
47
47
  declare function gc(e: any): any;
48
- declare function c_e(e: any): any;
49
- declare function __e(e: any): any;
50
- declare function ywe(e: any): any;
51
- declare function o_e(e: any): any;
48
+ declare function f_e(e: any): any;
49
+ declare function S_e(e: any): any;
50
+ declare function _we(e: any): any;
51
+ declare function l_e(e: any): any;
52
+ declare function E2e(e: any): any;
52
53
  declare function S2e(e: any): any;
53
- declare function x2e(e: any): any;
54
- declare function wAe(e: any): any;
55
- declare function OAe(e: any): any;
56
- declare function O2e(e: any): any;
57
54
  declare function CAe(e: any): any;
58
- declare function d$(e: any): any;
59
- declare function EAe(e: any): any;
60
55
  declare function TAe(e: any): any;
56
+ declare function T2e(e: any): any;
61
57
  declare function AAe(e: any): any;
62
- declare function mTe(e: any): any;
63
- declare function yTe(e: any): any;
58
+ declare function h$(e: any): any;
64
59
  declare function kAe(e: any): any;
65
60
  declare function PAe(e: any): any;
66
- declare function bTe(): any;
67
- declare const SD: C.Context<{
61
+ declare function jAe(e: any): any;
62
+ declare function bTe(e: any): any;
63
+ declare function _Te(e: any): any;
64
+ declare function $Ae(e: any): any;
65
+ declare function DAe(e: any): any;
66
+ declare function wTe(): any;
67
+ declare const OD: O.Context<{
68
68
  isOpen: boolean;
69
69
  setState: () => {};
70
70
  }>;
71
- declare function sTe(e: any): any;
72
- declare function xTe(e: any): any;
73
- declare function n2e(e: any): any;
74
- declare function xAe(): any;
75
- declare function jAe(): any;
76
- declare const ll: C.Context<{}[]>;
77
- declare function w8(e: any): any;
78
- declare function fE(e: any): any;
79
- declare function Eg(e: any): any;
80
- declare function lC(e: any): any;
81
- declare function LAe(e: any): any;
82
- declare function $Ae(): any;
83
- declare function pwe(e: any): any;
84
- declare function lwe(e: any): any;
85
- declare function RAe(e: any): any;
86
- declare const FTe: any;
71
+ declare function uTe(e: any): any;
72
+ declare function STe(e: any): any;
73
+ declare function a2e(e: any): any;
74
+ declare function SAe(): any;
75
+ declare function IAe(): any;
76
+ declare const ll: O.Context<{}[]>;
77
+ declare function O8(e: any): any;
78
+ declare function hE(e: any): any;
79
+ declare function kg(e: any): any;
80
+ declare function uC(e: any): any;
81
+ declare function FAe(e: any): any;
82
+ declare function MAe(): any;
83
+ declare function vwe(e: any): any;
84
+ declare function fwe(e: any): any;
85
+ declare function WAe(e: any): any;
86
+ declare const BTe: any;
87
87
  declare function si(e: any): any;
88
- declare function t2e(e: any): any;
88
+ declare function i2e(e: any): any;
89
89
  declare function an(e: any): any;
90
- declare function P8(e: any): any;
91
- declare var swe: any;
92
- declare function ETe(e: any, t: any, n: any): void;
93
- declare function TTe(e: any, t: any, n: any): void;
94
- declare function ATe(e: any, t: any, n: any): void;
95
- declare function Kwe(e: any, t: any): 1 | -1 | 0;
90
+ declare function $8(e: any): any;
91
+ declare var uwe: any;
92
+ declare function kTe(e: any, t: any, n: any): void;
93
+ declare function PTe(e: any, t: any, n: any): void;
94
+ declare function jTe(e: any, t: any, n: any): void;
95
+ declare function Jwe(e: any, t: any): 1 | -1 | 0;
96
96
  declare function nd(e: any, t: any): 1 | -1 | 0;
97
- declare function Ywe(e: any, t: any): 1 | -1 | 0;
98
- declare function tAe(e: any): {
97
+ declare function Zwe(e: any, t: any): 1 | -1 | 0;
98
+ declare function iAe(e: any): {
99
99
  title: string;
100
100
  variant: string;
101
101
  timeout: number;
102
102
  };
103
- declare function OTe(e: any, t: any): any;
104
- declare function C0(e: any): "var(--pf-v5-global--danger-color--100)" | "var(--pf-v5-global--success-color--100)" | "var(--pf-v5-global--warning-color--100)" | "var(--pf-v5-global--info-color--100)" | "var(--pf-v5-global--disabled-color--100)" | undefined;
105
- declare const JA: "var(--pf-v5-global--danger-color--100)";
106
- declare const ek: "var(--pf-v5-global--disabled-color--100)";
107
- declare const QA: "var(--pf-v5-global--info-color--100)";
108
- declare const sAe: "var(--pf-v5-global--link--Color)";
109
- declare const ZA: "var(--pf-v5-global--success-color--100)";
110
- declare const lAe: "var(--pf-v5-global--danger-color--300)";
111
- declare const A8: "var(--pf-v5-global--warning-color--100)";
112
- declare function IAe(e: any): any;
113
- declare function CTe(e: any, t: any): any;
114
- declare function An(e: any): boolean | undefined;
115
- declare function qwe(e?: (e: any) => {
103
+ declare function TTe(e: any, t: any): any;
104
+ declare function A0(e: any): "var(--pf-v5-global--danger-color--100)" | "var(--pf-v5-global--success-color--100)" | "var(--pf-v5-global--warning-color--100)" | "var(--pf-v5-global--info-color--100)" | "var(--pf-v5-global--disabled-color--100)" | undefined;
105
+ declare const ek: "var(--pf-v5-global--danger-color--100)";
106
+ declare const nk: "var(--pf-v5-global--disabled-color--100)";
107
+ declare const tk: "var(--pf-v5-global--info-color--100)";
108
+ declare const uAe: "var(--pf-v5-global--link--Color)";
109
+ declare const QA: "var(--pf-v5-global--success-color--100)";
110
+ declare const fAe: "var(--pf-v5-global--danger-color--300)";
111
+ declare const P8: "var(--pf-v5-global--warning-color--100)";
112
+ declare function RAe(e: any): any;
113
+ declare function ATe(e: any, t: any): any;
114
+ declare function Tn(e: any): boolean | undefined;
115
+ declare function Xwe(e?: (e: any) => {
116
116
  genericErrors: {
117
117
  message: string;
118
118
  }[];
@@ -120,8 +120,8 @@ declare function qwe(e?: (e: any) => {
120
120
  name: string;
121
121
  message: string;
122
122
  }[];
123
- }): C.Dispatch<C.SetStateAction<undefined>>;
124
- declare function vAe(e?: (e: any) => {
123
+ }): O.Dispatch<O.SetStateAction<undefined>>;
124
+ declare function xAe(e?: (e: any) => {
125
125
  genericErrors: {
126
126
  message: string;
127
127
  }[];
@@ -130,20 +130,20 @@ declare function vAe(e?: (e: any) => {
130
130
  message: string;
131
131
  }[];
132
132
  }): (r: any) => void;
133
- declare function x_e(e: any): any;
133
+ declare function w_e(e: any): any;
134
+ declare function __e(e: any): any;
135
+ declare function vAe(e: any): any;
134
136
  declare function b_e(e: any): any;
135
- declare function pAe(e: any): any;
136
- declare function v_e(e: any): any;
137
- declare function y_e(e: any): any;
138
- declare function q3(e: any, t: any): {
137
+ declare function x_e(e: any): any;
138
+ declare function Y3(e: any, t: any): {
139
139
  filtered: never[];
140
140
  setFilterFn: (c: any) => void;
141
141
  };
142
- declare function h$(e: any, t: any): {
142
+ declare function p$(e: any, t: any): {
143
143
  form: undefined;
144
144
  handleSubmit: any;
145
145
  error: null;
146
- setError: C.Dispatch<C.SetStateAction<null>>;
146
+ setError: O.Dispatch<O.SetStateAction<null>>;
147
147
  handleSubmitError: (l: any) => void;
148
148
  setFieldError: any;
149
149
  };
@@ -184,8 +184,8 @@ declare function Ht(): ({
184
184
  unknownError: string;
185
185
  validating: string;
186
186
  } | (() => void))[];
187
- declare function kTe(): (t: any, n: any) => any;
188
- declare function FAe(e: any): {
187
+ declare function $Te(): (t: any, n: any) => any;
188
+ declare function BAe(e: any): {
189
189
  selectedItems: any[];
190
190
  selectItem: (h: any) => void;
191
191
  unselectItem: (h: any) => void;
@@ -197,50 +197,50 @@ declare function FAe(e: any): {
197
197
  keyFn: any;
198
198
  unselectItems: (h: any) => void;
199
199
  page: number;
200
- setPage: C.Dispatch<C.SetStateAction<number>>;
200
+ setPage: O.Dispatch<O.SetStateAction<number>>;
201
201
  perPage: number;
202
- setPerPage: C.Dispatch<C.SetStateAction<number>>;
202
+ setPerPage: O.Dispatch<O.SetStateAction<number>>;
203
203
  sort: any;
204
- setSort: C.Dispatch<any>;
204
+ setSort: O.Dispatch<any>;
205
205
  sortDirection: any;
206
- setSortDirection: C.Dispatch<any>;
206
+ setSortDirection: O.Dispatch<any>;
207
207
  filterState: any;
208
- setFilterState: C.Dispatch<any>;
208
+ setFilterState: O.Dispatch<any>;
209
209
  clearAllFilters: () => void;
210
210
  itemCount: number | undefined;
211
211
  pageItems: never[] | undefined;
212
212
  error: any;
213
213
  };
214
- declare function QTe(): string;
215
- declare function nb(): {
214
+ declare function nAe(): string;
215
+ declare function ab(): {
216
216
  addAlert: () => null;
217
217
  removeAlert: () => null;
218
218
  replaceAlert: () => null;
219
219
  removeAlerts: () => null;
220
220
  };
221
221
  declare function Va(): (((a: any) => void) | undefined)[];
222
- declare function bwe(): {
222
+ declare function wwe(): {
223
223
  dialogs: never[];
224
224
  clearDialogs: () => void;
225
225
  pushDialog: (e: any) => void;
226
226
  popDialog: () => void;
227
227
  };
228
- declare function lTe(): (i: any) => void;
229
- declare function $x(): {
228
+ declare function fTe(): (i: any) => void;
229
+ declare function Lx(): {
230
230
  isOpen: boolean;
231
231
  setState: () => {};
232
232
  };
233
- declare function MAe(): (n: any, r: any) => void;
233
+ declare function NAe(): (n: any, r: any) => void;
234
234
  declare function cl(): {};
235
- declare function Cg(e: any): {
235
+ declare function Ag(e: any): {
236
236
  paged: never[];
237
237
  page: number;
238
- setPage: C.Dispatch<C.SetStateAction<number>>;
238
+ setPage: O.Dispatch<O.SetStateAction<number>>;
239
239
  perPage: number;
240
- setPerPage: C.Dispatch<C.SetStateAction<number>>;
240
+ setPerPage: O.Dispatch<O.SetStateAction<number>>;
241
241
  };
242
- declare function bAe(e: any): (g: any, v: any) => void;
243
- declare function H3(e: any, t: any, n: any): {
242
+ declare function wAe(e: any): (g: any, v: any) => void;
243
+ declare function G3(e: any, t: any, n: any): {
244
244
  selectedItems: any[];
245
245
  selectItem: (g: any) => void;
246
246
  unselectItem: (g: any) => void;
@@ -252,7 +252,7 @@ declare function H3(e: any, t: any, n: any): {
252
252
  keyFn: any;
253
253
  unselectItems: (g: any) => void;
254
254
  };
255
- declare function xwe(e: any, t: any): {
255
+ declare function Swe(e: any, t: any): {
256
256
  selectedItems: any[];
257
257
  selectItem: (h: any) => void;
258
258
  unselectItem: (h: any) => void;
@@ -264,12 +264,12 @@ declare function xwe(e: any, t: any): {
264
264
  keyFn: any;
265
265
  unselectItems: (h: any) => void;
266
266
  };
267
- declare function G3(e: any): {
267
+ declare function q3(e: any): {
268
268
  sorted: any;
269
269
  sort: undefined;
270
- setSort: C.Dispatch<C.SetStateAction<undefined>>;
270
+ setSort: O.Dispatch<O.SetStateAction<undefined>>;
271
271
  };
272
- declare function mAe(e: any, t: any, n: any): {
272
+ declare function bAe(e: any, t: any, n: any): {
273
273
  allSelected: boolean;
274
274
  filtered: never[];
275
275
  isSelected: (g: any) => boolean;
@@ -283,34 +283,34 @@ declare function mAe(e: any, t: any, n: any): {
283
283
  selectPage: () => void;
284
284
  selectedItems: any[];
285
285
  setFilterFn: (c: any) => void;
286
- setPage: C.Dispatch<C.SetStateAction<number>>;
287
- setPerPage: C.Dispatch<C.SetStateAction<number>>;
286
+ setPage: O.Dispatch<O.SetStateAction<number>>;
287
+ setPerPage: O.Dispatch<O.SetStateAction<number>>;
288
288
  setSearch: any;
289
289
  setSearchFn: (h: any) => void;
290
- setSort: C.Dispatch<C.SetStateAction<undefined>>;
290
+ setSort: O.Dispatch<O.SetStateAction<undefined>>;
291
291
  sort: undefined;
292
292
  sorted: any;
293
293
  unselectAll: () => void;
294
294
  unselectItem: (g: any) => void;
295
295
  };
296
- declare function GTe(e: any): {
296
+ declare function KTe(e: any): {
297
297
  page: number;
298
- setPage: C.Dispatch<C.SetStateAction<number>>;
298
+ setPage: O.Dispatch<O.SetStateAction<number>>;
299
299
  perPage: number;
300
- setPerPage: C.Dispatch<C.SetStateAction<number>>;
300
+ setPerPage: O.Dispatch<O.SetStateAction<number>>;
301
301
  sort: any;
302
- setSort: C.Dispatch<any>;
302
+ setSort: O.Dispatch<any>;
303
303
  sortDirection: any;
304
- setSortDirection: C.Dispatch<any>;
304
+ setSortDirection: O.Dispatch<any>;
305
305
  filterState: any;
306
- setFilterState: C.Dispatch<any>;
306
+ setFilterState: O.Dispatch<any>;
307
307
  clearAllFilters: () => void;
308
308
  };
309
- declare function m_e(e: any): any;
310
- declare function gAe(e: any, t: any): any;
311
- declare function g_e(e: any): any;
312
- declare function ix(e: any): any;
313
- declare function P3(e: any): any;
314
- declare function CI(): string;
315
- import * as C from "react";
316
- export { Gwe as BulkActionDialog, J_e as BulkSelector, rAe as BytesCell, Ih as Collapse, d_e as ColumnCardOption, p_e as ColumnDashboardOption, f_e as ColumnListOption, h_e as ColumnModalOption, ly as ColumnPriority, Xa as ColumnTableOption, iAe as CopyCell, oTe as DataEditorActions, aTe as DataEditorButtons, aAe as DateCell, C8 as DateTimeCell, oAe as ElapsedTimeCell, NR as FrameworkTranslationsProvider, _Ae as GenericForm, gb as Help, k8 as LabelColorE, E8 as LabelsCell, NAe as LoadingPage, yAe as MultiSelectDialog, T8 as PFColorE, Ct as PageActionSelection, Dt as PageActionType, du as PageActions, HT as PageAlertToasterContext, YR as PageAlertToasterProvider, DAe as PageApp, nAe as PageBody, T0 as PageChartContainer, cAe as PageDashboard, mb as PageDashboardCard, uAe as PageDashboardChart, sk as PageDashboardContext, fAe as PageDashboardCount, hAe as PageDashboardDonutCard, dAe as PageDashboardGettingStarted, gc as PageDetail, c_e as PageDetails, __e as PageDetailsFromColumns, ywe as PageDialogProvider, o_e as PageDonutChart, S2e as PageForm, x2e as PageFormCancelButton, wAe as PageFormCheckbox, OAe as PageFormDataEditor, O2e as PageFormGrid, CAe as PageFormSelect, d$ as PageFormSubmitButton, EAe as PageFormSwitch, TAe as PageFormTextArea, AAe as PageFormTextInput, mTe as PageFramework, yTe as PageHeader, kAe as PageLayout, PAe as PageMasthead, bTe as PageMastheadToggle, SD as PageNavSideBarContext, sTe as PageNavSideBarProvider, xTe as PageNavigation, n2e as PageNotFound, xAe as PageNotImplemented, jAe as PageNotificationsIcon, ll as PageSettingsContext, w8 as PageSettingsProvider, fE as PageTab, Eg as PageTable, lC as PageTableCards, LAe as PageTabs, $Ae as PageThemeSwitcher, pwe as PageToolbar, lwe as PageToolbarFilters, RAe as PageWizard, FTe as RunningIcon, si as Scrollable, t2e as SelectDialog, an as TableColumnCell, P8 as TextCell, swe as ToolbarFilterType, ETe as addNavigationItem, TTe as addNavigationItemAfter, ATe as addNavigationItemBefore, Kwe as compareNumbers, nd as compareStrings, Ywe as compareUnknowns, tAe as errorToAlertProps, OTe as findNavigationItemById, C0 as getPatternflyColor, JA as pfDanger, ek as pfDisabled, QA as pfInfo, sAe as pfLink, ZA as pfSuccess, lAe as pfUnreachable, A8 as pfWarning, IAe as removeLeadingSlash, CTe as removeNavigationItemById, An as useBreakpoint, qwe as useBulkActionDialog, vAe as useBulkConfirmation, x_e as useColumnsWithoutExpandedRow, b_e as useColumnsWithoutSort, pAe as useDashboardColumns, v_e as useDescriptionColumns, y_e as useExpandedColumns, q3 as useFiltered, h$ as useFormErrors, Ht as useFrameworkTranslations, kTe as useGetPageUrl, FAe as useInMemoryView, QTe as useOrientation, nb as usePageAlertToaster, Va as usePageDialog, bwe as usePageDialogs, lTe as usePageNavBarClick, $x as usePageNavSideBar, MAe as usePageNavigate, cl as usePageSettings, Cg as usePaged, bAe as useSelectDialog, H3 as useSelected, xwe as useSelectedInMemory, G3 as useSorted, mAe as useTableItems, GTe as useView, m_e as useVisibleCardColumns, gAe as useVisibleColumns, g_e as useVisibleListColumns, ix as useVisibleModalColumns, P3 as useVisibleTableColumns, CI as useWindowSize };
309
+ declare function y_e(e: any): any;
310
+ declare function yAe(e: any, t: any): any;
311
+ declare function v_e(e: any): any;
312
+ declare function sx(e: any): any;
313
+ declare function $3(e: any): any;
314
+ declare function TI(): string;
315
+ import * as O from "react";
316
+ export { Kwe as BulkActionDialog, ewe as BulkSelector, oAe as BytesCell, Lh as Collapse, p_e as ColumnCardOption, m_e as ColumnDashboardOption, h_e as ColumnListOption, g_e as ColumnModalOption, fy as ColumnPriority, Xa as ColumnTableOption, sAe as CopyCell, cTe as DataEditorActions, lTe as DataEditorButtons, lAe as DateCell, T8 as DateTimeCell, cAe as ElapsedTimeCell, WR as FrameworkTranslationsProvider, OAe as GenericForm, yb as Help, j8 as LabelColorE, A8 as LabelsCell, zAe as LoadingPage, _Ae as MultiSelectDialog, k8 as PFColorE, Ct as PageActionSelection, Dt as PageActionType, du as PageActions, qT as PageAlertToasterContext, XR as PageAlertToasterProvider, LAe as PageApp, aAe as PageBody, P0 as PageChartContainer, dAe as PageDashboard, bb as PageDashboardCard, hAe as PageDashboardChart, ck as PageDashboardContext, pAe as PageDashboardCount, mAe as PageDashboardDonutCard, gAe as PageDashboardGettingStarted, gc as PageDetail, f_e as PageDetails, S_e as PageDetailsFromColumns, _we as PageDialogProvider, l_e as PageDonutChart, E2e as PageForm, S2e as PageFormCancelButton, CAe as PageFormCheckbox, TAe as PageFormDataEditor, T2e as PageFormGrid, AAe as PageFormSelect, h$ as PageFormSubmitButton, kAe as PageFormSwitch, PAe as PageFormTextArea, jAe as PageFormTextInput, bTe as PageFramework, _Te as PageHeader, $Ae as PageLayout, DAe as PageMasthead, wTe as PageMastheadToggle, OD as PageNavSideBarContext, uTe as PageNavSideBarProvider, STe as PageNavigation, a2e as PageNotFound, SAe as PageNotImplemented, IAe as PageNotificationsIcon, ll as PageSettingsContext, O8 as PageSettingsProvider, hE as PageTab, kg as PageTable, uC as PageTableCards, FAe as PageTabs, MAe as PageThemeSwitcher, vwe as PageToolbar, fwe as PageToolbarFilters, WAe as PageWizard, BTe as RunningIcon, si as Scrollable, i2e as SelectDialog, an as TableColumnCell, $8 as TextCell, uwe as ToolbarFilterType, kTe as addNavigationItem, PTe as addNavigationItemAfter, jTe as addNavigationItemBefore, Jwe as compareNumbers, nd as compareStrings, Zwe as compareUnknowns, iAe as errorToAlertProps, TTe as findNavigationItemById, A0 as getPatternflyColor, ek as pfDanger, nk as pfDisabled, tk as pfInfo, uAe as pfLink, QA as pfSuccess, fAe as pfUnreachable, P8 as pfWarning, RAe as removeLeadingSlash, ATe as removeNavigationItemById, Tn as useBreakpoint, Xwe as useBulkActionDialog, xAe as useBulkConfirmation, w_e as useColumnsWithoutExpandedRow, __e as useColumnsWithoutSort, vAe as useDashboardColumns, b_e as useDescriptionColumns, x_e as useExpandedColumns, Y3 as useFiltered, p$ as useFormErrors, Ht as useFrameworkTranslations, $Te as useGetPageUrl, BAe as useInMemoryView, nAe as useOrientation, ab as usePageAlertToaster, Va as usePageDialog, wwe as usePageDialogs, fTe as usePageNavBarClick, Lx as usePageNavSideBar, NAe as usePageNavigate, cl as usePageSettings, Ag as usePaged, wAe as useSelectDialog, G3 as useSelected, Swe as useSelectedInMemory, q3 as useSorted, bAe as useTableItems, KTe as useView, y_e as useVisibleCardColumns, yAe as useVisibleColumns, v_e as useVisibleListColumns, sx as useVisibleModalColumns, $3 as useVisibleTableColumns, TI as useWindowSize };