@ansible/ansible-ui-framework 2.4.1171 → 2.4.1190

Sign up to get free protection for your applications and to get access to all the features.
Files changed (26) hide show
  1. package/framework/PageActions/PageAction.d.ts +2 -0
  2. package/framework/PageActions/PageActionButton.d.ts +3 -2
  3. package/framework/PageForm/GenericForm.d.ts +1 -1
  4. package/framework/PageForm/Inputs/FormGroupTypeAheadMultiSelect.d.ts +1 -1
  5. package/framework/PageForm/Inputs/PageFormDataEditor.d.ts +1 -0
  6. package/framework/PageForm/Utils/PageFormSection.d.ts +2 -0
  7. package/framework/PageFramework.d.ts +1 -0
  8. package/framework/PageInputs/PageMultiSelect.d.ts +1 -0
  9. package/framework/PageInputs/PageSingleSelect.d.ts +1 -0
  10. package/framework/PageNavigation/PageApp.d.ts +1 -0
  11. package/framework/PageSettings/PageSettings.d.ts +2 -0
  12. package/framework/PageSettings/PageSettingsProvider.d.ts +17 -0
  13. package/framework/PageToolbar/PageToolbarFilters/ToolbarAsyncMultiSelectFilter.d.ts +1 -0
  14. package/framework/PageToolbar/PageToolbarFilters/ToolbarAsyncSingleSelectFilter.d.ts +1 -0
  15. package/framework/PageToolbar/PageToolbarFilters/ToolbarDateRangeFilter.d.ts +6 -0
  16. package/framework/PageToolbar/PageToolbarFilters/ToolbarMultiSelectFilter.d.ts +1 -0
  17. package/framework/PageToolbar/PageToolbarFilters/ToolbarSingleSelectFilter.d.ts +1 -0
  18. package/framework/components/icons/ExpandIcon.d.ts +2 -0
  19. package/framework/index.d.ts +1 -2
  20. package/framework/publish/index.d.ts +141 -144
  21. package/index.js +12817 -13183
  22. package/index.umd.cjs +192 -196
  23. package/package.json +1 -1
  24. package/framework/PageActions/PageActionLink.d.ts +0 -9
  25. package/framework/PageMasthead/PageSettingsIcon.d.ts +0 -1
  26. package/framework/Settings.d.ts +0 -20
@@ -56,10 +56,12 @@ export interface IPageActionButtonMultiple<T extends object> extends IPageAction
56
56
  export interface IPageActionLink extends IPageActionNoneCommon {
57
57
  type: PageActionType.Link;
58
58
  href: string;
59
+ variant?: ButtonVariant;
59
60
  }
60
61
  export interface IPageActionLinkSingle<T extends object> extends IPageActionSingleCommon<T> {
61
62
  type: PageActionType.Link;
62
63
  href: (item: T) => string;
64
+ variant?: ButtonVariant;
63
65
  }
