@orchestrator-ui/orchestrator-ui-components 7.2.1 → 7.3.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 (35) hide show
  1. package/.turbo/turbo-build.log +8 -8
  2. package/.turbo/turbo-lint.log +2 -5
  3. package/.turbo/turbo-test.log +6 -6
  4. package/CHANGELOG.md +6 -0
  5. package/dist/index.d.ts +1540 -301
  6. package/dist/index.js +10312 -9606
  7. package/dist/index.js.map +1 -1
  8. package/package.json +2 -2
  9. package/src/components/WfoButtonWithConfirm/WfoButtonWithConfirm.tsx +35 -0
  10. package/src/components/WfoButtonWithConfirm/index.ts +1 -0
  11. package/src/components/WfoPageTemplate/paths.ts +2 -0
  12. package/src/components/WfoPopover/WfoPopover.tsx +43 -0
  13. package/src/components/WfoPopover/index.ts +1 -0
  14. package/src/components/WfoPydanticForm/Footer.tsx +3 -3
  15. package/src/components/WfoPydanticForm/WfoPydanticForm.tsx +10 -285
  16. package/src/components/WfoPydanticForm/fields/WfoTimestampField.tsx +67 -0
  17. package/src/components/WfoPydanticForm/fields/index.ts +1 -0
  18. package/src/components/WfoSubscription/WfoSubscriptionActions/WfoSubscriptionActions.tsx +10 -27
  19. package/src/components/WfoTable/WfoAdvancedTable/WfoAdvancedTable.tsx +3 -0
  20. package/src/components/WfoWorkflowSteps/WfoStep/WfoStepForm.tsx +12 -21
  21. package/src/components/index.ts +2 -0
  22. package/src/configuration/constants.ts +1 -1
  23. package/src/configuration/version.ts +1 -1
  24. package/src/hooks/index.ts +1 -0
  25. package/src/hooks/useGetPydanticFormsConfig.tsx +324 -0
  26. package/src/messages/en-GB.json +27 -3
  27. package/src/messages/nl-NL.json +28 -4
  28. package/src/pages/metadata/WfoScheduleTaskFormPage.tsx +464 -0
  29. package/src/pages/metadata/WfoScheduledTasksPage.tsx +43 -3
  30. package/src/pages/metadata/WfoTasksPage.tsx +75 -1
  31. package/src/pages/metadata/index.ts +1 -0
  32. package/src/rtk/api.ts +1 -0
  33. package/src/rtk/endpoints/metadata/scheduledTasks.ts +131 -3
  34. package/src/rtk/endpoints/metadata/tasks.ts +2 -0
  35. package/src/types/types.ts +18 -0
@@ -1,12 +1,12 @@
1
1
 
2
- > @orchestrator-ui/orchestrator-ui-components@7.2.1 build
2
+ > @orchestrator-ui/orchestrator-ui-components@7.3.0 build
3
3
  > npm run generate-version && tsup src/index.ts
4
4
 
5
5
 
6
- > @orchestrator-ui/orchestrator-ui-components@7.2.1 generate-version
6
+ > @orchestrator-ui/orchestrator-ui-components@7.3.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 137ms
9
+ src/configuration/version.ts 120ms
10
10
  CLI Building entry: src/index.ts
11
11
  CLI Using tsconfig: tsconfig.json
12
12
  CLI tsup v8.5.0
@@ -14,9 +14,9 @@ src/configuration/version.ts 137ms
14
14
  CLI Target: es2022
15
15
  CLI Cleaning output folder
16
16
  ESM Build start
17
- ESM dist/index.js 824.74 KB
18
- ESM dist/index.js.map 1.55 MB
19
- ESM ⚡️ Build success in 284ms
17
+ ESM dist/index.js 846.32 KB
18
+ ESM dist/index.js.map 1.59 MB
19
+ ESM ⚡️ Build success in 275ms
20
20
  DTS Build start
21
- DTS ⚡️ Build success in 21298ms
22
- DTS dist/index.d.ts 1.43 MB
21
+ DTS ⚡️ Build success in 21534ms
22
+ DTS dist/index.d.ts 1.47 MB
@@ -1,19 +1,16 @@
1
1
 
2
- > @orchestrator-ui/orchestrator-ui-components@7.2.1 lint
2
+ > @orchestrator-ui/orchestrator-ui-components@7.3.0 lint
3
3
  > eslint
4
4
 
5
5
 
6
6
  /home/runner/work/orchestrator-ui-library/orchestrator-ui-library/packages/orchestrator-ui-components/src/components/WfoPageTemplate/WfoPageTemplate/WfoPageTemplate.tsx
7
7
  56:8 warning React Hook useEffect has a missing dependency: 'handleColorModeSwitch'. Either include it or remove the dependency array react-hooks/exhaustive-deps
8
8
 
