@orchestrator-ui/orchestrator-ui-components 0.3.1 → 0.4.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.
Files changed (49) hide show
  1. package/.turbo/turbo-build.log +5 -5
  2. package/.turbo/turbo-lint.log +1 -1
  3. package/.turbo/turbo-test.log +12 -10
  4. package/CHANGELOG.md +13 -0
  5. package/dist/index.d.ts +142 -4
  6. package/dist/index.js +1625 -1235
  7. package/package.json +1 -1
  8. package/src/components/WfoForms/formFields/OrganisationField.tsx +1 -1
  9. package/src/components/WfoForms/formFields/SplitPrefix.tsx +11 -4
  10. package/src/components/WfoForms/formFields/SubscriptionField.tsx +1 -1
  11. package/src/components/WfoPageTemplate/WfoSidebar/WfoCopyright.tsx +22 -0
  12. package/src/components/WfoPageTemplate/WfoSidebar/WfoSidebar.tsx +10 -6
  13. package/src/components/WfoPageTemplate/WfoSidebar/styles.ts +17 -0
  14. package/src/components/WfoProcessList/WfoProcessesList.tsx +52 -13
  15. package/src/components/WfoProcessList/processListObjectMappers.ts +4 -0
  16. package/src/components/WfoSubscription/WfoSubscription.tsx +5 -2
  17. package/src/components/WfoSubscription/WfoSubscriptionDetailTree.tsx +1 -0
  18. package/src/components/WfoSubscription/WfoSubscriptionGeneral.tsx +1 -1
  19. package/src/components/WfoSubscription/subscriptionDetailTabs.tsx +36 -6
  20. package/src/components/WfoSubscriptionsList/WfoSubscriptionsList.tsx +42 -11
  21. package/src/components/WfoSubscriptionsList/index.ts +1 -1
  22. package/src/components/WfoSubscriptionsList/subscriptionListTabs.ts +1 -1
  23. package/src/components/WfoSubscriptionsList/{mapGraphQlSubscriptionsResultToSubscriptionListItems.ts → subscriptionResultMappers.ts} +6 -0
  24. package/src/components/WfoTable/WfoTableWithFilter/WfoTableWithFilter.tsx +12 -0
  25. package/src/components/WfoTree/WfoTreeNode.tsx +2 -0
  26. package/src/configuration/constants.ts +1 -0
  27. package/src/graphqlQueries/customersQuery.ts +1 -1
  28. package/src/graphqlQueries/subscriptionDetailQuery.ts +1 -1
  29. package/src/graphqlQueries/subscriptionsDropdownOptionsQuery.ts +1 -1
  30. package/src/hooks/useQueryWithGraphql.ts +22 -0
  31. package/src/icons/WfoCogFill.tsx +23 -25
  32. package/src/icons/WfoCubeSolid.tsx +33 -0
  33. package/src/icons/WfoPlayCircle.tsx +35 -0
  34. package/src/icons/WfoShare.tsx +35 -0
  35. package/src/icons/index.ts +3 -0
  36. package/src/messages/en-GB.json +7 -4
  37. package/src/messages/nl-NL.json +6 -3
  38. package/src/pages/metadata/WfoProductBlocksPage.tsx +40 -6
  39. package/src/pages/metadata/WfoProductsPage.tsx +38 -9
  40. package/src/pages/metadata/WfoResourceTypesPage.tsx +36 -5
  41. package/src/pages/metadata/WfoWorkflowsPage.tsx +40 -9
  42. package/src/types/types.ts +2 -2
  43. package/src/utils/csvDownload.ts +87 -0
  44. package/src/utils/getDefaultTableConfig.ts +1 -3
  45. package/src/utils/getQueryVariablesForExport.spec.ts +19 -0
  46. package/src/utils/getQueryVariablesForExport.ts +11 -0
  47. package/src/utils/index.ts +1 -0
  48. package/src/utils/sortObjectKeys.spec.ts +34 -0
  49. package/src/utils/sortObjectKeys.ts +33 -0
@@ -1,5 +1,5 @@
1
1
 
2
- > @orchestrator-ui/orchestrator-ui-components@0.3.1 build
2
+ > @orchestrator-ui/orchestrator-ui-components@0.4.0 build
3
3
  > tsup src/index.ts --format esm --dts --tsconfig tsconfig.build.json
4
4
 
5
5
  CLI Building entry: src/index.ts
@@ -8,7 +8,7 @@
8
8
  CLI Target: es6
9
9
  ESM Build start
10
10
  DTS Build start
11
- ESM dist/index.js 1.92 MB
12
- ESM ⚡️ Build success in 723ms
13
- DTS ⚡️ Build success in 10252ms
14
- DTS dist/index.d.ts 98.49 KB
11
+ ESM dist/index.js 1.94 MB
12
+ ESM ⚡️ Build success in 732ms
13
+ DTS ⚡️ Build success in 10524ms
14
+ DTS dist/index.d.ts 103.05 KB
@@ -1,4 +1,4 @@
1
1
 
2
- > @orchestrator-ui/orchestrator-ui-components@0.3.1 lint
2
+ > @orchestrator-ui/orchestrator-ui-components@0.4.0 lint
3
3
  > eslint "src/**/*.ts*"
4
4
 
@@ -1,30 +1,32 @@
1
1
 
2
- > @orchestrator-ui/orchestrator-ui-components@0.3.1 test
2
+ > @orchestrator-ui/orchestrator-ui-components@0.4.0 test
3
3
  > jest
4
4
 
5
- PASS Orchestrator UI Components Tests src/utils/date.spec.ts
6
5
  PASS Orchestrator UI Components Tests src/pages/processes/timelineUtils.spec.ts
7
6
  PASS Orchestrator UI Components Tests src/components/WfoForms/formFields/utils.spec.ts
7
+ PASS Orchestrator UI Components Tests src/utils/date.spec.ts
8
8
  PASS Orchestrator UI Components Tests src/components/WfoSubscription/utils/utils.spec.ts
