@ansible/ansible-ui-framework 2.4.513 → 2.4.515

Sign up to get free protection for your applications and to get access to all the features.
@@ -4,4 +4,3 @@ import { PageFormGroupProps } from './PageFormGroup';
4
4
  export type FormGroupTextInputProps = Pick<TextInputProps, 'placeholder' | 'value' | 'isDisabled' | 'isReadOnly' | 'isRequired' | 'validated' | 'onChange' | 'type' | 'aria-label' | 'autoFocus' | 'innerRef' | 'minLength' | 'maxLength' | 'onBlur' | 'min' | 'max'> & PageFormGroupProps & {
5
5
  children?: ReactNode;
6
6
  };
7
- export declare function FormGroupTextInput(props: FormGroupTextInputProps): import("react/jsx-runtime").JSX.Element;
@@ -1,6 +1,6 @@
1
1
  import { ReactNode } from 'react';
2
2
  import { FieldPath, FieldPathValue, FieldValues, Validate } from 'react-hook-form';
3
- import { IFormGroupSelectOption } from './FormGroupSelectOption';
3
+ import { PageSelectOption } from '../../PageInputs/PageSelectOption';
4
4
  export type PageFormSelectProps<TFieldValues extends FieldValues = FieldValues, TFieldName extends FieldPath<TFieldValues> = FieldPath<TFieldValues>, TSelection = unknown> = {
5
5
  id?: string;
6
6
  name: TFieldName;
@@ -9,7 +9,7 @@ export type PageFormSelectProps<TFieldValues extends FieldValues = FieldValues,
9
9
  labelHelp?: ReactNode;
10
10
  additionalControls?: ReactNode;
11
11
  placeholderText?: string;
12
- options: IFormGroupSelectOption<TSelection>[];
12
+ options: PageSelectOption<TSelection>[];
13
13
  footer?: ReactNode;
14
14
  helperText?: string;
15
15
  isDisabled?: boolean;
@@ -1,10 +1,3 @@
1
- import { FieldPath, FieldValues, Validate, ValidationRule } from 'react-hook-form';
2
- import { FormGroupTextAreaProps } from './FormGroupTextArea';
3
- export type PageFormTextAreaProps<TFieldValues extends FieldValues = FieldValues, TFieldName extends FieldPath<TFieldValues> = FieldPath<TFieldValues>> = {
4
- name: TFieldName;
5
- minLength?: number | ValidationRule<number>;
6
- maxLength?: number | ValidationRule<number>;
7
- pattern?: ValidationRule<RegExp>;
8
- validate?: Validate<string, TFieldValues> | Record<string, Validate<string, TFieldValues>>;
9
- } & Omit<FormGroupTextAreaProps, 'onChange' | 'value'>;
10
- export declare function PageFormTextArea<TFieldValues extends FieldValues = FieldValues, TFieldName extends FieldPath<TFieldValues> = FieldPath<TFieldValues>>(props: PageFormTextAreaProps<TFieldValues, TFieldName>): import("react/jsx-runtime").JSX.Element;
1
+ import { FieldPath, FieldValues } from 'react-hook-form';
2
+ import { PageFormTextInputProps } from './PageFormTextInput';
3
+ export declare function PageFormTextArea<TFieldValues extends FieldValues = FieldValues, TFieldName extends FieldPath<TFieldValues> = FieldPath<TFieldValues>, TSelection extends FieldValues = FieldValues>(props: PageFormTextInputProps<TFieldValues, TFieldName, TSelection>): import("react/jsx-runtime").JSX.Element;
@@ -11,5 +11,6 @@ export interface PageSingleSelectProps<ValueT> {
11
11
  options: PageSelectOption<ValueT>[];
12
12
  footer?: ReactNode;
13
13
  isRequired?: boolean;
14
+ label?: string;
14
15
  }
15
16
  export declare function PageSingleSelect<ValueT>(props: PageSingleSelectProps<ValueT>): import("react/jsx-runtime").JSX.Element;
@@ -91,7 +91,7 @@ export declare function useColumnsWithoutSort<T extends object>(columns: ITableC
91
91
  defaultSort?: boolean | undefined;
92
92
  icon?: ((item: T) => ReactNode) | undefined;
93
93
  table?: ColumnTableOption | undefined;
94
- list?: "name" | "hidden" | "primary" | "secondary" | "description" | "subtitle" | undefined;
94
+ list?: "name" | "hidden" | "description" | "primary" | "secondary" | "subtitle" | undefined;
95
95
  card?: "name" | "hidden" | "description" | "subtitle" | undefined;
96
96
  modal?: ColumnModalOption | undefined;
97
97
  } | {
@@ -108,7 +108,7 @@ export declare function useColumnsWithoutSort<T extends object>(columns: ITableC
108
108
  defaultSort?: boolean | undefined;
109
109
  icon?: ((item: T) => ReactNode) | undefined;
110
110
  table?: ColumnTableOption | undefined;
111
- list?: "name" | "hidden" | "primary" | "secondary" | "description" | "subtitle" | undefined;
111
+ list?: "name" | "hidden" | "description" | "primary" | "secondary" | "subtitle" | undefined;
112
112
  card?: "name" | "hidden" | "description" | "subtitle" | undefined;
113
113
  modal?: ColumnModalOption | undefined;
114
114
  } | {
@@ -125,7 +125,7 @@ export declare function useColumnsWithoutSort<T extends object>(columns: ITableC
125
125
  defaultSort?: boolean | undefined;
126
126
  icon?: ((item: T) => ReactNode) | undefined;
127
127
  table?: ColumnTableOption | undefined;
128
- list?: "name" | "hidden" | "primary" | "secondary" | "description" | "subtitle" | undefined;
128
+ list?: "name" | "hidden" | "description" | "primary" | "secondary" | "subtitle" | undefined;
129
129
  card?: "name" | "hidden" | "description" | "subtitle" | undefined;
130
130
  modal?: ColumnModalOption | undefined;
131
131
  } | {
@@ -142,7 +142,7 @@ export declare function useColumnsWithoutSort<T extends object>(columns: ITableC
142
142
  defaultSort?: boolean | undefined;
143
143
  icon?: ((item: T) => ReactNode) | undefined;
144
144
  table?: ColumnTableOption | undefined;
145
- list?: "name" | "hidden" | "primary" | "secondary" | "description" | "subtitle" | undefined;
145
+ list?: "name" | "hidden" | "description" | "primary" | "secondary" | "subtitle" | undefined;
146
146
  card?: "name" | "hidden" | "description" | "subtitle" | undefined;
147
147
  modal?: ColumnModalOption | undefined;
148
148
  } | {
@@ -159,7 +159,7 @@ export declare function useColumnsWithoutSort<T extends object>(columns: ITableC
159
159
  defaultSort?: boolean | undefined;
160
160
  icon?: ((item: T) => ReactNode) | undefined;
161
161
  table?: ColumnTableOption | undefined;
162
- list?: "name" | "hidden" | "primary" | "secondary" | "description" | "subtitle" | undefined;
162
+ list?: "name" | "hidden" | "description" | "primary" | "secondary" | "subtitle" | undefined;
163
163
  card?: "name" | "hidden" | "description" | "subtitle" | undefined;
164
164
  modal?: ColumnModalOption | undefined;
165
165
  } | {
@@ -176,7 +176,7 @@ export declare function useColumnsWithoutSort<T extends object>(columns: ITableC
176
176
  defaultSort?: boolean | undefined;
177
177
  icon?: ((item: T) => ReactNode) | undefined;
178
178
  table?: ColumnTableOption | undefined;
179
- list?: "name" | "hidden" | "primary" | "secondary" | "description" | "subtitle" | undefined;
179
+ list?: "name" | "hidden" | "description" | "primary" | "secondary" | "subtitle" | undefined;
180
180
  card?: "name" | "hidden" | "description" | "subtitle" | undefined;
181
181
  modal?: ColumnModalOption | undefined;
182
182
  })[];
@@ -195,7 +195,7 @@ export declare function useColumnsWithoutExpandedRow<T extends object>(columns:
195
195
  defaultSortDirection?: "desc" | "asc" | undefined;
196
196
  defaultSort?: boolean | undefined;
197
197
  icon?: ((item: T) => ReactNode) | undefined;
198
- list?: "name" | "hidden" | "primary" | "secondary" | "description" | "subtitle" | undefined;
198
+ list?: "name" | "hidden" | "description" | "primary" | "secondary" | "subtitle" | undefined;
199
199
  card?: "name" | "hidden" | "description" | "subtitle" | undefined;
200
200
  modal?: ColumnModalOption | undefined;
201
201
  } | {
@@ -212,7 +212,7 @@ export declare function useColumnsWithoutExpandedRow<T extends object>(columns:
212
212
  defaultSortDirection?: "desc" | "asc" | undefined;
213
213
  defaultSort?: boolean | undefined;
214
214
  icon?: ((item: T) => ReactNode) | undefined;
215
- list?: "name" | "hidden" | "primary" | "secondary" | "description" | "subtitle" | undefined;
215
+ list?: "name" | "hidden" | "description" | "primary" | "secondary" | "subtitle" | undefined;
216
216
  card?: "name" | "hidden" | "description" | "subtitle" | undefined;
217
217
  modal?: ColumnModalOption | undefined;
218
218
  } | {
@@ -229,7 +229,7 @@ export declare function useColumnsWithoutExpandedRow<T extends object>(columns:
229
229
  defaultSortDirection?: "desc" | "asc" | undefined;
230
230
  defaultSort?: boolean | undefined;
231
231
  icon?: ((item: T) => ReactNode) | undefined;
232
- list?: "name" | "hidden" | "primary" | "secondary" | "description" | "subtitle" | undefined;
232
+ list?: "name" | "hidden" | "description" | "primary" | "secondary" | "subtitle" | undefined;
233
233
  card?: "name" | "hidden" | "description" | "subtitle" | undefined;
234
234
  modal?: ColumnModalOption | undefined;
235
235
  } | {
@@ -246,7 +246,7 @@ export declare function useColumnsWithoutExpandedRow<T extends object>(columns:
246
246
  defaultSortDirection?: "desc" | "asc" | undefined;
247
247
  defaultSort?: boolean | undefined;
248
248
  icon?: ((item: T) => ReactNode) | undefined;
249
- list?: "name" | "hidden" | "primary" | "secondary" | "description" | "subtitle" | undefined;
249
+ list?: "name" | "hidden" | "description" | "primary" | "secondary" | "subtitle" | undefined;
250
250
  card?: "name" | "hidden" | "description" | "subtitle" | undefined;
251
251
  modal?: ColumnModalOption | undefined;
252
252
  } | {
@@ -263,7 +263,7 @@ export declare function useColumnsWithoutExpandedRow<T extends object>(columns:
263
263
  defaultSortDirection?: "desc" | "asc" | undefined;
264
264
  defaultSort?: boolean | undefined;
265
265
  icon?: ((item: T) => ReactNode) | undefined;
266
- list?: "name" | "hidden" | "primary" | "secondary" | "description" | "subtitle" | undefined;
266
+ list?: "name" | "hidden" | "description" | "primary" | "secondary" | "subtitle" | undefined;
267
267
  card?: "name" | "hidden" | "description" | "subtitle" | undefined;
268
268
  modal?: ColumnModalOption | undefined;
269
269
  } | {
@@ -280,7 +280,7 @@ export declare function useColumnsWithoutExpandedRow<T extends object>(columns:
280
280
  defaultSortDirection?: "desc" | "asc" | undefined;
281
281
  defaultSort?: boolean | undefined;
282
282
  icon?: ((item: T) => ReactNode) | undefined;
283
- list?: "name" | "hidden" | "primary" | "secondary" | "description" | "subtitle" | undefined;
283
+ list?: "name" | "hidden" | "description" | "primary" | "secondary" | "subtitle" | undefined;
284
284
  card?: "name" | "hidden" | "description" | "subtitle" | undefined;
285
285
  modal?: ColumnModalOption | undefined;
286
286
  })[];
@@ -24,9 +24,6 @@ export * from './PageDialogs/BulkConfirmationDialog';
24
24
  export * from './PageDialogs/MultiSelectDialog';
25
25
  export * from './PageDialogs/PageDialog';
26
26
  export * from './PageDialogs/useSelectDialog';
27
- export * from './PageForm/Inputs/FormGroupSelect';
28
- export * from './PageForm/Inputs/FormGroupSelectOption';
29
- export * from './PageForm/Inputs/FormGroupTextArea';
30
27
  export * from './PageForm/Inputs/FormGroupTextInput';
31
28
  export * from './PageForm/Inputs/PageFormCheckbox';
32
29
  export * from './PageForm/Inputs/PageFormDataEditor';
@@ -1,125 +1,121 @@
1
- declare function f_e(e: any): any;
2
- declare function kAe(e: any): any;
1
+ declare function Hxe(e: any): any;
2
+ declare function CAe(e: any): any;
3
+ declare function PAe(e: any): any;
4
+ declare function ld(e: any): any;
5
+ declare var Ixe: any;
6
+ declare var Mxe: any;
7
+ declare var Lxe: any;
8
+ declare var yi: any;
9
+ declare function $Ae(e: any): any;
10
+ declare function jAe(e: any): any;
11
+ declare function B4(e: any): any;
12
+ declare const AAe: R.Context<undefined>;
3
13
  declare function DAe(e: any): any;
4
- declare function sd(e: any): any;
5
- declare var t_e: any;
6
- declare var e_e: any;
7
- declare var n_e: any;
8
- declare var bi: any;
9
- declare function MAe(e: any): any;
10
- declare function IAe(e: any): any;
11
- declare function sI(e: any): any;
12
- declare const PAe: L.Context<undefined>;
13
- declare function LAe(e: any): any;
14
- declare function Gl(e: any): any;
15
- declare function XAe(e: any): any;
16
- declare function Y5e(e: any): any;
17
- declare function JAe(e: any): any;
18
- declare function S7(e: any): any;
19
- declare function Zs(e: any): any;
20
- declare var dI: any;
21
- declare function cI(e: any): any;
22
- declare function uTe(e: any): any;
23
- declare function KAe(e: any): any;
24
- declare var uI: any;
14
+ declare function b7(e: any): any;
15
+ declare function gl(e: any): any;
16
+ declare var q4: any;
17
+ declare function V4(e: any): any;
18
+ declare function aTe(e: any): any;
19
+ declare function HAe(e: any): any;
20
+ declare var U4: any;
25
21
  declare var mt: any;
26
22
  declare var zt: any;
27
23
  declare function Ks(e: any): any;
28
- declare const MO: L.Context<{
24
+ declare const kO: R.Context<{
29
25
  addAlert: () => null;
30
26
  removeAlert: () => null;
31
27
  replaceAlert: () => null;
32
28
  removeAlerts: () => null;
33
29
  }>;
34
- declare function L7(e: any): any;
35
- declare function oTe(e: any): any;
36
- declare function R7(e: any): any;
37
- declare function C0(e: any): any;
38
- declare function NAe(e: any): any;
39
- declare function Zp(e: any): any;
40
- declare function FAe(e: any): any;
41
- declare const ZC: L.Context<{
30
+ declare function j7(e: any): any;
31
+ declare function eTe(e: any): any;
32
+ declare function D7(e: any): any;
33
+ declare function O0(e: any): any;
34
+ declare function IAe(e: any): any;
35
+ declare function av(e: any): any;
36
+ declare function LAe(e: any): any;
37
+ declare const oA: R.Context<{
42
38
  columns: number;
43
39
  }>;
44
- declare function zAe(e: any): any;
45
- declare function BAe(e: any): any;
46
- declare function WAe(e: any): any;
47
- declare function xu(e: any): any;
48
- declare function Q1e(e: any): any;
49
- declare function l_e(e: any): any;
50
- declare function N7(e: any): any;
51
- declare function Z1e(e: any): any;
52
- declare function NCe(e: any): any;
53
- declare function zCe(e: any): any;
54
- declare function QAe(e: any): any;
55
- declare function eTe(e: any): any;
40
+ declare function RAe(e: any): any;
41
+ declare function FAe(e: any): any;
42
+ declare function NAe(e: any): any;
43
+ declare function wu(e: any): any;
44
+ declare function Dxe(e: any): any;
45
+ declare function Wxe(e: any): any;
46
+ declare function M7(e: any): any;
47
+ declare function Pxe(e: any): any;
48
+ declare function MCe(e: any): any;
49
+ declare function LCe(e: any): any;
50
+ declare function GAe(e: any): any;
51
+ declare function YAe(e: any): any;
52
+ declare function ICe(e: any): any;
53
+ declare function KAe(e: any): any;
54
+ declare function y3(e: any): any;
55
+ declare function ZAe(e: any): any;
56
+ declare function XAe(e: any): any;
57
+ declare function JAe(e: any): any;
56
58
  declare function FCe(e: any): any;
57
- declare function tTe(e: any): any;
58
- declare function S3(e: any): any;
59
- declare function nTe(e: any): any;
60
- declare function rTe(e: any): any;
61
- declare function aTe(e: any): any;
62
- declare function VCe(e: any): any;
63
- declare function HCe(e: any): any;
64
- declare function qCe(e: any): any;
65
- declare function iTe(e: any): any;
66
- declare function GCe(): any;
67
- declare const O3: L.Context<{
59
+ declare function WCe(e: any): any;
60
+ declare function BCe(e: any): any;
61
+ declare function QAe(e: any): any;
62
+ declare function VCe(): any;
63
+ declare const b3: R.Context<{
68
64
  isOpen: boolean;
69
65
  setState: () => {};
70
66
  }>;
71
- declare function WCe(e: any): any;
72
- declare function KCe(e: any): any;
73
- declare function FS(e: any): any;
74
- declare function Rh(e: any): any;
75
- declare function Kw(e: any): any;
76
- declare function iAe(e: any): any;
77
- declare function s5e(e: any): any;
78
- declare function n5e(e: any): any;
79
- declare function cTe(e: any): any;
80
- declare const hAe: any;
81
- declare function wi(e: any): any;
82
- declare function G5e(e: any): any;
83
- declare const jAe: L.Context<() => null>;
84
- declare const Xs: L.Context<{}[]>;
85
- declare function W7(e: any): any;
86
- declare function z7(e: any): any;
67
+ declare function RCe(e: any): any;
68
+ declare function HCe(e: any): any;
69
+ declare function MS(e: any): any;
70
+ declare function Dh(e: any): any;
71
+ declare function Uw(e: any): any;
72
+ declare function tAe(e: any): any;
73
+ declare function a5e(e: any): any;
74
+ declare function Jxe(e: any): any;
75
+ declare function rTe(e: any): any;
76
+ declare const cAe: any;
77
+ declare function xi(e: any): any;
78
+ declare function V5e(e: any): any;
79
+ declare const TAe: R.Context<() => null>;
80
+ declare const Qs: R.Context<{}[]>;
81
+ declare function UM(e: any): any;
82
+ declare function VM(e: any): any;
87
83
  declare function Jt(e: any): any;
88
- declare function I1(e: any): any;
89
- declare var t5e: any;
90
- declare function tAe(e: any, t: any, n: any): void;
91
- declare function nAe(e: any, t: any, n: any): void;
92
- declare function rAe(e: any, t: any, n: any): void;
93
- declare function B5e(e: any, t: any): 1 | -1 | 0;
94
- declare function Ou(e: any, t: any): 1 | -1 | 0;
95
- declare function W5e(e: any, t: any): 1 | -1 | 0;
96
- declare function EAe(e: any): {
84
+ declare function U1(e: any): any;
85
+ declare var Xxe: any;
86
+ declare function XCe(e: any, t: any, n: any): void;
87
+ declare function JCe(e: any, t: any, n: any): void;
88
+ declare function QCe(e: any, t: any, n: any): void;
89
+ declare function N5e(e: any, t: any): 1 | -1 | 0;
90
+ declare function Su(e: any, t: any): 1 | -1 | 0;
91
+ declare function R5e(e: any, t: any): 1 | -1 | 0;
92
+ declare function OAe(e: any): {
97
93
  title: string;
98
94
  variant: string;
99
95
  timeout: number;
100
96
  };
101
- declare function QCe(e: any, t: any): any;
102
- declare function S0(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;
103
- declare const WC: "var(--pf-global--danger-color--100)";
104
- declare const VC: "var(--pf-global--disabled-color--100)";
105
- declare const BC: "var(--pf-global--info-color--100)";
106
- declare const RAe: "var(--pf-global--link--Color)";
107
- declare const zC: "var(--pf-global--success-color--100)";
108
- declare const fI: "var(--pf-global--warning-color--100)";
109
- declare function lTe(e: any): any;
110
- declare function eAe(e: any, t: any): any;
111
- declare function Rn(e: any): boolean | undefined;
112
- declare function z5e(): L.Dispatch<L.SetStateAction<undefined>>;
113
- declare function YAe(): (n: any) => void;
114
- declare function HAe(e: any): any;
115
- declare function UAe(e: any): any;
116
- declare function i_e(e: any): any;
117
- declare function o_e(e: any): any;
118
- declare function Zk(e: any, t: any): {
97
+ declare function KCe(e: any, t: any): any;
98
+ declare function w0(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;
99
+ declare const XC: "var(--pf-global--danger-color--100)";
100
+ declare const QC: "var(--pf-global--disabled-color--100)";
101
+ declare const JC: "var(--pf-global--info-color--100)";
102
+ declare const MAe: "var(--pf-global--link--Color)";
103
+ declare const ZC: "var(--pf-global--success-color--100)";
104
+ declare const H4: "var(--pf-global--warning-color--100)";
105
+ declare function tTe(e: any): any;
106
+ declare function ZCe(e: any, t: any): any;
107
+ declare function Ln(e: any): boolean | undefined;
108
+ declare function L5e(): R.Dispatch<R.SetStateAction<undefined>>;
109
+ declare function UAe(): (n: any) => void;
110
+ declare function BAe(e: any): any;
111
+ declare function WAe(e: any): any;
112
+ declare function Fxe(e: any): any;
113
+ declare function zxe(e: any): any;
114
+ declare function Hk(e: any, t: any): {
119
115
  filtered: never[];
120
116
  setFilterFn: (c: any) => void;
121
117
  };
122
- declare function jt(): ({
118
+ declare function xt(): ({
123
119
  by: string;
124
120
  cancelText: string;
125
121
  canceledText: string;
@@ -156,8 +152,8 @@ declare function jt(): ({
156
152
  unknownError: string;
157
153
  validating: string;
158
154
  } | (() => void))[];
159
- declare function aAe(): (t: any, n: any) => any;
160
- declare function fTe(e: any): {
155
+ declare function eAe(): (t: any, n: any) => any;
156
+ declare function iTe(e: any): {
161
157
  selectedItems: any[];
162
158
  selectItem: (h: any) => void;
163
159
  unselectItem: (h: any) => void;
@@ -169,43 +165,43 @@ declare function fTe(e: any): {
169
165
  keyFn: any;
170
166
  unselectItems: (h: any) => void;
171
167
  page: number;
172
- setPage: L.Dispatch<L.SetStateAction<number>>;
168
+ setPage: R.Dispatch<R.SetStateAction<number>>;
173
169
  perPage: number;
174
- setPerPage: L.Dispatch<L.SetStateAction<number>>;
170
+ setPerPage: R.Dispatch<R.SetStateAction<number>>;
175
171
  sort: any;
176
- setSort: L.Dispatch<any>;
172
+ setSort: R.Dispatch<any>;
177
173
  sortDirection: any;
178
- setSortDirection: L.Dispatch<any>;
174
+ setSortDirection: R.Dispatch<any>;
179
175
  filterState: any;
180
- setFilterState: L.Dispatch<any>;
176
+ setFilterState: R.Dispatch<any>;
181
177
  clearAllFilters: () => void;
182
178
  itemCount: number | undefined;
183
179
  pageItems: never[] | undefined;
184
180
  error: any;
185
181
  };
186
- declare function TAe(): string;
187
- declare function IO(): {
182
+ declare function SAe(): string;
183
+ declare function PO(): {
188
184
  addAlert: () => null;
189
185
  removeAlert: () => null;
190
186
  replaceAlert: () => null;
191
187
  removeAlerts: () => null;
192
188
  };
193
189
  declare function Ea(): ((() => void) | undefined)[];
194
- declare function BCe(): (a: any) => void;
195
- declare function Uh(): {
190
+ declare function NCe(): (a: any) => void;
191
+ declare function zh(): {
196
192
  isOpen: boolean;
197
193
  setState: () => {};
198
194
  };
199
- declare function sTe(): (n: any, r: any) => void;
200
- declare function Lh(e: any): {
195
+ declare function nTe(): (n: any, r: any) => void;
196
+ declare function jh(e: any): {
201
197
  paged: never[];
202
198
  page: number;
203
- setPage: L.Dispatch<L.SetStateAction<number>>;
199
+ setPage: R.Dispatch<R.SetStateAction<number>>;
204
200
  perPage: number;
205
- setPerPage: L.Dispatch<L.SetStateAction<number>>;
201
+ setPerPage: R.Dispatch<R.SetStateAction<number>>;
206
202
  };
207
- declare function ZAe(e: any): (p: any, y: any) => void;
208
- declare function Yk(e: any, t: any, n: any): {
203
+ declare function qAe(e: any): (p: any, y: any) => void;
204
+ declare function Vk(e: any, t: any, n: any): {
209
205
  selectedItems: any[];
210
206
  selectItem: (m: any) => void;
211
207
  unselectItem: (m: any) => void;
@@ -217,7 +213,7 @@ declare function Yk(e: any, t: any, n: any): {
217
213
  keyFn: any;
218
214
  unselectItems: (m: any) => void;
219
215
  };
220
- declare function m5e(e: any, t: any): {
216
+ declare function u5e(e: any, t: any): {
221
217
  selectedItems: any[];
222
218
  selectItem: (h: any) => void;
223
219
  unselectItem: (h: any) => void;
@@ -229,14 +225,14 @@ declare function m5e(e: any, t: any): {
229
225
  keyFn: any;
230
226
  unselectItems: (h: any) => void;
231
227
  };
232
- declare function Js(): {};
233
- declare function $Ae(e: any): () => void;
234
- declare function Kk(e: any): {
228
+ declare function ec(): {};
229
+ declare function kAe(e: any): () => void;
230
+ declare function Uk(e: any): {
235
231
  sorted: any;
236
232
  sort: undefined;
237
- setSort: L.Dispatch<L.SetStateAction<undefined>>;
233
+ setSort: R.Dispatch<R.SetStateAction<undefined>>;
238
234
  };
239
- declare function GAe(e: any, t: any, n: any): {
235
+ declare function VAe(e: any, t: any, n: any): {
240
236
  allSelected: boolean;
241
237
  filtered: never[];
242
238
  isSelected: (m: any) => boolean;
@@ -250,34 +246,34 @@ declare function GAe(e: any, t: any, n: any): {
250
246
  selectPage: () => void;
251
247
  selectedItems: any[];
252
248
  setFilterFn: (c: any) => void;
253
- setPage: L.Dispatch<L.SetStateAction<number>>;
254
- setPerPage: L.Dispatch<L.SetStateAction<number>>;
249
+ setPage: R.Dispatch<R.SetStateAction<number>>;
250
+ setPerPage: R.Dispatch<R.SetStateAction<number>>;
255
251
  setSearch: any;
256
252
  setSearchFn: (h: any) => void;
257
- setSort: L.Dispatch<L.SetStateAction<undefined>>;
253
+ setSort: R.Dispatch<R.SetStateAction<undefined>>;
258
254
  sort: undefined;
259
255
  sorted: any;
260
256
  unselectAll: () => void;
261
257
  unselectItem: (m: any) => void;
262
258
  };
263
- declare function _Ae(e: any): {
259
+ declare function pAe(e: any): {
264
260
  page: number;
265
- setPage: L.Dispatch<L.SetStateAction<number>>;
261
+ setPage: R.Dispatch<R.SetStateAction<number>>;
266
262
  perPage: number;
267
- setPerPage: L.Dispatch<L.SetStateAction<number>>;
263
+ setPerPage: R.Dispatch<R.SetStateAction<number>>;
268
264
  sort: any;
269
- setSort: L.Dispatch<any>;
265
+ setSort: R.Dispatch<any>;
270
266
  sortDirection: any;
271
- setSortDirection: L.Dispatch<any>;
267
+ setSortDirection: R.Dispatch<any>;
272
268
  filterState: any;
273
- setFilterState: L.Dispatch<any>;
269
+ setFilterState: R.Dispatch<any>;
274
270
  clearAllFilters: () => void;
275
271
  };
276
- declare function a_e(e: any): any;
277
- declare function VAe(e: any, t: any): any;
278
- declare function r_e(e: any): any;
279
- declare function jk(e: any): any;
280
- declare function Pk(e: any): any;
281
- declare function A$(): string;
282
- import * as L from "react";
283
- export { f_e as BulkSelector, kAe as BytesCell, DAe as CapacityCell, sd as Collapse, t_e as ColumnCardOption, e_e as ColumnListOption, n_e as ColumnModalOption, bi as ColumnTableOption, MAe as CopyCell, IAe as DateCell, sI as DateTimeCell, PAe as DialogContext, LAe as ElapsedTimeCell, Gl as FormGroupSelect, XAe as FormGroupSelectOption, Y5e as FormGroupTextArea, JAe as FormGroupTextInput, S7 as FrameworkTranslationsProvider, Zs as Help, dI as LabelColorE, cI as LabelsCell, uTe as LoadingPage, KAe as MultiSelectDialog, uI as PFColorE, mt as PageActionSelection, zt as PageActionType, Ks as PageActions, MO as PageAlertToasterContext, L7 as PageAlertToasterProvider, oTe as PageApp, R7 as PageBody, C0 as PageChartContainer, NAe as PageDashboard, Zp as PageDashboardCard, FAe as PageDashboardChart, ZC as PageDashboardContext, zAe as PageDashboardCount, BAe as PageDashboardDonutCard, WAe as PageDashboardGettingStarted, xu as PageDetail, Q1e as PageDetails, l_e as PageDetailsFromColumns, N7 as PageDialogProvider, Z1e as PageDonutChart, NCe as PageForm, zCe as PageFormCancelButton, QAe as PageFormCheckbox, eTe as PageFormDataEditor, FCe as PageFormGrid, tTe as PageFormSelect, S3 as PageFormSubmitButton, nTe as PageFormSwitch, rTe as PageFormTextArea, aTe as PageFormTextInput, VCe as PageFramework, HCe as PageHeader, qCe as PageLayout, iTe as PageMasthead, GCe as PageMastheadToggle, O3 as PageNavSideBarContext, WCe as PageNavSideBarProvider, KCe as PageNavigation, FS as PageTab, Rh as PageTable, Kw as PageTableCards, iAe as PageTabs, s5e as PageToolbar, n5e as PageToolbarFilters, cTe as PageWizard, hAe as RunningIcon, wi as Scrollable, G5e as SelectDialog, jAe as SetDialogContext, Xs as SettingsContext, W7 as SettingsDialog, z7 as SettingsProvider, Jt as TableColumnCell, I1 as TextCell, t5e as ToolbarFilterType, tAe as addNavigationItem, nAe as addNavigationItemAfter, rAe as addNavigationItemBefore, B5e as compareNumbers, Ou as compareStrings, W5e as compareUnknowns, EAe as errorToAlertProps, QCe as findNavigationItemById, S0 as getPatternflyColor, WC as pfDanger, VC as pfDisabled, BC as pfInfo, RAe as pfLink, zC as pfSuccess, fI as pfWarning, lTe as removeLeadingSlash, eAe as removeNavigationItemById, Rn as useBreakpoint, z5e as useBulkActionDialog, YAe as useBulkConfirmation, HAe as useColumnsWithoutExpandedRow, UAe as useColumnsWithoutSort, i_e as useDescriptionColumns, o_e as useExpandedColumns, Zk as useFiltered, jt as useFrameworkTranslations, aAe as useGetPageUrl, fTe as useInMemoryView, TAe as useOrientation, IO as usePageAlertToaster, Ea as usePageDialog, BCe as usePageNavBarClick, Uh as usePageNavSideBar, sTe as usePageNavigate, Lh as usePaged, ZAe as useSelectDialog, Yk as useSelected, m5e as useSelectedInMemory, Js as useSettings, $Ae as useSettingsDialog, Kk as useSorted, GAe as useTableItems, _Ae as useView, a_e as useVisibleCardColumns, VAe as useVisibleColumns, r_e as useVisibleListColumns, jk as useVisibleModalColumns, Pk as useVisibleTableColumns, A$ as useWindowSize };
272
+ declare function Nxe(e: any): any;
273
+ declare function zAe(e: any, t: any): any;
274
+ declare function Rxe(e: any): any;
275
+ declare function Wk(e: any): any;
276
+ declare function zk(e: any): any;
277
+ declare function wj(): string;
278
+ import * as R from "react";
279
+ export { Hxe as BulkSelector, CAe as BytesCell, PAe as CapacityCell, ld as Collapse, Ixe as ColumnCardOption, Mxe as ColumnListOption, Lxe as ColumnModalOption, yi as ColumnTableOption, $Ae as CopyCell, jAe as DateCell, B4 as DateTimeCell, AAe as DialogContext, DAe as ElapsedTimeCell, b7 as FrameworkTranslationsProvider, gl as Help, q4 as LabelColorE, V4 as LabelsCell, aTe as LoadingPage, HAe as MultiSelectDialog, U4 as PFColorE, mt as PageActionSelection, zt as PageActionType, Ks as PageActions, kO as PageAlertToasterContext, j7 as PageAlertToasterProvider, eTe as PageApp, D7 as PageBody, O0 as PageChartContainer, IAe as PageDashboard, av as PageDashboardCard, LAe as PageDashboardChart, oA as PageDashboardContext, RAe as PageDashboardCount, FAe as PageDashboardDonutCard, NAe as PageDashboardGettingStarted, wu as PageDetail, Dxe as PageDetails, Wxe as PageDetailsFromColumns, M7 as PageDialogProvider, Pxe as PageDonutChart, MCe as PageForm, LCe as PageFormCancelButton, GAe as PageFormCheckbox, YAe as PageFormDataEditor, ICe as PageFormGrid, KAe as PageFormSelect, y3 as PageFormSubmitButton, ZAe as PageFormSwitch, XAe as PageFormTextArea, JAe as PageFormTextInput, FCe as PageFramework, WCe as PageHeader, BCe as PageLayout, QAe as PageMasthead, VCe as PageMastheadToggle, b3 as PageNavSideBarContext, RCe as PageNavSideBarProvider, HCe as PageNavigation, MS as PageTab, Dh as PageTable, Uw as PageTableCards, tAe as PageTabs, a5e as PageToolbar, Jxe as PageToolbarFilters, rTe as PageWizard, cAe as RunningIcon, xi as Scrollable, V5e as SelectDialog, TAe as SetDialogContext, Qs as SettingsContext, UM as SettingsDialog, VM as SettingsProvider, Jt as TableColumnCell, U1 as TextCell, Xxe as ToolbarFilterType, XCe as addNavigationItem, JCe as addNavigationItemAfter, QCe as addNavigationItemBefore, N5e as compareNumbers, Su as compareStrings, R5e as compareUnknowns, OAe as errorToAlertProps, KCe as findNavigationItemById, w0 as getPatternflyColor, XC as pfDanger, QC as pfDisabled, JC as pfInfo, MAe as pfLink, ZC as pfSuccess, H4 as pfWarning, tTe as removeLeadingSlash, ZCe as removeNavigationItemById, Ln as useBreakpoint, L5e as useBulkActionDialog, UAe as useBulkConfirmation, BAe as useColumnsWithoutExpandedRow, WAe as useColumnsWithoutSort, Fxe as useDescriptionColumns, zxe as useExpandedColumns, Hk as useFiltered, xt as useFrameworkTranslations, eAe as useGetPageUrl, iTe as useInMemoryView, SAe as useOrientation, PO as usePageAlertToaster, Ea as usePageDialog, NCe as usePageNavBarClick, zh as usePageNavSideBar, nTe as usePageNavigate, jh as usePaged, qAe as useSelectDialog, Vk as useSelected, u5e as useSelectedInMemory, ec as useSettings, kAe as useSettingsDialog, Uk as useSorted, VAe as useTableItems, pAe as useView, Nxe as useVisibleCardColumns, zAe as useVisibleColumns, Rxe as useVisibleListColumns, Wk as useVisibleModalColumns, zk as useVisibleTableColumns, wj as useWindowSize };