@orchestrator-ui/orchestrator-ui-components 5.1.0 → 5.2.1

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 (28) hide show
  1. package/.turbo/turbo-build.log +6 -6
  2. package/.turbo/turbo-lint.log +1 -1
  3. package/.turbo/turbo-test.log +5 -5
  4. package/CHANGELOG.md +16 -0
  5. package/dist/index.d.ts +1122 -378
  6. package/dist/index.js +663 -701
  7. package/dist/index.js.map +1 -1
  8. package/package.json +2 -2
  9. package/src/components/WfoForms/formFields/commonStyles.ts +4 -0
  10. package/src/components/WfoForms/formFields/{SubscriptionField.tsx → deprecated/SubscriptionField.tsx} +53 -157
  11. package/src/components/WfoForms/formFields/deprecated/index.ts +1 -0
  12. package/src/components/WfoForms/formFields/index.ts +0 -1
  13. package/src/components/WfoPydanticForm/Header.tsx +18 -0
  14. package/src/components/WfoPydanticForm/Row.tsx +15 -3
  15. package/src/components/WfoPydanticForm/WfoPydanticForm.tsx +2 -1
  16. package/src/configuration/constants.ts +2 -0
  17. package/src/configuration/version.ts +1 -1
  18. package/src/hooks/deprecated/useGetSurfSubcriptionDropdownOptions.ts +37 -0
  19. package/src/rtk/api.ts +3 -1
  20. package/src/rtk/endpoints/deprecated/index.ts +1 -0
  21. package/src/rtk/endpoints/deprecated/surfSubscriptionDropdownOptions.ts +53 -0
  22. package/src/rtk/endpoints/index.ts +1 -1
  23. package/src/types/deprecated/SurfSubscriptionDropdownOptionsFilterParams.ts +10 -0
  24. package/src/types/deprecated/index.ts +1 -0
  25. package/src/types/index.ts +1 -0
  26. package/src/hooks/deprecated/useGetSubscriptionDropdownOptions.ts +0 -39
  27. package/src/rtk/endpoints/subscriptionsDropdownOptions.ts +0 -71
  28. /package/src/components/WfoForms/formFields/{SubscriptionFieldStyling.ts → deprecated/SubscriptionFieldStyling.ts} +0 -0
@@ -1,12 +1,12 @@
1
1
 
2
- > @orchestrator-ui/orchestrator-ui-components@5.1.0 build
2
+ > @orchestrator-ui/orchestrator-ui-components@5.2.1 build
3
3
  > npm run generate-version && tsup src/index.ts
4
4
 
5
5
 
6
- > @orchestrator-ui/orchestrator-ui-components@5.1.0 generate-version
6
+ > @orchestrator-ui/orchestrator-ui-components@5.2.1 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 38ms
9
+ src/configuration/version.ts 42ms
10
10
  CLI Building entry: src/index.ts
11
11
  CLI Using tsconfig: tsconfig.build.json
12
12
  CLI tsup v8.4.0
@@ -16,6 +16,6 @@ src/configuration/version.ts 38ms
16
16
  DTS Build start
17
17
  ESM dist/index.js 1.99 MB
18
18
  ESM dist/index.js.map 3.70 MB
19
- ESM ⚡️ Build success in 623ms
20
- DTS ⚡️ Build success in 19299ms
21
- DTS dist/index.d.ts 772.82 KB
19
+ ESM ⚡️ Build success in 593ms
20
+ DTS ⚡️ Build success in 21433ms
21
+ DTS dist/index.d.ts 813.29 KB
@@ -1,4 +1,4 @@
1
1
 
2
- > @orchestrator-ui/orchestrator-ui-components@5.1.0 lint
2
+ > @orchestrator-ui/orchestrator-ui-components@5.2.1 lint
3
3
  > eslint
4
4
 
@@ -1,9 +1,9 @@
1
1
 
2
- > @orchestrator-ui/orchestrator-ui-components@5.1.0 test
2
+ > @orchestrator-ui/orchestrator-ui-components@5.2.1 test
3
3
  > jest
4
4
 
5
- PASS Wfo-UI Tests src/components/WfoTree/treeUtils.spec.ts
6
5
  PASS Wfo-UI Tests src/components/WfoSubscription/utils/utils.spec.ts
6
+ PASS Wfo-UI Tests src/components/WfoTree/treeUtils.spec.ts
7
7
  PASS Wfo-UI Tests src/utils/date.spec.ts
8
8
  PASS Wfo-UI Tests src/pages/processes/timelineUtils.spec.ts
9
9
  PASS Wfo-UI Tests src/utils/string.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/WfoForms/formFields/utils.spec.ts (6.181 s)
39
- PASS Wfo-UI Tests src/components/WfoTable/WfoTable/utils.spec.ts
38
+ PASS Wfo-UI Tests src/components/WfoForms/formFields/utils.spec.ts (6.54 s)
39
+ PASS Wfo-UI Tests src/components/WfoTable/WfoTable/utils.spec.ts (5.023 s)
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.858 s
44
+ Time: 8.195 s
45
45
  Ran all test suites.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # @orchestrator-ui/orchestrator-ui-components
2
2
 
3
+ ## 5.2.1
4
+
5
+ ### Patch Changes
6
+
7
+ - 7d968b0: Updates pydantic-forms minimum version
8
+
9
+ ## 5.2.0
10
+
11
+ ### Minor Changes
12
+
13
+ - 7fa5828: SURF specific: Deprecate SubscriptionField and refactor it to use new REST endpoint with server-side filtering
14
+
15
+ ### Patch Changes
16
+
17
+ - bbae7ad: Small improvements to forms
18
+
3
19
  ## 5.1.0
4
20
 
5
21
  ### Minor Changes