9
9
  PASS Orchestrator UI Components Tests src/utils/getProductNamesFromProcess.spec.ts
10
10
  PASS Orchestrator UI Components Tests src/components/WfoTable/WfoDataGridTable/WfodataGridColumns.spec.ts
11
- PASS Orchestrator UI Components Tests src/components/WfoTable/WfoTableWithFilter/updateQueryString.spec.ts
12
11
  PASS Orchestrator UI Components Tests src/components/WfoTree/treeUtils.spec.ts
12
+ PASS Orchestrator UI Components Tests src/components/WfoTable/WfoTableWithFilter/updateQueryString.spec.ts
13
13
  PASS Orchestrator UI Components Tests src/components/WfoTable/utils/tableConfigPersistence.spec.ts
14
- PASS Orchestrator UI Components Tests src/components/WfoTable/utils/tableUtils.spec.ts
15
14
  PASS Orchestrator UI Components Tests src/utils/string.spec.ts
16
- PASS Orchestrator UI Components Tests src/components/WfoTable/utils/mapSortableAndFilterableValuesToTableColumnConfig.spec.ts
15
+ PASS Orchestrator UI Components Tests src/components/WfoTable/utils/tableUtils.spec.ts
17
16
  PASS Orchestrator UI Components Tests src/messages/getTranslationMessages.spec.ts
18
- PASS Orchestrator UI Components Tests src/components/WfoWorkflowSteps/stepListUtils.spec.ts
17
+ PASS Orchestrator UI Components Tests src/components/WfoTable/utils/mapSortableAndFilterableValuesToTableColumnConfig.spec.ts
19
18
  PASS Orchestrator UI Components Tests src/components/WfoTable/utils/columns.spec.ts
19
+ PASS Orchestrator UI Components Tests src/utils/sortObjectKeys.spec.ts
20
+ PASS Orchestrator UI Components Tests src/components/WfoWorkflowSteps/stepListUtils.spec.ts
20
21
  PASS Orchestrator UI Components Tests src/utils/getTokenName.spec.ts
21
22
  PASS Orchestrator UI Components Tests src/utils/environmentVariables.spec.ts
22
23
  PASS Orchestrator UI Components Tests src/utils/uuid.spec.ts
23
- PASS Orchestrator UI Components Tests src/components/WfoPageTemplate/WfoPageHeader/utils/toHexColorWithOpacity.spec.ts
24
24
  PASS Orchestrator UI Components Tests src/utils/getTypedFieldFromObject.spec.ts
25
+ PASS Orchestrator UI Components Tests src/utils/getQueryVariablesForExport.spec.ts
26
+ PASS Orchestrator UI Components Tests src/components/WfoPageTemplate/WfoPageHeader/utils/toHexColorWithOpacity.spec.ts
25
27
 
26
- Test Suites: 20 passed, 20 total
27
- Tests: 128 passed, 128 total
28
+ Test Suites: 22 passed, 22 total
29
+ Tests: 131 passed, 131 total
28
30
  Snapshots: 0 total
29
- Time: 11.523 s
31
+ Time: 12.065 s
30
32
  Ran all test suites.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,18 @@
1
1
  # @orchestrator-ui/orchestrator-ui-components
2
2
 
3
+ ## 0.4.0
4
+
5
+ ### Minor Changes
6
+
7
+ - cdc668f: 544 - Export functionality for the tables
8
+
9
+ ### Patch Changes
10
+
11
+ - e8af27c: Process table - each column width in absolute or %
12
+ - e9af205: change order tabs sub-detail-page
13
+ - 996fc9f: added border radius to wfo tree and empty PB card placeholder
14
+ - 41e0cc9: added copyright to sidebar
15
+
3
16
  ## 0.3.1
4
17
 
5
18
  ### Patch Changes
package/dist/index.d.ts CHANGED
@@ -50,7 +50,7 @@ declare enum EngineStatus {
50
50
  }
51
51
  declare type Customer = {
52
52
  fullname: string;
53
- identifier: string;
53
+ customerId: string;
54
54
  shortcode: string;
55
55
  };
