@ansible/ansible-ui-framework 2.4.587 → 2.4.589

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,18 +1,9 @@
1
- import { ReactNode } from 'react';
2
1
  import { FieldPath, FieldPathValue, FieldValues, Validate } from 'react-hook-form';
3
- import { PageSelectOption } from '../../PageInputs/PageSelectOption';
2
+ import { PageMultiSelectProps } from '../../PageInputs/PageMultiSelect';
3
+ import { PageFormGroupProps } from './PageFormGroup';
4
4
  export type PageFormMultiSelectProps<TFieldValues extends FieldValues = FieldValues, TFieldName extends FieldPath<TFieldValues> = FieldPath<TFieldValues>, ValueT = FieldPathValue<TFieldValues, TFieldName>> = {
5
- id?: string;
6
5
  name: TFieldName;
7
- label?: string;
8
- labelHelpTitle?: string;
9
- labelHelp?: string | string[] | ReactNode;
10
- placeholderText?: string;
11
- options: PageSelectOption<ValueT>[];
12
- helperText?: string;
13
- isDisabled?: boolean;
14
- isReadOnly?: boolean;
15
- isRequired?: boolean;
16
6
  validate?: Validate<FieldPathValue<TFieldValues, TFieldName>, TFieldValues> | Record<string, Validate<FieldPathValue<TFieldValues, TFieldName>, TFieldValues>>;
17
- };
7
+ isReadOnly?: boolean;
8
+ } & Pick<PageMultiSelectProps<ValueT>, 'id' | 'placeholder' | 'options' | 'footer' | 'isDisabled'> & Pick<PageFormGroupProps, 'label' | 'labelHelp' | 'labelHelpTitle' | 'additionalControls' | 'isRequired' | 'helperText'>;
18
9
  export declare function PageFormMultiSelect<TFieldValues extends FieldValues = FieldValues, TFieldName extends FieldPath<TFieldValues> = FieldPath<TFieldValues>>(props: PageFormMultiSelectProps<TFieldValues, TFieldName>): import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,9 @@
1
+ import { FieldPath, FieldPathValue, FieldValues, Validate } from 'react-hook-form';
2
+ import { PageSingleSelectProps } from '../../PageInputs/PageSingleSelect';
3
+ import { PageFormGroupProps } from './PageFormGroup';
4
+ export type PageFormSingleSelectProps<TFieldValues extends FieldValues = FieldValues, TFieldName extends FieldPath<TFieldValues> = FieldPath<TFieldValues>, ValueT = FieldPathValue<TFieldValues, TFieldName>> = {
5
+ name: TFieldName;
6
+ validate?: Validate<FieldPathValue<TFieldValues, TFieldName>, TFieldValues> | Record<string, Validate<FieldPathValue<TFieldValues, TFieldName>, TFieldValues>>;
7
+ isReadOnly?: boolean;
8
+ } & Pick<PageSingleSelectProps<ValueT>, 'id' | 'placeholder' | 'options' | 'footer' | 'isDisabled' | 'isRequired'> & Pick<PageFormGroupProps, 'label' | 'labelHelp' | 'labelHelpTitle' | 'additionalControls' | 'isRequired' | 'helperText'>;
9
+ export declare function PageFormSingleSelect<TFieldValues extends FieldValues = FieldValues, TFieldName extends FieldPath<TFieldValues> = FieldPath<TFieldValues>>(props: PageFormSingleSelectProps<TFieldValues, TFieldName>): import("react/jsx-runtime").JSX.Element;
@@ -1,6 +1,4 @@
1
1
  import { ReactNode } from 'react';
2
- import './PageMultiSelect.css';
3
- import './PageSelect.css';
4
2
  import { PageSelectOption } from './PageSelectOption';
