@orchestrator-ui/orchestrator-ui-components 4.1.1 → 4.2.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.
@@ -1,12 +1,12 @@
1
1
 
2
- > @orchestrator-ui/orchestrator-ui-components@4.1.1 build
2
+ > @orchestrator-ui/orchestrator-ui-components@4.2.0 build
3
3
  > npm run generate-version && tsup src/index.ts
4
4
 
5
5
 
6
- > @orchestrator-ui/orchestrator-ui-components@4.1.1 generate-version
6
+ > @orchestrator-ui/orchestrator-ui-components@4.2.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 39ms
9
+ src/configuration/version.ts 41ms
10
10
  CLI Building entry: src/index.ts
11
11
  CLI Using tsconfig: tsconfig.build.json
12
12
  CLI tsup v8.4.0
@@ -14,8 +14,8 @@ src/configuration/version.ts 39ms
14
14
  CLI Target: es2020
15
15
  ESM Build start
16
16
  DTS Build start
17
- ESM dist/index.js 1.97 MB
17
+ ESM dist/index.js 1.98 MB
18
18
  ESM dist/index.js.map 3.67 MB
19
- ESM ⚡️ Build success in 600ms
20
- DTS ⚡️ Build success in 18946ms
21
- DTS dist/index.d.ts 697.23 KB
19
+ ESM ⚡️ Build success in 689ms
20
+ DTS ⚡️ Build success in 20648ms
21
+ DTS dist/index.d.ts 697.12 KB
@@ -1,4 +1,4 @@
1
1
 
2
- > @orchestrator-ui/orchestrator-ui-components@4.1.1 lint
2
+ > @orchestrator-ui/orchestrator-ui-components@4.2.0 lint
3
3
  > eslint
4
4
 
@@ -1,14 +1,14 @@
1
1
 
2
- > @orchestrator-ui/orchestrator-ui-components@4.1.1 test
2
+ > @orchestrator-ui/orchestrator-ui-components@4.2.0 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
10
- PASS Wfo-UI Tests src/utils/getProductNamesFromProcess.spec.ts
11
10
  PASS Wfo-UI Tests src/components/WfoTable/WfoTable/WfoGroupedTable/utils.spec.ts
11
+ PASS Wfo-UI Tests src/utils/getProductNamesFromProcess.spec.ts
12
12
  PASS Wfo-UI Tests src/utils/compareVersions.spec.ts
13
13
  PASS Wfo-UI Tests src/components/WfoTable/utils/tableUtils.spec.ts
14
14
  PASS Wfo-UI Tests src/components/WfoTable/WfoTableWithFilter/updateQueryString.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.299 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.868 s)
39
+ PASS Wfo-UI Tests src/components/WfoTable/WfoTable/utils.spec.ts (5.332 s)
40
40
 
41
41
  Test Suites: 35 passed, 35 total
42
42
  Tests: 224 passed, 224 total
43
43
  Snapshots: 0 total
44
- Time: 7.951 s
44
+ Time: 8.572 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
+ ## 4.2.0
4
+
5
+ ### Minor Changes
6
+
7
+ - e799369: 1886 "Fix refresh affecting subscriptions search and in-sync button"
8
+
3
9
  ## 4.1.1
4
10
 
5
11
  ### Patch Changes
package/dist/index.d.ts CHANGED
@@ -14429,10 +14429,9 @@ declare const useSubscriptionDetailGeneralSectionConfigurationOverride: () => {
14429
14429
  };
14430
14430
 
14431
14431
  interface WfoSubscriptionDetailSectionProps {
14432
- isFetching: boolean;
14433
14432
  subscriptionDetail: SubscriptionDetail;
14434
14433
  }
14435
- declare const WfoSubscriptionDetailSection: ({ isFetching, subscriptionDetail, }: WfoSubscriptionDetailSectionProps) => _emotion_react_jsx_runtime.JSX.Element;
14434
+ declare const WfoSubscriptionDetailSection: ({ subscriptionDetail, }: WfoSubscriptionDetailSectionProps) => _emotion_react_jsx_runtime.JSX.Element;
14436
14435
 
14437
14436
  interface WfoSubscriptionFixedInputSectionProps {
14438
14437
  fixedInputs: SubscriptionDetail['fixedInputs'];
@@ -14457,9 +14456,8 @@ declare const SubscriptionKeyValueBlock: ({ title, keyValues, }: SubscriptionKey
14457
14456
 
14458
14457
  interface WfoInSyncFieldProps {
14459
14458
  subscriptionDetail: SubscriptionDetail;
14460
- isFetching: boolean;
14461
14459
  }
14462
- declare const WfoInSyncField: ({ subscriptionDetail, isFetching, }: WfoInSyncFieldProps) => _emotion_react_jsx_runtime.JSX.Element;
14460
+ declare const WfoInSyncField: ({ subscriptionDetail }: WfoInSyncFieldProps) => _emotion_react_jsx_runtime.JSX.Element;
14463
14461
 
14464
14462
  interface WfoProcessesTimelineProps {
14465
14463
  subscriptionDetailProcesses: SubscriptionDetailProcess[];
@@ -14507,7 +14505,6 @@ declare const WfoSubscriptionDetailTree: ({ productBlockInstances, subscriptionI
14507
14505
 
14508
14506
  interface WfoSubscriptionGeneralProps {
14509
14507
  subscriptionDetail: SubscriptionDetail;
14510
- isFetching: boolean;
14511
14508
  }
14512
14509
  declare enum WfoSubscriptionGeneralSections {
14513
14510
  BLOCK_TITLE_SUBSCRIPTION_DETAILS = "blockTitleSubscriptionDetails",
@@ -14515,7 +14512,7 @@ declare enum WfoSubscriptionGeneralSections {
14515
14512
  BLOCK_TITLE_FIXED_INPUTS = "blockTitleFixedInputs",
14516
14513
  BLOCK_TITLE_PRODUCT_INFO = "blockTitleProductInfo"
14517
14514
  }
14518
- declare const WfoSubscriptionGeneral: ({ subscriptionDetail, isFetching, }: WfoSubscriptionGeneralProps) => _emotion_react_jsx_runtime.JSX.Element;
14515
+ declare const WfoSubscriptionGeneral: ({ subscriptionDetail, }: WfoSubscriptionGeneralProps) => _emotion_react_jsx_runtime.JSX.Element;
14519
14516
 
14520
14517
  type WfoCustomerDescriptionsFieldProps = {
14521
14518
  customerDescriptions: CustomerDescriptions[];
@@ -15356,7 +15353,7 @@ declare const METADATA_PRODUCT_BLOCK_ENDPOINT = "product_blocks";
15356
15353
  declare const METADATA_RESOURCE_TYPE_ENDPOINT = "resource_types";
15357
15354
  declare const METADATA_WORKFLOWS_ENDPOINT = "workflows";
15358
15355
 
15359
- declare const ORCHESTRATOR_UI_LIBRARY_VERSION = "4.1.1";
15356
+ declare const ORCHESTRATOR_UI_LIBRARY_VERSION = "4.2.0";
15360
15357
 
15361
15358
  declare const useGetTranslationMessages: (locale: string | undefined) => {
15362
15359
  pydanticForms: {