56
56
  declare type InUseByRelation = {
@@ -350,7 +350,7 @@ declare type SubscriptionDropdownOption = {
350
350
  description: Subscription['description'];
351
351
  subscriptionId: Subscription['subscriptionId'];
352
352
  product: Pick<ProductDefinition, 'tag' | 'productId'>;
353
- customer: Pick<Customer, 'fullname' | 'identifier'>;
353
+ customer: Pick<Customer, 'fullname' | 'customerId'>;
354
354
  productBlockInstances: ProductBlockInstance[];
355
355
  fixedInputs: FieldValue[];
356
356
  tag: string;
@@ -729,6 +729,122 @@ declare const useQueryWithGraphql: <U, V extends Variables>(query: TypedDocument
729
729
  refetch: <TPageData>(options?: (react_query.RefetchOptions & react_query.RefetchQueryFilters<TPageData>) | undefined) => Promise<react_query.QueryObserverResult<U, unknown>>;
730
730
  remove: () => void;
731
731
  };
732
+ declare const useQueryWithGraphqlLazy: <U, V extends Variables>(query: TypedDocumentNode<U, V>, queryVars: V, cacheKeys: string[] | string, options?: UseQueryOptions<U, unknown, U, react_query.QueryKey>) => {
733
+ data: undefined;
734
+ isError: false;
735
+ isIdle: true;
736
+ isLoading: false;
737
+ isLoadingError: false;
738
+ isRefetchError: false;
739
+ isSuccess: false;
740
+ status: "idle";
741
+ dataUpdatedAt: number;
742
+ errorUpdatedAt: number;
743
+ failureCount: number;
744
+ errorUpdateCount: number;
745
+ isFetched: boolean;
746
+ isFetchedAfterMount: boolean;
747
+ isFetching: boolean;
748
+ isPlaceholderData: boolean;
749
+ isPreviousData: boolean;
750
+ isRefetching: boolean;
751
+ isStale: boolean;
752
+ refetch: <TPageData>(options?: (react_query.RefetchOptions & react_query.RefetchQueryFilters<TPageData>) | undefined) => Promise<react_query.QueryObserverResult<U, unknown>>;
753
+ remove: () => void;
754
+ getData: () => Promise<U | undefined>;
755
+ } | {
756
+ data: undefined;
757
+ isError: true;
758
+ isIdle: false;
759
+ isLoading: false;
760
+ isLoadingError: true;
761
+ isRefetchError: false;
762
+ isSuccess: false;
763
+ status: "error";
764
+ dataUpdatedAt: number;
765
+ errorUpdatedAt: number;
766
+ failureCount: number;
767
+ errorUpdateCount: number;
768
+ isFetched: boolean;
769
+ isFetchedAfterMount: boolean;
770
+ isFetching: boolean;
771
+ isPlaceholderData: boolean;
772
+ isPreviousData: boolean;
773
+ isRefetching: boolean;
774
+ isStale: boolean;
775
+ refetch: <TPageData>(options?: (react_query.RefetchOptions & react_query.RefetchQueryFilters<TPageData>) | undefined) => Promise<react_query.QueryObserverResult<U, unknown>>;
776
+ remove: () => void;
777
+ getData: () => Promise<U | undefined>;
778
+ } | {
779
+ data: undefined;
780
+ isError: false;
781
+ isIdle: false;
782
+ isLoading: true;
783
+ isLoadingError: false;
784
+ isRefetchError: false;
785
+ isSuccess: false;
786
+ status: "loading";
787
+ dataUpdatedAt: number;
788
+ errorUpdatedAt: number;
789
+ failureCount: number;
790
+ errorUpdateCount: number;
791
+ isFetched: boolean;
792
+ isFetchedAfterMount: boolean;
793
+ isFetching: boolean;
794
+ isPlaceholderData: boolean;
795
+ isPreviousData: boolean;
796
+ isRefetching: boolean;
797
+ isStale: boolean;
798
+ refetch: <TPageData>(options?: (react_query.RefetchOptions & react_query.RefetchQueryFilters<TPageData>) | undefined) => Promise<react_query.QueryObserverResult<U, unknown>>;
799
+ remove: () => void;
800
+ getData: () => Promise<U | undefined>;
801
+ } | {
802
+ data: U;
803
+ isError: true;
804
+ isIdle: false;
805
+ isLoading: false;
806
+ isLoadingError: false;
807
+ isRefetchError: true;
808
+ isSuccess: false;
809
+ status: "error";
810
+ dataUpdatedAt: number;
811
+ errorUpdatedAt: number;
812
+ failureCount: number;
813
+ errorUpdateCount: number;
814
+ isFetched: boolean;
815
+ isFetchedAfterMount: boolean;
816
+ isFetching: boolean;
817
+ isPlaceholderData: boolean;
818
+ isPreviousData: boolean;
819
+ isRefetching: boolean;
820
+ isStale: boolean;
821
+ refetch: <TPageData>(options?: (react_query.RefetchOptions & react_query.RefetchQueryFilters<TPageData>) | undefined) => Promise<react_query.QueryObserverResult<U, unknown>>;
822
+ remove: () => void;
823
+ getData: () => Promise<U | undefined>;
824
+ } | {
825
+ data: U;
826
+ isError: false;
827
+ isIdle: false;
828
+ isLoading: false;
829
+ isLoadingError: false;
830
+ isRefetchError: false;
831
+ isSuccess: true;
832
+ status: "success";
833
+ dataUpdatedAt: number;
834
+ errorUpdatedAt: number;
835
+ failureCount: number;
836
+ errorUpdateCount: number;
837
+ isFetched: boolean;
838
+ isFetchedAfterMount: boolean;
839
+ isFetching: boolean;
840
+ isPlaceholderData: boolean;
841
+ isPreviousData: boolean;
842
+ isRefetching: boolean;
843
+ isStale: boolean;
844
+ refetch: <TPageData>(options?: (react_query.RefetchOptions & react_query.RefetchQueryFilters<TPageData>) | undefined) => Promise<react_query.QueryObserverResult<U, unknown>>;
845
+ remove: () => void;
846
+ getData: () => Promise<U | undefined>;
847
+ };
732
848
 
733
849
  interface EngineStatusReturnValue {
734
850
  global_lock: boolean;
@@ -1108,8 +1224,10 @@ declare type WfoTableWithFilterProps<T extends object> = {
1108
1224
  onUpdatePage: (criterion: Criteria$1<T>['page']) => void;
1109
1225
  onUpdateDataSort: (dataSorting: WfoDataSorting<T>) => void;
1110
1226
  hasError?: boolean;
1227
+ onExportData?: () => void;
1228
+ exportDataIsLoading?: boolean;
1111
1229
  };
1112
- declare const WfoTableWithFilter: <T extends object>({ data, tableColumns, leadingControlColumns, trailingControlColumns, defaultHiddenColumns, dataSorting, pagination, queryString, isLoading, localStorageKey, detailModal, detailModalTitle, onUpdateQueryString, onUpdatePage, onUpdateDataSort, hasError, }: WfoTableWithFilterProps<T>) => _emotion_react_jsx_runtime.JSX.Element;
1230
+ declare const WfoTableWithFilter: <T extends object>({ data, tableColumns, leadingControlColumns, trailingControlColumns, defaultHiddenColumns, dataSorting, pagination, queryString, isLoading, localStorageKey, detailModal, detailModalTitle, onUpdateQueryString, onUpdatePage, onUpdateDataSort, hasError, onExportData, exportDataIsLoading, }: WfoTableWithFilterProps<T>) => _emotion_react_jsx_runtime.JSX.Element;
1113
1231
 
1114
1232
  declare type WfoIconProps = {
1115
1233
  width?: number | string;
@@ -1135,6 +1253,8 @@ declare const WfoChevronDown: FC<WfoIconProps>;
1135
1253
 
1136
1254
  declare const WfoChevronUp: FC<WfoIconProps>;
1137
1255
 
1256
+ declare const WfoCubeSolid: FC<WfoIconProps>;
1257
+
1138
1258
  declare const WfoArrowNarrowDown: FC<WfoIconProps>;
1139
1259
 
1140
1260
  declare const WfoRefresh: FC<WfoIconProps>;
@@ -1143,6 +1263,8 @@ declare const WfoArrowNarrowUp: FC<WfoIconProps>;
1143
1263
 
1144
1264
  declare const WfoMinusCircleFill: FC<WfoIconProps>;
1145
1265
 
1266
+ declare const WfoPlayCircle: FC<WfoIconProps>;
1267
+
1146
1268
  declare const WfoSearchStrikethrough: FC<WfoIconProps>;
1147
1269
 
1148
1270
  declare const WfoSortAsc: FC<WfoIconProps>;
@@ -1151,6 +1273,8 @@ declare const WfoSortDesc: FC<WfoIconProps>;
1151
1273
 
1152
1274
  declare const WfoSideMenu: FC<WfoIconProps>;
1153
1275
 
1276
+ declare const WfoShare: FC<WfoIconProps>;
1277
+
1154
1278
  declare const WfoPlayFill: FC<WfoIconProps>;
1155
1279
 
1156
1280
  declare const WfoCode: FC<WfoIconProps>;
@@ -1719,6 +1843,14 @@ declare const camelToHuman: (value: string) => string;
1719
1843
 
1720
1844
  declare const getProductNamesFromProcess: (process: ProcessDetail | undefined | Omit<ProcessDetail, 'status'>) => string;
1721
1845
 
1846
+ declare const getQueryVariablesForExport: <T extends object>(queryVariables: GraphqlQueryVariables<T>) => {
1847
+ first: number;
1848
+ after: number;
1849
+ sortBy?: GraphQLSort<T> | undefined;
1850
+ filterBy?: GraphqlFilter<T>[] | undefined;
1851
+ query?: string | undefined;
1852
+ };
1853
+
1722
1854
  declare type TranslationMessagesMap = Map<Locale, AbstractIntlMessages>;
1723
1855
  declare const useGetTranslationMessages: (locale: string | undefined) => {
1724
1856
  pydanticForms: {
@@ -1867,6 +1999,7 @@ declare const useGetTranslationMessages: (locale: string | undefined) => {
1867
1999
  noFailedTasks: string;
1868
2000
  search: string;
1869
2001
  errorMessage: string;
2002
+ export: string;
1870
2003
  };
1871
2004
  confirmationDialog: {
1872
2005
  title: string;
@@ -1881,6 +2014,8 @@ declare const useGetTranslationMessages: (locale: string | undefined) => {
1881
2014
  start_workflow_title: string;
1882
2015
  };
1883
2016
  errors: {
2017
+ notAllResultsExported: string;
2018
+ notAllResultsExportedTitle: string;
1884
2019
  invalidQueryParts: string;
1885
2020
  notAllowedWhenEngineIsNotRunningMessage: string;
1886
2021
  notAllowedWhenEngineIsNotRunningTitle: string;
@@ -2275,6 +2410,7 @@ declare const useGetTranslationMessages: (locale: string | undefined) => {
2275
2410
  noFailedTasks: string;
2276
2411
  search: string;
2277
2412
  errorMessage: string;
2413
+ export: string;
2278
2414
  };
2279
2415
  confirmationDialog: {
2280
2416
  title: string;
@@ -2289,6 +2425,8 @@ declare const useGetTranslationMessages: (locale: string | undefined) => {
2289
2425
  start_workflow_title: string;
2290
2426
  };
2291
2427
  errors: {
2428
+ notAllResultsExported: string;
2429
+ notAllResultsExportedTitle: string;
2292
2430
  invalidQueryParts: string;
2293
2431
  notAllowedWhenEngineIsNotRunningMessage: string;
2294
2432
  notAllowedWhenEngineIsNotRunningTitle: string;
@@ -2632,4 +2770,4 @@ declare const GET_PROCESS_STEPS_GRAPHQL_QUERY: TypedDocumentNode<ProcessStepsRes
2632
2770
  processName: string;
2633
2771
  }>;
2634
2772
 
2635
- export { ACTIVE_PROCESSES_LIST_TABLE_LOCAL_STORAGE_KEY, ACTIVE_TASKS_LIST_TABLE_LOCAL_STORAGE_KEY, AcceptField, type AcceptFieldProps, ApiClient, ApiClientContext, ApiClientContextProvider, type ApiClientContextProviderProps, type ApiContext, type AutoFieldsProps, BadgeType, BaseApiClient, BoolField, type BoolFieldProps, COMPLETED_PROCESSES_LIST_TABLE_LOCAL_STORAGE_KEY, COMPLETED_TASKS_LIST_TABLE_LOCAL_STORAGE_KEY, type CacheNames, type CacheOption, type ColumnConfig, type ConfirmDialogActions, ConfirmationDialogContext, ConfirmationDialogContextWrapper, ConfirmationDialogProvider, ContactPersonNameField, type ContactPersonNameFieldProps, CreateForm, type Customer, type CustomersResult, DEFAULT_PAGE_SIZE, DEFAULT_PAGE_SIZES, type DataDisplayParams, type DataDisplayReturnValues, DateField, type DateFieldProps, DividerField, type DividerFieldProps, type EmailAddress, type EmailState, EngineStatus, type EngineStatusReturnValue, Environment, ErrorField, type ErrorFieldProps, ErrorsField, type ErrorsFieldProps, type ExternalService, type Field, type FieldValue, type FilterQuery, type FixedInputDefinition, GET_CUSTOMER_GRAPHQL_QUERY, GET_PROCESS_DETAIL_GRAPHQL_QUERY, GET_PROCESS_STEPS_GRAPHQL_QUERY, GET_PRODUCTS_BLOCKS_GRAPHQL_QUERY, GET_PRODUCTS_GRAPHQL_QUERY, GET_PRODUCTS_SUMMARY_GRAPHQL_QUERY, GET_RESOURCE_TYPES_GRAPHQL_QUERY, GET_SUBSCRIPTIONS_LIST_GRAPHQL_QUERY, GET_SUBSCRIPTIONS_LIST_SUMMARY_GRAPHQL_QUERY, GET_SUBSCRIPTION_DETAIL_GRAPHQL_QUERY, GET_SUBSCRIPTION_DROPDOWN_OPTIONS_GRAPHQL_QUERY, type GraphQLPageInfo, type GraphQLSort, type GraphqlFilter, type GraphqlQueryVariables, type GroupedStep, HIDDEN_KEYS, type HeaderBadgeProps, type IPvAnyNetworkFieldProps, ImsNodeIdField, type ImsNodeIdFieldProps, type ImsPortFieldProps, ImsPortIdField, type InUseByRelation, IpNetworkField, type KeyValue, LabelField, type LabelFieldProps, ListAddField, type ListAddFieldProps, ListDelField, type ListDelFieldProps, ListField, type ListFieldProps, ListSelectField, type ListSelectFieldProps, Locale, LocationCodeField, type LocationCodeFieldProps, LongTextField, type LongTextFieldProps, METADATA_PRODUCT_BLOCKS_TABLE_LOCAL_STORAGE_KEY, METADATA_PRODUCT_TABLE_LOCAL_STORAGE_KEY, METADATA_RESOURCE_TYPES_TABLE_LOCAL_STORAGE_KEY, METADATA_WORKFLOWS_TABLE_LOCAL_STORAGE_KEY, NestField, type NestFieldProps, type Nullable, NumField, type NumFieldProps, OptGroupField, type OptGroupFieldProps, type OrchestratorConfig, OrchestratorConfigContext, OrchestratorConfigProvider, type OrchestratorConfigProviderProps, OrganisationField, type OrganisationFieldProps, PATH_METADATA, PATH_METADATA_PRODUCTS, PATH_METADATA_PRODUCT_BLOCKS, PATH_METADATA_RESOURCE_TYPES, PATH_METADATA_WORKFLOWS, PATH_SETTINGS, PATH_START, PATH_START_NEW_TASK, PATH_START_NEW_WORKFLOW, PATH_SUBSCRIPTIONS, PATH_TASKS, PATH_WORKFLOWS, type Pagination, type Process, type ProcessDetail, type ProcessDetailResultRaw, ProcessDoneStatuses, type ProcessListItem, type ProcessListResult, ProcessStatus, type ProcessStatusCounts, type ProcessStepsResult, type ProcessesDetailResult, type ProductBlockDefinition, type ProductBlockDefinitionsResult, type ProductBlockInstance, type ProductDefinition, type ProductDefinitionsResult, ProductField, type ProductFieldProps, ProductLifecycleStatus, RENDER_ALL, RESOURCE_TYPE_FIELD_DESCRIPTION, RESOURCE_TYPE_FIELD_ID, RESOURCE_TYPE_FIELD_PRODUCT_BLOCKS, RESOURCE_TYPE_FIELD_TYPE, RadioField, type RadioFieldProps, type RelatedSubscription, type RelatedSubscriptionsResult, RenderDirection, type ResourceTypeDefinition, type ResourceTypeDefinitionsResult, STEP_STATE_HIDDEN_KEYS, SUBSCRIPTIONS_TABLE_LOCAL_STORAGE_KEY, SelectField, type SelectFieldProps, type SessionToken, type ShowConfirmDialog, type ShowConfirmDialogType, SortOrder, type StartProcessStep, type Step, type StepListItem, type StepState, StepStatus, type StoredTableConfig, SubmitField, type SubmitFieldProps, type Subscription, type SubscriptionAction, type SubscriptionDetail, type SubscriptionDetailProcess, type SubscriptionDetailResult, SubscriptionDetailTab, type SubscriptionDropdownOption, type SubscriptionDropdownOptionsResult, SubscriptionField, type SubscriptionFieldProps, SubscriptionKeyValueBlock, SubscriptionStatus, SubscriptionSummaryField, type SubscriptionSummaryFieldProps, type SubscriptionsResult, SummaryField, type SummaryFieldProps, type TableColumnKeys, type TableConfig, TableSettingsModal, type TableSettingsModalProps, TextField, type TextFieldProps, type TimelineItem, TimelinePosition, TimestampField, type TimestampFieldProps, ToastContext, type ToastContextProps, ToastTypes, ToastsContextProvider, ToastsList, type TranslationMessagesMap, type TreeBlock, TreeContext, type TreeContextType, TreeProvider, type TreeProviderProps, type UserInputForm, UserInputFormWizard, VlanField, type VlanFieldProps, WFO_STATUS_COLOR_FIELD, WfoArrowNarrowDown, WfoArrowNarrowUp, WfoArrowsExpand, WfoAuth, WfoBadge, type WfoBadgeProps, WfoBasicTable, type WfoBasicTableColumns, type WfoBasicTableColumnsWithControlColumns, type WfoBasicTableProps, WfoBell, WfoBreadcrumbs, WfoCheckmarkCircleFill, WfoChevronDown, WfoChevronUp, WfoCode, WfoCogFill, WfoContactEnvelopeFill, type WfoControlColumn, WfoDataGridTable, type WfoDataGridTableColumns, type WfoDataGridTableProps, type WfoDataSearch, type WfoDataSorting, WfoDateTime, type WfoDateTimeProps, WfoDropdownButton, WfoEngineStatusBadge, WfoEnvironmentBadge, WfoError, type WfoEuiBasicTableColumn, WfoEyeFill, WfoFailedTasksBadge, type WfoFilterTab, WfoFilterTabs, type WfoFilterTabsProps, WfoFirstPartUUID, type WfoFirstUUIDPartProps, WfoHeaderBadge, type WfoIconProps, WfoInformationModal, type WfoInformationModalProps, WfoInsyncIcon, WfoJsonCodeBlock, type WfoJsonCodeBlockProps, WfoKeyCell, type WfoKeyCellProps, WfoKeyValueTable, type WfoKeyValueTableDataType, type WfoKeyValueTableProps, WfoLoading, WfoLogoutIcon, WfoMinusCircleFill, WfoMinusCircleOutline, WfoPageHeader, type WfoPageHeaderProps, WfoPageTemplate, type WfoPageTemplateProps, WfoPencil, WfoPencilAlt, WfoPlayFill, WfoPlusCircleFill, WfoProcessDetailPage, WfoProcessListSubscriptionsCell, WfoProcessRawData, WfoProcessStatusBadge, type WfoProcessStatusBadgeProps, WfoProcessSubscriptionDelta, WfoProcessesList, type WfoProcessesListProps, type WfoProcessesListSubscriptionsCellProps, WfoProcessesTimeline, WfoProductBlockBadge, type WfoProductBlockBadgeProps, WfoProductBlocksPage, WfoProductStatusBadge, type WfoProductStatusBadgeProps, WfoProductsPage, WfoRefresh, WfoResourceTypesPage, WfoSearchField, type WfoSearchFieldProps, WfoSearchStrikethrough, WfoSettings, WfoSettingsModal, type WfoSettingsModalProps, WfoSettingsPage, WfoSideMenu, WfoSidebar, type WfoSidebarProps, WfoSortAsc, WfoSortButton, type WfoSortButtonProps, WfoSortButtons, type WfoSortButtonsProps, WfoSortDesc, WfoSortDirectionIcon, type WfoSortDirectionIconProps, WfoStartPage, WfoStartProcessPage, WfoStartTaskButtonComboBox, 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, WfoSubscriptionDetailPage, WfoSubscriptionDetailTree, WfoSubscriptionGeneral, WfoSubscriptionProductBlock, WfoSubscriptionStatusBadge, type WfoSubscriptionStatusBadgeProps, WfoSubscriptionsListPage, type WfoTableColumns, type WfoTableColumnsWithExtraNonDataFields, type WfoTableControlColumnConfig, type WfoTableDataColumnConfig, WfoTableHeaderCell, type WfoTableHeaderCellProps, WfoTableWithFilter, type WfoTableWithFilterProps, WfoTasksListPage, WfoTasksListTabType, WfoTextAnchor, WfoTimeline, type WfoTimelineProps, type WfoTreeNodeMap, WfoValueCell, type WfoValueCellProps, WfoViewList, WfoWorkflowStepList, type WfoWorkflowStepListProps, WfoWorkflowTargetBadge, type WfoWorkflowTargetBadgeProps, WfoWorkflowsListPage, WfoWorkflowsPage, WfoXCircleFill, type WorkflowDefinition, type WorkflowDefinitionsResult, type WorkflowListItem, WorkflowTarget, calculateTimeDifference, camelToHuman, clearTableConfigFromLocalStorage, defaultOrchestratorTheme, defaultTasksListTabs, determineNewSortOrder, determinePageIndex, flattenArrayProps, formatDate, formatDateCetWithUtc, getApiClient, getCurrentBrowserLocale, getDataSortHandler, getFieldFromProductBlockInstanceValues, getFirstUuidPart, getInitialColumnOrder, getNumberValueFromEnvironmentVariable, getPageChangeHandler, getProductBlockTitle, getProductNamesFromProcess, getProductsQuery, getProductsSummaryQuery, getQueryStringHandler, getSortDirectionFromString, getStatusBadgeColor, getStepContent, getSubscriptionDropdownOptionsGraphQlQuery, getSubscriptionsListGraphQlQuery, getSubscriptionsListSummaryGraphQlQuery, getTableConfigFromLocalStorage, getTasksListTabTypeFromString, getTypedFieldFromObject, getWfoBasicTableStyles, getWorkflowTargetColor, getWorkflowTargetIconContent, isToday, isUuid4, isValidLocalStorageTableConfig, localMomentToUtcTimestamp, mapColumnSortToEuiDataGridSorting, mapSortableAndFilterableValuesToTableColumnConfig, parseDate, parseDateOrTimeRelativeToToday, parseDateRelativeToToday, parseDateToLocaleDateString, parseDateToLocaleDateTimeString, parseDateToLocaleTimeString, parseIsoString, removeSuffix, setTableConfigToLocalStorage, stop, upperCaseFirstChar, useCacheNames, useCheckEngineStatus, useDataDisplayParams, useEngineStatusMutation, useEngineStatusQuery, useFilterQueryWithRest, useGetTranslationMessages, useMutateProcess, useOrchestratorConfig, useOrchestratorTheme, useProcessStatusCountsQuery, useQueryWithFetch, useQueryWithGraphql, useRawProcessDetails, useSessionWithToken, useStoredTableConfig, useSubscriptionActions, useToastMessage, useWithOrchestratorTheme, utcTimestampToLocalMoment };
2773
+ export { ACTIVE_PROCESSES_LIST_TABLE_LOCAL_STORAGE_KEY, ACTIVE_TASKS_LIST_TABLE_LOCAL_STORAGE_KEY, AcceptField, type AcceptFieldProps, ApiClient, ApiClientContext, ApiClientContextProvider, type ApiClientContextProviderProps, type ApiContext, type AutoFieldsProps, BadgeType, BaseApiClient, BoolField, type BoolFieldProps, COMPLETED_PROCESSES_LIST_TABLE_LOCAL_STORAGE_KEY, COMPLETED_TASKS_LIST_TABLE_LOCAL_STORAGE_KEY, type CacheNames, type CacheOption, type ColumnConfig, type ConfirmDialogActions, ConfirmationDialogContext, ConfirmationDialogContextWrapper, ConfirmationDialogProvider, ContactPersonNameField, type ContactPersonNameFieldProps, CreateForm, type Customer, type CustomersResult, DEFAULT_PAGE_SIZE, DEFAULT_PAGE_SIZES, type DataDisplayParams, type DataDisplayReturnValues, DateField, type DateFieldProps, DividerField, type DividerFieldProps, type EmailAddress, type EmailState, EngineStatus, type EngineStatusReturnValue, Environment, ErrorField, type ErrorFieldProps, ErrorsField, type ErrorsFieldProps, type ExternalService, type Field, type FieldValue, type FilterQuery, type FixedInputDefinition, GET_CUSTOMER_GRAPHQL_QUERY, GET_PROCESS_DETAIL_GRAPHQL_QUERY, GET_PROCESS_STEPS_GRAPHQL_QUERY, GET_PRODUCTS_BLOCKS_GRAPHQL_QUERY, GET_PRODUCTS_GRAPHQL_QUERY, GET_PRODUCTS_SUMMARY_GRAPHQL_QUERY, GET_RESOURCE_TYPES_GRAPHQL_QUERY, GET_SUBSCRIPTIONS_LIST_GRAPHQL_QUERY, GET_SUBSCRIPTIONS_LIST_SUMMARY_GRAPHQL_QUERY, GET_SUBSCRIPTION_DETAIL_GRAPHQL_QUERY, GET_SUBSCRIPTION_DROPDOWN_OPTIONS_GRAPHQL_QUERY, type GraphQLPageInfo, type GraphQLSort, type GraphqlFilter, type GraphqlQueryVariables, type GroupedStep, HIDDEN_KEYS, type HeaderBadgeProps, type IPvAnyNetworkFieldProps, ImsNodeIdField, type ImsNodeIdFieldProps, type ImsPortFieldProps, ImsPortIdField, type InUseByRelation, IpNetworkField, type KeyValue, LabelField, type LabelFieldProps, ListAddField, type ListAddFieldProps, ListDelField, type ListDelFieldProps, ListField, type ListFieldProps, ListSelectField, type ListSelectFieldProps, Locale, LocationCodeField, type LocationCodeFieldProps, LongTextField, type LongTextFieldProps, METADATA_PRODUCT_BLOCKS_TABLE_LOCAL_STORAGE_KEY, METADATA_PRODUCT_TABLE_LOCAL_STORAGE_KEY, METADATA_RESOURCE_TYPES_TABLE_LOCAL_STORAGE_KEY, METADATA_WORKFLOWS_TABLE_LOCAL_STORAGE_KEY, NestField, type NestFieldProps, type Nullable, NumField, type NumFieldProps, OptGroupField, type OptGroupFieldProps, type OrchestratorConfig, OrchestratorConfigContext, OrchestratorConfigProvider, type OrchestratorConfigProviderProps, OrganisationField, type OrganisationFieldProps, PATH_METADATA, PATH_METADATA_PRODUCTS, PATH_METADATA_PRODUCT_BLOCKS, PATH_METADATA_RESOURCE_TYPES, PATH_METADATA_WORKFLOWS, PATH_SETTINGS, PATH_START, PATH_START_NEW_TASK, PATH_START_NEW_WORKFLOW, PATH_SUBSCRIPTIONS, PATH_TASKS, PATH_WORKFLOWS, type Pagination, type Process, type ProcessDetail, type ProcessDetailResultRaw, ProcessDoneStatuses, type ProcessListItem, type ProcessListResult, ProcessStatus, type ProcessStatusCounts, type ProcessStepsResult, type ProcessesDetailResult, type ProductBlockDefinition, type ProductBlockDefinitionsResult, type ProductBlockInstance, type ProductDefinition, type ProductDefinitionsResult, ProductField, type ProductFieldProps, ProductLifecycleStatus, RENDER_ALL, RESOURCE_TYPE_FIELD_DESCRIPTION, RESOURCE_TYPE_FIELD_ID, RESOURCE_TYPE_FIELD_PRODUCT_BLOCKS, RESOURCE_TYPE_FIELD_TYPE, RadioField, type RadioFieldProps, type RelatedSubscription, type RelatedSubscriptionsResult, RenderDirection, type ResourceTypeDefinition, type ResourceTypeDefinitionsResult, STEP_STATE_HIDDEN_KEYS, SUBSCRIPTIONS_TABLE_LOCAL_STORAGE_KEY, SelectField, type SelectFieldProps, type SessionToken, type ShowConfirmDialog, type ShowConfirmDialogType, SortOrder, type StartProcessStep, type Step, type StepListItem, type StepState, StepStatus, type StoredTableConfig, SubmitField, type SubmitFieldProps, type Subscription, type SubscriptionAction, type SubscriptionDetail, type SubscriptionDetailProcess, type SubscriptionDetailResult, SubscriptionDetailTab, type SubscriptionDropdownOption, type SubscriptionDropdownOptionsResult, SubscriptionField, type SubscriptionFieldProps, SubscriptionKeyValueBlock, SubscriptionStatus, SubscriptionSummaryField, type SubscriptionSummaryFieldProps, type SubscriptionsResult, SummaryField, type SummaryFieldProps, type TableColumnKeys, type TableConfig, TableSettingsModal, type TableSettingsModalProps, TextField, type TextFieldProps, type TimelineItem, TimelinePosition, TimestampField, type TimestampFieldProps, ToastContext, type ToastContextProps, ToastTypes, ToastsContextProvider, ToastsList, type TranslationMessagesMap, type TreeBlock, TreeContext, type TreeContextType, TreeProvider, type TreeProviderProps, type UserInputForm, UserInputFormWizard, VlanField, type VlanFieldProps, WFO_STATUS_COLOR_FIELD, WfoArrowNarrowDown, WfoArrowNarrowUp, WfoArrowsExpand, WfoAuth, WfoBadge, type WfoBadgeProps, WfoBasicTable, type WfoBasicTableColumns, type WfoBasicTableColumnsWithControlColumns, type WfoBasicTableProps, WfoBell, WfoBreadcrumbs, WfoCheckmarkCircleFill, WfoChevronDown, WfoChevronUp, WfoCode, WfoCogFill, WfoContactEnvelopeFill, type WfoControlColumn, WfoCubeSolid, WfoDataGridTable, type WfoDataGridTableColumns, type WfoDataGridTableProps, type WfoDataSearch, type WfoDataSorting, WfoDateTime, type WfoDateTimeProps, WfoDropdownButton, WfoEngineStatusBadge, WfoEnvironmentBadge, WfoError, type WfoEuiBasicTableColumn, WfoEyeFill, WfoFailedTasksBadge, type WfoFilterTab, WfoFilterTabs, type WfoFilterTabsProps, WfoFirstPartUUID, type WfoFirstUUIDPartProps, WfoHeaderBadge, type WfoIconProps, WfoInformationModal, type WfoInformationModalProps, WfoInsyncIcon, WfoJsonCodeBlock, type WfoJsonCodeBlockProps, WfoKeyCell, type WfoKeyCellProps, WfoKeyValueTable, type WfoKeyValueTableDataType, type WfoKeyValueTableProps, WfoLoading, WfoLogoutIcon, WfoMinusCircleFill, WfoMinusCircleOutline, WfoPageHeader, type WfoPageHeaderProps, WfoPageTemplate, type WfoPageTemplateProps, WfoPencil, WfoPencilAlt, WfoPlayCircle, WfoPlayFill, WfoPlusCircleFill, WfoProcessDetailPage, WfoProcessListSubscriptionsCell, WfoProcessRawData, WfoProcessStatusBadge, type WfoProcessStatusBadgeProps, WfoProcessSubscriptionDelta, WfoProcessesList, type WfoProcessesListProps, type WfoProcessesListSubscriptionsCellProps, WfoProcessesTimeline, WfoProductBlockBadge, type WfoProductBlockBadgeProps, WfoProductBlocksPage, WfoProductStatusBadge, type WfoProductStatusBadgeProps, WfoProductsPage, WfoRefresh, WfoResourceTypesPage, WfoSearchField, type WfoSearchFieldProps, WfoSearchStrikethrough, WfoSettings, WfoSettingsModal, type WfoSettingsModalProps, WfoSettingsPage, WfoShare, WfoSideMenu, WfoSidebar, type WfoSidebarProps, WfoSortAsc, WfoSortButton, type WfoSortButtonProps, WfoSortButtons, type WfoSortButtonsProps, WfoSortDesc, WfoSortDirectionIcon, type WfoSortDirectionIconProps, WfoStartPage, WfoStartProcessPage, WfoStartTaskButtonComboBox, 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, WfoSubscriptionDetailPage, WfoSubscriptionDetailTree, WfoSubscriptionGeneral, WfoSubscriptionProductBlock, WfoSubscriptionStatusBadge, type WfoSubscriptionStatusBadgeProps, WfoSubscriptionsListPage, type WfoTableColumns, type WfoTableColumnsWithExtraNonDataFields, type WfoTableControlColumnConfig, type WfoTableDataColumnConfig, WfoTableHeaderCell, type WfoTableHeaderCellProps, WfoTableWithFilter, type WfoTableWithFilterProps, WfoTasksListPage, WfoTasksListTabType, WfoTextAnchor, WfoTimeline, type WfoTimelineProps, type WfoTreeNodeMap, WfoValueCell, type WfoValueCellProps, WfoViewList, WfoWorkflowStepList, type WfoWorkflowStepListProps, WfoWorkflowTargetBadge, type WfoWorkflowTargetBadgeProps, WfoWorkflowsListPage, WfoWorkflowsPage, WfoXCircleFill, type WorkflowDefinition, type WorkflowDefinitionsResult, type WorkflowListItem, WorkflowTarget, calculateTimeDifference, camelToHuman, clearTableConfigFromLocalStorage, defaultOrchestratorTheme, defaultTasksListTabs, determineNewSortOrder, determinePageIndex, flattenArrayProps, formatDate, formatDateCetWithUtc, getApiClient, getCurrentBrowserLocale, getDataSortHandler, getFieldFromProductBlockInstanceValues, getFirstUuidPart, getInitialColumnOrder, getNumberValueFromEnvironmentVariable, getPageChangeHandler, getProductBlockTitle, getProductNamesFromProcess, getProductsQuery, getProductsSummaryQuery, getQueryStringHandler, getQueryVariablesForExport, getSortDirectionFromString, getStatusBadgeColor, getStepContent, getSubscriptionDropdownOptionsGraphQlQuery, getSubscriptionsListGraphQlQuery, getSubscriptionsListSummaryGraphQlQuery, getTableConfigFromLocalStorage, getTasksListTabTypeFromString, getTypedFieldFromObject, getWfoBasicTableStyles, getWorkflowTargetColor, getWorkflowTargetIconContent, isToday, isUuid4, isValidLocalStorageTableConfig, localMomentToUtcTimestamp, mapColumnSortToEuiDataGridSorting, mapSortableAndFilterableValuesToTableColumnConfig, parseDate, parseDateOrTimeRelativeToToday, parseDateRelativeToToday, parseDateToLocaleDateString, parseDateToLocaleDateTimeString, parseDateToLocaleTimeString, parseIsoString, removeSuffix, setTableConfigToLocalStorage, stop, upperCaseFirstChar, useCacheNames, useCheckEngineStatus, useDataDisplayParams, useEngineStatusMutation, useEngineStatusQuery, useFilterQueryWithRest, useGetTranslationMessages, useMutateProcess, useOrchestratorConfig, useOrchestratorTheme, useProcessStatusCountsQuery, useQueryWithFetch, useQueryWithGraphql, useQueryWithGraphqlLazy, useRawProcessDetails, useSessionWithToken, useStoredTableConfig, useSubscriptionActions, useToastMessage, useWithOrchestratorTheme, utcTimestampToLocalMoment };