@orchestrator-ui/orchestrator-ui-components 3.9.1 → 4.0.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 +9 -9
- package/.turbo/turbo-lint.log +2 -11
- package/.turbo/turbo-test.log +9 -8
- package/CHANGELOG.md +321 -305
- package/dist/index.d.ts +823 -795
- package/dist/index.js +1215 -648
- package/dist/index.js.map +1 -1
- package/eslint.config.js +5 -0
- package/package.json +6 -7
- package/src/components/WfoBadges/WfoProcessStatusBadge/WfoProcessStatusBadge.tsx +3 -2
- package/src/components/WfoForms/UserInputForm.tsx +0 -1
- package/src/components/WfoForms/formFields/AcceptField.tsx +2 -2
- package/src/components/WfoForms/formFields/ListSelectField.tsx +0 -1
- package/src/components/WfoForms/formFields/SelectField/SelectField.tsx +1 -1
- package/src/components/WfoForms/formFields/deprecated/ImsNodeIdField.tsx +2 -2
- package/src/components/WfoForms/formFields/deprecated/ImsPortIdField.tsx +2 -2
- package/src/components/WfoForms/formFields/deprecated/VlanField.tsx +11 -11
- package/src/components/WfoPageTemplate/WfoPageHeader/WfoHamburgerMenu.tsx +1 -1
- package/src/components/WfoSubscription/WfoCustomerDescriptionsField.tsx +2 -3
- package/src/components/WfoSubscription/WfoProcessesTimeline.tsx +61 -56
- package/src/components/WfoSubscription/styles.ts +17 -34
- package/src/components/WfoSummary/WfoLatestOutOfSyncSubscriptionSummaryCard.tsx +10 -1
- package/src/components/WfoSummary/WfoMyWorkflowsSummaryCard.tsx +13 -2
- package/src/components/WfoTable/WfoTableSettingsModal/WfoTableSettingsModal.tsx +1 -1
- package/src/components/WfoWorkflowSteps/WfoStep/WfoStep.tsx +4 -2
- package/src/components/WfoWorkflowSteps/WfoWorkflowStepList/WfoWorkflowStepList.tsx +4 -6
- package/src/configuration/version.ts +1 -1
- package/src/pages/processes/WfoProcessDetail.tsx +3 -3
- package/src/rtk/api.ts +4 -2
- package/src/types/types.ts +1 -1
- package/src/utils/getDefaultTableConfig.ts +20 -16
- package/src/utils/getEnvironmentVariables.ts +13 -10
- package/src/utils/getQueryParams.spec.ts +43 -0
- package/src/utils/getQueryParams.ts +16 -0
- package/src/utils/index.ts +1 -0
- package/eslintrc.js +0 -3
- package/src/stories/Button.jsx +0 -62
- package/src/stories/Button.stories.js +0 -45
- package/src/stories/Configure.mdx +0 -452
- package/src/stories/Header.jsx +0 -74
- package/src/stories/Header.stories.js +0 -23
- package/src/stories/Page.jsx +0 -89
- package/src/stories/Page.stories.js +0 -25
- package/src/stories/assets/accessibility.png +0 -0
- package/src/stories/assets/accessibility.svg +0 -5
- package/src/stories/assets/addon-library.png +0 -0
- package/src/stories/assets/assets.png +0 -0
- package/src/stories/assets/context.png +0 -0
- package/src/stories/assets/discord.svg +0 -15
- package/src/stories/assets/docs.png +0 -0
- package/src/stories/assets/figma-plugin.png +0 -0
- package/src/stories/assets/github.svg +0 -3
- package/src/stories/assets/share.png +0 -0
- package/src/stories/assets/styling.png +0 -0
- package/src/stories/assets/testing.png +0 -0
- package/src/stories/assets/theming.png +0 -0
- package/src/stories/assets/tutorials.svg +0 -12
- package/src/stories/assets/youtube.svg +0 -4
- package/src/stories/button.css +0 -30
- package/src/stories/colors.mdx +0 -13
- package/src/stories/header.css +0 -32
- package/src/stories/page.css +0 -69
package/CHANGELOG.md
CHANGED
|
@@ -1,20 +1,36 @@
|
|
|
1
1
|
# @orchestrator-ui/orchestrator-ui-components
|
|
2
2
|
|
|
3
|
+
## 4.0.0
|
|
4
|
+
|
|
5
|
+
### Major Changes
|
|
6
|
+
|
|
7
|
+
- 85509b5: Updates to latest npm packages versions. Updates to eslint 9
|
|
8
|
+
|
|
9
|
+
## 3.10.0
|
|
10
|
+
|
|
11
|
+
### Minor Changes
|
|
12
|
+
|
|
13
|
+
- 2ae5b18: Replace hardcoded query params with constants and enums
|
|
14
|
+
|
|
15
|
+
### Patch Changes
|
|
16
|
+
|
|
17
|
+
- 4cefe05: 1858 Fix layout issue with workflows on subscription detail page
|
|
18
|
+
|
|
3
19
|
## 3.9.1
|
|
4
20
|
|
|
5
21
|
### Patch Changes
|
|
6
22
|
|
|
7
|
-
-
|
|
23
|
+
- 3f64535: 1337 Move getWebSocket to utils.ts
|
|
8
24
|
|
|
9
25
|
## 3.9.0
|
|
10
26
|
|
|
11
27
|
### Minor Changes
|
|
12
28
|
|
|
13
|
-
-
|
|
29
|
+
- 5f8c712: 1210 Adds a badge with number of subscriptions not shown in the affected-subscriptions cell on the process list page
|
|
14
30
|
|
|
15
31
|
### Patch Changes
|
|
16
32
|
|
|
17
|
-
-
|
|
33
|
+
- adc70ef: Remove inUseByRelations field from query SubscriptionDropdownOptions
|
|
18
34
|
|
|
19
35
|
To benefit from the query optimization in https://github.com/workfloworchestrator/orchestrator-core/pull/922
|
|
20
36
|
|
|
@@ -22,149 +38,149 @@
|
|
|
22
38
|
|
|
23
39
|
### Patch Changes
|
|
24
40
|
|
|
25
|
-
-
|
|
41
|
+
- e75d0e4: 1844 Adds isAllowed policy check to the start-stop-engine section
|
|
26
42
|
|
|
27
43
|
## 3.8.0
|
|
28
44
|
|
|
29
45
|
### Minor Changes
|
|
30
46
|
|
|
31
|
-
-
|
|
47
|
+
- 93d46aa: 1635 Adds extra parameter ("allFieldValues") to the override function to have all data available when overriding a specific cell value
|
|
32
48
|
|
|
33
49
|
### Patch Changes
|
|
34
50
|
|
|
35
|
-
-
|
|
51
|
+
- 6fdc33a: 1824 Fix for the thin gray line in the sidebar that went beyond settings.
|
|
36
52
|
|
|
37
53
|
## 3.7.0
|
|
38
54
|
|
|
39
55
|
### Minor Changes
|
|
40
56
|
|
|
41
|
-
-
|
|
57
|
+
- 8a51b24: Adds fileupload field
|
|
42
58
|
|
|
43
59
|
## 3.6.0
|
|
44
60
|
|
|
45
61
|
### Minor Changes
|
|
46
62
|
|
|
47
|
-
-
|
|
48
|
-
-
|
|
63
|
+
- 21c2886: 1825 Update WfoDragHandler, make WfoTable 100% width
|
|
64
|
+
- 5f16a2e: 1821 Update WfoSidebar, add toOptionalArrayEntries
|
|
49
65
|
|
|
50
66
|
## 3.5.2
|
|
51
67
|
|
|
52
68
|
### Patch Changes
|
|
53
69
|
|
|
54
|
-
-
|
|
55
|
-
-
|
|
70
|
+
- 7040598: Readds testid to textarea field
|
|
71
|
+
- 167bea6: 1751 - Makes width of the inline note edit field flexible
|
|
56
72
|
|
|
57
73
|
## 3.5.1
|
|
58
74
|
|
|
59
75
|
### Patch Changes
|
|
60
76
|
|
|
61
|
-
-
|
|
62
|
-
-
|
|
77
|
+
- 0cb0521: Updates required peer dependencies to NextJs 14.2.25 (CVE-2025-29927)
|
|
78
|
+
- dbb2468: Add: time interval 15 min on time picker
|
|
63
79
|
|
|
64
80
|
## 3.5.0
|
|
65
81
|
|
|
66
82
|
### Minor Changes
|
|
67
83
|
|
|
68
|
-
-
|
|
84
|
+
- 267ad99: Introduces pydantic forms module to handle some workflows
|
|
69
85
|
|
|
70
86
|
### Patch Changes
|
|
71
87
|
|
|
72
|
-
-
|
|
73
|
-
-
|
|
88
|
+
- 34a3044: 1778 Improve re-render summary cards on dashboard page with many changes in backend
|
|
89
|
+
- 2dd877d: 1726 Fix column width dragger visible on top of items covering the table header
|
|
74
90
|
|
|
75
91
|
## 3.4.2
|
|
76
92
|
|
|
77
93
|
### Patch Changes
|
|
78
94
|
|
|
79
|
-
-
|
|
95
|
+
- 00038a1: Fix for grouped table width
|
|
80
96
|
|
|
81
97
|
## 3.4.1
|
|
82
98
|
|
|
83
99
|
### Patch Changes
|
|
84
100
|
|
|
85
|
-
-
|
|
86
|
-
-
|
|
87
|
-
-
|
|
101
|
+
- 0a6d086: 1758 Show error badge in navigation header when versions of frontend and backend are incompatible.
|
|
102
|
+
- 985eed8: 1749 Set a minHeight for EuiPageTemplate section
|
|
103
|
+
- e570801: 1707 Improve resizing of table columns
|
|
88
104
|
|
|
89
105
|
## 3.4.0
|
|
90
106
|
|
|
91
107
|
### Minor Changes
|
|
92
108
|
|
|
93
|
-
-
|
|
109
|
+
- 2389b16: 808 - Support for metadata description modify - requires orchestrator core 2.10.0
|
|
94
110
|
|
|
95
111
|
## 3.3.3
|
|
96
112
|
|
|
97
113
|
### Patch Changes
|
|
98
114
|
|
|
99
|
-
-
|
|
115
|
+
- 62d16da: 1709 Replace default icons with SURF icons
|
|
100
116
|
|
|
101
117
|
## 3.3.2
|
|
102
118
|
|
|
103
119
|
### Patch Changes
|
|
104
120
|
|
|
105
|
-
-
|
|
121
|
+
- 59230ea: inline edit for description of metadata pages
|
|
106
122
|
|
|
107
123
|
## 3.3.1
|
|
108
124
|
|
|
109
125
|
### Patch Changes
|
|
110
126
|
|
|
111
|
-
-
|
|
127
|
+
- 56bdc1d: 1705 Added prop for custom icon summary card
|
|
112
128
|
|
|
113
129
|
## 3.3.0
|
|
114
130
|
|
|
115
131
|
### Minor Changes
|
|
116
132
|
|
|
117
|
-
-
|
|
118
|
-
-
|
|
119
|
-
-
|
|
133
|
+
- 0476c1d: Adds an asteriks to every single word search
|
|
134
|
+
- 937c8d6: Adds customer description edit forms
|
|
135
|
+
- 1bb8c3c: Added support for displaying software versions in hamburger menu
|
|
120
136
|
|
|
121
137
|
## 3.2.0
|
|
122
138
|
|
|
123
139
|
### Minor Changes
|
|
124
140
|
|
|
125
|
-
-
|
|
141
|
+
- 2175530: 1704 - Adjustments to assist in overriding the standard menu items: Using more descriptive id values. Adds reusable divider menu item
|
|
126
142
|
|
|
127
143
|
## 3.1.1
|
|
128
144
|
|
|
129
145
|
### Patch Changes
|
|
130
146
|
|
|
131
|
-
-
|
|
147
|
+
- e838f80: 330 Making timeline in process detail pages sticky to the top of the screen. Introduces a useContentRef hook to refer to the scrollable content div in the pagetemplate
|
|
132
148
|
|
|
133
149
|
## 3.1.0
|
|
134
150
|
|
|
135
151
|
### Minor Changes
|
|
136
152
|
|
|
137
|
-
-
|
|
138
|
-
-
|
|
153
|
+
- 98c1716: Fix notes not updating when changing pages, fix cancel button resetting note to older value
|
|
154
|
+
- c19dacd: 1662 Make the navbar fixed when scrolling and notify user for failing websocket there.
|
|
139
155
|
|
|
140
156
|
## 3.0.3
|
|
141
157
|
|
|
142
158
|
### Patch Changes
|
|
143
159
|
|
|
144
|
-
-
|
|
160
|
+
- bba111c: Add missing subscription id to start process form
|
|
145
161
|
|
|
146
162
|
## 3.0.2
|
|
147
163
|
|
|
148
164
|
### Patch Changes
|
|
149
165
|
|
|
150
|
-
-
|
|
151
|
-
-
|
|
166
|
+
- a4492fd: Fix 400 error in create lir prefix form
|
|
167
|
+
- 4baeff5: 1509 Remove toast for failed websocket connection that covers the next and back buttons in the forms.
|
|
152
168
|
|
|
153
169
|
## 3.0.1
|
|
154
170
|
|
|
155
171
|
### Patch Changes
|
|
156
172
|
|
|
157
|
-
-
|
|
173
|
+
- 4bd9869: 1146 Allow workflow to start with additional prefilled variables - LIR prefixes page
|
|
158
174
|
|
|
159
175
|
## 3.0.0
|
|
160
176
|
|
|
161
177
|
### Major Changes
|
|
162
178
|
|
|
163
|
-
-
|
|
179
|
+
- f6315dd: 1479:
|
|
164
180
|
|
|
165
|
-
-
|
|
166
|
-
-
|
|
167
|
-
-
|
|
181
|
+
- csvDownload (Breaking change): Changed the parameters of initiateCsvFileDownload for directly exporting data to CSV.
|
|
182
|
+
- GroupedTable: The table has a small header with a button "Collapse / Expand", this can now be overridden.
|
|
183
|
+
- Introduced a utility type to help ensuring that all the props of an object will be of type "string". Typically useful for the csvDownload functionality
|
|
168
184
|
|
|
169
185
|
Changes to be made by the consumer of the library:
|
|
170
186
|
The function `initiateCsvFileDownload` now requires 3 parameters instead of 2. The new parameter is `keyOrder` and is an array of strings representing the desired order of the columns in the CSV file. See example below for the placement.
|
|
@@ -183,932 +199,932 @@
|
|
|
183
199
|
|
|
184
200
|
### Patch Changes
|
|
185
201
|
|
|
186
|
-
-
|
|
187
|
-
-
|
|
188
|
-
-
|
|
202
|
+
- 19d1d88: Enables prefilling of prefixes
|
|
203
|
+
- bbf8983: 1623 Changes the colors of the WfoInsyncIcon to make the no-in-sync state more prominent
|
|
204
|
+
- eb45e6b: 289 Metadata page: making related product blocks, resource types and product tags badges clickable. It will update the search query to show that specific item.
|
|
189
205
|
|
|
190
206
|
## 2.15.0
|
|
191
207
|
|
|
192
208
|
### Minor Changes
|
|
193
209
|
|
|
194
|
-
-
|
|
210
|
+
- c7eaf69: 1620 Add subscriptionPath option for WfoRelatedSubscriptions, WfoSubscriptionDetailTree
|
|
195
211
|
|
|
196
212
|
### Patch Changes
|
|
197
213
|
|
|
198
|
-
-
|
|
199
|
-
-
|
|
214
|
+
- 79d9133: 1569 Some non-functional tweaks on the table components: Adds classNames and adds a Fragment component in a mapper function
|
|
215
|
+
- 2cab3b2: Add summary field to Object field type in AutoFieldLoader
|
|
200
216
|
|
|
201
217
|
## 2.14.1
|
|
202
218
|
|
|
203
219
|
### Patch Changes
|
|
204
220
|
|
|
205
|
-
-
|
|
206
|
-
-
|
|
221
|
+
- 7f972a1: Fixes calling getFirstUuidPart with null value
|
|
222
|
+
- 86b504f: Feat: refactor IPPREFIX table #2143
|
|
207
223
|
|
|
208
224
|
## 2.14.0
|
|
209
225
|
|
|
210
226
|
### Minor Changes
|
|
211
227
|
|
|
212
|
-
-
|
|
228
|
+
- 0172be2: Adds resizable table columns
|
|
213
229
|
|
|
214
230
|
## 2.13.0
|
|
215
231
|
|
|
216
232
|
### Minor Changes
|
|
217
233
|
|
|
218
|
-
-
|
|
234
|
+
- 195a951: 692 Adds WfoErrorMonitoringProvider for tracing purposes. It exposes 2 methods via the useWfoErrorMonitoring hook. These reporting functions are used within the component library. To start using it, the WfoErrorMonitoringProvider needs to be added to the \_app.tsx and the errorMonitoringHandler needs to be implemented.
|
|
219
235
|
|
|
220
236
|
### Patch Changes
|
|
221
237
|
|
|
222
|
-
-
|
|
238
|
+
- 95de1e8: 1552 Remove last line of workflow timeline card
|
|
223
239
|
|
|
224
240
|
## 2.12.0
|
|
225
241
|
|
|
226
242
|
### Minor Changes
|
|
227
243
|
|
|
228
|
-
-
|
|
229
|
-
-
|
|
244
|
+
- 6e4d726: 1560 Table Header: for narrow columns, moving the sort icons as much as possible to the right
|
|
245
|
+
- cd0d38f: 1556 Adds inline note editing for the subscription list page
|
|
230
246
|
|
|
231
247
|
### Patch Changes
|
|
232
248
|
|
|
233
|
-
-
|
|
234
|
-
-
|
|
235
|
-
-
|
|
236
|
-
-
|
|
237
|
-
-
|
|
238
|
-
-
|
|
249
|
+
- cdb9c83: 1530 Navigate to task list page when clicking on the tasks count icon
|
|
250
|
+
- 87540ac: 1577 Fixes uncheckable checkbox (only the label was clickable)
|
|
251
|
+
- c592740: 1536 Hides inUseByIds in the list of product block instance values
|
|
252
|
+
- 88a9db4: 1561 Fixes double copy icon in subscription detail page at the in-use-by-subscriptions section
|
|
253
|
+
- d39017a: Fix WfoInlineNoteEdit showing cached value from the previous page on the next one
|
|
254
|
+
- a442a0b: new column width and customer fullname hidden
|
|
239
255
|
|
|
240
256
|
## 2.11.1
|
|
241
257
|
|
|
242
258
|
### Patch Changes
|
|
243
259
|
|
|
244
|
-
-
|
|
245
|
-
-
|
|
260
|
+
- 56e2537: Fixes rights issue in github action
|
|
261
|
+
- b7fe3ee: Adds github action permission to publish with provenance
|
|
246
262
|
|
|
247
263
|
## 2.11.0
|
|
248
264
|
|
|
249
265
|
### Minor Changes
|
|
250
266
|
|
|
251
|
-
-
|
|
267
|
+
- 85fca33: Adds npm provenance flag
|
|
252
268
|
|
|
253
269
|
### Patch Changes
|
|
254
270
|
|
|
255
|
-
-
|
|
271
|
+
- 59389ea: Removes limit on related workflows on subscription detail page
|
|
256
272
|
|
|
257
273
|
## 2.10.1
|
|
258
274
|
|
|
259
275
|
### Patch Changes
|
|
260
276
|
|
|
261
|
-
-
|
|
277
|
+
- 4a1ef5b: Adds pre-wrap style to value display fieldds
|
|
262
278
|
|
|
263
279
|
## 2.10.0
|
|
264
280
|
|
|
265
281
|
### Minor Changes
|
|
266
282
|
|
|
267
|
-
-
|
|
268
|
-
-
|
|
283
|
+
- e198ef6: 1528 Add tooltip to WfoInlineText edit, fix bug showing empty tooltip
|
|
284
|
+
- 4adc510: Adds table view to workflow steps
|
|
269
285
|
|
|
270
286
|
## 2.9.1
|
|
271
287
|
|
|
272
288
|
### Patch Changes
|
|
273
289
|
|
|
274
|
-
-
|
|
290
|
+
- fc4a7c5: Fixes too many productblock values being hidden
|
|
275
291
|
|
|
276
292
|
## 2.9.0
|
|
277
293
|
|
|
278
294
|
### Minor Changes
|
|
279
295
|
|
|
280
|
-
-
|
|
296
|
+
- fc8002a: 1503 Makes disabled action menu items expandable to list all subscriptions preventing this action to be available
|
|
281
297
|
|
|
282
298
|
### Patch Changes
|
|
283
299
|
|
|
284
|
-
-
|
|
285
|
-
-
|
|
286
|
-
-
|
|
287
|
-
-
|
|
300
|
+
- beca81e: Fixes possible error in suspend step
|
|
301
|
+
- 9d1881f: 1504 Resolves task names and workflow names into the description text from the metadata endpoint, making the titles more human-readable
|
|
302
|
+
- e8c65bf: update to translation file
|
|
303
|
+
- 4bf976f: Fixes showing empty product block values where they should not be
|
|
288
304
|
|
|
289
305
|
## 2.8.4
|
|
290
306
|
|
|
291
307
|
### Patch Changes
|
|
292
308
|
|
|
293
|
-
-
|
|
294
|
-
-
|
|
295
|
-
-
|
|
309
|
+
- be6bf70: added extra Dutch translation term and fix workflowsteps translation
|
|
310
|
+
- 3bfe651: Updates npm packages to latest versions
|
|
311
|
+
- 490da42: 1490 Remove last border of a product block key value item
|
|
296
312
|
|
|
297
313
|
## 2.8.3
|
|
298
314
|
|
|
299
315
|
### Patch Changes
|
|
300
316
|
|
|
301
|
-
-
|
|
317
|
+
- 85f1514: Added new icons - WfoActualWork, WfoMalfunction, WfoPlannedWork
|
|
302
318
|
|
|
303
319
|
## 2.8.2
|
|
304
320
|
|
|
305
321
|
### Patch Changes
|
|
306
322
|
|
|
307
|
-
-
|
|
323
|
+
- 056ba69: 1402 Adds context menu to be used in the table. It exposes a callback that is triggered when the menu opens (for optionally triggering a REST call to populate the menu)
|
|
308
324
|
|
|
309
325
|
## 2.8.1
|
|
310
326
|
|
|
311
327
|
### Patch Changes
|
|
312
328
|
|
|
313
|
-
-
|
|
314
|
-
-
|
|
315
|
-
-
|
|
316
|
-
-
|
|
329
|
+
- d119e38: 1404 Allows WfoFilterTabs to accept append property that is passed on to EuiTab component
|
|
330
|
+
- 3d1ebbe: 1419 Update product block detail color to match list item color.
|
|
331
|
+
- f6a31a6: Fix: Empty value dropdown override
|
|
332
|
+
- 038989c: 1451 Disables the subscription delta button when the process is running
|
|
317
333
|
|
|
318
334
|
## 2.8.0
|
|
319
335
|
|
|
320
336
|
### Minor Changes
|
|
321
337
|
|
|
322
|
-
-
|
|
338
|
+
- 846a884: Updates npm dependency minor versions
|
|
323
339
|
|
|
324
340
|
## 2.7.1
|
|
325
341
|
|
|
326
342
|
### Patch Changes
|
|
327
343
|
|
|
328
|
-
-
|
|
344
|
+
- 2da7671: Fix: Add onchange on the useEffect state in order to set the default
|
|
329
345
|
|
|
330
346
|
## 2.7.0
|
|
331
347
|
|
|
332
348
|
### Minor Changes
|
|
333
349
|
|
|
334
|
-
-
|
|
350
|
+
- b293024: Adds flags to disable RTK cache in development
|
|
335
351
|
|
|
336
352
|
### Patch Changes
|
|
337
353
|
|
|
338
|
-
-
|
|
339
|
-
-
|
|
340
|
-
-
|
|
354
|
+
- f00a7d1: 1494 Introduces refs to fix the useEffect rerender loop
|
|
355
|
+
- aa24057: 735 - WfoSearch: Triggers onUpdateQueryString when field is erased. Adds queryIsValid prop to mark the validity of the query.
|
|
356
|
+
- 6bcfd14: 1398 - Adds a generic way of serializing objects when exporting CSV files
|
|
341
357
|
|
|
342
358
|
## 2.6.0
|
|
343
359
|
|
|
344
360
|
### Minor Changes
|
|
345
361
|
|
|
346
|
-
-
|
|
362
|
+
- 404ffe2: Shows empty values in productBlocks in detail mode
|
|
347
363
|
|
|
348
364
|
### Patch Changes
|
|
349
365
|
|
|
350
|
-
-
|
|
366
|
+
- 293c85c: 1440 Adjusted FieldValue type to include ReactNode for NMS
|
|
351
367
|
|
|
352
368
|
## 2.5.0
|
|
353
369
|
|
|
354
370
|
### Minor Changes
|
|
355
371
|
|
|
356
|
-
-
|
|
357
|
-
-
|
|
358
|
-
-
|
|
372
|
+
- 78e5223: Fixed buy that does not display Array in blocks
|
|
373
|
+
- 06ec6bc: Connects websocket regardless of what page you start on
|
|
374
|
+
- f0f5aed: 1440 Changes for the NMS service ports tab
|
|
359
375
|
|
|
360
376
|
### Patch Changes
|
|
361
377
|
|
|
362
|
-
-
|
|
378
|
+
- ac98ce6: Update tsv information modal
|
|
363
379
|
|
|
364
380
|
## 2.4.0
|
|
365
381
|
|
|
366
382
|
### Minor Changes
|
|
367
383
|
|
|
368
|
-
-
|
|
384
|
+
- ad83b95: Improves performace of subscription dropdown options
|
|
369
385
|
|
|
370
386
|
### Patch Changes
|
|
371
387
|
|
|
372
|
-
-
|
|
388
|
+
- ff6f520: 1377 Added copy button to UUID fields in tables
|
|
373
389
|
|
|
374
390
|
## 2.3.0
|
|
375
391
|
|
|
376
392
|
### Minor Changes
|
|
377
393
|
|
|
378
|
-
-
|
|
379
|
-
-
|
|
394
|
+
- 0efcf20: 315 - Making the sort icon always visible in cases of small table columns.
|
|
395
|
+
- 1b23a42: 459 Implements single click sorting in the table. Marks WfoSortButtons as deprecated.
|
|
380
396
|
|
|
381
397
|
## 2.2.0
|
|
382
398
|
|
|
383
399
|
### Minor Changes
|
|
384
400
|
|
|
385
|
-
-
|
|
386
|
-
-
|
|
401
|
+
- e228d98: Sorts grouped table groups
|
|
402
|
+
- d24efe6: 1381 Render mouseover tooltip for the new tables
|
|
387
403
|
|
|
388
404
|
### Patch Changes
|
|
389
405
|
|
|
390
|
-
-
|
|
406
|
+
- 60021b1: Fixes checkboxes without labels
|
|
391
407
|
|
|
392
408
|
## 2.1.1
|
|
393
409
|
|
|
394
410
|
### Patch Changes
|
|
395
411
|
|
|
396
|
-
-
|
|
397
|
-
-
|
|
398
|
-
-
|
|
412
|
+
- 648badb: 1423 Handles not_authenticated errors from graphql endpoints. Adds accessTokenExpiresAt and refreshTokenExpiresAt to WfoSession
|
|
413
|
+
- f5138d3: 1406 Added sorting for new tasks and workflow dropdowns
|
|
414
|
+
- 223888a: 1363 - Making the title use all space available. Moves the subtitle around to show above the children (action buttons) on small screens
|
|
399
415
|
|
|
400
416
|
## 2.1.0
|
|
401
417
|
|
|
402
418
|
### Minor Changes
|
|
403
419
|
|
|
404
|
-
-
|
|
405
|
-
-
|
|
406
|
-
-
|
|
420
|
+
- fb2cca8: 1376 Adds inline note edit component
|
|
421
|
+
- 93e1926: 1363 Consistent header spacings on all pages
|
|
422
|
+
- 72007aa: 1395 Fixes sorting in the related subscriptions table
|
|
407
423
|
|
|
408
424
|
### Patch Changes
|
|
409
425
|
|
|
410
|
-
-
|
|
426
|
+
- 851eb96: 1393 Fix workflow dropdown not refreshed after subscription is set in sync
|
|
411
427
|
|
|
412
428
|
## 2.0.0
|
|
413
429
|
|
|
414
430
|
### Major Changes
|
|
415
431
|
|
|
416
|
-
-
|
|
432
|
+
- 7991a97: 1384 - (Breaking change) - Replaces WfoBasicTable and WfoTableWithFilter with WfoTable and WfoAdvancedTable. Both have slightly different interfaces compared with the previous components
|
|
417
433
|
|
|
418
434
|
### Minor Changes
|
|
419
435
|
|
|
420
|
-
-
|
|
421
|
-
-
|
|
436
|
+
- ca01308: Refactor WfoSubscriptionGeneral, use WfoSubscriptionDetailSection in forms
|
|
437
|
+
- 0041a7c: 699, 1370 - Fix and update product block view
|
|
422
438
|
|
|
423
439
|
### Patch Changes
|
|
424
440
|
|
|
425
|
-
-
|
|
426
|
-
-
|
|
427
|
-
-
|
|
428
|
-
-
|
|
441
|
+
- 94ed80b: "649 Fixed a bug where details were shown based on index instead of unique id of a PB
|
|
442
|
+
- 5ce3e1f: 1363 Fixes labels in table settings modal
|
|
443
|
+
- 0fe9ad5: 1363 Adds WfoMultilineCell and WfoTruncateCell
|
|
444
|
+
- 88c4181: 1378 Add sorting for subscription details workflows tab
|
|
429
445
|
|
|
430
446
|
## 1.38.2
|
|
431
447
|
|
|
432
448
|
### Patch Changes
|
|
433
449
|
|
|
434
|
-
-
|
|
435
|
-
-
|
|
450
|
+
- 414391f: Adjust start task combobox size, so it doesn't hide list items
|
|
451
|
+
- 7c6f8b2: Add enum for ids of subscription detail sections
|
|
436
452
|
|
|
437
453
|
## 1.38.1
|
|
438
454
|
|
|
439
455
|
### Patch Changes
|
|
440
456
|
|
|
441
|
-
-
|
|
457
|
+
- 702cbdf: Display orchestrator-ui-library version in header
|
|
442
458
|
|
|
443
459
|
## 1.38.0
|
|
444
460
|
|
|
445
461
|
### Minor Changes
|
|
446
462
|
|
|
447
|
-
-
|
|
448
|
-
-
|
|
449
|
-
-
|
|
463
|
+
- 6f8b708: Added WfoGraphqlErrorsMeta handler, added isLoading to WfoSubscriptionActions, using fragments in some graphql queries, changes required for #1320
|
|
464
|
+
- 1318c92: Added open support menu item to context menu
|
|
465
|
+
- e46972c: Adds onFocus websocket reconnection if connection is lost
|
|
450
466
|
|
|
451
467
|
## 1.37.1
|
|
452
468
|
|
|
453
469
|
### Patch Changes
|
|
454
470
|
|
|
455
|
-
-
|
|
471
|
+
- a95a3c7: Changed order of side menu to reflect the importance of the pages in a more logical order
|
|
456
472
|
|
|
457
473
|
## 1.37.0
|
|
458
474
|
|
|
459
475
|
### Minor Changes
|
|
460
476
|
|
|
461
|
-
-
|
|
462
|
-
-
|
|
463
|
-
-
|
|
464
|
-
-
|
|
477
|
+
- 4f91f82: Adds submenu higlighting
|
|
478
|
+
- 6601919: Adjust submenu hightlighting
|
|
479
|
+
- a25dc81: Improve error presentation for WfoTableWithFilter
|
|
480
|
+
- d9c18b9: Fixes removing the last item in a list in some cicrumstances
|
|
465
481
|
|
|
466
482
|
### Patch Changes
|
|
467
483
|
|
|
468
|
-
-
|
|
469
|
-
-
|
|
470
|
-
-
|
|
471
|
-
-
|
|
472
|
-
-
|
|
484
|
+
- 2501569: Fixed bug that always showed error on subscription list page, improved function for mapping errors
|
|
485
|
+
- 38f7135: 906 Uses isLoading instead of isFetching to render the no-results component. This keeps the table visible when browsing between pages of the paginated table
|
|
486
|
+
- 2c6d26d: added WfoIsAllowedToRender around the cache flush component
|
|
487
|
+
- 04b1ff7: Added invalidation to subscriptionId query, and loading state for setInSync button
|
|
488
|
+
- 60c8947: 1312 Reretrieves ports when the user goes through the same form multiple times. Retrieving on mount keeps the port list up to date.
|
|
473
489
|
|
|
474
490
|
## 1.36.1
|
|
475
491
|
|
|
476
492
|
### Patch Changes
|
|
477
493
|
|
|
478
|
-
-
|
|
494
|
+
- f7571b1: 822 Removes debounce mechanism in the websocket logic
|
|
479
495
|
|
|
480
496
|
## 1.36.0
|
|
481
497
|
|
|
482
498
|
### Minor Changes
|
|
483
499
|
|
|
484
|
-
-
|
|
500
|
+
- 5663e2c: Fixes list item delete button
|
|
485
501
|
|
|
486
502
|
### Patch Changes
|
|
487
503
|
|
|
488
|
-
-
|
|
489
|
-
-
|
|
490
|
-
-
|
|
491
|
-
-
|
|
492
|
-
-
|
|
504
|
+
- ef5910a: Removes unavailable untagged port subscriptions from dropdown list
|
|
505
|
+
- eed3424: Fix console errors that show when both data and errors are present in wfoGraphqlRequestBaseQuery. Fix name of the function.
|
|
506
|
+
- c880f61: 1295 - Partial rollback of changes introduced in PR 1242. These changes broke the functionality to remove a list item
|
|
507
|
+
- d23fa2b: 1294 Rollback style-change in list fields
|
|
508
|
+
- b1fc20a: Fix no no product/subscription_id prefill when clicking on a workflow breadcrumb by adding query param to link
|
|
493
509
|
|
|
494
510
|
## 1.35.0
|
|
495
511
|
|
|
496
512
|
### Minor Changes
|
|
497
513
|
|
|
498
|
-
-
|
|
499
|
-
-
|
|
514
|
+
- 3a8ba59: Adds hamburger menu
|
|
515
|
+
- 86cbc9c: Adds celery worker status card to settings page
|
|
500
516
|
|
|
501
517
|
### Patch Changes
|
|
502
518
|
|
|
503
|
-
-
|
|
504
|
-
-
|
|
505
|
-
-
|
|
519
|
+
- be2a21d: Fixes typo in constant
|
|
520
|
+
- 8afc446: 1252 Fixes the copy icon in the key-value table
|
|
521
|
+
- 9be10f0: Removes show all option from pages that cant use it
|
|
506
522
|
|
|
507
523
|
## 1.34.0
|
|
508
524
|
|
|
509
525
|
### Minor Changes
|
|
510
526
|
|
|
511
|
-
-
|
|
527
|
+
- 6a098f6: WFO GraphQL base query that handles both errors and data returned
|
|
512
528
|
|
|
513
529
|
## 1.33.0
|
|
514
530
|
|
|
515
531
|
### Minor Changes
|
|
516
532
|
|
|
517
|
-
-
|
|
533
|
+
- bd05bd4: Makes productBlocks on service configuration tab scrollable
|
|
518
534
|
|
|
519
535
|
### Patch Changes
|
|
520
536
|
|
|
521
|
-
-
|
|
537
|
+
- a728dfe: 1168 Exposes toObjectWithSortedKeys util
|
|
522
538
|
|
|
523
539
|
## 1.32.0
|
|
524
540
|
|
|
525
541
|
### Minor Changes
|
|
526
542
|
|
|
527
|
-
-
|
|
528
|
-
-
|
|
543
|
+
- 06f97cc: Updates graphql seperator character
|
|
544
|
+
- cf75ff3: Keep uppercase letters if original text in breadcrumb is only uppercase
|
|
529
545
|
|
|
530
546
|
### Patch Changes
|
|
531
547
|
|
|
532
|
-
-
|
|
533
|
-
-
|
|
548
|
+
- 845dce4: Fix form label not visible in SummaryField and TimestampField
|
|
549
|
+
- 95862a2: Orders productsblocks in service configuration page better
|
|
534
550
|
|
|
535
551
|
## 1.31.0
|
|
536
552
|
|
|
537
553
|
### Minor Changes
|
|
538
554
|
|
|
539
|
-
-
|
|
555
|
+
- 8e2c77c: Updates graphql error code to match backend
|
|
540
556
|
|
|
541
557
|
## 1.30.3
|
|
542
558
|
|
|
543
559
|
### Patch Changes
|
|
544
560
|
|
|
545
|
-
-
|
|
561
|
+
- 679ae6c: Fix for vlan field not showing initial value on 2nd page on modify workflow
|
|
546
562
|
|
|
547
563
|
## 1.30.2
|
|
548
564
|
|
|
549
565
|
### Patch Changes
|
|
550
566
|
|
|
551
|
-
-
|
|
567
|
+
- fe3e991: Fixes websocket connection without authorization
|
|
552
568
|
|
|
553
569
|
## 1.30.1
|
|
554
570
|
|
|
555
571
|
### Patch Changes
|
|
556
572
|
|
|
557
|
-
-
|
|
573
|
+
- 6f308f9: Fix not logging out when token expires
|
|
558
574
|
|
|
559
575
|
## 1.30.0
|
|
560
576
|
|
|
561
577
|
### Minor Changes
|
|
562
578
|
|
|
563
|
-
-
|
|
579
|
+
- 231230c: Updates most packages to latest version
|
|
564
580
|
|
|
565
581
|
## 1.29.1
|
|
566
582
|
|
|
567
583
|
### Patch Changes
|
|
568
584
|
|
|
569
|
-
-
|
|
585
|
+
- deff75b: Workflow-list and Task-list pages: Keeps old data in table while refreshing data
|
|
570
586
|
|
|
571
587
|
## 1.29.0
|
|
572
588
|
|
|
573
589
|
### Minor Changes
|
|
574
590
|
|
|
575
|
-
-
|
|
576
|
-
-
|
|
591
|
+
- 80f18ae: Fixes npm audit messages
|
|
592
|
+
- 637f8ea: Adds websocket status badge to page title instead of header
|
|
577
593
|
|
|
578
594
|
## 1.28.0
|
|
579
595
|
|
|
580
596
|
### Minor Changes
|
|
581
597
|
|
|
582
|
-
-
|
|
598
|
+
- 3444973: added a new table for the nms chassis general tab
|
|
583
599
|
|
|
584
600
|
## 1.27.1
|
|
585
601
|
|
|
586
602
|
### Patch Changes
|
|
587
603
|
|
|
588
|
-
-
|
|
604
|
+
- 54b537c: Added productType to Workflow option used by LIR prefixes
|
|
589
605
|
|
|
590
606
|
## 1.27.0
|
|
591
607
|
|
|
592
608
|
### Minor Changes
|
|
593
609
|
|
|
594
|
-
-
|
|
595
|
-
-
|
|
596
|
-
-
|
|
597
|
-
-
|
|
610
|
+
- 0a3877d: Moves side menu toggle from header to breadcrumb
|
|
611
|
+
- bc65670: Orders product blocks in subcription detail tree
|
|
612
|
+
- 8f45591: Improves confirmation dialog on page leave
|
|
613
|
+
- cbfc034: Updates websocket messages to work with new format
|
|
598
614
|
|
|
599
615
|
## 1.26.0
|
|
600
616
|
|
|
601
617
|
### Minor Changes
|
|
602
618
|
|
|
603
|
-
-
|
|
619
|
+
- 3508ff8: Sort product block instance values by field name
|
|
604
620
|
|
|
605
621
|
### Patch Changes
|
|
606
622
|
|
|
607
|
-
-
|
|
623
|
+
- 257ef6e: Added number type to parseDate function
|
|
608
624
|
|
|
609
625
|
## 1.25.0
|
|
610
626
|
|
|
611
627
|
### Minor Changes
|
|
612
628
|
|
|
613
|
-
-
|
|
614
|
-
-
|
|
615
|
-
-
|
|
616
|
-
-
|
|
629
|
+
- 10e542e: Adds websockets responsiveness to process list and processDetails
|
|
630
|
+
- f225422: Resolves external subscription id and name in product block details
|
|
631
|
+
- 47a545b: Adds subscription info to modify workflow start page
|
|
632
|
+
- cd59329: Hides empty productBlock values in subscription detail
|
|
617
633
|
|
|
618
634
|
### Patch Changes
|
|
619
635
|
|
|
620
|
-
-
|
|
621
|
-
-
|
|
636
|
+
- 43bcc3c: Fixes table settings reset
|
|
637
|
+
- 02d39db: Fix pressing back not returning to the form page for submitted forms
|
|
622
638
|
|
|
623
639
|
## 1.24.0
|
|
624
640
|
|
|
625
641
|
### Minor Changes
|
|
626
642
|
|
|
627
|
-
-
|
|
628
|
-
-
|
|
629
|
-
-
|
|
643
|
+
- 83fb33d: Adds a reconnect option for the websocket
|
|
644
|
+
- ef169fc: 1108 Adds getEnvironmentVariables helper function that retrieves multiple environment variables and logs warnings in case variables do not exist
|
|
645
|
+
- e4e9b73: Adds better messages for some edge cases
|
|
630
646
|
|
|
631
647
|
### Patch Changes
|
|
632
648
|
|
|
633
|
-
-
|
|
634
|
-
-
|
|
649
|
+
- fda8911: Hides more product block items for productblocks outside the current subscription
|
|
650
|
+
- 54e6f9f: Fixed caching issue when switching from Create Node to create Corelink form caused 400 error
|
|
635
651
|
|
|
636
652
|
## 1.23.0
|
|
637
653
|
|
|
638
654
|
### Minor Changes
|
|
639
655
|
|
|
640
|
-
-
|
|
641
|
-
-
|
|
656
|
+
- 33240b6: Fixes websockets with authentication
|
|
657
|
+
- b94c618: Added customer with subscription query used by nms
|
|
642
658
|
|
|
643
659
|
### Patch Changes
|
|
644
660
|
|
|
645
|
-
-
|
|
661
|
+
- 9f18b7c: 1066 VlanField: Only allows to clear the value when the field is enabled
|
|
646
662
|
|
|
647
663
|
## 1.22.0
|
|
648
664
|
|
|
649
665
|
### Minor Changes
|
|
650
666
|
|
|
651
|
-
-
|
|
652
|
-
-
|
|
667
|
+
- f6dc4fb: Replaces subscriptionsWithFilter REST call with a graphQL query
|
|
668
|
+
- d48df6b: Exports WFoUserInputForm
|
|
653
669
|
|
|
654
670
|
### Patch Changes
|
|
655
671
|
|
|
656
|
-
-
|
|
657
|
-
-
|
|
658
|
-
-
|
|
659
|
-
-
|
|
672
|
+
- bcfe7de: 916 Exposes menuItemIsAllowed helper function
|
|
673
|
+
- 50e8f68: Fixes signOut modal showing in some cases
|
|
674
|
+
- 6a7264f: 1086 StartPage: Summary card with product counts ignores terminated instances
|
|
675
|
+
- aca21a5: 1085 Filters out current subscription from the related subscriptions list
|
|
660
676
|
|
|
661
677
|
## 1.21.0
|
|
662
678
|
|
|
663
679
|
### Minor Changes
|
|
664
680
|
|
|
665
|
-
-
|
|
666
|
-
-
|
|
667
|
-
-
|
|
668
|
-
-
|
|
681
|
+
- ae0d9a8: Removes some obsolete configuration
|
|
682
|
+
- 560cf74: Adds a different style if a productblock is outside the subscription boundary
|
|
683
|
+
- 5ee68fa: Signs user out when api calls fail because of expired token
|
|
684
|
+
- d4ac80a: Removed axios and react-query dependencies
|
|
669
685
|
|
|
670
686
|
### Patch Changes
|
|
671
687
|
|
|
672
|
-
-
|
|
673
|
-
-
|
|
688
|
+
- 13d7c6d: Fixes missing aria-labels on icons
|
|
689
|
+
- b9680b8: 626 Applies dark theme to form fields
|
|
674
690
|
|
|
675
691
|
## 1.20.0
|
|
676
692
|
|
|
677
693
|
### Minor Changes
|
|
678
694
|
|
|
679
|
-
-
|
|
695
|
+
- decb678: Removes obsolete configuration options
|
|
680
696
|
|
|
681
697
|
## 1.19.1
|
|
682
698
|
|
|
683
699
|
### Patch Changes
|
|
684
700
|
|
|
685
|
-
-
|
|
701
|
+
- e1811bc: revert username to old code solution
|
|
686
702
|
|
|
687
703
|
## 1.19.0
|
|
688
704
|
|
|
689
705
|
### Minor Changes
|
|
690
706
|
|
|
691
|
-
-
|
|
707
|
+
- 7dc5cf0: Moving axios form fields and fetches to RTK
|
|
692
708
|
|
|
693
709
|
### Patch Changes
|
|
694
710
|
|
|
695
|
-
-
|
|
696
|
-
-
|
|
711
|
+
- 213fb25: Uses preferred_username to filter for my-workflows
|
|
712
|
+
- 71fa3bd: 1055 Making OAuth Scopes configurable via Environment Variables
|
|
697
713
|
|
|
698
714
|
## 1.18.0
|
|
699
715
|
|
|
700
716
|
### Minor Changes
|
|
701
717
|
|
|
702
|
-
-
|
|
718
|
+
- b8cf381: 626 Tweaks dark theme on detail pages and the settings page
|
|
703
719
|
|
|
704
720
|
### Patch Changes
|
|
705
721
|
|
|
706
|
-
-
|
|
722
|
+
- 3888ea9: Adjustment to placeholder translations
|
|
707
723
|
|
|
708
724
|
## 1.17.0
|
|
709
725
|
|
|
710
726
|
### Minor Changes
|
|
711
727
|
|
|
712
|
-
-
|
|
728
|
+
- 8a32409: 626 - Introduces basic styles to be reused. Updates useWithOrchestratorTheme hook to accept the whole theme object. Applies dark theme for Page Templates, Start page and pages with a filterable table.
|
|
713
729
|
|
|
714
730
|
## 1.16.0
|
|
715
731
|
|
|
716
732
|
### Minor Changes
|
|
717
733
|
|
|
718
|
-
-
|
|
734
|
+
- ed6d5c7: Fixes tooltip message on vlan field
|
|
719
735
|
|
|
720
736
|
### Patch Changes
|
|
721
737
|
|
|
722
|
-
-
|
|
738
|
+
- 5301916: Added trash icon
|
|
723
739
|
|
|
724
740
|
## 1.15.0
|
|
725
741
|
|
|
726
742
|
### Minor Changes
|
|
727
743
|
|
|
728
|
-
-
|
|
744
|
+
- a8c625e: Added workflow information link and env vars for it
|
|
729
745
|
|
|
730
746
|
## 1.14.2
|
|
731
747
|
|
|
732
748
|
### Patch Changes
|
|
733
749
|
|
|
734
|
-
-
|
|
735
|
-
-
|
|
750
|
+
- 06377ba: Adds prettier output for the "In-use by subscription(s)" on product blocks on subscription details
|
|
751
|
+
- df57566: 799 Exports SummaryCard components and its related subcomponents and types
|
|
736
752
|
|
|
737
753
|
## 1.14.1
|
|
738
754
|
|
|
739
755
|
### Patch Changes
|
|
740
756
|
|
|
741
|
-
-
|
|
757
|
+
- d835c16: add retry for processes in waiting state - added new icon to be used …
|
|
742
758
|
|
|
743
759
|
## 1.14.0
|
|
744
760
|
|
|
745
761
|
### Minor Changes
|
|
746
762
|
|
|
747
|
-
-
|
|
763
|
+
- 5b9d042: Moved form wizards to RTK
|
|
748
764
|
|
|
749
765
|
## 1.13.2
|
|
750
766
|
|
|
751
767
|
### Patch Changes
|
|
752
768
|
|
|
753
|
-
-
|
|
754
|
-
-
|
|
769
|
+
- 43be47b: 565 Added a new summary card listing the 5 latest workflows for the user that is logged in
|
|
770
|
+
- 8b6e73d: 879 Makes SummaryCards on the start page overridable
|
|
755
771
|
|
|
756
772
|
## 1.13.1
|
|
757
773
|
|
|
758
774
|
### Patch Changes
|
|
759
775
|
|
|
760
|
-
-
|
|
776
|
+
- 63ee9c0: 863 Adds title for traceback section on workflow detail page
|
|
761
777
|
|
|
762
778
|
## 1.13.0
|
|
763
779
|
|
|
764
780
|
### Minor Changes
|
|
765
781
|
|
|
766
|
-
-
|
|
782
|
+
- 12d72f9: Ads feature toggles to configuration
|
|
767
783
|
|
|
768
784
|
### Patch Changes
|
|
769
785
|
|
|
770
|
-
-
|
|
771
|
-
-
|
|
786
|
+
- abd239c: filter workflows on target
|
|
787
|
+
- 72ee276: 863 Adds Traceback on process detail page
|
|
772
788
|
|
|
773
789
|
## 1.12.0
|
|
774
790
|
|
|
775
791
|
### Minor Changes
|
|
776
792
|
|
|
777
|
-
-
|
|
793
|
+
- a95a6dc: Updates what the websocket interface is listening to
|
|
778
794
|
|
|
779
795
|
## 1.11.0
|
|
780
796
|
|
|
781
797
|
### Minor Changes
|
|
782
798
|
|
|
783
|
-
-
|
|
799
|
+
- 38b0c66: 333 - Adds override option for General tab on the SubscriptionDetail page and adds Customer descriptions field
|
|
784
800
|
|
|
785
801
|
### Patch Changes
|
|
786
802
|
|
|
787
|
-
-
|
|
788
|
-
-
|
|
803
|
+
- 9eca836: 983 Improvements in exporting data from the metadata pages
|
|
804
|
+
- df1a9b6: Hide filter option on related subscriptions table
|
|
789
805
|
|
|
790
806
|
## 1.10.0
|
|
791
807
|
|
|
792
808
|
### Minor Changes
|
|
793
809
|
|
|
794
|
-
-
|
|
810
|
+
- 04ef921: Deprecate apiclient version of UserInputFormWizard
|
|
795
811
|
|
|
796
812
|
## 1.9.0
|
|
797
813
|
|
|
798
814
|
### Minor Changes
|
|
799
815
|
|
|
800
|
-
-
|
|
816
|
+
- a9f3806: Improves sideBar navigation
|
|
801
817
|
|
|
802
818
|
## 1.8.0
|
|
803
819
|
|
|
804
820
|
### Minor Changes
|
|
805
821
|
|
|
806
|
-
-
|
|
822
|
+
- 752b3fd: 102 Adds context provider and hook to override values in subscription detail product blocks
|
|
807
823
|
|
|
808
824
|
## 1.7.0
|
|
809
825
|
|
|
810
826
|
### Minor Changes
|
|
811
827
|
|
|
812
|
-
-
|
|
828
|
+
- d61106d: Release of the metadata task page
|
|
813
829
|
|
|
814
830
|
## 1.6.2
|
|
815
831
|
|
|
816
832
|
### Patch Changes
|
|
817
833
|
|
|
818
|
-
-
|
|
834
|
+
- 0bf6f82: New metadata taskpage with rtk
|
|
819
835
|
|
|
820
836
|
## 1.6.1
|
|
821
837
|
|
|
822
838
|
### Patch Changes
|
|
823
839
|
|
|
824
|
-
-
|
|
825
|
-
-
|
|
840
|
+
- 3cfd9f5: Fixes error in exported values
|
|
841
|
+
- 5807458: 332 Subscription detail page: hides metadata section when there is no data available
|
|
826
842
|
|
|
827
843
|
## 1.6.0
|
|
828
844
|
|
|
829
845
|
### Minor Changes
|
|
830
846
|
|
|
831
|
-
-
|
|
847
|
+
- bf4698e: 332 Adds subscription metadata to the subscription list page and subscription detail page
|
|
832
848
|
|
|
833
849
|
### Patch Changes
|
|
834
850
|
|
|
835
|
-
-
|
|
836
|
-
|
|
837
|
-
|
|
838
|
-
|
|
839
|
-
-
|
|
851
|
+
- e3874e0: Changed overlay icon colour of skipped step in workflow/task
|
|
852
|
+
Badge style to product name column in metadata table products
|
|
853
|
+
Some features owner subscription presentation & hide pb-sub-instance-id
|
|
854
|
+
Changed default table row settings
|
|
855
|
+
- 29c6459: Added external link icon
|
|
840
856
|
|
|
841
857
|
## 1.5.0
|
|
842
858
|
|
|
843
859
|
### Minor Changes
|
|
844
860
|
|
|
845
|
-
-
|
|
846
|
-
-
|
|
861
|
+
- 9662041: 638 Moves SURF specific form fields to deprecated folder
|
|
862
|
+
- c122786: Adds README files to be displayed on NPM. Adds Apache 2.0 license.
|
|
847
863
|
|
|
848
864
|
### Patch Changes
|
|
849
865
|
|
|
850
|
-
-
|
|
851
|
-
-
|
|
852
|
-
-
|
|
853
|
-
-
|
|
866
|
+
- 78a0b55: 812 Fixed object mapping from products rest call
|
|
867
|
+
- 1b3a9f0: Allows sending null as a value when removing existing values
|
|
868
|
+
- 9cf620e: 919 Fix port dropdown after changing the node in a Create Service Port workflow
|
|
869
|
+
- c5c73da: Added isDisabled prop to WfoDropdownButton, small styles adjustment for keyColumn
|
|
854
870
|
|
|
855
871
|
## 1.4.0.
|
|
856
872
|
|
|
857
873
|
### Minor Changes
|
|
858
874
|
|
|
859
|
-
-
|
|
860
|
-
-
|
|
861
|
-
-
|
|
862
|
-
-
|
|
863
|
-
-
|
|
864
|
-
-
|
|
865
|
-
-
|
|
866
|
-
-
|
|
867
|
-
-
|
|
868
|
-
-
|
|
875
|
+
- 62b356f: Moves product blocks graphql query to RTK client
|
|
876
|
+
- 0e5c8f3: Moves subscriptionList query to RTK client
|
|
877
|
+
- 92ce67b: Moves subscriptionDetail to RTK client
|
|
878
|
+
- 3f68b52: Moves subscriptions dropdown options to RTK client
|
|
879
|
+
- d7b1ce2: Moves products and productsSummary to RTK client
|
|
880
|
+
- 0b4da83: Moves resourceTypes metadata query to RTK client
|
|
881
|
+
- 6ee952f: Moves relatedSubscriptions RTK client
|
|
882
|
+
- af1c86b: Moves processList summary queries to RTK client
|
|
883
|
+
- 70efdf5: Moves getting startOptions to RTK client
|
|
884
|
+
- 0d10af8: MOves get metadata workflows to RTK client
|
|
869
885
|
|
|
870
886
|
## 1.3.1
|
|
871
887
|
|
|
872
888
|
### Patch Changes
|
|
873
889
|
|
|
874
|
-
-
|
|
875
|
-
-
|
|
890
|
+
- 043b943: Moves processSteps query to RTK client
|
|
891
|
+
- b511e4a: Fixes bug that occurs in some create workflows
|
|
876
892
|
|
|
877
893
|
## 1.3.0
|
|
878
894
|
|
|
879
895
|
### Minor Changes
|
|
880
896
|
|
|
881
|
-
-
|
|
897
|
+
- 1ab3e59: Adds set in sync action to subscription detail page
|
|
882
898
|
|
|
883
899
|
## 1.2.0
|
|
884
900
|
|
|
885
901
|
### Minor Changes
|
|
886
902
|
|
|
887
|
-
-
|
|
903
|
+
- 857b6de: Added option to override the baseQuery with custom baseQuery in RTK client
|
|
888
904
|
|
|
889
905
|
## 1.1.0
|
|
890
906
|
|
|
891
907
|
### Minor Changes
|
|
892
908
|
|
|
893
|
-
-
|
|
909
|
+
- 2d0c99c: 840 Updates policy resources
|
|
894
910
|
|
|
895
911
|
## 1.0.0
|
|
896
912
|
|
|
897
913
|
### Major Changes
|
|
898
914
|
|
|
899
|
-
-
|
|
915
|
+
- 507399b: R1 Release
|
|
900
916
|
|
|
901
917
|
## 0.13.1
|
|
902
918
|
|
|
903
919
|
### Patch Changes
|
|
904
920
|
|
|
905
|
-
-
|
|
921
|
+
- 9155f40: Added isDisabled prop to WfoSubmitModal
|
|
906
922
|
|
|
907
923
|
## 0.13.0
|
|
908
924
|
|
|
909
925
|
### Minor Changes
|
|
910
926
|
|
|
911
|
-
-
|
|
927
|
+
- 89835a4: 702 - Moves processDetail to rtkquery
|
|
912
928
|
|
|
913
929
|
### Patch Changes
|
|
914
930
|
|
|
915
|
-
-
|
|
931
|
+
- e56c142: 760 remove duplicate product tags on metadata workflow page
|
|
916
932
|
|
|
917
933
|
## 0.12.0
|
|
918
934
|
|
|
919
935
|
### Minor Changes
|
|
920
936
|
|
|
921
|
-
-
|
|
922
|
-
|
|
937
|
+
- 5efb8b0: #821 Reverted FORMS_ENPOINT string, removed cimStartForm, added new string utils
|
|
938
|
+
#833 Small change to useQueryWithFetch for the default sending level
|
|
923
939
|
|
|
924
940
|
## 0.11.1
|
|
925
941
|
|
|
926
942
|
### Patch Changes
|
|
927
943
|
|
|
928
|
-
-
|
|
929
|
-
-
|
|
944
|
+
- e83d9aa: new summary card out-of-sync subscriptions
|
|
945
|
+
- 7ff8936: Applies policies in several components
|
|
930
946
|
|
|
931
947
|
## 0.11.0
|
|
932
948
|
|
|
933
949
|
### Minor Changes
|
|
934
950
|
|
|
935
|
-
-
|
|
936
|
-
-
|
|
951
|
+
- 6332355: Adds dark theme behind feature toggle
|
|
952
|
+
- e808db4: Add a websocket that can be called to clear cache
|
|
937
953
|
|
|
938
954
|
### Patch Changes
|
|
939
955
|
|
|
940
|
-
-
|
|
941
|
-
-
|
|
956
|
+
- c3da8a6: add customer abbrev to customer drop down string in form field
|
|
957
|
+
- 05c9acc: add status and insync badge to subscription detail page
|
|
942
958
|
|
|
943
959
|
## 0.10.0
|
|
944
960
|
|
|
945
961
|
### Minor Changes
|
|
946
962
|
|
|
947
|
-
-
|
|
963
|
+
- 18da717: 460 Introduces a usePolicy hook to help with conditionally rendering of components. The useWfoSession hook can be used to identify the user
|
|
948
964
|
|
|
949
965
|
## 0.9.1
|
|
950
966
|
|
|
951
967
|
### Patch Changes
|
|
952
968
|
|
|
953
|
-
-
|
|
969
|
+
- 1578b99: NPM Audit fix for IP package
|
|
954
970
|
|
|
955
971
|
## 0.9.0
|
|
956
972
|
|
|
957
973
|
### Minor Changes
|
|
958
974
|
|
|
959
|
-
-
|
|
960
|
-
-
|
|
975
|
+
- 8675375: Fixes a SelectField bug
|
|
976
|
+
- c8c6e10: Update npm dependency versions
|
|
961
977
|
|
|
962
978
|
### Patch Changes
|
|
963
979
|
|
|
964
|
-
-
|
|
965
|
-
-
|
|
980
|
+
- 4bee6a1: Fixes crashes caused by uniforms connectField function
|
|
981
|
+
- 56d5e6e: Trigger the changesets action
|
|
966
982
|
|
|
967
983
|
## 0.8.1
|
|
968
984
|
|
|
969
985
|
### Patch Changes
|
|
970
986
|
|
|
971
|
-
-
|
|
972
|
-
-
|
|
973
|
-
-
|
|
987
|
+
- 5224527: 721: Fix customer select not being disabled
|
|
988
|
+
- 16f32ad: 651: Fix incorrect port select options
|
|
989
|
+
- 84a75b7: Change service port select label when root subscription instance has title
|
|
974
990
|
|
|
975
991
|
## 0.8.0
|
|
976
992
|
|
|
977
993
|
### Minor Changes
|
|
978
994
|
|
|
979
|
-
-
|
|
995
|
+
- 8eded72: Required for issue 573 Add restart open relate
|
|
980
996
|
|
|
981
997
|
### Patch Changes
|
|
982
998
|
|
|
983
|
-
-
|
|
999
|
+
- 534ecf4: 685: Fix form reloading and resetting inputs
|
|
984
1000
|
|
|
985
1001
|
## 0.7.0
|
|
986
1002
|
|
|
987
1003
|
### Minor Changes
|
|
988
1004
|
|
|
989
|
-
-
|
|
1005
|
+
- 5d20aec: Adds accesToken to RTK Query clients
|
|
990
1006
|
|
|
991
1007
|
## 0.6.0
|
|
992
1008
|
|
|
993
1009
|
### Minor Changes
|
|
994
1010
|
|
|
995
|
-
-
|
|
996
|
-
-
|
|
997
|
-
-
|
|
1011
|
+
- d44c55c: Fix ProcessDetailQuery by removing form subfields
|
|
1012
|
+
- !WARNING: this version requires backend version 2.1.0.
|
|
1013
|
+
- It changes the graphql processes.page.form to a JSON type, so there are no subfields to request and will respond with an error.
|
|
998
1014
|
|
|
999
1015
|
## 0.5.2
|
|
1000
1016
|
|
|
1001
1017
|
### Patch Changes
|
|
1002
1018
|
|
|
1003
|
-
-
|
|
1004
|
-
-
|
|
1019
|
+
- e88410d: Update form fields to remove 'organisation' naming
|
|
1020
|
+
- 2310074: 723: Fix SummaryField .includes is not a function
|
|
1005
1021
|
|
|
1006
1022
|
## 0.5.1
|
|
1007
1023
|
|
|
1008
1024
|
### Patch Changes
|
|
1009
1025
|
|
|
1010
|
-
-
|
|
1011
|
-
-
|
|
1012
|
-
-
|
|
1026
|
+
- dac8fb2: update date presentation and move getDate to utils
|
|
1027
|
+
- e3b847a: Adds error boundary at the top level of the app
|
|
1028
|
+
- 926d47b: Table enhancements: Introduces a loading-placeholder and a no-data-placeholder. Prevents showing previous page results while loading new data.
|
|
1013
1029
|
|
|
1014
1030
|
## 0.5.0
|
|
1015
1031
|
|
|
1016
1032
|
### Minor Changes
|
|
1017
1033
|
|
|
1018
|
-
-
|
|
1034
|
+
- 267a753: Adding RTK and RTK Query for some endpoints and store data
|
|
1019
1035
|
|
|
1020
1036
|
## 0.4.0
|
|
1021
1037
|
|
|
1022
1038
|
### Minor Changes
|
|
1023
1039
|
|
|
1024
|
-
-
|
|
1040
|
+
- cdc668f: 544 - Export functionality for the tables
|
|
1025
1041
|
|
|
1026
1042
|
### Patch Changes
|
|
1027
1043
|
|
|
1028
|
-
-
|
|
1029
|
-
-
|
|
1030
|
-
-
|
|
1031
|
-
-
|
|
1044
|
+
- e8af27c: Process table - each column width in absolute or %
|
|
1045
|
+
- e9af205: change order tabs sub-detail-page
|
|
1046
|
+
- 996fc9f: added border radius to wfo tree and empty PB card placeholder
|
|
1047
|
+
- 41e0cc9: added copyright to sidebar
|
|
1032
1048
|
|
|
1033
1049
|
## 0.3.1
|
|
1034
1050
|
|
|
1035
1051
|
### Patch Changes
|
|
1036
1052
|
|
|
1037
|
-
-
|
|
1038
|
-
-
|
|
1039
|
-
-
|
|
1040
|
-
-
|
|
1041
|
-
-
|
|
1042
|
-
-
|
|
1053
|
+
- d824a58: fix uuid in breadcrumb
|
|
1054
|
+
- cb3142a: - expand the root product block card by default
|
|
1055
|
+
- change tree icon of root product block
|
|
1056
|
+
- open other subscription detail page opens in new tab
|
|
1057
|
+
- use title of root product block in tree like the other product blocks
|
|
1058
|
+
- e6aaef7: 598 Fixes invisible email in step list
|
|
1043
1059
|
|
|
1044
1060
|
## 0.3.0
|
|
1045
1061
|
|
|
1046
1062
|
### Minor Changes
|
|
1047
1063
|
|
|
1048
|
-
-
|
|
1064
|
+
- ef5eace: Updates all major dependencies including Typescript to version 5 and NextJS to version 14
|
|
1049
1065
|
|
|
1050
1066
|
## 0.2.7
|
|
1051
1067
|
|
|
1052
1068
|
### Patch Changes
|
|
1053
1069
|
|
|
1054
|
-
-
|
|
1070
|
+
- ce48846: Updates linting rules to ban all console statements except console.error()
|
|
1055
1071
|
|
|
1056
1072
|
## 0.2.6
|
|
1057
1073
|
|
|
1058
1074
|
### Patch Changes
|
|
1059
1075
|
|
|
1060
|
-
-
|
|
1076
|
+
- 6597ac1: Test release after adding absolute imports (issue 414)
|
|
1061
1077
|
|
|
1062
1078
|
## 0.2.5
|
|
1063
1079
|
|
|
1064
1080
|
### Patch Changes
|
|
1065
1081
|
|
|
1066
|
-
-
|
|
1082
|
+
- 6d680f6: Test release before adding absolute imports (issue 414)
|
|
1067
1083
|
|
|
1068
1084
|
## 0.2.4
|
|
1069
1085
|
|
|
1070
1086
|
### Patch Changes
|
|
1071
1087
|
|
|
1072
|
-
-
|
|
1088
|
+
- 38d1229: Fixed handling navigation for pages with sidebar submenu items
|
|
1073
1089
|
|
|
1074
1090
|
## 0.2.3
|
|
1075
1091
|
|
|
1076
1092
|
### Patch Changes
|
|
1077
1093
|
|
|
1078
|
-
-
|
|
1094
|
+
- 577825a: Adds title to process list page
|
|
1079
1095
|
|
|
1080
1096
|
## 0.2.2
|
|
1081
1097
|
|
|
1082
1098
|
### Patch Changes
|
|
1083
1099
|
|
|
1084
|
-
-
|
|
1100
|
+
- f49382c: Updates metadata pages and adds initial version of process-list page
|
|
1085
1101
|
|
|
1086
1102
|
## 0.2.1
|
|
1087
1103
|
|
|
1088
1104
|
### Patch Changes
|
|
1089
1105
|
|
|
1090
|
-
-
|
|
1106
|
+
- 3533525: Updated TS-Config to improve developer experience
|
|
1091
1107
|
|
|
1092
1108
|
## 0.2.0
|
|
1093
1109
|
|
|
1094
1110
|
### Minor Changes
|
|
1095
1111
|
|
|
1096
|
-
-
|
|
1112
|
+
- 6c4cb21: Added translation setup and next-inl configuration. Translation strings are now available when using the useTranslations hook. For more on how to add translations refer to apps/wfo-ui/translations/README.md
|
|
1097
1113
|
|
|
1098
1114
|
## 0.1.2
|
|
1099
1115
|
|
|
1100
1116
|
### Patch Changes
|
|
1101
1117
|
|
|
1102
|
-
-
|
|
1118
|
+
- 0cef169: Splitted WFO in separate packages
|
|
1103
1119
|
|
|
1104
1120
|
## 0.1.1
|
|
1105
1121
|
|
|
1106
1122
|
### Patch Changes
|
|
1107
1123
|
|
|
1108
|
-
-
|
|
1124
|
+
- Converted tsconfig and eslint to standalone NPM package
|
|
1109
1125
|
|
|
1110
1126
|
## 0.1.0
|
|
1111
1127
|
|
|
1112
1128
|
### Minor Changes
|
|
1113
1129
|
|
|
1114
|
-
-
|
|
1130
|
+
- c597fc5: Switched to tsup build in turborepo
|