9
- /home/runner/work/orchestrator-ui-library/orchestrator-ui-library/packages/orchestrator-ui-components/src/components/WfoPydanticForm/Footer.tsx
10
- 40:11 warning The 'handlePrevious' function makes the dependencies of useEffect Hook (at line 72) change on every render. To fix this, wrap the definition of 'handlePrevious' in its own useCallback() Hook react-hooks/exhaustive-deps
11
-
12
9
  /home/runner/work/orchestrator-ui-library/orchestrator-ui-library/packages/orchestrator-ui-components/src/components/WfoSearchPage/WfoSearch/WfoSearch.tsx
13
10
  194:8 warning React Hook useEffect has missing dependencies: 'setSelectedRecordId' and 'setSelectedRecordIndex'. Either include them or remove the dependency array react-hooks/exhaustive-deps
14
11
 
15
12
  /home/runner/work/orchestrator-ui-library/orchestrator-ui-library/packages/orchestrator-ui-components/src/hooks/usePathAutoComplete.ts
16
13
  124:8 warning React Hook useEffect has a missing dependency: 'debouncedPrefix.length'. Either include it or remove the dependency array react-hooks/exhaustive-deps
17
14
 
18
- 4 problems (0 errors, 4 warnings)
15
+ 3 problems (0 errors, 3 warnings)
19
16
 
@@ -1,23 +1,23 @@
1
1
 
2
- > @orchestrator-ui/orchestrator-ui-components@7.2.1 test
2
+ > @orchestrator-ui/orchestrator-ui-components@7.3.0 test
3
3
  > jest
4
4
 
5
5
  PASS Wfo-UI Tests src/components/WfoTree/treeUtils.spec.ts
6
6
  PASS Wfo-UI Tests src/utils/date.spec.ts
7
7
  PASS Wfo-UI Tests src/components/WfoSubscription/utils/utils.spec.ts
8
8
  PASS Wfo-UI Tests src/pages/processes/timelineUtils.spec.ts
9
- PASS Wfo-UI Tests src/utils/getProductNamesFromProcess.spec.ts
10
9
  PASS Wfo-UI Tests src/utils/string.spec.ts
11
- PASS Wfo-UI Tests src/utils/compareVersions.spec.ts
10
+ PASS Wfo-UI Tests src/utils/getProductNamesFromProcess.spec.ts
12
11
  PASS Wfo-UI Tests src/components/WfoTable/utils/tableUtils.spec.ts
13
12
  PASS Wfo-UI Tests src/components/WfoTable/WfoTable/WfoGroupedTable/utils.spec.ts
13
+ PASS Wfo-UI Tests src/utils/compareVersions.spec.ts
14
14
  PASS Wfo-UI Tests src/components/WfoTable/WfoTableWithFilter/updateQueryString.spec.ts
15
15
  PASS Wfo-UI Tests src/components/WfoTable/utils/tableConfigPersistence.spec.ts
16
16
  PASS Wfo-UI Tests src/utils/optionalArray.spec.ts
17
17
  PASS Wfo-UI Tests src/rtk/utils.spec.ts
18
18
  PASS Wfo-UI Tests src/utils/resultFlattener.spec.ts
19
- PASS Wfo-UI Tests src/components/WfoPageTemplate/WfoSidebar/utils/menuItemIsAllowed.spec.ts
20
19
  PASS Wfo-UI Tests src/utils/getQueryParams.spec.ts
20
+ PASS Wfo-UI Tests src/components/WfoPageTemplate/WfoSidebar/utils/menuItemIsAllowed.spec.ts
21
21
  PASS Wfo-UI Tests src/utils/getEnvironmentVariables.spec.ts
22
22
  PASS Wfo-UI Tests src/messages/getTranslationMessages.spec.ts
23
23
  PASS Wfo-UI Tests src/utils/getToastMessage.spec.ts
@@ -35,11 +35,11 @@ PASS Wfo-UI Tests src/utils/cacheTag.spec.ts
35
35
  PASS Wfo-UI Tests src/utils/getQueryVariablesForExport.spec.ts
36
36
  PASS Wfo-UI Tests src/components/WfoPageTemplate/WfoPageHeader/utils/toHexColorWithOpacity.spec.ts
37
37
  PASS Wfo-UI Tests src/utils/getQueryUrl.spec.ts
38
- PASS Wfo-UI Tests src/components/WfoTable/WfoTable/utils.spec.ts (5.554 s)
38
+ PASS Wfo-UI Tests src/components/WfoTable/WfoTable/utils.spec.ts
39
39
  PASS Wfo-UI Tests src/components/WfoPydanticForm/fields/wfoPydanticFormUtils.spec.ts
40
40
 
41
41
  Test Suites: 35 passed, 35 total
42
42
  Tests: 226 passed, 226 total
43
43
  Snapshots: 0 total
44
- Time: 7.999 s
44
+ Time: 7.273 s
45
45
  Ran all test suites.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @orchestrator-ui/orchestrator-ui-components
2
2
 
3
+ ## 7.3.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 67ce439: Adds create scheduled task form
8
+
3
9
  ## 7.2.1
4
10
 
5
11
  ### Patch Changes