5
3
  export interface PageMultiSelectProps<ValueT> {
6
4
  id?: string;
@@ -1,16 +1,14 @@
1
1
  import { ReactNode } from 'react';
2
- import './PageSelect.css';
3
2
  import { PageSelectOption } from './PageSelectOption';
4
- import './PageSingleSelect.css';
5
3
  export interface PageSingleSelectProps<ValueT> {
6
4
  id?: string;
7
5
  icon?: ReactNode;
8
- placeholder: string;
6
+ placeholder: ReactNode;
9
7
  value: ValueT;
10
8
  onSelect: (value: ValueT) => void;
11
9
  options: PageSelectOption<ValueT>[];
12
10
  footer?: ReactNode;
13
11
  isRequired?: boolean;
14
- label?: string;
12
+ isDisabled?: boolean;
15
13
  }
16
14
  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" | "description" | "primary" | "secondary" | "subtitle" | undefined;
94
+ list?: "name" | "hidden" | "primary" | "secondary" | "description" | "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" | "description" | "primary" | "secondary" | "subtitle" | undefined;
111
+ list?: "name" | "hidden" | "primary" | "secondary" | "description" | "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" | "description" | "primary" | "secondary" | "subtitle" | undefined;
128
+ list?: "name" | "hidden" | "primary" | "secondary" | "description" | "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" | "description" | "primary" | "secondary" | "subtitle" | undefined;
145
+ list?: "name" | "hidden" | "primary" | "secondary" | "description" | "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" | "description" | "primary" | "secondary" | "subtitle" | undefined;
162
+ list?: "name" | "hidden" | "primary" | "secondary" | "description" | "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" | "description" | "primary" | "secondary" | "subtitle" | undefined;
179
+ list?: "name" | "hidden" | "primary" | "secondary" | "description" | "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" | "description" | "primary" | "secondary" | "subtitle" | undefined;
198
+ list?: "name" | "hidden" | "primary" | "secondary" | "description" | "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" | "description" | "primary" | "secondary" | "subtitle" | undefined;
215
+ list?: "name" | "hidden" | "primary" | "secondary" | "description" | "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" | "description" | "primary" | "secondary" | "subtitle" | undefined;
232
+ list?: "name" | "hidden" | "primary" | "secondary" | "description" | "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" | "description" | "primary" | "secondary" | "subtitle" | undefined;
249
+ list?: "name" | "hidden" | "primary" | "secondary" | "description" | "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" | "description" | "primary" | "secondary" | "subtitle" | undefined;
266
+ list?: "name" | "hidden" | "primary" | "secondary" | "description" | "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" | "description" | "primary" | "secondary" | "subtitle" | undefined;
283
+ list?: "name" | "hidden" | "primary" | "secondary" | "description" | "subtitle" | undefined;
284
284
  card?: "name" | "hidden" | "description" | "subtitle" | undefined;
285
285
  modal?: ColumnModalOption | undefined;
286
286
  })[];
@@ -1,116 +1,116 @@
1
- declare function n2e(e: any): any;
2
- declare function NAe(e: any): any;
3
- declare function WAe(e: any): any;
4
- declare function Qd(e: any): any;
5
- declare var Gxe: any;
6
- declare var Hxe: any;
7
- declare var qxe: any;
8
- declare var Wa: any;
1
+ declare function a2e(e: any): any;
9
2
  declare function BAe(e: any): any;
10
- declare function VAe(e: any): any;
11
- declare function eL(e: any): any;
12
- declare const FAe: C.Context<undefined>;
13
- declare function UAe(e: any): any;
14
- declare function pI(e: any): any;
15
- declare function oA(e: any): any;
16
- declare var iL: any;
17
- declare function tL(e: any): any;
18
- declare function pEe(e: any): any;
19
- declare function nEe(e: any): any;
20
- declare var nL: any;
3
+ declare function HAe(e: any): any;
4
+ declare function th(e: any): any;
5
+ declare var Kxe: any;
6
+ declare var Yxe: any;
7
+ declare var Xxe: any;
8
+ declare var Ba: any;
9
+ declare function GAe(e: any): any;
10
+ declare function qAe(e: any): any;
11
+ declare function rL(e: any): any;
12
+ declare const VAe: C.Context<undefined>;
13
+ declare function YAe(e: any): any;
14
+ declare function yI(e: any): any;
15
+ declare function XO(e: any): any;
16
+ declare var lL: any;
17
+ declare function iL(e: any): any;
18
+ declare function bEe(e: any): any;
19
+ declare function oEe(e: any): any;
20
+ declare var aL: any;
21
21
  declare var Ot: any;
