@orchestrator-ui/orchestrator-ui-components 2.11.1 → 2.13.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.turbo/turbo-build.log +7 -7
- package/.turbo/turbo-lint.log +1 -1
- package/.turbo/turbo-test.log +9 -9
- package/CHANGELOG.md +26 -0
- package/dist/index.d.ts +90 -61
- package/dist/index.js +1769 -1717
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/components/WfoBadges/WfoFailedTasksBadge/WfoFailedTasksBadge.tsx +46 -23
- package/src/components/WfoBadges/WfoFailedTasksBadge/styles.ts +10 -0
- package/src/components/WfoForms/UserInputForm.tsx +6 -2
- package/src/components/WfoForms/formFields/BoolFieldStyling.ts +0 -4
- package/src/components/WfoInlineNoteEdit/WfoInlineNoteEdit.tsx +5 -6
- package/src/components/WfoSubscription/WfoInUseByRelations.tsx +1 -0
- package/src/components/WfoSubscription/WfoSubscriptionProductBlock/WfoSubscriptionProductBlock.tsx +1 -1
- package/src/components/WfoSubscription/styles.ts +16 -11
- package/src/components/WfoSubscriptionsList/WfoSubscriptionsList.tsx +14 -3
- package/src/components/WfoTable/WfoFirstPartUUID/WfoFirstPartUUID.tsx +22 -16
- package/src/components/WfoTable/WfoTable/WfoTableDataRows.tsx +10 -4
- package/src/components/WfoTable/WfoTable/WfoTableHeaderCell/WfoSortDirectionIcon.tsx +5 -11
- package/src/components/WfoTable/WfoTable/WfoTableHeaderCell/styles.ts +1 -0
- package/src/components/WfoTable/WfoTable/styles.ts +6 -0
- package/src/configuration/version.ts +1 -1
- package/src/contexts/WfoErrorMonitoringProvider.tsx +37 -0
- package/src/contexts/index.ts +1 -0
- package/src/hooks/index.ts +1 -0
- package/src/hooks/useWfoErrorMonitoring.ts +6 -0
- package/src/icons/heroicons/WfoArrowDown.tsx +27 -0
- package/src/icons/heroicons/WfoArrowUp.tsx +27 -0
- package/src/icons/heroicons/WfoArrowsUpDown.tsx +2 -2
- package/src/icons/heroicons/WfoHeroIconsWrapper.tsx +12 -19
- package/src/icons/heroicons/index.ts +2 -0
- package/src/icons/index.ts +0 -2
- package/src/rtk/endpoints/streamMessages.ts +1 -1
- package/src/utils/getDefaultTableConfig.ts +1 -0
- package/src/icons/WfoArrowNarrowDown.stories.tsx +0 -13
- package/src/icons/WfoArrowNarrowDown.tsx +0 -35
- package/src/icons/WfoArrowNarrowUp.stories.tsx +0 -13
- package/src/icons/WfoArrowNarrowUp.tsx +0 -34
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,21 +1,21 @@
|
|
|
1
1
|
|
|
2
|
-
> @orchestrator-ui/orchestrator-ui-components@2.
|
|
2
|
+
> @orchestrator-ui/orchestrator-ui-components@2.13.0 build
|
|
3
3
|
> npm run generate-version && tsup src/index.ts
|
|
4
4
|
|
|
5
5
|
|
|
6
|
-
> @orchestrator-ui/orchestrator-ui-components@2.
|
|
6
|
+
> @orchestrator-ui/orchestrator-ui-components@2.13.0 generate-version
|
|
7
7
|
> node -p "'export const ORCHESTRATOR_UI_LIBRARY_VERSION = ' + JSON.stringify(require('./package.json').version) + ';'" > src/configuration/version.ts && prettier --write src/configuration/version.ts
|
|
8
8
|
|
|
9
|
-
src/configuration/version.ts
|
|
9
|
+
src/configuration/version.ts 169ms
|
|
10
10
|
[34mCLI[39m Building entry: src/index.ts
|
|
11
11
|
[34mCLI[39m Using tsconfig: tsconfig.build.json
|
|
12
12
|
[34mCLI[39m tsup v8.3.5
|
|
13
13
|
[34mCLI[39m Using tsup config: /home/runner/work/orchestrator-ui-library/orchestrator-ui-library/packages/orchestrator-ui-components/tsup.config.ts
|
|
14
14
|
[34mCLI[39m Target: es2020
|
|
15
15
|
[34mESM[39m Build start
|
|
16
|
+
[34mDTS[39m Build start
|
|
16
17
|
[32mESM[39m [1mdist/index.js [22m[32m1.92 MB[39m
|
|
17
18
|
[32mESM[39m [1mdist/index.js.map [22m[32m3.49 MB[39m
|
|
18
|
-
[32mESM[39m ⚡️ Build success in
|
|
19
|
-
[
|
|
20
|
-
[32mDTS[39m
|
|
21
|
-
[32mDTS[39m [1mdist/index.d.ts [22m[32m651.37 KB[39m
|
|
19
|
+
[32mESM[39m ⚡️ Build success in 483ms
|
|
20
|
+
[32mDTS[39m ⚡️ Build success in 17723ms
|
|
21
|
+
[32mDTS[39m [1mdist/index.d.ts [22m[32m652.66 KB[39m
|
package/.turbo/turbo-lint.log
CHANGED
package/.turbo/turbo-test.log
CHANGED
|
@@ -1,26 +1,26 @@
|
|
|
1
1
|
|
|
2
|
-
> @orchestrator-ui/orchestrator-ui-components@2.
|
|
2
|
+
> @orchestrator-ui/orchestrator-ui-components@2.13.0 test
|
|
3
3
|
> jest
|
|
4
4
|
|
|
5
|
+
PASS Wfo-UI Tests src/components/WfoTree/treeUtils.spec.ts
|
|
5
6
|
PASS Wfo-UI Tests src/components/WfoForms/formFields/utils.spec.ts
|
|
6
7
|
PASS Wfo-UI Tests src/components/WfoSubscription/utils/utils.spec.ts
|
|
7
|
-
PASS Wfo-UI Tests src/components/WfoTree/treeUtils.spec.ts
|
|
8
|
-
PASS Wfo-UI Tests src/pages/processes/timelineUtils.spec.ts
|
|
9
8
|
PASS Wfo-UI Tests src/utils/date.spec.ts
|
|
10
9
|
PASS Wfo-UI Tests src/utils/string.spec.ts
|
|
11
|
-
PASS Wfo-UI Tests src/
|
|
10
|
+
PASS Wfo-UI Tests src/pages/processes/timelineUtils.spec.ts
|
|
12
11
|
PASS Wfo-UI Tests src/components/WfoTable/WfoTable/WfoGroupedTable/utils.spec.ts
|
|
12
|
+
PASS Wfo-UI Tests src/utils/getProductNamesFromProcess.spec.ts
|
|
13
13
|
PASS Wfo-UI Tests src/components/WfoTable/WfoTableWithFilter/updateQueryString.spec.ts
|
|
14
14
|
PASS Wfo-UI Tests src/components/WfoTable/utils/tableConfigPersistence.spec.ts
|
|
15
|
-
PASS Wfo-UI Tests src/rtk/utils.spec.ts
|
|
16
15
|
PASS Wfo-UI Tests src/components/WfoTable/utils/tableUtils.spec.ts
|
|
16
|
+
PASS Wfo-UI Tests src/rtk/utils.spec.ts
|
|
17
17
|
PASS Wfo-UI Tests src/utils/resultFlattener.spec.ts
|
|
18
18
|
PASS Wfo-UI Tests src/components/WfoPageTemplate/WfoSidebar/utils/menuItemIsAllowed.spec.ts
|
|
19
19
|
PASS Wfo-UI Tests src/utils/getEnvironmentVariables.spec.ts
|
|
20
20
|
PASS Wfo-UI Tests src/messages/getTranslationMessages.spec.ts
|
|
21
21
|
PASS Wfo-UI Tests src/utils/getToastMessage.spec.ts
|
|
22
|
-
PASS Wfo-UI Tests src/utils/optionalArray.spec.ts
|
|
23
22
|
PASS Wfo-UI Tests src/utils/toSortedObjectKeys.spec.ts
|
|
23
|
+
PASS Wfo-UI Tests src/utils/optionalArray.spec.ts
|
|
24
24
|
PASS Wfo-UI Tests src/components/WfoTable/utils/columns.spec.ts
|
|
25
25
|
PASS Wfo-UI Tests src/utils/filterData.spec.ts
|
|
26
26
|
PASS Wfo-UI Tests src/utils/toObjectWithSerializedValues.spec.ts
|
|
@@ -30,13 +30,13 @@ PASS Wfo-UI Tests src/utils/environmentVariables.spec.ts
|
|
|
30
30
|
PASS Wfo-UI Tests src/utils/onlyUnique.spec.ts
|
|
31
31
|
PASS Wfo-UI Tests src/utils/uuid.spec.ts
|
|
32
32
|
PASS Wfo-UI Tests src/utils/getTypedFieldFromObject.spec.ts
|
|
33
|
-
PASS Wfo-UI Tests src/utils/getQueryVariablesForExport.spec.ts
|
|
34
33
|
PASS Wfo-UI Tests src/utils/cacheTag.spec.ts
|
|
35
34
|
PASS Wfo-UI Tests src/components/WfoPageTemplate/WfoPageHeader/utils/toHexColorWithOpacity.spec.ts
|
|
36
|
-
PASS Wfo-UI Tests src/
|
|
35
|
+
PASS Wfo-UI Tests src/utils/getQueryVariablesForExport.spec.ts
|
|
36
|
+
PASS Wfo-UI Tests src/components/WfoTable/WfoTable/utils.spec.ts (5.882 s)
|
|
37
37
|
|
|
38
38
|
Test Suites: 32 passed, 32 total
|
|
39
39
|
Tests: 197 passed, 197 total
|
|
40
40
|
Snapshots: 0 total
|
|
41
|
-
Time:
|
|
41
|
+
Time: 8.045 s
|
|
42
42
|
Ran all test suites.
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,31 @@
|
|
|
1
1
|
# @orchestrator-ui/orchestrator-ui-components
|
|
2
2
|
|
|
3
|
+
## 2.13.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 195a951: 692 Adds WfoErrorMonitoringProvider for tracing purposes. It exposes 2 methods via the useWfoErrorMonitoring hook. These reporting functions are used within the component library. To start using it, the WfoErrorMonitoringProvider needs to be added to the \_app.tsx and the errorMonitoringHandler needs to be implemented.
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- 95de1e8: 1552 Remove last line of workflow timeline card
|
|
12
|
+
|
|
13
|
+
## 2.12.0
|
|
14
|
+
|
|
15
|
+
### Minor Changes
|
|
16
|
+
|
|
17
|
+
- 6e4d726: 1560 Table Header: for narrow columns, moving the sort icons as much as possible to the right
|
|
18
|
+
- cd0d38f: 1556 Adds inline note editing for the subscription list page
|
|
19
|
+
|
|
20
|
+
### Patch Changes
|
|
21
|
+
|
|
22
|
+
- cdb9c83: 1530 Navigate to task list page when clicking on the tasks count icon
|
|
23
|
+
- 87540ac: 1577 Fixes uncheckable checkbox (only the label was clickable)
|
|
24
|
+
- c592740: 1536 Hides inUseByIds in the list of product block instance values
|
|
25
|
+
- 88a9db4: 1561 Fixes double copy icon in subscription detail page at the in-use-by-subscriptions section
|
|
26
|
+
- d39017a: Fix WfoInlineNoteEdit showing cached value from the previous page on the next one
|
|
27
|
+
- a442a0b: new column width and customer fullname hidden
|
|
28
|
+
|
|
3
29
|
## 2.11.1
|
|
4
30
|
|
|
5
31
|
### Patch Changes
|
package/dist/index.d.ts
CHANGED
|
@@ -10640,6 +10640,80 @@ declare const useStoredTableConfig: <T>(localeStorageKey: string) => () => Store
|
|
|
10640
10640
|
|
|
10641
10641
|
declare function useWithOrchestratorTheme<T>(getStylesFunction: (theme: WfoTheme) => T): T;
|
|
10642
10642
|
|
|
10643
|
+
type ConfirmDialogHandler = (e: React__default.KeyboardEvent<HTMLDivElement> | React__default.MouseEvent<HTMLButtonElement, MouseEvent> | undefined) => void;
|
|
10644
|
+
interface ConfirmDialogState {
|
|
10645
|
+
onConfirm: ConfirmDialogHandler;
|
|
10646
|
+
question: string;
|
|
10647
|
+
isError?: boolean;
|
|
10648
|
+
subQuestion?: string;
|
|
10649
|
+
cancelButtonText?: string;
|
|
10650
|
+
confirmButtonText?: string;
|
|
10651
|
+
}
|
|
10652
|
+
interface ConfirmDialogContext {
|
|
10653
|
+
showConfirmDialog: (props: ConfirmDialogState) => void;
|
|
10654
|
+
closeConfirmDialog: () => void;
|
|
10655
|
+
}
|
|
10656
|
+
declare const ConfirmationDialogContext: React__default.Context<ConfirmDialogContext>;
|
|
10657
|
+
declare const ConfirmationDialogProvider: React__default.Provider<ConfirmDialogContext>;
|
|
10658
|
+
declare function ConfirmationDialogContextWrapper({ children, }: {
|
|
10659
|
+
children: ReactNode;
|
|
10660
|
+
}): _emotion_react_jsx_runtime.JSX.Element;
|
|
10661
|
+
|
|
10662
|
+
declare const emptyOrchestratorConfig: OrchestratorConfig;
|
|
10663
|
+
declare const OrchestratorConfigContext: React__default.Context<OrchestratorConfig>;
|
|
10664
|
+
type OrchestratorConfigProviderProps = {
|
|
10665
|
+
initialOrchestratorConfig: OrchestratorConfig | null;
|
|
10666
|
+
children: ReactNode;
|
|
10667
|
+
};
|
|
10668
|
+
declare const OrchestratorConfigProvider: FC<OrchestratorConfigProviderProps>;
|
|
10669
|
+
|
|
10670
|
+
type Policy = {
|
|
10671
|
+
isAllowedHandler: (routerPath: string, resource?: string) => boolean;
|
|
10672
|
+
};
|
|
10673
|
+
declare const PolicyContext: React__default.Context<Policy>;
|
|
10674
|
+
type PolicyProviderProps = {
|
|
10675
|
+
isAllowedHandler: (routerPath: string, resource?: string) => boolean;
|
|
10676
|
+
children: ReactNode;
|
|
10677
|
+
};
|
|
10678
|
+
declare const PolicyContextProvider: FC<PolicyProviderProps>;
|
|
10679
|
+
|
|
10680
|
+
type TreeContextType = {
|
|
10681
|
+
setDepths: (depths: number[]) => void;
|
|
10682
|
+
selectedIds: number[];
|
|
10683
|
+
expandedIds: number[];
|
|
10684
|
+
toggleSelectedId: (id: number) => void;
|
|
10685
|
+
expandNode: (id: number) => void;
|
|
10686
|
+
collapseNode: (id: number) => void;
|
|
10687
|
+
expandAll: () => void;
|
|
10688
|
+
collapseAll: () => void;
|
|
10689
|
+
resetSelection: () => void;
|
|
10690
|
+
selectAll: () => void;
|
|
10691
|
+
};
|
|
10692
|
+
declare const TreeContext: React.Context<TreeContextType | null>;
|
|
10693
|
+
type TreeProviderProps = {
|
|
10694
|
+
children: ReactNode;
|
|
10695
|
+
};
|
|
10696
|
+
declare const TreeProvider: React.FC<TreeProviderProps>;
|
|
10697
|
+
|
|
10698
|
+
type WfoErrorMonitoring = {
|
|
10699
|
+
reportError: (error: Error | string) => void;
|
|
10700
|
+
reportMessage: (message: string) => void;
|
|
10701
|
+
};
|
|
10702
|
+
declare const emptyWfoErrorMonitoring: WfoErrorMonitoring;
|
|
10703
|
+
declare const WfoErrorMonitoringContext: React__default.Context<WfoErrorMonitoring>;
|
|
10704
|
+
type WfoErrorMonitoringProviderProps = {
|
|
10705
|
+
errorMonitoringHandler?: WfoErrorMonitoring;
|
|
10706
|
+
children: ReactNode;
|
|
10707
|
+
};
|
|
10708
|
+
/**
|
|
10709
|
+
*
|
|
10710
|
+
* @param errorMonitoringHandler for implementing the error monitoring. When not provided, all report calls are no-ops.
|
|
10711
|
+
* @param children
|
|
10712
|
+
*/
|
|
10713
|
+
declare const WfoErrorMonitoringProvider: FC<WfoErrorMonitoringProviderProps>;
|
|
10714
|
+
|
|
10715
|
+
declare const useWfoErrorMonitoring: () => WfoErrorMonitoring;
|
|
10716
|
+
|
|
10643
10717
|
type WfoSession = Session & {
|
|
10644
10718
|
accessToken?: string;
|
|
10645
10719
|
accessTokenExpiresAt?: number;
|
|
@@ -10742,11 +10816,23 @@ type WfoIconProps = {
|
|
|
10742
10816
|
color?: string;
|
|
10743
10817
|
};
|
|
10744
10818
|
|
|
10819
|
+
declare const WfoArrowDownSvg: FC<WfoIconProps>;
|
|
10820
|
+
declare const WfoArrowDown: {
|
|
10821
|
+
({ className, ...iconProps }: WfoIconProps & Omit<WfoHeroIconsWrapperProps, "children">): _emotion_react_jsx_runtime.JSX.Element;
|
|
10822
|
+
displayName: string;
|
|
10823
|
+
};
|
|
10824
|
+
|
|
10745
10825
|
declare const WfoArrowsUpDown: {
|
|
10746
10826
|
({ className, ...iconProps }: WfoIconProps & Omit<WfoHeroIconsWrapperProps, "children">): _emotion_react_jsx_runtime.JSX.Element;
|
|
10747
10827
|
displayName: string;
|
|
10748
10828
|
};
|
|
10749
10829
|
|
|
10830
|
+
declare const WfoArrowUpSvg: FC<WfoIconProps>;
|
|
10831
|
+
declare const WfoArrowUp: {
|
|
10832
|
+
({ className, ...iconProps }: WfoIconProps & Omit<WfoHeroIconsWrapperProps, "children">): _emotion_react_jsx_runtime.JSX.Element;
|
|
10833
|
+
displayName: string;
|
|
10834
|
+
};
|
|
10835
|
+
|
|
10750
10836
|
declare const WfoWrench: {
|
|
10751
10837
|
({ className, ...iconProps }: WfoIconProps & Omit<WfoHeroIconsWrapperProps, "children">): _emotion_react_jsx_runtime.JSX.Element;
|
|
10752
10838
|
displayName: string;
|
|
@@ -10776,12 +10862,8 @@ declare const WfoBoltSlashFill: FC<WfoIconProps>;
|
|
|
10776
10862
|
|
|
10777
10863
|
declare const WfoCubeSolid: FC<WfoIconProps>;
|
|
10778
10864
|
|
|
10779
|
-
declare const WfoArrowNarrowDown: FC<WfoIconProps>;
|
|
10780
|
-
|
|
10781
10865
|
declare const WfoRefresh: FC<WfoIconProps>;
|
|
10782
10866
|
|
|
10783
|
-
declare const WfoArrowNarrowUp: FC<WfoIconProps>;
|
|
10784
|
-
|
|
10785
10867
|
declare const WfoMinusCircleFill: FC<WfoIconProps>;
|
|
10786
10868
|
|
|
10787
10869
|
declare const WfoPlayCircle: FC<WfoIconProps>;
|
|
@@ -10848,6 +10930,7 @@ declare const WfoSortButtons: FC<WfoSortButtonsProps>;
|
|
|
10848
10930
|
|
|
10849
10931
|
type WfoFirstUUIDPartProps = {
|
|
10850
10932
|
UUID: string;
|
|
10933
|
+
showCopyIcon?: boolean;
|
|
10851
10934
|
};
|
|
10852
10935
|
declare const WfoFirstPartUUID: FC<WfoFirstUUIDPartProps>;
|
|
10853
10936
|
|
|
@@ -10934,6 +11017,7 @@ declare const getWfoTableStyles: ({ theme }: WfoTheme) => {
|
|
|
10934
11017
|
expandedRowStyle: _emotion_react.SerializedStyles;
|
|
10935
11018
|
headerCellStyle: _emotion_react.SerializedStyles;
|
|
10936
11019
|
cellStyle: _emotion_react.SerializedStyles;
|
|
11020
|
+
cellContentStyle: _emotion_react.SerializedStyles;
|
|
10937
11021
|
emptyTableMessageStyle: _emotion_react.SerializedStyles;
|
|
10938
11022
|
clickableStyle: _emotion_react.SerializedStyles;
|
|
10939
11023
|
setWidth: (width?: CSSProperties["width"]) => false | _emotion_react.SerializedStyles;
|
|
@@ -13656,61 +13740,6 @@ type AutoFieldsProps = {
|
|
|
13656
13740
|
omitFields?: string[];
|
|
13657
13741
|
};
|
|
13658
13742
|
|
|
13659
|
-
type ConfirmDialogHandler = (e: React__default.KeyboardEvent<HTMLDivElement> | React__default.MouseEvent<HTMLButtonElement, MouseEvent> | undefined) => void;
|
|
13660
|
-
interface ConfirmDialogState {
|
|
13661
|
-
onConfirm: ConfirmDialogHandler;
|
|
13662
|
-
question: string;
|
|
13663
|
-
isError?: boolean;
|
|
13664
|
-
subQuestion?: string;
|
|
13665
|
-
cancelButtonText?: string;
|
|
13666
|
-
confirmButtonText?: string;
|
|
13667
|
-
}
|
|
13668
|
-
interface ConfirmDialogContext {
|
|
13669
|
-
showConfirmDialog: (props: ConfirmDialogState) => void;
|
|
13670
|
-
closeConfirmDialog: () => void;
|
|
13671
|
-
}
|
|
13672
|
-
declare const ConfirmationDialogContext: React__default.Context<ConfirmDialogContext>;
|
|
13673
|
-
declare const ConfirmationDialogProvider: React__default.Provider<ConfirmDialogContext>;
|
|
13674
|
-
declare function ConfirmationDialogContextWrapper({ children, }: {
|
|
13675
|
-
children: ReactNode;
|
|
13676
|
-
}): _emotion_react_jsx_runtime.JSX.Element;
|
|
13677
|
-
|
|
13678
|
-
declare const emptyOrchestratorConfig: OrchestratorConfig;
|
|
13679
|
-
declare const OrchestratorConfigContext: React__default.Context<OrchestratorConfig>;
|
|
13680
|
-
type OrchestratorConfigProviderProps = {
|
|
13681
|
-
initialOrchestratorConfig: OrchestratorConfig | null;
|
|
13682
|
-
children: ReactNode;
|
|
13683
|
-
};
|
|
13684
|
-
declare const OrchestratorConfigProvider: FC<OrchestratorConfigProviderProps>;
|
|
13685
|
-
|
|
13686
|
-
type Policy = {
|
|
13687
|
-
isAllowedHandler: (routerPath: string, resource?: string) => boolean;
|
|
13688
|
-
};
|
|
13689
|
-
declare const PolicyContext: React__default.Context<Policy>;
|
|
13690
|
-
type PolicyProviderProps = {
|
|
13691
|
-
isAllowedHandler: (routerPath: string, resource?: string) => boolean;
|
|
13692
|
-
children: ReactNode;
|
|
13693
|
-
};
|
|
13694
|
-
declare const PolicyContextProvider: FC<PolicyProviderProps>;
|
|
13695
|
-
|
|
13696
|
-
type TreeContextType = {
|
|
13697
|
-
setDepths: (depths: number[]) => void;
|
|
13698
|
-
selectedIds: number[];
|
|
13699
|
-
expandedIds: number[];
|
|
13700
|
-
toggleSelectedId: (id: number) => void;
|
|
13701
|
-
expandNode: (id: number) => void;
|
|
13702
|
-
collapseNode: (id: number) => void;
|
|
13703
|
-
expandAll: () => void;
|
|
13704
|
-
collapseAll: () => void;
|
|
13705
|
-
resetSelection: () => void;
|
|
13706
|
-
selectAll: () => void;
|
|
13707
|
-
};
|
|
13708
|
-
declare const TreeContext: React.Context<TreeContextType | null>;
|
|
13709
|
-
type TreeProviderProps = {
|
|
13710
|
-
children: ReactNode;
|
|
13711
|
-
};
|
|
13712
|
-
declare const TreeProvider: React.FC<TreeProviderProps>;
|
|
13713
|
-
|
|
13714
13743
|
interface IProps$1 {
|
|
13715
13744
|
router: NextRouter;
|
|
13716
13745
|
stepUserInput: JSONSchema6;
|
|
@@ -14433,7 +14462,7 @@ declare const IPAM_IP_BLOCKS_ENDPOINT = "surf/ipam/ip_blocks";
|
|
|
14433
14462
|
declare const IPAM_FREE_SUBNETS_ENDPOINT = "surf/ipam/free_subnets";
|
|
14434
14463
|
declare const SUBSCRIPTION_ACTIONS_ENDPOINT = "subscriptions/workflows";
|
|
14435
14464
|
|
|
14436
|
-
declare const ORCHESTRATOR_UI_LIBRARY_VERSION = "2.
|
|
14465
|
+
declare const ORCHESTRATOR_UI_LIBRARY_VERSION = "2.13.0";
|
|
14437
14466
|
|
|
14438
14467
|
declare const useGetTranslationMessages: (locale: string | undefined) => {
|
|
14439
14468
|
pydanticForms: {
|
|
@@ -15037,4 +15066,4 @@ declare const isUuid4: (value: string) => boolean;
|
|
|
15037
15066
|
|
|
15038
15067
|
declare const getCacheTag: (type: CacheTagType, id?: string) => CacheTag[];
|
|
15039
15068
|
|
|
15040
|
-
export { ACTIVE_PROCESSES_LIST_TABLE_LOCAL_STORAGE_KEY, ACTIVE_TASKS_LIST_TABLE_LOCAL_STORAGE_KEY, AcceptField, type AcceptFieldProps, type AppDispatch, type AutoFieldsProps, BadgeType, type BaseGraphQlResult, BaseQueryTypes, BoolField, type BoolFieldProps, CACHETAG_TYPE_LIST, COMPLETED_PROCESSES_LIST_TABLE_LOCAL_STORAGE_KEY, COMPLETED_TASKS_LIST_TABLE_LOCAL_STORAGE_KEY, type CacheNames, type CacheOption, type CacheTag, CacheTagType, ColorModes, ColumnType, type ConfirmDialogHandler, ConfirmationDialogContext, ConfirmationDialogContextWrapper, ConfirmationDialogProvider, ConnectedSelectField, ContactPersonAutocomplete, ContactPersonNameField, type ContactPersonNameFieldProps, CreateForm, type CustomApiConfig, type Customer, type CustomerDescriptions, CustomerField, type CustomerFieldProps, type CustomerWithSubscriptionCount, type CustomersResult, type CustomersWithSubscriptionCountResult, DEFAULT_PAGE_SIZE, DEFAULT_PAGE_SIZES, type DataDisplayParams, type DataDisplayReturnValues, DateField, type DateFieldProps, DividerField, type DividerFieldProps, type EmailAddress, type EmailState, EngineStatus, Environment, ErrorField, type ErrorFieldProps, ErrorsField, type ErrorsFieldProps, type ExternalService, type FetchFilter, type FieldProps$1 as FieldProps, type FieldValue, type FilterQuery, type FixedInputDefinition, type Form, type FormNotCompleteResponse, type FormValidationError, type GraphQLPageInfo, type GraphQLSort, type GraphQlResultPage, type GraphQlSinglePage, type GraphqlFilter, type GraphqlQueryVariables, type GroupType, type GroupedData, type GroupedStep, HIDDEN_KEYS, type HeaderBadgeProps, HttpStatus, IPAM_ENDPOINT, IPAM_FREE_SUBNETS_ENDPOINT, IPAM_IP_BLOCKS_ENDPOINT, IPAM_PREFIX_FILTERS_ENDPOINT, type IPvAnyNetworkFieldProps, type ImsNode, ImsNodeIdField, type ImsNodeIdFieldProps, type ImsPort, type ImsPortFieldProps, ImsPortIdField, type InUseByRelation, type InUseByRelationDetail, type InUseByRelationsDetailResponse, type InUseByRelationsDetailResult, type InitialOrchestratorStoreConfig, type InputForm, type IpBlock, IpNetworkField, type IpPrefix, LabelField, type LabelFieldProps, ListAddField, type ListAddFieldProps, ListDelField, type ListDelFieldProps, ListField, type ListFieldProps, ListSelectField, type ListSelectFieldProps, Locale, LocationCodeField, type LocationCodeFieldProps, LongTextField, type LongTextFieldProps, MAXIMUM_ITEMS_FOR_BULK_FETCHING, METADATA_PRODUCT_BLOCKS_TABLE_LOCAL_STORAGE_KEY, METADATA_PRODUCT_TABLE_LOCAL_STORAGE_KEY, METADATA_RESOURCE_TYPES_TABLE_LOCAL_STORAGE_KEY, METADATA_TASKS_TABLE_LOCAL_STORAGE_KEY, METADATA_WORKFLOWS_TABLE_LOCAL_STORAGE_KEY, type MetaDataTab, NUMBER_OF_ITEMS_REPRESENTING_ALL_ITEMS, NestField, type NestFieldProps, type NodeSubscriptionOption, type NodeSubscriptionOptionsResult, type Nullable, NumField, type NumFieldProps, ORCHESTRATOR_UI_LIBRARY_VERSION, OptGroupField, type OptGroupFieldProps, type OrchestratorComponentOverride, type OrchestratorConfig, OrchestratorConfigContext, OrchestratorConfigProvider, type OrchestratorConfigProviderProps, PAGE_SIZES_INCLUDING_SHOW_ALL, PATH_METADATA, PATH_METADATA_PRODUCTS, PATH_METADATA_PRODUCT_BLOCKS, PATH_METADATA_RESOURCE_TYPES, PATH_METADATA_TASKS, PATH_METADATA_WORKFLOWS, PATH_SETTINGS, PATH_START, PATH_START_NEW_TASK, PATH_START_NEW_WORKFLOW, PATH_SUBSCRIPTIONS, PATH_TASKS, PATH_WORKFLOWS, PROCESSES_ENDPOINT, PROCESSES_RESUME_ALL_ENDPOINT, PROCESS_ABORT_ENDPOINT, PROCESS_RESUME_ENDPOINT, PROCESS_STATUS_COUNTS_ENDPOINT, type Pagination, type Policy, PolicyContext, PolicyContextProvider, type PolicyProviderProps, PolicyResource, PortMode, type Process, type ProcessDetail, type ProcessDetailResponse, type ProcessDetailResultRaw, ProcessDoneStatuses, type ProcessListExportItem, type ProcessListItem, type ProcessListResponse, type ProcessListResult, type ProcessListSummaryResponse, ProcessStatus, type ProcessStepsResult, type ProcessSummary, type ProcessesDetailResult, type ProductBlockDefinition, type ProductBlockDefinitionsResult, type ProductBlockInstance, type ProductBlocksResponse, type ProductDefinition, type ProductDefinitionsResult, ProductLifecycleStatus, ProductTag, type ProductsResponse, type ProductsSummary, type ProductsSummaryResponse, RENDER_ALL, RESOURCE_TYPE_FIELD_TYPE, RadioField, type RadioFieldProps, type RelatedSubscription, type RelatedSubscriptionListItem, type RelatedSubscriptionVariables, RelatedSubscriptionsQuery, type RelatedSubscriptionsResponse, type RelatedSubscriptionsResult, RenderDirection, type RenderableFieldValue, type ResourceTypeDefinition, type ResourceTypeDefinitionsResult, type ResourceTypesResponse, type RootState, SETTINGS_CACHE_ENDPOINT, SETTINGS_CACHE_NAMES_ENDPOINT, SETTINGS_ENDPOINT, SETTINGS_ENGINE_STATUS_ENDPOINT, SETTINGS_SEARCH_INDEX_RESET_ENDPOINT, SETTINGS_WORKER_STATUS_ENDPOINT, STEP_STATE_HIDDEN_KEYS, SUBSCRIPTIONS_TABLE_LOCAL_STORAGE_KEY, SUBSCRIPTION_ACTIONS_ENDPOINT, type SelectFieldProps, type ServicePort, type SortOption, SortOrder, type StartComboBoxOption, type StartOptionsResponse, type StartOptionsResult, type StartProcessStep, type Step, type StepListItem, type StepState, StepStatus, StoreProvider, type StoreProviderProps, type StoredTableConfig, SubmitField, type SubmitFieldProps, type Subscription, type SubscriptionAction, type SubscriptionActions, type SubscriptionDetail, type SubscriptionDetailProcess, type SubscriptionDetailResponse, type SubscriptionDetailResult, SubscriptionDetailTab, type SubscriptionDropdownOption, type SubscriptionDropdownOptionsResponse, type SubscriptionDropdownOptionsResult, SubscriptionField, type SubscriptionFieldProps, SubscriptionKeyValueBlock, type SubscriptionListItem, type SubscriptionListResponse, type SubscriptionListSummaryResponse, SubscriptionStatus, type SubscriptionSummary, SubscriptionSummaryField, type SubscriptionSummaryFieldProps, type SubscriptionsResult, type SummaryCardButtonConfig, type SummaryCardListItem, SummaryCardStatus, SummaryField, type SummaryFieldProps, TABLE_ROW_HEIGHT, type TableColumnKeys, type TableSettingsColumnConfig, type TableSettingsConfig, TableSettingsModal, type TableSettingsModalProps, type TaskDefinition, type TaskDefinitionsResult, type TaskListItem, type TasksResponse, TextField, type TextFieldProps, type TimelineItem, TimelinePosition, TimestampField, type TimestampFieldProps, type ToastState, ToastTypes, type TreeBlock, TreeContext, type TreeContextType, TreeProvider, type TreeProviderProps, UnconnectedSelectField, type UserInputForm, UserInputFormWizard, type ValidationError, type ValidationErrorContext, type ValueOverrideConfiguration, type ValueOverrideFunction, VlanField, type VlanFieldProps, type VlanRange, WFO_STATUS_COLOR_FIELD, type WfValueOnlyTableProps, WfoActiveWorkflowsSummaryCard, WfoActualWork, WfoAdvancedTable, type WfoAdvancedTableColumnConfig, type WfoAdvancedTableDataColumnConfig, type WfoAdvancedTableDataColumnConfigItem, type WfoAdvancedTableProps, WfoArrowNarrowDown, WfoArrowNarrowUp, WfoArrowsExpand, WfoArrowsUpDown, WfoAuth, WfoBadge, type WfoBadgeProps, WfoBell, WfoBoltFill, WfoBoltSlashFill, WfoBreadcrumbs, WfoCheckmarkCircleFill, WfoChevronDown, WfoChevronUp, WfoCode, WfoCogFill, WfoContactEnvelopeFill, WfoContentHeader, type WfoContentHeaderProps, WfoCubeSolid, WfoCustomerDescriptionsField, type WfoCustomerDescriptionsFieldProps, WfoDataCell, type WfoDataSearch, type WfoDataSorting, WfoDateTime, type WfoDateTimeProps, WfoDropdownButton, WfoEngineStatus, WfoEngineStatusBadge, WfoEngineStatusButton, WfoEnvironmentBadge, WfoError, WfoErrorBoundary, WfoErrorWithMessage, WfoExpandableField, type WfoExpandableFieldProps, WfoExternalLink, WfoEyeFill, WfoFailedTasksBadge, WfoFailedTasksSummaryCard, type WfoFilterTab, WfoFilterTabs, type WfoFilterTabsProps, WfoFirstPartUUID, type WfoFirstUUIDPartProps, WfoFlushSettings, type WfoGraphqlError, type WfoGraphqlErrorsMeta, WfoGroupedTable, type WfoGroupedTableProps, WfoHeaderBadge, WfoHeroIconsWrapper, type WfoHeroIconsWrapperProps, type WfoIconProps, WfoInSyncField, WfoInformationModal, type WfoInformationModalProps, WfoInlineJson, type WfoInlineJsonProps, WfoInlineNoteEdit, WfoInsyncIcon, WfoIsAllowedToRender, type WfoIsAllowedToRenderProps, WfoJsonCodeBlock, type WfoJsonCodeBlockProps, WfoKeyCell, type WfoKeyCellProps, WfoKeyValueTable, type WfoKeyValueTableDataType, type WfoKeyValueTableProps, WfoLatestActiveSubscriptionsSummaryCard, WfoLatestOutOfSyncSubscriptionSummaryCard, WfoLoading, WfoLogoutIcon, WfoMalfunction, WfoMenuItemLink, WfoMetadataPageLayout, WfoMinusCircleFill, WfoMinusCircleOutline, WfoModifySettings, WfoMultilineCell, type WfoMultilineCellProps, WfoMyWorkflowsSummaryCard, type WfoMyWorkflowsSummaryCardProps, WfoNoResults, WfoPageHeader, type WfoPageHeaderProps, WfoPageTemplate, type WfoPageTemplateProps, WfoPageUnauthorized, WfoPencil, WfoPencilAlt, WfoPlannedWork, WfoPlayCircle, WfoPlayFill, WfoPlusCircleFill, type WfoPolicyRenderFallbackProps, WfoPolicyRenderPageFallback, WfoPort, WfoProcessDetailPage, WfoProcessListSubscriptionsCell, WfoProcessRawData, WfoProcessStatusBadge, type WfoProcessStatusBadgeProps, WfoProcessSubscriptionDelta, WfoProcessesList, type WfoProcessesListProps, type WfoProcessesListSubscriptionsCellProps, WfoProcessesTimeline, WfoProductBlockBadge, type WfoProductBlockBadgeProps, WfoProductBlockKeyValueRow, type WfoProductBlockKeyValueRowProps, WfoProductBlocksPage, WfoProductInformationWithLink, WfoProductStatusBadge, type WfoProductStatusBadgeProps, WfoProductsPage, WfoProductsSummaryCard, WfoRadioDropdown, type WfoRadioDropdownOption, type WfoRadioDropdownProps, WfoRefresh, WfoRelatedSubscriptions, WfoRenderElementOrString, type WfoRenderElementOrStringProps, WfoResetTextSearchIndexButton, WfoResourceTypesPage, WfoRowContextMenu, type WfoRowContextMenuProps, WfoSearchField, type WfoSearchFieldProps, WfoSearchStrikethrough, type WfoSession, WfoSettingsModal, type WfoSettingsModalProps, WfoSettingsPage, WfoShare, WfoSideMenu, WfoSidebar, type WfoSidebarProps, WfoSortAsc, WfoSortButton, type WfoSortButtonProps, WfoSortButtons, type WfoSortButtonsProps, WfoSortDesc, WfoSortDirectionIcon, type WfoSortDirectionIconProps, WfoStartPage, WfoStartProcessPage, WfoStartTaskButtonComboBox, WfoStartWorkflowButtonComboBox, WfoStatistic, WfoStatusColorField, type WfoStatusColorFieldProps, WfoStatusDotIcon, WfoStep, WfoStepList, WfoStepListHeader, type WfoStepListHeaderProps, type WfoStepListProps, type WfoStepListRef, type WfoStepProps, WfoStepStatusIcon, type WfoStepStatusIconProps, WfoSubmitModal, type WfoSubmitModalProps, WfoSubscription, WfoSubscriptionActions, type WfoSubscriptionActionsProps, type WfoSubscriptionDetailGeneralConfiguration, WfoSubscriptionDetailPage, WfoSubscriptionDetailSection, WfoSubscriptionDetailTree, WfoSubscriptionFixedInputSection, WfoSubscriptionGeneral, WfoSubscriptionGeneralSections, WfoSubscriptionListTab, WfoSubscriptionMetadataSection, WfoSubscriptionProductBlock, WfoSubscriptionProductInfoSection, WfoSubscriptionStatusBadge, type WfoSubscriptionStatusBadgeProps, WfoSubscriptionSyncStatusBadge, type WfoSubscriptionSyncStatusBadgeProps, WfoSubscriptionsList, WfoSubscriptionsListPage, type WfoSubscriptionsListProps, WfoSummaryCard, WfoSummaryCardHeader, type WfoSummaryCardHeaderProps, WfoSummaryCardList, WfoSummaryCardListItem, type WfoSummaryCardListItemProps, type WfoSummaryCardListProps, type WfoSummaryCardProps, WfoSummaryCards, type WfoSummaryCardsProps, WfoTable, WfoTableCodeBlock, type WfoTableCodeBlockProps, type WfoTableColumnConfig, type WfoTableControlColumnConfig, type WfoTableControlColumnConfigItem, type WfoTableDataColumnConfig, type WfoTableDataColumnConfigItem, WfoTableHeaderCell, type WfoTableHeaderCellProps, type WfoTableProps, WfoTasksListPage, WfoTasksListTabType, WfoTasksPage, WfoTextAnchor, type WfoTheme, type WfoThemeComputed, type WfoThemeExtraColors, WfoTimeline, type WfoTimelineProps, WfoTitleWithWebsocketBadge, WfoToastsList, WfoToolTip, WfoTrash, type WfoTreeNodeMap, WfoTruncateCell, type WfoTruncateCellProps, WfoUserInputForm, type WfoUserProfile, WfoValueCell, type WfoValueCellProps, WfoValueOnlyTable, type WfoValueOnlyTableDataType, WfoViewList, WfoWarningTriangle, WfoWebsocketStatusBadge, WfoWorkerStatus, WfoWorkflowStepList, type WfoWorkflowStepListProps, WfoWorkflowTargetBadge, type WfoWorkflowTargetBadgeProps, WfoWorkflowsListPage, WfoWorkflowsListTabType, WfoWorkflowsPage, WfoWrench, WfoXCircleFill, WorkerTypes, type WorkflowDefinition, type WorkflowDefinitionsResult, type WorkflowListItem, WorkflowTarget, type WorkflowsDescriptionQueryVariables, type WorkflowsDescriptionResponse, type WorkflowsResponse, addToastMessage, calculateTimeDifference, camelToHuman, catchErrorResponse, clearTableConfigFromLocalStorage, csvDownloadHandler, defaultOrchestratorTheme, defaultTasksListTabs, defaultWorkflowsListTabs, determineNewSortOrder, determinePageIndex, emptyOrchestratorConfig, filterDataByCriteria, flattenArrayProps, formatDate, formatDateCetWithUtc, getCacheTag, getConcatenatedPagedResult, getConcatenatedResult, getCsvFileNameWithDate, getCurrentBrowserLocale, getCustomApiSlice, getDataSortHandler, getDate, getDefaultTableConfig, getEnvironmentVariables, getFieldFromProductBlockInstanceValues, getFirstUuidPart, getFormFieldsBaseStyle, getLastUncompletedProcess, getLatestTaskDate, getNumberOfColumns, getNumberValueFromEnvironmentVariable, getObjectKeys, getOrchestratorComponentOverrideSlice, getOrchestratorConfigSlice, getOrchestratorStore, getPageIndexChangeHandler, getPageSizeChangeHandler, getProductBlockTitle, getProductNamesFromProcess, getQueryStringHandler, getQueryVariablesForExport, getRowDetailData, getSortDirectionFromString, getStatusBadgeColor, getStepContent, getStyles, getTableConfigFromLocalStorage, getTasksListTabTypeFromString, getTotalNumberOfRows, getTypedFieldFromObject, getWfoGroupedTableStyles, getWfoTableStyles, getWorkflowTargetColor, getWorkflowTargetIconContent, getWorkflowsListTabTypeFromString, graphQlWorkflowListMapper, groupData, handleGraphqlMetaErrors, handlePromiseErrorWithCallback, imsPortIdFieldStyling, initiateCsvFileDownload, ipPrefixTableFieldStyling, ipamStates, isAllUpperCase, isToday, isUuid4, isValidLocalStorageTableConfig, localMomentToUtcTimestamp, mapGraphQlSubscriptionsResultToPageInfo, mapGraphQlSubscriptionsResultToSubscriptionListItems, mapProcessSummaryToSummaryCardListItem, mapRtkErrorToWfoError, mapSubscriptionSummaryToSummaryCardListItem, mapWorkflowDefinitionToWorkflowListItem, menuItemIsAllowed, metaDataTabs, onlyUnique, optionalArrayMapper, orchestratorApi, parseDate, parseDateOrTimeRelativeToToday, parseDateRelativeToToday, parseDateToLocaleDateString, parseDateToLocaleDateTimeString, parseDateToLocaleTimeString, parseIsoString, prepareHeaders, processDetailQuery, processListQuery, processListSummaryQuery, processStepsQuery, productBlocksQuery, products, productsSummary, removeSuffix, removeToastMessage, resourceTypesQuery, selectOrchestratorConfig, setTableConfigToLocalStorage, snakeToHuman, snakeToKebab, sortProcessesByDate, splitPrefixStyling, stop, stripUndefined, subscriptionDetailFragment, subscriptionDetailQuery, subscriptionInUseByRelationQuery, subscriptionListQuery, subscriptionListSummaryQuery, subscriptionListTabs, subscriptionsDropdownOptionsQuery, tasksQuery, toObjectWithSerializedValues, toObjectWithSortedKeys, toObjectWithSortedProperties, toOptionalArrayEntry, toSortedTableColumnConfig, toastMessagesReducer, toastMessagesSlice, updateQueryString, upperCaseFirstChar, urlPolicyMap, useAbortProcessMutation, useCheckEngineStatus, useClearCacheMutation, useDataDisplayParams, useDeleteProcessMutation, useGetCacheNamesQuery, useGetCustomerQuery, useGetCustomersQuery, useGetCustomersWithSubscriptionCountQuery, useGetDescriptionForWorkflowNameQuery, useGetEngineStatusQuery, useGetInUseByRelationDetailsQuery, useGetOrchestratorConfig, useGetProcessDetailQuery, useGetProcessListQuery, useGetProcessListSummaryQuery, useGetProductBlocksQuery, useGetProductsQuery, useGetProductsSummaryQuery, useGetRawProcessDetailQuery, useGetRelatedSubscriptionsQuery, useGetResourceTypesQuery, useGetSubscriptionActionsQuery, useGetSubscriptionDetailQuery, useGetSubscriptionListQuery, useGetSubscriptionSummaryListQuery, useGetSubscriptionsDropdownOptionsQuery, useGetTaskOptionsQuery, useGetTasksQuery, useGetTimeLineItemsQuery, useGetTranslationMessages, useGetWorkerStatusQuery, useGetWorkflowOptionsQuery, useGetWorkflowsQuery, useLazyGetProcessListQuery, useLazyGetProductBlocksQuery, useLazyGetProductsQuery, useLazyGetResourceTypesQuery, useLazyGetSubscriptionActionsQuery, useLazyGetSubscriptionListQuery, useLazyGetTasksQuery, useLazyGetWorkflowsQuery, useLazyStreamMessagesQuery, useOrchestratorConfig, useOrchestratorTheme, usePolicy, useResetTextSearchIndexMutation, useResumeProcessMutation, useRetryAllProcessesMutation, useRetryProcessMutation, useSetEngineStatusMutation, useSetSubscriptionInSyncMutation, useShowToastMessage, useStartFormMutation, useStartProcessMutation, useStoredTableConfig, useStreamMessagesQuery, useSubscriptionDetailGeneralSectionConfigurationOverride, useSubscriptionDetailValueOverride, useWfoSession, useWithOrchestratorTheme, utcTimestampToLocalMoment, wfoGraphqlRequestBaseQuery, withWfoHeroIconsWrapper, workflowFieldMapper, workflowsDescription, workflowsQuery };
|
|
15069
|
+
export { ACTIVE_PROCESSES_LIST_TABLE_LOCAL_STORAGE_KEY, ACTIVE_TASKS_LIST_TABLE_LOCAL_STORAGE_KEY, AcceptField, type AcceptFieldProps, type AppDispatch, type AutoFieldsProps, BadgeType, type BaseGraphQlResult, BaseQueryTypes, BoolField, type BoolFieldProps, CACHETAG_TYPE_LIST, COMPLETED_PROCESSES_LIST_TABLE_LOCAL_STORAGE_KEY, COMPLETED_TASKS_LIST_TABLE_LOCAL_STORAGE_KEY, type CacheNames, type CacheOption, type CacheTag, CacheTagType, ColorModes, ColumnType, type ConfirmDialogHandler, ConfirmationDialogContext, ConfirmationDialogContextWrapper, ConfirmationDialogProvider, ConnectedSelectField, ContactPersonAutocomplete, ContactPersonNameField, type ContactPersonNameFieldProps, CreateForm, type CustomApiConfig, type Customer, type CustomerDescriptions, CustomerField, type CustomerFieldProps, type CustomerWithSubscriptionCount, type CustomersResult, type CustomersWithSubscriptionCountResult, DEFAULT_PAGE_SIZE, DEFAULT_PAGE_SIZES, type DataDisplayParams, type DataDisplayReturnValues, DateField, type DateFieldProps, DividerField, type DividerFieldProps, type EmailAddress, type EmailState, EngineStatus, Environment, ErrorField, type ErrorFieldProps, ErrorsField, type ErrorsFieldProps, type ExternalService, type FetchFilter, type FieldProps$1 as FieldProps, type FieldValue, type FilterQuery, type FixedInputDefinition, type Form, type FormNotCompleteResponse, type FormValidationError, type GraphQLPageInfo, type GraphQLSort, type GraphQlResultPage, type GraphQlSinglePage, type GraphqlFilter, type GraphqlQueryVariables, type GroupType, type GroupedData, type GroupedStep, HIDDEN_KEYS, type HeaderBadgeProps, HttpStatus, IPAM_ENDPOINT, IPAM_FREE_SUBNETS_ENDPOINT, IPAM_IP_BLOCKS_ENDPOINT, IPAM_PREFIX_FILTERS_ENDPOINT, type IPvAnyNetworkFieldProps, type ImsNode, ImsNodeIdField, type ImsNodeIdFieldProps, type ImsPort, type ImsPortFieldProps, ImsPortIdField, type InUseByRelation, type InUseByRelationDetail, type InUseByRelationsDetailResponse, type InUseByRelationsDetailResult, type InitialOrchestratorStoreConfig, type InputForm, type IpBlock, IpNetworkField, type IpPrefix, LabelField, type LabelFieldProps, ListAddField, type ListAddFieldProps, ListDelField, type ListDelFieldProps, ListField, type ListFieldProps, ListSelectField, type ListSelectFieldProps, Locale, LocationCodeField, type LocationCodeFieldProps, LongTextField, type LongTextFieldProps, MAXIMUM_ITEMS_FOR_BULK_FETCHING, METADATA_PRODUCT_BLOCKS_TABLE_LOCAL_STORAGE_KEY, METADATA_PRODUCT_TABLE_LOCAL_STORAGE_KEY, METADATA_RESOURCE_TYPES_TABLE_LOCAL_STORAGE_KEY, METADATA_TASKS_TABLE_LOCAL_STORAGE_KEY, METADATA_WORKFLOWS_TABLE_LOCAL_STORAGE_KEY, type MetaDataTab, NUMBER_OF_ITEMS_REPRESENTING_ALL_ITEMS, NestField, type NestFieldProps, type NodeSubscriptionOption, type NodeSubscriptionOptionsResult, type Nullable, NumField, type NumFieldProps, ORCHESTRATOR_UI_LIBRARY_VERSION, OptGroupField, type OptGroupFieldProps, type OrchestratorComponentOverride, type OrchestratorConfig, OrchestratorConfigContext, OrchestratorConfigProvider, type OrchestratorConfigProviderProps, PAGE_SIZES_INCLUDING_SHOW_ALL, PATH_METADATA, PATH_METADATA_PRODUCTS, PATH_METADATA_PRODUCT_BLOCKS, PATH_METADATA_RESOURCE_TYPES, PATH_METADATA_TASKS, PATH_METADATA_WORKFLOWS, PATH_SETTINGS, PATH_START, PATH_START_NEW_TASK, PATH_START_NEW_WORKFLOW, PATH_SUBSCRIPTIONS, PATH_TASKS, PATH_WORKFLOWS, PROCESSES_ENDPOINT, PROCESSES_RESUME_ALL_ENDPOINT, PROCESS_ABORT_ENDPOINT, PROCESS_RESUME_ENDPOINT, PROCESS_STATUS_COUNTS_ENDPOINT, type Pagination, type Policy, PolicyContext, PolicyContextProvider, type PolicyProviderProps, PolicyResource, PortMode, type Process, type ProcessDetail, type ProcessDetailResponse, type ProcessDetailResultRaw, ProcessDoneStatuses, type ProcessListExportItem, type ProcessListItem, type ProcessListResponse, type ProcessListResult, type ProcessListSummaryResponse, ProcessStatus, type ProcessStepsResult, type ProcessSummary, type ProcessesDetailResult, type ProductBlockDefinition, type ProductBlockDefinitionsResult, type ProductBlockInstance, type ProductBlocksResponse, type ProductDefinition, type ProductDefinitionsResult, ProductLifecycleStatus, ProductTag, type ProductsResponse, type ProductsSummary, type ProductsSummaryResponse, RENDER_ALL, RESOURCE_TYPE_FIELD_TYPE, RadioField, type RadioFieldProps, type RelatedSubscription, type RelatedSubscriptionListItem, type RelatedSubscriptionVariables, RelatedSubscriptionsQuery, type RelatedSubscriptionsResponse, type RelatedSubscriptionsResult, RenderDirection, type RenderableFieldValue, type ResourceTypeDefinition, type ResourceTypeDefinitionsResult, type ResourceTypesResponse, type RootState, SETTINGS_CACHE_ENDPOINT, SETTINGS_CACHE_NAMES_ENDPOINT, SETTINGS_ENDPOINT, SETTINGS_ENGINE_STATUS_ENDPOINT, SETTINGS_SEARCH_INDEX_RESET_ENDPOINT, SETTINGS_WORKER_STATUS_ENDPOINT, STEP_STATE_HIDDEN_KEYS, SUBSCRIPTIONS_TABLE_LOCAL_STORAGE_KEY, SUBSCRIPTION_ACTIONS_ENDPOINT, type SelectFieldProps, type ServicePort, type SortOption, SortOrder, type StartComboBoxOption, type StartOptionsResponse, type StartOptionsResult, type StartProcessStep, type Step, type StepListItem, type StepState, StepStatus, StoreProvider, type StoreProviderProps, type StoredTableConfig, SubmitField, type SubmitFieldProps, type Subscription, type SubscriptionAction, type SubscriptionActions, type SubscriptionDetail, type SubscriptionDetailProcess, type SubscriptionDetailResponse, type SubscriptionDetailResult, SubscriptionDetailTab, type SubscriptionDropdownOption, type SubscriptionDropdownOptionsResponse, type SubscriptionDropdownOptionsResult, SubscriptionField, type SubscriptionFieldProps, SubscriptionKeyValueBlock, type SubscriptionListItem, type SubscriptionListResponse, type SubscriptionListSummaryResponse, SubscriptionStatus, type SubscriptionSummary, SubscriptionSummaryField, type SubscriptionSummaryFieldProps, type SubscriptionsResult, type SummaryCardButtonConfig, type SummaryCardListItem, SummaryCardStatus, SummaryField, type SummaryFieldProps, TABLE_ROW_HEIGHT, type TableColumnKeys, type TableSettingsColumnConfig, type TableSettingsConfig, TableSettingsModal, type TableSettingsModalProps, type TaskDefinition, type TaskDefinitionsResult, type TaskListItem, type TasksResponse, TextField, type TextFieldProps, type TimelineItem, TimelinePosition, TimestampField, type TimestampFieldProps, type ToastState, ToastTypes, type TreeBlock, TreeContext, type TreeContextType, TreeProvider, type TreeProviderProps, UnconnectedSelectField, type UserInputForm, UserInputFormWizard, type ValidationError, type ValidationErrorContext, type ValueOverrideConfiguration, type ValueOverrideFunction, VlanField, type VlanFieldProps, type VlanRange, WFO_STATUS_COLOR_FIELD, type WfValueOnlyTableProps, WfoActiveWorkflowsSummaryCard, WfoActualWork, WfoAdvancedTable, type WfoAdvancedTableColumnConfig, type WfoAdvancedTableDataColumnConfig, type WfoAdvancedTableDataColumnConfigItem, type WfoAdvancedTableProps, WfoArrowDown, WfoArrowDownSvg, WfoArrowUp, WfoArrowUpSvg, WfoArrowsExpand, WfoArrowsUpDown, WfoAuth, WfoBadge, type WfoBadgeProps, WfoBell, WfoBoltFill, WfoBoltSlashFill, WfoBreadcrumbs, WfoCheckmarkCircleFill, WfoChevronDown, WfoChevronUp, WfoCode, WfoCogFill, WfoContactEnvelopeFill, WfoContentHeader, type WfoContentHeaderProps, WfoCubeSolid, WfoCustomerDescriptionsField, type WfoCustomerDescriptionsFieldProps, WfoDataCell, type WfoDataSearch, type WfoDataSorting, WfoDateTime, type WfoDateTimeProps, WfoDropdownButton, WfoEngineStatus, WfoEngineStatusBadge, WfoEngineStatusButton, WfoEnvironmentBadge, WfoError, WfoErrorBoundary, type WfoErrorMonitoring, WfoErrorMonitoringContext, WfoErrorMonitoringProvider, type WfoErrorMonitoringProviderProps, WfoErrorWithMessage, WfoExpandableField, type WfoExpandableFieldProps, WfoExternalLink, WfoEyeFill, WfoFailedTasksBadge, WfoFailedTasksSummaryCard, type WfoFilterTab, WfoFilterTabs, type WfoFilterTabsProps, WfoFirstPartUUID, type WfoFirstUUIDPartProps, WfoFlushSettings, type WfoGraphqlError, type WfoGraphqlErrorsMeta, WfoGroupedTable, type WfoGroupedTableProps, WfoHeaderBadge, WfoHeroIconsWrapper, type WfoHeroIconsWrapperProps, type WfoIconProps, WfoInSyncField, WfoInformationModal, type WfoInformationModalProps, WfoInlineJson, type WfoInlineJsonProps, WfoInlineNoteEdit, WfoInsyncIcon, WfoIsAllowedToRender, type WfoIsAllowedToRenderProps, WfoJsonCodeBlock, type WfoJsonCodeBlockProps, WfoKeyCell, type WfoKeyCellProps, WfoKeyValueTable, type WfoKeyValueTableDataType, type WfoKeyValueTableProps, WfoLatestActiveSubscriptionsSummaryCard, WfoLatestOutOfSyncSubscriptionSummaryCard, WfoLoading, WfoLogoutIcon, WfoMalfunction, WfoMenuItemLink, WfoMetadataPageLayout, WfoMinusCircleFill, WfoMinusCircleOutline, WfoModifySettings, WfoMultilineCell, type WfoMultilineCellProps, WfoMyWorkflowsSummaryCard, type WfoMyWorkflowsSummaryCardProps, WfoNoResults, WfoPageHeader, type WfoPageHeaderProps, WfoPageTemplate, type WfoPageTemplateProps, WfoPageUnauthorized, WfoPencil, WfoPencilAlt, WfoPlannedWork, WfoPlayCircle, WfoPlayFill, WfoPlusCircleFill, type WfoPolicyRenderFallbackProps, WfoPolicyRenderPageFallback, WfoPort, WfoProcessDetailPage, WfoProcessListSubscriptionsCell, WfoProcessRawData, WfoProcessStatusBadge, type WfoProcessStatusBadgeProps, WfoProcessSubscriptionDelta, WfoProcessesList, type WfoProcessesListProps, type WfoProcessesListSubscriptionsCellProps, WfoProcessesTimeline, WfoProductBlockBadge, type WfoProductBlockBadgeProps, WfoProductBlockKeyValueRow, type WfoProductBlockKeyValueRowProps, WfoProductBlocksPage, WfoProductInformationWithLink, WfoProductStatusBadge, type WfoProductStatusBadgeProps, WfoProductsPage, WfoProductsSummaryCard, WfoRadioDropdown, type WfoRadioDropdownOption, type WfoRadioDropdownProps, WfoRefresh, WfoRelatedSubscriptions, WfoRenderElementOrString, type WfoRenderElementOrStringProps, WfoResetTextSearchIndexButton, WfoResourceTypesPage, WfoRowContextMenu, type WfoRowContextMenuProps, WfoSearchField, type WfoSearchFieldProps, WfoSearchStrikethrough, type WfoSession, WfoSettingsModal, type WfoSettingsModalProps, WfoSettingsPage, WfoShare, WfoSideMenu, WfoSidebar, type WfoSidebarProps, WfoSortAsc, WfoSortButton, type WfoSortButtonProps, WfoSortButtons, type WfoSortButtonsProps, WfoSortDesc, WfoSortDirectionIcon, type WfoSortDirectionIconProps, WfoStartPage, WfoStartProcessPage, WfoStartTaskButtonComboBox, WfoStartWorkflowButtonComboBox, WfoStatistic, WfoStatusColorField, type WfoStatusColorFieldProps, WfoStatusDotIcon, WfoStep, WfoStepList, WfoStepListHeader, type WfoStepListHeaderProps, type WfoStepListProps, type WfoStepListRef, type WfoStepProps, WfoStepStatusIcon, type WfoStepStatusIconProps, WfoSubmitModal, type WfoSubmitModalProps, WfoSubscription, WfoSubscriptionActions, type WfoSubscriptionActionsProps, type WfoSubscriptionDetailGeneralConfiguration, WfoSubscriptionDetailPage, WfoSubscriptionDetailSection, WfoSubscriptionDetailTree, WfoSubscriptionFixedInputSection, WfoSubscriptionGeneral, WfoSubscriptionGeneralSections, WfoSubscriptionListTab, WfoSubscriptionMetadataSection, WfoSubscriptionProductBlock, WfoSubscriptionProductInfoSection, WfoSubscriptionStatusBadge, type WfoSubscriptionStatusBadgeProps, WfoSubscriptionSyncStatusBadge, type WfoSubscriptionSyncStatusBadgeProps, WfoSubscriptionsList, WfoSubscriptionsListPage, type WfoSubscriptionsListProps, WfoSummaryCard, WfoSummaryCardHeader, type WfoSummaryCardHeaderProps, WfoSummaryCardList, WfoSummaryCardListItem, type WfoSummaryCardListItemProps, type WfoSummaryCardListProps, type WfoSummaryCardProps, WfoSummaryCards, type WfoSummaryCardsProps, WfoTable, WfoTableCodeBlock, type WfoTableCodeBlockProps, type WfoTableColumnConfig, type WfoTableControlColumnConfig, type WfoTableControlColumnConfigItem, type WfoTableDataColumnConfig, type WfoTableDataColumnConfigItem, WfoTableHeaderCell, type WfoTableHeaderCellProps, type WfoTableProps, WfoTasksListPage, WfoTasksListTabType, WfoTasksPage, WfoTextAnchor, type WfoTheme, type WfoThemeComputed, type WfoThemeExtraColors, WfoTimeline, type WfoTimelineProps, WfoTitleWithWebsocketBadge, WfoToastsList, WfoToolTip, WfoTrash, type WfoTreeNodeMap, WfoTruncateCell, type WfoTruncateCellProps, WfoUserInputForm, type WfoUserProfile, WfoValueCell, type WfoValueCellProps, WfoValueOnlyTable, type WfoValueOnlyTableDataType, WfoViewList, WfoWarningTriangle, WfoWebsocketStatusBadge, WfoWorkerStatus, WfoWorkflowStepList, type WfoWorkflowStepListProps, WfoWorkflowTargetBadge, type WfoWorkflowTargetBadgeProps, WfoWorkflowsListPage, WfoWorkflowsListTabType, WfoWorkflowsPage, WfoWrench, WfoXCircleFill, WorkerTypes, type WorkflowDefinition, type WorkflowDefinitionsResult, type WorkflowListItem, WorkflowTarget, type WorkflowsDescriptionQueryVariables, type WorkflowsDescriptionResponse, type WorkflowsResponse, addToastMessage, calculateTimeDifference, camelToHuman, catchErrorResponse, clearTableConfigFromLocalStorage, csvDownloadHandler, defaultOrchestratorTheme, defaultTasksListTabs, defaultWorkflowsListTabs, determineNewSortOrder, determinePageIndex, emptyOrchestratorConfig, emptyWfoErrorMonitoring, filterDataByCriteria, flattenArrayProps, formatDate, formatDateCetWithUtc, getCacheTag, getConcatenatedPagedResult, getConcatenatedResult, getCsvFileNameWithDate, getCurrentBrowserLocale, getCustomApiSlice, getDataSortHandler, getDate, getDefaultTableConfig, getEnvironmentVariables, getFieldFromProductBlockInstanceValues, getFirstUuidPart, getFormFieldsBaseStyle, getLastUncompletedProcess, getLatestTaskDate, getNumberOfColumns, getNumberValueFromEnvironmentVariable, getObjectKeys, getOrchestratorComponentOverrideSlice, getOrchestratorConfigSlice, getOrchestratorStore, getPageIndexChangeHandler, getPageSizeChangeHandler, getProductBlockTitle, getProductNamesFromProcess, getQueryStringHandler, getQueryVariablesForExport, getRowDetailData, getSortDirectionFromString, getStatusBadgeColor, getStepContent, getStyles, getTableConfigFromLocalStorage, getTasksListTabTypeFromString, getTotalNumberOfRows, getTypedFieldFromObject, getWfoGroupedTableStyles, getWfoTableStyles, getWorkflowTargetColor, getWorkflowTargetIconContent, getWorkflowsListTabTypeFromString, graphQlWorkflowListMapper, groupData, handleGraphqlMetaErrors, handlePromiseErrorWithCallback, imsPortIdFieldStyling, initiateCsvFileDownload, ipPrefixTableFieldStyling, ipamStates, isAllUpperCase, isToday, isUuid4, isValidLocalStorageTableConfig, localMomentToUtcTimestamp, mapGraphQlSubscriptionsResultToPageInfo, mapGraphQlSubscriptionsResultToSubscriptionListItems, mapProcessSummaryToSummaryCardListItem, mapRtkErrorToWfoError, mapSubscriptionSummaryToSummaryCardListItem, mapWorkflowDefinitionToWorkflowListItem, menuItemIsAllowed, metaDataTabs, onlyUnique, optionalArrayMapper, orchestratorApi, parseDate, parseDateOrTimeRelativeToToday, parseDateRelativeToToday, parseDateToLocaleDateString, parseDateToLocaleDateTimeString, parseDateToLocaleTimeString, parseIsoString, prepareHeaders, processDetailQuery, processListQuery, processListSummaryQuery, processStepsQuery, productBlocksQuery, products, productsSummary, removeSuffix, removeToastMessage, resourceTypesQuery, selectOrchestratorConfig, setTableConfigToLocalStorage, snakeToHuman, snakeToKebab, sortProcessesByDate, splitPrefixStyling, stop, stripUndefined, subscriptionDetailFragment, subscriptionDetailQuery, subscriptionInUseByRelationQuery, subscriptionListQuery, subscriptionListSummaryQuery, subscriptionListTabs, subscriptionsDropdownOptionsQuery, tasksQuery, toObjectWithSerializedValues, toObjectWithSortedKeys, toObjectWithSortedProperties, toOptionalArrayEntry, toSortedTableColumnConfig, toastMessagesReducer, toastMessagesSlice, updateQueryString, upperCaseFirstChar, urlPolicyMap, useAbortProcessMutation, useCheckEngineStatus, useClearCacheMutation, useDataDisplayParams, useDeleteProcessMutation, useGetCacheNamesQuery, useGetCustomerQuery, useGetCustomersQuery, useGetCustomersWithSubscriptionCountQuery, useGetDescriptionForWorkflowNameQuery, useGetEngineStatusQuery, useGetInUseByRelationDetailsQuery, useGetOrchestratorConfig, useGetProcessDetailQuery, useGetProcessListQuery, useGetProcessListSummaryQuery, useGetProductBlocksQuery, useGetProductsQuery, useGetProductsSummaryQuery, useGetRawProcessDetailQuery, useGetRelatedSubscriptionsQuery, useGetResourceTypesQuery, useGetSubscriptionActionsQuery, useGetSubscriptionDetailQuery, useGetSubscriptionListQuery, useGetSubscriptionSummaryListQuery, useGetSubscriptionsDropdownOptionsQuery, useGetTaskOptionsQuery, useGetTasksQuery, useGetTimeLineItemsQuery, useGetTranslationMessages, useGetWorkerStatusQuery, useGetWorkflowOptionsQuery, useGetWorkflowsQuery, useLazyGetProcessListQuery, useLazyGetProductBlocksQuery, useLazyGetProductsQuery, useLazyGetResourceTypesQuery, useLazyGetSubscriptionActionsQuery, useLazyGetSubscriptionListQuery, useLazyGetTasksQuery, useLazyGetWorkflowsQuery, useLazyStreamMessagesQuery, useOrchestratorConfig, useOrchestratorTheme, usePolicy, useResetTextSearchIndexMutation, useResumeProcessMutation, useRetryAllProcessesMutation, useRetryProcessMutation, useSetEngineStatusMutation, useSetSubscriptionInSyncMutation, useShowToastMessage, useStartFormMutation, useStartProcessMutation, useStoredTableConfig, useStreamMessagesQuery, useSubscriptionDetailGeneralSectionConfigurationOverride, useSubscriptionDetailValueOverride, useWfoErrorMonitoring, useWfoSession, useWithOrchestratorTheme, utcTimestampToLocalMoment, wfoGraphqlRequestBaseQuery, withWfoHeroIconsWrapper, workflowFieldMapper, workflowsDescription, workflowsQuery };
|