@orchestrator-ui/orchestrator-ui-components 0.3.1 → 0.5.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 +5 -5
- package/.turbo/turbo-lint.log +1 -1
- package/.turbo/turbo-test.log +11 -9
- package/CHANGELOG.md +19 -0
- package/dist/index.d.ts +332 -58
- package/dist/index.js +8487 -2415
- package/package.json +8 -9
- package/src/components/WfoBadges/WfoEngineStatusBadge/WfoEngineStatusBadge.tsx +8 -5
- package/src/components/WfoBadges/WfoEnvironmentBadge/WfoEnvironmentBadge.tsx +2 -1
- package/src/components/WfoForms/formFields/OrganisationField.tsx +11 -11
- package/src/components/WfoForms/formFields/SplitPrefix.tsx +11 -4
- package/src/components/WfoForms/formFields/SubscriptionField.tsx +1 -1
- package/src/components/WfoPageTemplate/WfoSidebar/WfoCopyright.tsx +22 -0
- package/src/components/WfoPageTemplate/WfoSidebar/WfoSidebar.tsx +10 -6
- package/src/components/WfoPageTemplate/WfoSidebar/styles.ts +17 -0
- package/src/components/WfoProcessList/WfoProcessesList.tsx +59 -25
- package/src/components/WfoProcessList/processListObjectMappers.ts +45 -1
- package/src/components/WfoSettings/WfoEngineStatusButton.tsx +11 -13
- package/src/components/WfoSettings/WfoFlushSettings.tsx +23 -35
- package/src/components/WfoSettings/WfoModifySettings.tsx +3 -16
- package/src/components/WfoSettings/WfoStatus.tsx +4 -9
- package/src/components/WfoSettings/index.ts +4 -1
- package/src/components/WfoSubscription/WfoSubscription.tsx +5 -2
- package/src/components/WfoSubscription/WfoSubscriptionDetailTree.tsx +1 -0
- package/src/components/WfoSubscription/WfoSubscriptionGeneral.tsx +1 -1
- package/src/components/WfoSubscription/subscriptionDetailTabs.tsx +36 -6
- package/src/components/WfoSubscriptionsList/WfoSubscriptionsList.tsx +42 -11
- package/src/components/WfoSubscriptionsList/index.ts +1 -1
- package/src/components/WfoSubscriptionsList/subscriptionListTabs.ts +1 -1
- package/src/components/WfoSubscriptionsList/{mapGraphQlSubscriptionsResultToSubscriptionListItems.ts → subscriptionResultMappers.ts} +6 -0
- package/src/components/WfoTable/WfoTableWithFilter/WfoTableWithFilter.tsx +12 -0
- package/src/components/WfoToastsList/WfoToastsList.tsx +11 -11
- package/src/components/WfoTree/WfoTreeNode.tsx +2 -0
- package/src/configuration/constants.ts +1 -0
- package/src/contexts/OrchestratorConfigContext.tsx +2 -4
- package/src/contexts/index.ts +0 -1
- package/src/graphqlQueries/index.ts +1 -1
- package/src/graphqlQueries/processListQuery.ts +29 -29
- package/src/graphqlQueries/subscriptionDetailQuery.ts +1 -1
- package/src/graphqlQueries/subscriptionsDropdownOptionsQuery.ts +1 -1
- package/src/hooks/index.ts +1 -2
- package/src/hooks/useCheckEngineStatus.ts +10 -9
- package/src/hooks/useOrchestratorConfig.ts +1 -16
- package/src/hooks/useQueryWithGraphql.ts +22 -0
- package/src/hooks/useShowToastMessage.ts +43 -0
- package/src/hooks/useStoredTableConfig.ts +5 -4
- package/src/icons/WfoCogFill.tsx +23 -25
- package/src/icons/WfoCubeSolid.tsx +33 -0
- package/src/icons/WfoPlayCircle.tsx +35 -0
- package/src/icons/WfoShare.tsx +35 -0
- package/src/icons/index.ts +3 -0
- package/src/index.ts +1 -0
- package/src/messages/en-GB.json +9 -5
- package/src/messages/nl-NL.json +8 -4
- package/src/pages/metadata/WfoProductBlocksPage.tsx +40 -6
- package/src/pages/metadata/WfoProductsPage.tsx +38 -9
- package/src/pages/metadata/WfoResourceTypesPage.tsx +36 -5
- package/src/pages/metadata/WfoWorkflowsPage.tsx +40 -9
- package/src/pages/settings/WfoSettingsPage.tsx +14 -23
- package/src/rtk/api.ts +40 -0
- package/src/rtk/endpoints/customers.ts +27 -0
- package/src/rtk/endpoints/index.ts +3 -0
- package/src/rtk/endpoints/processList.ts +89 -0
- package/src/rtk/endpoints/settings.ts +72 -0
- package/src/rtk/hooks.ts +7 -0
- package/src/rtk/index.ts +5 -0
- package/src/rtk/slices/index.ts +1 -0
- package/src/rtk/slices/orchestratorConfig.ts +16 -0
- package/src/rtk/slices/toastMessages.ts +56 -0
- package/src/rtk/store.ts +40 -0
- package/src/rtk/storeProvider.tsx +26 -0
- package/src/types/types.ts +33 -2
- package/src/utils/csvDownload.ts +83 -0
- package/src/utils/getDefaultTableConfig.ts +1 -3
- package/src/utils/getQueryVariablesForExport.spec.ts +19 -0
- package/src/utils/getQueryVariablesForExport.ts +11 -0
- package/src/utils/index.ts +1 -0
- package/src/utils/sortObjectKeys.spec.ts +34 -0
- package/src/utils/sortObjectKeys.ts +33 -0
- package/src/components/WfoSettings/WfoSettings.tsx +0 -40
- package/src/contexts/ToastContext.tsx +0 -136
- package/src/graphqlQueries/customersQuery.ts +0 -20
- package/src/hooks/useEngineStatusQuery.ts +0 -64
- package/src/hooks/useToastMessage.ts +0 -5
There are too many changes on this page to be displayed.
The amount of changes on this page would crash your brower.
You can still verify the content by downloading the package file manually.