22
22
  declare var Jt: any;
23
- declare function Ic(e: any): any;
24
- declare const UO: C.Context<{
23
+ declare function Lc(e: any): any;
24
+ declare const GO: C.Context<{
25
25
  addAlert: () => null;
26
26
  removeAlert: () => null;
27
27
  replaceAlert: () => null;
28
28
  removeAlerts: () => null;
29
29
  }>;
30
- declare function EI(e: any): any;
31
- declare function fEe(e: any): any;
32
- declare function LAe(e: any): any;
33
- declare function Tg(e: any): any;
34
- declare function GAe(e: any): any;
35
- declare function ly(e: any): any;
36
- declare function qAe(e: any): any;
37
- declare const aA: C.Context<{
30
+ declare function $I(e: any): any;
31
+ declare function pEe(e: any): any;
32
+ declare function WAe(e: any): any;
33
+ declare function Ag(e: any): any;
34
+ declare function XAe(e: any): any;
35
+ declare function sy(e: any): any;
36
+ declare function ZAe(e: any): any;
37
+ declare const sA: C.Context<{
38
38
  columns: number;
39
39
  }>;
40
- declare function YAe(e: any): any;
41
- declare function XAe(e: any): any;
42
- declare function KAe(e: any): any;
43
- declare function pf(e: any): any;
40
+ declare function JAe(e: any): any;
41
+ declare function eEe(e: any): any;
42
+ declare function QAe(e: any): any;
43
+ declare function gf(e: any): any;
44
+ declare function qxe(e: any): any;
45
+ declare function t2e(e: any): any;
46
+ declare function jI(e: any): any;
44
47
  declare function Uxe(e: any): any;
45
- declare function Jxe(e: any): any;
46
- declare function kI(e: any): any;
47
- declare function Wxe(e: any): any;
48
- declare function HTe(e: any): any;
49
- declare function qTe(e: any): any;
50
- declare function iEe(e: any): any;
51
- declare function aEe(e: any): any;
52
- declare function GTe(e: any): any;
53
- declare function oEe(e: any): any;
54
- declare function x$(e: any): any;
55
- declare function lEe(e: any): any;
48
+ declare function YTe(e: any): any;
49
+ declare function XTe(e: any): any;
56
50
  declare function sEe(e: any): any;
57
51
  declare function cEe(e: any): any;
58
- declare function XTe(e: any): any;
59
- declare function JTe(e: any): any;
60
- declare function QTe(e: any): any;
52
+ declare function KTe(e: any): any;
61
53
  declare function uEe(e: any): any;
62
- declare function eAe(): any;
63
- declare const w$: C.Context<{
54
+ declare function S$(e: any): any;
55
+ declare function fEe(e: any): any;
56
+ declare function dEe(e: any): any;
57
+ declare function hEe(e: any): any;
58
+ declare function QTe(e: any): any;
59
+ declare function tAe(e: any): any;
60
+ declare function nAe(e: any): any;
61
+ declare function mEe(e: any): any;
62
+ declare function rAe(): any;
63
+ declare const C$: C.Context<{
64
64
  isOpen: boolean;
65
65
  setState: () => {};
66
66
  }>;
67
- declare function YTe(e: any): any;
68
- declare function nAe(e: any): any;
69
- declare function SC(e: any): any;
70
- declare function Dm(e: any): any;
71
- declare function jS(e: any): any;
72
- declare function dAe(e: any): any;
73
- declare function p2e(e: any): any;
74
- declare function c2e(e: any): any;
75
- declare function mEe(e: any): any;
76
- declare const _Ae: any;
77
- declare function Ha(e: any): any;
78
- declare function ewe(e: any): any;
79
- declare const Rc: C.Context<{}[]>;
80
- declare function t4(e: any): any;
81
- declare function e4(e: any): any;
67
+ declare function ZTe(e: any): any;
68
+ declare function aAe(e: any): any;
69
+ declare function CC(e: any): any;
70
+ declare function Im(e: any): any;
71
+ declare function DS(e: any): any;
72
+ declare function pAe(e: any): any;
73
+ declare function y2e(e: any): any;
74
+ declare function d2e(e: any): any;
75
+ declare function yEe(e: any): any;
76
+ declare const SAe: any;
77
+ declare function Ga(e: any): any;
78
+ declare function rwe(e: any): any;
79
+ declare const Nc: C.Context<{}[]>;
80
+ declare function i4(e: any): any;
81
+ declare function r4(e: any): any;
82
82
  declare function fn(e: any): any;
83
- declare function K_(e: any): any;
84
- declare var s2e: any;
85
- declare function sAe(e: any, t: any, n: any): void;
86
- declare function cAe(e: any, t: any, n: any): void;
87
- declare function uAe(e: any, t: any, n: any): void;
88
- declare function K2e(e: any, t: any): 1 | -1 | 0;
89
- declare function gf(e: any, t: any): 1 | -1 | 0;
90
- declare function Y2e(e: any, t: any): 1 | -1 | 0;
91
- declare function RAe(e: any): {
83
+ declare function X_(e: any): any;
84
+ declare var f2e: any;
85
+ declare function fAe(e: any, t: any, n: any): void;
86
+ declare function dAe(e: any, t: any, n: any): void;
87
+ declare function hAe(e: any, t: any, n: any): void;
88
+ declare function J2e(e: any, t: any): 1 | -1 | 0;
89
+ declare function vf(e: any, t: any): 1 | -1 | 0;
90
+ declare function Z2e(e: any, t: any): 1 | -1 | 0;
91
+ declare function zAe(e: any): {
92
92
  title: string;
93
93
  variant: string;
94
94
  timeout: number;
95
95
  };
96
- declare function oAe(e: any, t: any): any;
97
- declare function Cg(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;
98
- declare const XT: "var(--pf-v5-global--danger-color--100)";
99
- declare const JT: "var(--pf-v5-global--disabled-color--100)";
100
- declare const ZT: "var(--pf-v5-global--info-color--100)";
101
- declare const HAe: "var(--pf-v5-global--link--Color)";
102
- declare const KT: "var(--pf-v5-global--success-color--100)";
103
- declare const rL: "var(--pf-v5-global--warning-color--100)";
104
- declare function dEe(e: any): any;
105
- declare function lAe(e: any, t: any): any;
96
+ declare function cAe(e: any, t: any): any;
97
+ declare function Og(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;
98
+ declare const QT: "var(--pf-v5-global--danger-color--100)";
99
+ declare const tA: "var(--pf-v5-global--disabled-color--100)";
100
+ declare const eA: "var(--pf-v5-global--info-color--100)";
101
+ declare const KAe: "var(--pf-v5-global--link--Color)";
102
+ declare const JT: "var(--pf-v5-global--success-color--100)";
103
+ declare const oL: "var(--pf-v5-global--warning-color--100)";
104
+ declare function gEe(e: any): any;
105
+ declare function uAe(e: any, t: any): any;
106
106
  declare function Zn(e: any): boolean | undefined;
107
- declare function q2e(): C.Dispatch<C.SetStateAction<undefined>>;
108
- declare function tEe(): (n: any) => void;
109
- declare function QAe(e: any): any;
110
- declare function JAe(e: any): any;
111
- declare function Xxe(e: any): any;
112
- declare function Zxe(e: any): any;
113
- declare function qP(e: any, t: any): {
107
+ declare function X2e(): C.Dispatch<C.SetStateAction<undefined>>;
108
+ declare function aEe(): (n: any) => void;
109
+ declare function rEe(e: any): any;
110
+ declare function nEe(e: any): any;
111
+ declare function Qxe(e: any): any;
112
+ declare function e2e(e: any): any;
113
+ declare function KP(e: any, t: any): {
114
114
  filtered: never[];
115
115
  setFilterFn: (c: any) => void;
116
116
  };
@@ -151,8 +151,8 @@ declare function Dt(): ({
151
151
  unknownError: string;
152
152
  validating: string;
153
153
  } | (() => void))[];
154
- declare function fAe(): (t: any, n: any) => any;
155
- declare function gEe(e: any): {
154
+ declare function mAe(): (t: any, n: any) => any;
155
+ declare function _Ee(e: any): {
156
156
  selectedItems: any[];
157
157
  selectItem: (h: any) => void;
158
158
  unselectItem: (h: any) => void;
@@ -178,29 +178,29 @@ declare function gEe(e: any): {
178
178
  pageItems: never[] | undefined;
179
179
  error: any;
180
180
  };
181
- declare function MAe(): string;
182
- declare function HO(): {
181
+ declare function NAe(): string;
182
+ declare function qO(): {
183
183
  addAlert: () => null;
184
184
  removeAlert: () => null;
185
185
  replaceAlert: () => null;
186
186
  removeAlerts: () => null;
187
187
  };
188
- declare function Qi(): ((() => void) | undefined)[];
189
- declare function KTe(): (i: any) => void;
190
- declare function A1(): {
188
+ declare function ea(): ((() => void) | undefined)[];
189
+ declare function JTe(): (i: any) => void;
190
+ declare function E1(): {
191
191
  isOpen: boolean;
192
192
  setState: () => {};
193
193
  };
194
- declare function hEe(): (n: any, r: any) => void;
195
- declare function jm(e: any): {
194
+ declare function vEe(): (n: any, r: any) => void;
195
+ declare function Mm(e: any): {
196
196
  paged: never[];
197
197
  page: number;
198
198
  setPage: C.Dispatch<C.SetStateAction<number>>;
199
199
  perPage: number;
200
200
  setPerPage: C.Dispatch<C.SetStateAction<number>>;
201
201
  };
202
- declare function rEe(e: any): (p: any, y: any) => void;
203
- declare function HP(e: any, t: any, n: any): {
202
+ declare function lEe(e: any): (p: any, y: any) => void;
203
+ declare function qP(e: any, t: any, n: any): {
204
204
  selectedItems: any[];
205
205
  selectItem: (m: any) => void;
206
206
  unselectItem: (m: any) => void;
@@ -212,7 +212,7 @@ declare function HP(e: any, t: any, n: any): {
212
212
  keyFn: any;
213
213
  unselectItems: (m: any) => void;
214
214
  };
215
- declare function x2e(e: any, t: any): {
215
+ declare function C2e(e: any, t: any): {
216
216
  selectedItems: any[];
217
217
  selectItem: (h: any) => void;
218
218
  unselectItem: (h: any) => void;
@@ -224,14 +224,14 @@ declare function x2e(e: any, t: any): {
224
224
  keyFn: any;
225
225
  unselectItems: (h: any) => void;
226
226
  };
227
- declare function Lc(): {};
228
- declare function zAe(e: any): () => void;
229
- declare function GP(e: any): {
227
+ declare function Fc(): {};
228
+ declare function UAe(e: any): () => void;
229
+ declare function YP(e: any): {
230
230
  sorted: any;
231
231
  sort: undefined;
232
232
  setSort: C.Dispatch<C.SetStateAction<undefined>>;
233
233
  };
234
- declare function eEe(e: any, t: any, n: any): {
234
+ declare function iEe(e: any, t: any, n: any): {
235
235
  allSelected: boolean;
236
236
  filtered: never[];
237
237
  isSelected: (m: any) => boolean;
@@ -255,7 +255,7 @@ declare function eEe(e: any, t: any, n: any): {
255
255
  unselectAll: () => void;
256
256
  unselectItem: (m: any) => void;
257
257
  };
258
- declare function AAe(e: any): {
258
+ declare function PAe(e: any): {
259
259
  page: number;
260
260
  setPage: C.Dispatch<C.SetStateAction<number>>;
261
261
  perPage: number;
@@ -268,11 +268,11 @@ declare function AAe(e: any): {
268
268
  setFilterState: C.Dispatch<any>;
269
269
  clearAllFilters: () => void;
270
270
  };
271
- declare function Kxe(e: any): any;
272
- declare function ZAe(e: any, t: any): any;
273
- declare function Yxe(e: any): any;
274
- declare function VP(e: any): any;
275
- declare function BP(e: any): any;
276
- declare function u7(): string;
271
+ declare function Jxe(e: any): any;
272
+ declare function tEe(e: any, t: any): any;
273
+ declare function Zxe(e: any): any;
274
+ declare function HP(e: any): any;
275
+ declare function UP(e: any): any;
276
+ declare function h7(): string;
277
277
  import * as C from "react";
278
- export { n2e as BulkSelector, NAe as BytesCell, WAe as CapacityCell, Qd as Collapse, Gxe as ColumnCardOption, Hxe as ColumnListOption, qxe as ColumnModalOption, Wa as ColumnTableOption, BAe as CopyCell, VAe as DateCell, eL as DateTimeCell, FAe as DialogContext, UAe as ElapsedTimeCell, pI as FrameworkTranslationsProvider, oA as Help, iL as LabelColorE, tL as LabelsCell, pEe as LoadingPage, nEe as MultiSelectDialog, nL as PFColorE, Ot as PageActionSelection, Jt as PageActionType, Ic as PageActions, UO as PageAlertToasterContext, EI as PageAlertToasterProvider, fEe as PageApp, LAe as PageBody, Tg as PageChartContainer, GAe as PageDashboard, ly as PageDashboardCard, qAe as PageDashboardChart, aA as PageDashboardContext, YAe as PageDashboardCount, XAe as PageDashboardDonutCard, KAe as PageDashboardGettingStarted, pf as PageDetail, Uxe as PageDetails, Jxe as PageDetailsFromColumns, kI as PageDialogProvider, Wxe as PageDonutChart, HTe as PageForm, qTe as PageFormCancelButton, iEe as PageFormCheckbox, aEe as PageFormDataEditor, GTe as PageFormGrid, oEe as PageFormSelect, x$ as PageFormSubmitButton, lEe as PageFormSwitch, sEe as PageFormTextArea, cEe as PageFormTextInput, XTe as PageFramework, JTe as PageHeader, QTe as PageLayout, uEe as PageMasthead, eAe as PageMastheadToggle, w$ as PageNavSideBarContext, YTe as PageNavSideBarProvider, nAe as PageNavigation, SC as PageTab, Dm as PageTable, jS as PageTableCards, dAe as PageTabs, p2e as PageToolbar, c2e as PageToolbarFilters, mEe as PageWizard, _Ae as RunningIcon, Ha as Scrollable, ewe as SelectDialog, Rc as SettingsContext, t4 as SettingsDialog, e4 as SettingsProvider, fn as TableColumnCell, K_ as TextCell, s2e as ToolbarFilterType, sAe as addNavigationItem, cAe as addNavigationItemAfter, uAe as addNavigationItemBefore, K2e as compareNumbers, gf as compareStrings, Y2e as compareUnknowns, RAe as errorToAlertProps, oAe as findNavigationItemById, Cg as getPatternflyColor, XT as pfDanger, JT as pfDisabled, ZT as pfInfo, HAe as pfLink, KT as pfSuccess, rL as pfWarning, dEe as removeLeadingSlash, lAe as removeNavigationItemById, Zn as useBreakpoint, q2e as useBulkActionDialog, tEe as useBulkConfirmation, QAe as useColumnsWithoutExpandedRow, JAe as useColumnsWithoutSort, Xxe as useDescriptionColumns, Zxe as useExpandedColumns, qP as useFiltered, Dt as useFrameworkTranslations, fAe as useGetPageUrl, gEe as useInMemoryView, MAe as useOrientation, HO as usePageAlertToaster, Qi as usePageDialog, KTe as usePageNavBarClick, A1 as usePageNavSideBar, hEe as usePageNavigate, jm as usePaged, rEe as useSelectDialog, HP as useSelected, x2e as useSelectedInMemory, Lc as useSettings, zAe as useSettingsDialog, GP as useSorted, eEe as useTableItems, AAe as useView, Kxe as useVisibleCardColumns, ZAe as useVisibleColumns, Yxe as useVisibleListColumns, VP as useVisibleModalColumns, BP as useVisibleTableColumns, u7 as useWindowSize };
278
+ export { a2e as BulkSelector, BAe as BytesCell, HAe as CapacityCell, th as Collapse, Kxe as ColumnCardOption, Yxe as ColumnListOption, Xxe as ColumnModalOption, Ba as ColumnTableOption, GAe as CopyCell, qAe as DateCell, rL as DateTimeCell, VAe as DialogContext, YAe as ElapsedTimeCell, yI as FrameworkTranslationsProvider, XO as Help, lL as LabelColorE, iL as LabelsCell, bEe as LoadingPage, oEe as MultiSelectDialog, aL as PFColorE, Ot as PageActionSelection, Jt as PageActionType, Lc as PageActions, GO as PageAlertToasterContext, $I as PageAlertToasterProvider, pEe as PageApp, WAe as PageBody, Ag as PageChartContainer, XAe as PageDashboard, sy as PageDashboardCard, ZAe as PageDashboardChart, sA as PageDashboardContext, JAe as PageDashboardCount, eEe as PageDashboardDonutCard, QAe as PageDashboardGettingStarted, gf as PageDetail, qxe as PageDetails, t2e as PageDetailsFromColumns, jI as PageDialogProvider, Uxe as PageDonutChart, YTe as PageForm, XTe as PageFormCancelButton, sEe as PageFormCheckbox, cEe as PageFormDataEditor, KTe as PageFormGrid, uEe as PageFormSelect, S$ as PageFormSubmitButton, fEe as PageFormSwitch, dEe as PageFormTextArea, hEe as PageFormTextInput, QTe as PageFramework, tAe as PageHeader, nAe as PageLayout, mEe as PageMasthead, rAe as PageMastheadToggle, C$ as PageNavSideBarContext, ZTe as PageNavSideBarProvider, aAe as PageNavigation, CC as PageTab, Im as PageTable, DS as PageTableCards, pAe as PageTabs, y2e as PageToolbar, d2e as PageToolbarFilters, yEe as PageWizard, SAe as RunningIcon, Ga as Scrollable, rwe as SelectDialog, Nc as SettingsContext, i4 as SettingsDialog, r4 as SettingsProvider, fn as TableColumnCell, X_ as TextCell, f2e as ToolbarFilterType, fAe as addNavigationItem, dAe as addNavigationItemAfter, hAe as addNavigationItemBefore, J2e as compareNumbers, vf as compareStrings, Z2e as compareUnknowns, zAe as errorToAlertProps, cAe as findNavigationItemById, Og as getPatternflyColor, QT as pfDanger, tA as pfDisabled, eA as pfInfo, KAe as pfLink, JT as pfSuccess, oL as pfWarning, gEe as removeLeadingSlash, uAe as removeNavigationItemById, Zn as useBreakpoint, X2e as useBulkActionDialog, aEe as useBulkConfirmation, rEe as useColumnsWithoutExpandedRow, nEe as useColumnsWithoutSort, Qxe as useDescriptionColumns, e2e as useExpandedColumns, KP as useFiltered, Dt as useFrameworkTranslations, mAe as useGetPageUrl, _Ee as useInMemoryView, NAe as useOrientation, qO as usePageAlertToaster, ea as usePageDialog, JTe as usePageNavBarClick, E1 as usePageNavSideBar, vEe as usePageNavigate, Mm as usePaged, lEe as useSelectDialog, qP as useSelected, C2e as useSelectedInMemory, Fc as useSettings, UAe as useSettingsDialog, YP as useSorted, iEe as useTableItems, PAe as useView, Jxe as useVisibleCardColumns, tEe as useVisibleColumns, Zxe as useVisibleListColumns, HP as useVisibleModalColumns, UP as useVisibleTableColumns, h7 as useWindowSize };