@orchestrator-ui/orchestrator-ui-components 2.10.0 → 2.10.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.
@@ -1,12 +1,12 @@
1
1
 
2
- > @orchestrator-ui/orchestrator-ui-components@2.10.0 build
2
+ > @orchestrator-ui/orchestrator-ui-components@2.10.1 build
3
3
  > npm run generate-version && tsup src/index.ts
4
4
 
5
5
 
6
- > @orchestrator-ui/orchestrator-ui-components@2.10.0 generate-version
6
+ > @orchestrator-ui/orchestrator-ui-components@2.10.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 232ms
9
+ src/configuration/version.ts 181ms
10
10
  CLI Building entry: src/index.ts
11
11
  CLI Using tsconfig: tsconfig.build.json
12
12
  CLI tsup v8.3.5
@@ -16,6 +16,6 @@ src/configuration/version.ts 232ms
16
16
  DTS Build start
17
17
  ESM dist/index.js 1.92 MB
18
18
  ESM dist/index.js.map 3.49 MB
19
- ESM ⚡️ Build success in 1093ms
20
- DTS ⚡️ Build success in 22631ms
19
+ ESM ⚡️ Build success in 1124ms
20
+ DTS ⚡️ Build success in 22079ms
21
21
  DTS dist/index.d.ts 651.34 KB
@@ -1,5 +1,5 @@
1
1
 
2
- > @orchestrator-ui/orchestrator-ui-components@2.10.0 lint
2
+ > @orchestrator-ui/orchestrator-ui-components@2.10.1 lint
3
3
  > eslint "src/**/*.ts*"
4
4
 
5
5
 
@@ -1,13 +1,13 @@
1
1
 
2
- > @orchestrator-ui/orchestrator-ui-components@2.10.0 test
2
+ > @orchestrator-ui/orchestrator-ui-components@2.10.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
7
6
  PASS Wfo-UI Tests src/components/WfoForms/formFields/utils.spec.ts
7
+ PASS Wfo-UI Tests src/components/WfoTree/treeUtils.spec.ts
8
8
  PASS Wfo-UI Tests src/utils/date.spec.ts
9
- PASS Wfo-UI Tests src/utils/string.spec.ts
10
9
  PASS Wfo-UI Tests src/pages/processes/timelineUtils.spec.ts
10
+ PASS Wfo-UI Tests src/utils/string.spec.ts
11
11
  PASS Wfo-UI Tests src/components/WfoTable/WfoTable/WfoGroupedTable/utils.spec.ts
12
12
  PASS Wfo-UI Tests src/utils/getProductNamesFromProcess.spec.ts
13
13
  PASS Wfo-UI Tests src/components/WfoTable/WfoTableWithFilter/updateQueryString.spec.ts
@@ -16,27 +16,27 @@ PASS Wfo-UI Tests src/rtk/utils.spec.ts
16
16
  PASS Wfo-UI Tests src/components/WfoTable/utils/tableUtils.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
- PASS Wfo-UI Tests src/utils/getEnvironmentVariables.spec.ts
20
19
  PASS Wfo-UI Tests src/messages/getTranslationMessages.spec.ts
20
+ PASS Wfo-UI Tests src/utils/getEnvironmentVariables.spec.ts
21
21
  PASS Wfo-UI Tests src/utils/getToastMessage.spec.ts
22
- PASS Wfo-UI Tests src/utils/toSortedObjectKeys.spec.ts
23
22
  PASS Wfo-UI Tests src/utils/optionalArray.spec.ts
24
- PASS Wfo-UI Tests src/components/WfoTable/utils/columns.spec.ts
23
+ PASS Wfo-UI Tests src/utils/toSortedObjectKeys.spec.ts
25
24
  PASS Wfo-UI Tests src/utils/filterData.spec.ts
26
- PASS Wfo-UI Tests src/utils/toObjectWithSerializedValues.spec.ts
25
+ PASS Wfo-UI Tests src/components/WfoTable/utils/columns.spec.ts
27
26
  PASS Wfo-UI Tests src/components/WfoWorkflowSteps/stepListUtils.spec.ts
28
- PASS Wfo-UI Tests src/utils/getTokenName.spec.ts
27
+ PASS Wfo-UI Tests src/utils/toObjectWithSerializedValues.spec.ts
29
28
  PASS Wfo-UI Tests src/utils/environmentVariables.spec.ts
29
+ PASS Wfo-UI Tests src/utils/getTokenName.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
33
  PASS Wfo-UI Tests src/utils/cacheTag.spec.ts
34
34
  PASS Wfo-UI Tests src/components/WfoPageTemplate/WfoPageHeader/utils/toHexColorWithOpacity.spec.ts
35
35
  PASS Wfo-UI Tests src/utils/getQueryVariablesForExport.spec.ts
36
- PASS Wfo-UI Tests src/components/WfoTable/WfoTable/utils.spec.ts (7.723 s)
36
+ PASS Wfo-UI Tests src/components/WfoTable/WfoTable/utils.spec.ts (8.065 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: 10.963 s
41
+ Time: 11.059 s
42
42
  Ran all test suites.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @orchestrator-ui/orchestrator-ui-components
2
2
 
3
+ ## 2.10.1
4
+
5
+ ### Patch Changes
6
+
7
+ - 4a1ef5b: Adds pre-wrap style to value display fieldds
8
+
3
9
  ## 2.10.0
4
10
 
5
11
  ### Minor Changes
package/dist/index.d.ts CHANGED
@@ -14433,7 +14433,7 @@ declare const IPAM_IP_BLOCKS_ENDPOINT = "surf/ipam/ip_blocks";
14433
14433
  declare const IPAM_FREE_SUBNETS_ENDPOINT = "surf/ipam/free_subnets";
14434
14434
  declare const SUBSCRIPTION_ACTIONS_ENDPOINT = "subscriptions/workflows";
14435
14435
 
14436
- declare const ORCHESTRATOR_UI_LIBRARY_VERSION = "2.10.0";
14436
+ declare const ORCHESTRATOR_UI_LIBRARY_VERSION = "2.10.1";
14437
14437
 
14438
14438
  declare const useGetTranslationMessages: (locale: string | undefined) => {
14439
14439
  pydanticForms: {
package/dist/index.js CHANGED
@@ -26792,7 +26792,7 @@ var PolicyResource = /* @__PURE__ */ ((PolicyResource2) => {
26792
26792
  })(PolicyResource || {});
26793
26793
 
26794
26794
  // src/configuration/version.ts
26795
- var ORCHESTRATOR_UI_LIBRARY_VERSION = "2.10.0";
26795
+ var ORCHESTRATOR_UI_LIBRARY_VERSION = "2.10.1";
26796
26796
 
26797
26797
  // src/types/types.ts
26798
26798
  var EngineStatus = /* @__PURE__ */ ((EngineStatus3) => {
@@ -37432,7 +37432,8 @@ var getStyles4 = ({ theme }) => {
37432
37432
  color: theme.colors.text,
37433
37433
  display: "flex",
37434
37434
  alignItems: "center",
37435
- overflowWrap: "anywhere"
37435
+ overflowWrap: "anywhere",
37436
+ whiteSpace: "pre-wrap"
37436
37437
  });
37437
37438
  const clipboardIconStyle = css5({
37438
37439
  visibility: "hidden",