64
66
  export interface IPageActionSwitch extends IPageActionNoneCommon {
65
67
  type: PageActionType.Switch;
@@ -1,10 +1,11 @@
1
1
  import { ComponentClass, FunctionComponent } from 'react';
2
- import { IPageActionButton, IPageActionButtonMultiple, IPageActionButtonSingle } from './PageAction';
2
+ import { IPageActionButton, IPageActionButtonMultiple, IPageActionButtonSingle, IPageActionLink, IPageActionLinkSingle } from './PageAction';
3
3
  export declare function PageActionButton<T extends object>(props: {
4
- action: IPageActionButton | IPageActionButtonSingle<T> | IPageActionButtonMultiple<T>;
4
+ action: IPageActionButton | IPageActionButtonSingle<T> | IPageActionButtonMultiple<T> | IPageActionLink | IPageActionLinkSingle<T>;
5
5
  isSecondary?: boolean;
6
6
  wrapper?: ComponentClass | FunctionComponent;
7
7
  iconOnly?: boolean;
8
8
  selectedItem?: T;
9
9
  selectedItems?: T[];
10
+ isLink?: boolean;
10
11
  }): import("react/jsx-runtime").JSX.Element;
@@ -1,7 +1,7 @@
1
1
  import { ReactNode } from 'react';
2
2
  import { DefaultValues } from 'react-hook-form';
3
- import { ErrorAdapter } from './typesErrorAdapter';
4
3
  import { PageFormSubmitHandler } from './PageForm';
4
+ import { ErrorAdapter } from './typesErrorAdapter';
5
5
  export interface GenericFormProps<T extends object> {
6
6
  children?: ReactNode;
7
7
  onSubmit: PageFormSubmitHandler<T>;
@@ -1,5 +1,5 @@
1
- import { ChangeEvent, MouseEvent, ReactNode } from 'react';
2
1
  import { SelectOptionObject } from '@patternfly/react-core/deprecated';
2
+ import { ChangeEvent, MouseEvent, ReactNode } from 'react';
3
3
  export type FormGroupTypeAheadMultiSelectProps = {
4
4
  id?: string;
5
5
  label: string;
@@ -7,6 +7,7 @@ export type PageFormDataEditorInputProps<TFieldValues extends FieldValues = Fiel
7
7
  label: string;
8
8
  labelHelp?: string | string[] | ReactNode;
9
9
  labelHelpTitle?: string;
10
+ helperText?: string | undefined;
10
11
  additionalControls?: ReactNode;
11
12
  format: DataEditorLanguages | 'object';
12
13
  disableCopy?: boolean;
@@ -4,4 +4,6 @@ export declare function PageFormSection(props: {
4
4
  children: ReactNode;
5
5
  singleColumn?: boolean;
6
6
  isHorizontal?: boolean;
7
+ canCollapse?: boolean;
8
+ defaultCollapsed?: boolean;
7
9
  }): import("react/jsx-runtime").JSX.Element;
@@ -2,4 +2,5 @@ import './PageFramework.css';
2
2
  import { ReactNode } from 'react';
3
3
  export declare function PageFramework(props: {
4
4
  children: ReactNode;
5
+ defaultRefreshInterval: number;
5
6
  }): import("react/jsx-runtime").JSX.Element;
@@ -13,5 +13,6 @@ export interface PageMultiSelectProps<ValueT> {
13
13
  disableClearSelection?: boolean;
14
14
  disableClearChips?: boolean;
15
15
  maxChipSize?: string;
16
+ disableSortOptions?: boolean;
16
17
  }
17
18
  export declare function PageMultiSelect<ValueT>(props: PageMultiSelectProps<ValueT>): import("react/jsx-runtime").JSX.Element;
@@ -10,6 +10,7 @@ export interface PageSingleSelectProps<ValueT> {
10
10
  footer?: ReactNode;
11
11
  isRequired?: boolean;
12
12
  isDisabled?: boolean;
13
+ disableSortOptions?: boolean;
13
14
  }
14
15
  export declare function PageSingleSelect<ValueT>(props: PageSingleSelectProps<ValueT>): import("react/jsx-runtime").JSX.Element;
15
16
  export declare function PageSingleSelectList(props: {
@@ -6,4 +6,5 @@ export declare function PageApp(props: {
6
6
  masthead?: ReactNode;
7
7
  navigation: PageNavigationItem[];
8
8
  basename?: string;
9
+ defaultRefreshInterval: number;
9
10
  }): import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,2 @@
1
+ export declare function PageSettings(): import("react/jsx-runtime").JSX.Element;
2
+ export declare function PageSettingsForm(): import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,17 @@
1
+ import { ReactNode } from 'react';
2
+ export interface IPageSettings {
3
+ refreshInterval?: number;
4
+ theme?: 'system' | 'light' | 'dark';
5
+ activeTheme?: 'light' | 'dark';
6
+ tableLayout?: 'compact' | 'comfortable';
7
+ formColumns?: 'single' | 'multiple';
8
+ formLayout?: 'vertical' | 'horizontal';
9
+ dateFormat?: 'since' | 'date-time';
10
+ dataEditorFormat?: 'yaml' | 'json';
11
+ }
12
+ export declare const PageSettingsContext: import("react").Context<[IPageSettings, (settings: IPageSettings) => void]>;
13
+ export declare function usePageSettings(): IPageSettings;
14
+ export declare function PageSettingsProvider(props: {
15
+ children?: ReactNode;
16
+ defaultRefreshInterval: number;
17
+ }): import("react/jsx-runtime").JSX.Element;
@@ -10,6 +10,7 @@ export interface IToolbarAsyncMultiSelectFilter extends ToolbarFilterCommon {
10
10
  queryLabel?: (value: string) => Promise<string | undefined>;
11
11
  openBrowse?: ToolbarOpenMultiSelectBrowse;
12
12
  isRequired?: boolean;
13
+ disableSortOptions?: boolean;
13
14
  }
14
15
  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;
15
16
  export declare function AsyncQueryChip(props: {
@@ -10,6 +10,7 @@ export interface IToolbarAsyncSingleSelectFilter extends ToolbarFilterCommon {
10
10
  openBrowse?: ToolbarOpenSingleSelectBrowse;
11
11
  queryLabel?: (value: string) => Promise<string | undefined>;
12
12
  isRequired?: boolean;
13
+ disableSortOptions?: boolean;
13
14
  }
14
15
  export declare function singleSelectBrowseAdapter<T>(selectFn: (onItemSelect: (itemValue: T) => void, itemDefaultSelection?: T) => void, keyFn: (item: T) => string, objectFn: (name: string) => object, customOnSelect?: (item: T) => void): ToolbarOpenSingleSelectBrowse;
15
16
  export {};
@@ -13,6 +13,12 @@ interface IToolbarDateFilterOption {
13
13
  value: string;
14
14
  isCustom?: boolean;
15
15
  }
16
+ export declare enum DateRangeFilterPresets {
17
+ LastHour = "lastHour",
18
+ Last24Hours = "last24hours",
19
+ LastWeek = "last7days",
20
+ LastMonth = "last30days"
21
+ }
16
22
  export interface IToolbarDateRangeFilterProps {
17
23
  id?: string;
18
24
  label?: string;
@@ -5,4 +5,5 @@ export interface IToolbarMultiSelectFilter extends ToolbarFilterCommon {
5
5
  type: ToolbarFilterType.MultiSelect;
6
6
  options: PageSelectOption<string>[];
7
7
  placeholder: string;
8
+ disableSortOptions?: boolean;
8
9
  }
@@ -6,4 +6,5 @@ export interface IToolbarSingleSelectFilter extends ToolbarFilterCommon {
6
6
  options: PageSelectOption<string>[];
7
7
  isRequired?: boolean;
8
8
  placeholder: string;
9
+ disableSortOptions?: boolean;
9
10
  }
@@ -1,4 +1,6 @@
1
1
  export declare function ExpandIcon(props: {
2
2
  isExpanded: boolean;
3
3
  setExpanded: (expanded: boolean) => void;
4
+ direction?: 'left' | 'right';
5
+ size?: 'sm' | 'md' | 'lg';
4
6
  }): import("react/jsx-runtime").JSX.Element;
@@ -39,7 +39,6 @@ export * from './PageHeader';
39
39
  export * from './PageLayout';
40
40
  export * from './PageMasthead/PageMasthead';
41
41
  export * from './PageMasthead/PageNotificationsIcon';
42
- export * from './PageMasthead/PageSettingsIcon';
43
42
  export * from './PageMasthead/PageThemeSwitcher';
44
43
  export * from './PageNavigation/PageApp';
45
44
  export * from './PageNavigation/PageNavSidebar';
@@ -47,6 +46,7 @@ export * from './PageNavigation/PageNavigation';
47
46
  export * from './PageNavigation/PageNavigationItem';
48
47
  export * from './PageNavigation/useGetPageUrl';
49
48
  export * from './PageNavigation/usePageNavigate';
49
+ export * from './PageSettings/PageSettingsProvider';
50
50
  export * from './PageTable/PageTable';
51
51
  export * from './PageTable/PageTableCards';
52
52
  export * from './PageTable/PageTableColumn';
@@ -55,7 +55,6 @@ export * from './PageTabs/PageTabs';
55
55
  export * from './PageToolbar/PageToolbar';
56
56
  export * from './PageToolbar/PageToolbarFilter';
57
57
  export * from './PageWizard';
58
- export * from './Settings';
59
58
  export * from './components/BulkSelector';
60
59
  export * from './components/Collapse';
61
60
  export * from './components/Help';
@@ -1,119 +1,117 @@
1
- declare function FSe(e: any): any;
2
- declare function Y2e(e: any): any;
3
- declare function Yke(e: any): any;
4
- declare function Bh(e: any): any;
5
- declare var l2e: any;
6
- declare var u2e: any;
7
- declare var s2e: any;
8
- declare var c2e: any;
9
- declare var by: any;
10
- declare var to: any;
11
- declare function Kke(e: any): any;
12
- declare function ZAe(e: any): any;
13
- declare function XAe(e: any): any;
14
- declare function Xke(e: any): any;
15
- declare function AF(e: any): any;
16
- declare function Zke(e: any): any;
17
- declare function i4(e: any): any;
18
- declare function f6e(e: any): any;
19
- declare function Cb(e: any): any;
20
- declare var $F: any;
21
- declare function kF(e: any): any;
22
- declare function k6e(e: any): any;
23
- declare function l6e(e: any): any;
24
- declare var PF: any;
25
- declare var Et: any;
26
- declare var en: any;
27
- declare function bu(e: any): any;
28
- declare const iA: C.Context<{
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;
6
+ declare var p_e: any;
7
+ declare var f_e: any;
8
+ declare var h_e: any;
9
+ declare var ly: any;
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;
18
+ declare function xAe(e: any): any;
19
+ declare function gb(e: any): any;
20
+ declare var k8: any;
21
+ declare function E8(e: any): any;
22
+ declare function RAe(e: any): any;
23
+ declare function vAe(e: any): any;
24
+ declare var T8: any;
25
+ declare var Ct: any;
26
+ declare var Dt: any;
27
+ declare function du(e: any): any;
28
+ declare const HT: C.Context<{
29
29
  addAlert: () => null;
30
30
  removeAlert: () => null;
31
31
  replaceAlert: () => null;
32
32
  removeAlerts: () => null;
33
33
  }>;
34
- declare function v4(e: any): any;
35
- declare function O6e(e: any): any;
36
- declare function qke(e: any): any;
37
- declare function L0(e: any): any;
38
- declare function Qke(e: any): any;
39
- declare function Eb(e: any): any;
40
- declare function e6e(e: any): any;
41
- declare const Sk: C.Context<{
34
+ declare function YR(e: any): any;
35
+ declare function $Ae(e: any): any;
36
+ declare function nAe(e: any): any;
37
+ declare function T0(e: any): any;
38
+ declare function lAe(e: any): any;
39
+ declare function mb(e: any): any;
40
+ declare function cAe(e: any): any;
41
+ declare const sk: C.Context<{
42
42
  columns: number;
43
43
  }>;
44
- declare function t6e(e: any): any;
45
- declare function r6e(e: any): any;
46
- declare function n6e(e: any): any;
47
- declare function wc(e: any): any;
48
- declare function a2e(e: any): any;
49
- declare function v2e(e: any): any;
50
- declare function yF(e: any): any;
51
- declare function n2e(e: any): any;
52
- declare function mOe(e: any): any;
53
- declare function hOe(e: any): any;
54
- declare function d6e(e: any): any;
55
- declare function p6e(e: any): any;
56
- declare function vOe(e: any): any;
57
- declare function g6e(e: any): any;
58
- declare function D$(e: any): any;
59
- declare function m6e(e: any): any;
60
- declare function v6e(e: any): any;
61
- declare function y6e(e: any): any;
62
- declare function ske(e: any): any;
63
- declare function cke(e: any): any;
64
- declare function b6e(e: any): any;
65
- declare function x6e(e: any): any;
66
- declare function uke(): any;
67
- declare const UD: C.Context<{
44
+ declare function uAe(e: any): any;
45
+ declare function dAe(e: any): any;
46
+ declare function fAe(e: any): any;
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;
52
+ declare function S2e(e: any): any;
53
+ declare function x2e(e: any): any;
54
+ declare function _Ae(e: any): any;
55
+ declare function SAe(e: any): any;
56
+ declare function O2e(e: any): any;
57
+ declare function OAe(e: any): any;
58
+ declare function d$(e: any): any;
59
+ declare function CAe(e: any): any;
60
+ declare function EAe(e: any): any;
61
+ declare function TAe(e: any): any;
62
+ declare function mTe(e: any): any;
63
+ declare function yTe(e: any): any;
64
+ declare function AAe(e: any): any;
65
+ declare function kAe(e: any): any;
66
+ declare function bTe(): any;
67
+ declare const SD: C.Context<{
68
68
  isOpen: boolean;
69
69
  setState: () => {};
70
70
  }>;
71
- declare function JAe(e: any): any;
72
- declare function fke(e: any): any;
73
- declare function KSe(e: any): any;
74
- declare function u6e(): any;
75
- declare function _6e(): any;
76
- declare function w6e(): any;
77
- declare function SE(e: any): any;
78
- declare function Ig(e: any): any;
79
- declare function xC(e: any): any;
80
- declare function T6e(e: any): any;
81
- declare function S6e(): any;
82
- declare function cSe(e: any): any;
83
- declare function rSe(e: any): any;
84
- declare function A6e(e: any): any;
85
- declare const Pke: any;
86
- declare function Fr(e: any): any;
87
- declare function YSe(e: any): any;
88
- declare const Wo: C.Context<{}[]>;
89
- declare function OF(e: any): any;
90
- declare function wF(e: any): any;
91
- declare function sn(e: any): any;
92
- declare function DF(e: any): any;
93
- declare var nSe: any;
94
- declare function vke(e: any, t: any, n: any): void;
95
- declare function yke(e: any, t: any, n: any): void;
96
- declare function bke(e: any, t: any, n: any): void;
97
- declare function BSe(e: any, t: any): 1 | -1 | 0;
98
- declare function ud(e: any, t: any): 1 | -1 | 0;
99
- declare function zSe(e: any, t: any): 1 | -1 | 0;
100
- declare function Gke(e: any): {
71
+ declare function sTe(e: any): any;
72
+ declare function xTe(e: any): any;
73
+ declare function n2e(e: any): any;
74
+ declare function bAe(): any;
75
+ declare function PAe(): 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 MAe(e: any): any;
82
+ declare function jAe(): any;
83
+ declare function pwe(e: any): any;
84
+ declare function lwe(e: any): any;
85
+ declare function LAe(e: any): any;
86
+ declare const FTe: any;
87
+ declare function si(e: any): any;
88
+ declare function t2e(e: any): any;
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;
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): {
101
99
  title: string;
102
100
  variant: string;
103
101
  timeout: number;
104
102
  };
105
- declare function gke(e: any, t: any): any;
106
- declare function M0(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;
107
- declare const xk: "var(--pf-v5-global--danger-color--100)";
108
- declare const wk: "var(--pf-v5-global--disabled-color--100)";
109
- declare const _k: "var(--pf-v5-global--info-color--100)";
110
- declare const Jke: "var(--pf-v5-global--link--Color)";
111
- declare const bk: "var(--pf-v5-global--success-color--100)";
112
- declare const jF: "var(--pf-v5-global--warning-color--100)";
113
- declare function C6e(e: any): any;
114
- declare function mke(e: any, t: any): any;
115
- declare function Pn(e: any): boolean | undefined;
116
- declare function WSe(e?: (e: any) => {
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 A8: "var(--pf-v5-global--warning-color--100)";
111
+ declare function DAe(e: any): any;
112
+ declare function CTe(e: any, t: any): any;
113
+ declare function An(e: any): boolean | undefined;
114
+ declare function qwe(e?: (e: any) => {
117
115
  genericErrors: {
118
116
  message: string;
119
117
  }[];
@@ -122,7 +120,7 @@ declare function WSe(e?: (e: any) => {
122
120
  message: string;
123
121
  }[];
124
122
  }): C.Dispatch<C.SetStateAction<undefined>>;
125
- declare function s6e(e?: (e: any) => {
123
+ declare function mAe(e?: (e: any) => {
126
124
  genericErrors: {
127
125
  message: string;
128
126
  }[];
@@ -131,16 +129,16 @@ declare function s6e(e?: (e: any) => {
131
129
  message: string;
132
130
  }[];
133
131
  }): (r: any) => void;
134
- declare function m2e(e: any): any;
135
- declare function g2e(e: any): any;
136
- declare function i6e(e: any): any;
137
- declare function h2e(e: any): any;
138
- declare function p2e(e: any): any;
139
- declare function p$(e: any, t: any): {
132
+ declare function x_e(e: any): any;
133
+ declare function b_e(e: any): any;
134
+ declare function hAe(e: any): any;
135
+ declare function v_e(e: any): any;
136
+ declare function y_e(e: any): any;
137
+ declare function q3(e: any, t: any): {
140
138
  filtered: never[];
141
139
  setFilterFn: (c: any) => void;
142
140
  };
143
- declare function I$(e: any, t: any): {
141
+ declare function h$(e: any, t: any): {
144
142
  form: undefined;
145
143
  handleSubmit: any;
146
144
  error: null;
@@ -148,7 +146,7 @@ declare function I$(e: any, t: any): {
148
146
  handleSubmitError: (l: any) => void;
149
147
  setFieldError: any;
150
148
  };
151
- declare function It(): ({
149
+ declare function Ht(): ({
152
150
  by: string;
153
151
  cancelText: string;
154
152
  canceledText: string;
@@ -185,8 +183,8 @@ declare function It(): ({
185
183
  unknownError: string;
186
184
  validating: string;
187
185
  } | (() => void))[];
188
- declare function xke(): (t: any, n: any) => any;
189
- declare function P6e(e: any): {
186
+ declare function kTe(): (t: any, n: any) => any;
187
+ declare function NAe(e: any): {
190
188
  selectedItems: any[];
191
189
  selectItem: (h: any) => void;
192
190
  unselectItem: (h: any) => void;
@@ -212,47 +210,48 @@ declare function P6e(e: any): {
212
210
  pageItems: never[] | undefined;
213
211
  error: any;
214
212
  };
215
- declare function Uke(): string;
216
- declare function pb(): {
213
+ declare function QTe(): string;
214
+ declare function nb(): {
217
215
  addAlert: () => null;
218
216
  removeAlert: () => null;
219
217
  replaceAlert: () => null;
220
218
  removeAlerts: () => null;
221
219
  };
222
- declare function ua(): (((a: any) => void) | undefined)[];
223
- declare function bF(): {
220
+ declare function Va(): (((a: any) => void) | undefined)[];
221
+ declare function bwe(): {
224
222
  dialogs: never[];
225
223
  clearDialogs: () => void;
226
224
  pushDialog: (e: any) => void;
227
225
  popDialog: () => void;
228
226
  };
229
- declare function QAe(): (i: any) => void;
230
- declare function Vx(): {
227
+ declare function lTe(): (i: any) => void;
228
+ declare function $x(): {
231
229
  isOpen: boolean;
232
230
  setState: () => {};
233
231
  };
234
- declare function E6e(): (n: any, r: any) => void;
235
- declare function Dg(e: any): {
232
+ declare function IAe(): (n: any, r: any) => void;
233
+ declare function cl(): {};
234
+ declare function Cg(e: any): {
236
235
  paged: never[];
237
236
  page: number;
238
237
  setPage: C.Dispatch<C.SetStateAction<number>>;
239
238
  perPage: number;
240
239
  setPerPage: C.Dispatch<C.SetStateAction<number>>;
241
240
  };
242
- declare function c6e(e: any): (g: any, v: any) => void;
243
- declare function d$(e: any, t: any, n: any): {
241
+ declare function yAe(e: any): (g: any, v: any) => void;
242
+ declare function H3(e: any, t: any, n: any): {
244
243
  selectedItems: any[];
245
- selectItem: (p: any) => void;
246
- unselectItem: (p: any) => void;
247
- isSelected: (p: any) => boolean;
248
- selectItems: (p: any) => void;
244
+ selectItem: (g: any) => void;
245
+ unselectItem: (g: any) => void;
246
+ isSelected: (g: any) => boolean;
247
+ selectItems: (g: any) => void;
249
248
  selectAll: () => void;
250
249
  unselectAll: () => void;
251
250
  allSelected: boolean;
252
251
  keyFn: any;
253
- unselectItems: (p: any) => void;
252
+ unselectItems: (g: any) => void;
254
253
  };
255
- declare function hSe(e: any, t: any): {
254
+ declare function xwe(e: any, t: any): {
256
255
  selectedItems: any[];
257
256
  selectItem: (h: any) => void;
258
257
  unselectItem: (h: any) => void;
@@ -264,24 +263,22 @@ declare function hSe(e: any, t: any): {
264
263
  keyFn: any;
265
264
  unselectItems: (h: any) => void;
266
265
  };
267
- declare function Ou(): {};
268
- declare function SF(e: any): () => void;
269
- declare function h$(e: any): {
266
+ declare function G3(e: any): {
270
267
  sorted: any;
271
268
  sort: undefined;
272
269
  setSort: C.Dispatch<C.SetStateAction<undefined>>;
273
270
  };
274
- declare function o6e(e: any, t: any, n: any): {
271
+ declare function gAe(e: any, t: any, n: any): {
275
272
  allSelected: boolean;
276
273
  filtered: never[];
277
- isSelected: (p: any) => boolean;
274
+ isSelected: (g: any) => boolean;
278
275
  page: number;
279
276
  paged: never[];
280
277
  perPage: number;
281
278
  search: any;
282
279
  searched: never[];
283
280
  selectAll: () => void;
284
- selectItem: (p: any) => void;
281
+ selectItem: (g: any) => void;
285
282
  selectPage: () => void;
286
283
  selectedItems: any[];
287
284
  setFilterFn: (c: any) => void;
@@ -293,9 +290,9 @@ declare function o6e(e: any, t: any, n: any): {
293
290
  sort: undefined;
294
291
  sorted: any;
295
292
  unselectAll: () => void;
296
- unselectItem: (p: any) => void;
293
+ unselectItem: (g: any) => void;
297
294
  };
298
- declare function Rke(e: any): {
295
+ declare function GTe(e: any): {
299
296
  page: number;
300
297
  setPage: C.Dispatch<C.SetStateAction<number>>;
301
298
  perPage: number;
@@ -308,11 +305,11 @@ declare function Rke(e: any): {
308
305
  setFilterState: C.Dispatch<any>;
309
306
  clearAllFilters: () => void;
310
307
  };
311
- declare function d2e(e: any): any;
312
- declare function a6e(e: any, t: any): any;
313
- declare function f2e(e: any): any;
314
- declare function gx(e: any): any;
315
- declare function Q3(e: any): any;
316
- declare function HI(): string;
308
+ declare function m_e(e: any): any;
309
+ declare function pAe(e: any, t: any): any;
310
+ declare function g_e(e: any): any;
311
+ declare function ix(e: any): any;
312
+ declare function P3(e: any): any;
313
+ declare function CI(): string;
317
314
  import * as C from "react";
318
- export { FSe as BulkActionDialog, Y2e as BulkSelector, Yke as BytesCell, Bh as Collapse, l2e as ColumnCardOption, u2e as ColumnDashboardOption, s2e as ColumnListOption, c2e as ColumnModalOption, by as ColumnPriority, to as ColumnTableOption, Kke as CopyCell, ZAe as DataEditorActions, XAe as DataEditorButtons, Xke as DateCell, AF as DateTimeCell, Zke as ElapsedTimeCell, i4 as FrameworkTranslationsProvider, f6e as GenericForm, Cb as Help, $F as LabelColorE, kF as LabelsCell, k6e as LoadingPage, l6e as MultiSelectDialog, PF as PFColorE, Et as PageActionSelection, en as PageActionType, bu as PageActions, iA as PageAlertToasterContext, v4 as PageAlertToasterProvider, O6e as PageApp, qke as PageBody, L0 as PageChartContainer, Qke as PageDashboard, Eb as PageDashboardCard, e6e as PageDashboardChart, Sk as PageDashboardContext, t6e as PageDashboardCount, r6e as PageDashboardDonutCard, n6e as PageDashboardGettingStarted, wc as PageDetail, a2e as PageDetails, v2e as PageDetailsFromColumns, yF as PageDialogProvider, n2e as PageDonutChart, mOe as PageForm, hOe as PageFormCancelButton, d6e as PageFormCheckbox, p6e as PageFormDataEditor, vOe as PageFormGrid, g6e as PageFormSelect, D$ as PageFormSubmitButton, m6e as PageFormSwitch, v6e as PageFormTextArea, y6e as PageFormTextInput, ske as PageFramework, cke as PageHeader, b6e as PageLayout, x6e as PageMasthead, uke as PageMastheadToggle, UD as PageNavSideBarContext, JAe as PageNavSideBarProvider, fke as PageNavigation, KSe as PageNotFound, u6e as PageNotImplemented, _6e as PageNotificationsIcon, w6e as PageSettingsIcon, SE as PageTab, Ig as PageTable, xC as PageTableCards, T6e as PageTabs, S6e as PageThemeSwitcher, cSe as PageToolbar, rSe as PageToolbarFilters, A6e as PageWizard, Pke as RunningIcon, Fr as Scrollable, YSe as SelectDialog, Wo as SettingsContext, OF as SettingsDialog, wF as SettingsProvider, sn as TableColumnCell, DF as TextCell, nSe as ToolbarFilterType, vke as addNavigationItem, yke as addNavigationItemAfter, bke as addNavigationItemBefore, BSe as compareNumbers, ud as compareStrings, zSe as compareUnknowns, Gke as errorToAlertProps, gke as findNavigationItemById, M0 as getPatternflyColor, xk as pfDanger, wk as pfDisabled, _k as pfInfo, Jke as pfLink, bk as pfSuccess, jF as pfWarning, C6e as removeLeadingSlash, mke as removeNavigationItemById, Pn as useBreakpoint, WSe as useBulkActionDialog, s6e as useBulkConfirmation, m2e as useColumnsWithoutExpandedRow, g2e as useColumnsWithoutSort, i6e as useDashboardColumns, h2e as useDescriptionColumns, p2e as useExpandedColumns, p$ as useFiltered, I$ as useFormErrors, It as useFrameworkTranslations, xke as useGetPageUrl, P6e as useInMemoryView, Uke as useOrientation, pb as usePageAlertToaster, ua as usePageDialog, bF as usePageDialogs, QAe as usePageNavBarClick, Vx as usePageNavSideBar, E6e as usePageNavigate, Dg as usePaged, c6e as useSelectDialog, d$ as useSelected, hSe as useSelectedInMemory, Ou as useSettings, SF as useSettingsDialog, h$ as useSorted, o6e as useTableItems, Rke as useView, d2e as useVisibleCardColumns, a6e as useVisibleColumns, f2e as useVisibleListColumns, gx as useVisibleModalColumns, Q3 as useVisibleTableColumns, HI as useWindowSize };
315
+ 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, xAe as GenericForm, gb as Help, k8 as LabelColorE, E8 as LabelsCell, RAe as LoadingPage, vAe as MultiSelectDialog, T8 as PFColorE, Ct as PageActionSelection, Dt as PageActionType, du as PageActions, HT as PageAlertToasterContext, YR as PageAlertToasterProvider, $Ae as PageApp, nAe as PageBody, T0 as PageChartContainer, lAe as PageDashboard, mb as PageDashboardCard, cAe as PageDashboardChart, sk as PageDashboardContext, uAe as PageDashboardCount, dAe as PageDashboardDonutCard, fAe 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, _Ae as PageFormCheckbox, SAe as PageFormDataEditor, O2e as PageFormGrid, OAe as PageFormSelect, d$ as PageFormSubmitButton, CAe as PageFormSwitch, EAe as PageFormTextArea, TAe as PageFormTextInput, mTe as PageFramework, yTe as PageHeader, AAe as PageLayout, kAe as PageMasthead, bTe as PageMastheadToggle, SD as PageNavSideBarContext, sTe as PageNavSideBarProvider, xTe as PageNavigation, n2e as PageNotFound, bAe as PageNotImplemented, PAe as PageNotificationsIcon, ll as PageSettingsContext, w8 as PageSettingsProvider, fE as PageTab, Eg as PageTable, lC as PageTableCards, MAe as PageTabs, jAe as PageThemeSwitcher, pwe as PageToolbar, lwe as PageToolbarFilters, LAe 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, A8 as pfWarning, DAe as removeLeadingSlash, CTe as removeNavigationItemById, An as useBreakpoint, qwe as useBulkActionDialog, mAe as useBulkConfirmation, x_e as useColumnsWithoutExpandedRow, b_e as useColumnsWithoutSort, hAe as useDashboardColumns, v_e as useDescriptionColumns, y_e as useExpandedColumns, q3 as useFiltered, h$ as useFormErrors, Ht as useFrameworkTranslations, kTe as useGetPageUrl, NAe as useInMemoryView, QTe as useOrientation, nb as usePageAlertToaster, Va as usePageDialog, bwe as usePageDialogs, lTe as usePageNavBarClick, $x as usePageNavSideBar, IAe as usePageNavigate, cl as usePageSettings, Cg as usePaged, yAe as useSelectDialog, H3 as useSelected, xwe as useSelectedInMemory, G3 as useSorted, gAe as useTableItems, GTe as useView, m_e as useVisibleCardColumns, pAe as useVisibleColumns, g_e as useVisibleListColumns, ix as useVisibleModalColumns, P3 as useVisibleTableColumns, CI as useWindowSize };