@orchestrator-ui/orchestrator-ui-components 3.10.0 → 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 +6 -6
- package/CHANGELOG.md +313 -307
- package/dist/index.d.ts +812 -794
- package/dist/index.js +1047 -488
- package/dist/index.js.map +1 -1
- package/eslint.config.js +5 -0
- package/package.json +6 -7
- 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/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/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,30 +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
|
+
|
|
3
9
|
## 3.10.0
|
|
4
10
|
|
|
5
11
|
### Minor Changes
|
|
6
12
|
|
|
7
|
-
-
|
|
13
|
+
- 2ae5b18: Replace hardcoded query params with constants and enums
|
|
8
14
|
|
|
9
15
|
### Patch Changes
|
|
10
16
|
|
|
11
|
-
-
|
|
17
|
+
- 4cefe05: 1858 Fix layout issue with workflows on subscription detail page
|
|
12
18
|
|
|
13
19
|
## 3.9.1
|
|
14
20
|
|
|
15
21
|
### Patch Changes
|
|
16
22
|
|
|
17
|
-
-
|
|
23
|
+
- 3f64535: 1337 Move getWebSocket to utils.ts
|
|
18
24
|
|
|
19
25
|
## 3.9.0
|
|
20
26
|
|
|
21
27
|
### Minor Changes
|
|
22
28
|
|
|
23
|
-
-
|
|
29
|
+
- 5f8c712: 1210 Adds a badge with number of subscriptions not shown in the affected-subscriptions cell on the process list page
|
|
24
30
|
|
|
25
31
|
### Patch Changes
|
|
26
32
|
|
|
27
|
-
-
|
|
33
|
+
- adc70ef: Remove inUseByRelations field from query SubscriptionDropdownOptions
|
|
28
34
|
|
|
29
35
|
To benefit from the query optimization in https://github.com/workfloworchestrator/orchestrator-core/pull/922
|
|
30
36
|
|
|
@@ -32,149 +38,149 @@
|
|
|
32
38
|
|
|
33
39
|
### Patch Changes
|
|
34
40
|
|
|
35
|
-
-
|
|
41
|
+
- e75d0e4: 1844 Adds isAllowed policy check to the start-stop-engine section
|
|
36
42
|
|
|
37
43
|
## 3.8.0
|
|
38
44
|
|
|
39
45
|
### Minor Changes
|
|
40
46
|
|
|
41
|
-
-
|
|
47
|
+
- 93d46aa: 1635 Adds extra parameter ("allFieldValues") to the override function to have all data available when overriding a specific cell value
|
|
42
48
|
|
|
43
49
|
### Patch Changes
|
|
44
50
|
|
|
45
|
-
-
|
|
51
|
+
- 6fdc33a: 1824 Fix for the thin gray line in the sidebar that went beyond settings.
|
|
46
52
|
|
|
47
53
|
## 3.7.0
|
|
48
54
|
|
|
49
55
|
### Minor Changes
|
|
50
56
|
|
|
51
|
-
-
|
|
57
|
+
- 8a51b24: Adds fileupload field
|
|
52
58
|
|
|
53
59
|
## 3.6.0
|
|
54
60
|
|
|
55
61
|
### Minor Changes
|
|
56
62
|
|
|
57
|
-
-
|
|
58
|
-
-
|
|
63
|
+
- 21c2886: 1825 Update WfoDragHandler, make WfoTable 100% width
|
|
64
|
+
- 5f16a2e: 1821 Update WfoSidebar, add toOptionalArrayEntries
|
|
59
65
|
|
|
60
66
|
## 3.5.2
|
|
61
67
|
|
|
62
68
|
### Patch Changes
|
|
63
69
|
|
|
64
|
-
-
|
|
65
|
-
-
|
|
70
|
+
- 7040598: Readds testid to textarea field
|
|
71
|
+
- 167bea6: 1751 - Makes width of the inline note edit field flexible
|
|
66
72
|
|
|
67
73
|
## 3.5.1
|
|
68
74
|
|
|
69
75
|
### Patch Changes
|
|
70
76
|
|
|
71
|
-
-
|
|
72
|
-
-
|
|
77
|
+
- 0cb0521: Updates required peer dependencies to NextJs 14.2.25 (CVE-2025-29927)
|
|
78
|
+
- dbb2468: Add: time interval 15 min on time picker
|
|
73
79
|
|
|
74
80
|
## 3.5.0
|
|
75
81
|
|
|
76
82
|
### Minor Changes
|
|
77
83
|
|
|
78
|
-
-
|
|
84
|
+
- 267ad99: Introduces pydantic forms module to handle some workflows
|
|
79
85
|
|
|
80
86
|
### Patch Changes
|
|
81
87
|
|
|
82
|
-
-
|
|
83
|
-
-
|
|
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
|
|
84
90
|
|
|
85
91
|
## 3.4.2
|
|
86
92
|
|
|
87
93
|
### Patch Changes
|
|
88
94
|
|
|
89
|
-
-
|
|
95
|
+
- 00038a1: Fix for grouped table width
|
|
90
96
|
|
|
91
97
|
## 3.4.1
|
|
92
98
|
|
|
93
99
|
### Patch Changes
|
|
94
100
|
|
|
95
|
-
-
|
|
96
|
-
-
|
|
97
|
-
-
|
|
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
|
|
98
104
|
|
|
99
105
|
## 3.4.0
|
|
100
106
|
|
|
101
107
|
### Minor Changes
|
|
102
108
|
|
|
103
|
-
-
|
|
109
|
+
- 2389b16: 808 - Support for metadata description modify - requires orchestrator core 2.10.0
|
|
104
110
|
|
|
105
111
|
## 3.3.3
|
|
106
112
|
|
|
107
113
|
### Patch Changes
|
|
108
114
|
|
|
109
|
-
-
|
|
115
|
+
- 62d16da: 1709 Replace default icons with SURF icons
|
|
110
116
|
|
|
111
117
|
## 3.3.2
|
|
112
118
|
|
|
113
119
|
### Patch Changes
|
|
114
120
|
|
|
115
|
-
-
|
|
121
|
+
- 59230ea: inline edit for description of metadata pages
|
|
116
122
|
|
|
117
123
|
## 3.3.1
|
|
118
124
|
|
|
119
125
|
### Patch Changes
|
|
120
126
|
|
|
121
|
-
-
|
|
127
|
+
- 56bdc1d: 1705 Added prop for custom icon summary card
|
|
122
128
|
|
|
123
129
|
## 3.3.0
|
|
124
130
|
|
|
125
131
|
### Minor Changes
|
|
126
132
|
|
|
127
|
-
-
|
|
128
|
-
-
|
|
129
|
-
-
|
|
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
|
|
130
136
|
|
|
131
137
|
## 3.2.0
|
|
132
138
|
|
|
133
139
|
### Minor Changes
|
|
134
140
|
|
|
135
|
-
-
|
|
141
|
+
- 2175530: 1704 - Adjustments to assist in overriding the standard menu items: Using more descriptive id values. Adds reusable divider menu item
|
|
136
142
|
|
|
137
143
|
## 3.1.1
|
|
138
144
|
|
|
139
145
|
### Patch Changes
|
|
140
146
|
|
|
141
|
-
-
|
|
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
|
|
142
148
|
|
|
143
149
|
## 3.1.0
|
|
144
150
|
|
|
145
151
|
### Minor Changes
|
|
146
152
|
|
|
147
|
-
-
|
|
148
|
-
-
|
|
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.
|
|
149
155
|
|
|
150
156
|
## 3.0.3
|
|
151
157
|
|
|
152
158
|
### Patch Changes
|
|
153
159
|
|
|
154
|
-
-
|
|
160
|
+
- bba111c: Add missing subscription id to start process form
|
|
155
161
|
|
|
156
162
|
## 3.0.2
|
|
157
163
|
|
|
158
164
|
### Patch Changes
|
|
159
165
|
|
|
160
|
-
-
|
|
161
|
-
-
|
|
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.
|
|
162
168
|
|
|
163
169
|
## 3.0.1
|
|
164
170
|
|
|
165
171
|
### Patch Changes
|
|
166
172
|
|
|
167
|
-
-
|
|
173
|
+
- 4bd9869: 1146 Allow workflow to start with additional prefilled variables - LIR prefixes page
|
|
168
174
|
|
|
169
175
|
## 3.0.0
|
|
170
176
|
|
|
171
177
|
### Major Changes
|
|
172
178
|
|
|
173
|
-
-
|
|
179
|
+
- f6315dd: 1479:
|
|
174
180
|
|
|
175
|
-
-
|
|
176
|
-
-
|
|
177
|
-
-
|
|
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
|
|
178
184
|
|
|
179
185
|
Changes to be made by the consumer of the library:
|
|
180
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.
|
|
@@ -193,932 +199,932 @@
|
|
|
193
199
|
|
|
194
200
|
### Patch Changes
|
|
195
201
|
|
|
196
|
-
-
|
|
197
|
-
-
|
|
198
|
-
-
|
|
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.
|
|
199
205
|
|
|
200
206
|
## 2.15.0
|
|
201
207
|
|
|
202
208
|
### Minor Changes
|
|
203
209
|
|
|
204
|
-
-
|
|
210
|
+
- c7eaf69: 1620 Add subscriptionPath option for WfoRelatedSubscriptions, WfoSubscriptionDetailTree
|
|
205
211
|
|
|
206
212
|
### Patch Changes
|
|
207
213
|
|
|
208
|
-
-
|
|
209
|
-
-
|
|
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
|
|
210
216
|
|
|
211
217
|
## 2.14.1
|
|
212
218
|
|
|
213
219
|
### Patch Changes
|
|
214
220
|
|
|
215
|
-
-
|
|
216
|
-
-
|
|
221
|
+
- 7f972a1: Fixes calling getFirstUuidPart with null value
|
|
222
|
+
- 86b504f: Feat: refactor IPPREFIX table #2143
|
|
217
223
|
|
|
218
224
|
## 2.14.0
|
|
219
225
|
|
|
220
226
|
### Minor Changes
|
|
221
227
|
|
|
222
|
-
-
|
|
228
|
+
- 0172be2: Adds resizable table columns
|
|
223
229
|
|
|
224
230
|
## 2.13.0
|
|
225
231
|
|
|
226
232
|
### Minor Changes
|
|
227
233
|
|
|
228
|
-
-
|
|
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.
|
|
229
235
|
|
|
230
236
|
### Patch Changes
|
|
231
237
|
|
|
232
|
-
-
|
|
238
|
+
- 95de1e8: 1552 Remove last line of workflow timeline card
|
|
233
239
|
|
|
234
240
|
## 2.12.0
|
|
235
241
|
|
|
236
242
|
### Minor Changes
|
|
237
243
|
|
|
238
|
-
-
|
|
239
|
-
-
|
|
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
|
|
240
246
|
|
|
241
247
|
### Patch Changes
|
|
242
248
|
|
|
243
|
-
-
|
|
244
|
-
-
|
|
245
|
-
-
|
|
246
|
-
-
|
|
247
|
-
-
|
|
248
|
-
-
|
|
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
|
|
249
255
|
|
|
250
256
|
## 2.11.1
|
|
251
257
|
|
|
252
258
|
### Patch Changes
|
|
253
259
|
|
|
254
|
-
-
|
|
255
|
-
-
|
|
260
|
+
- 56e2537: Fixes rights issue in github action
|
|
261
|
+
- b7fe3ee: Adds github action permission to publish with provenance
|
|
256
262
|
|
|
257
263
|
## 2.11.0
|
|
258
264
|
|
|
259
265
|
### Minor Changes
|
|
260
266
|
|
|
261
|
-
-
|
|
267
|
+
- 85fca33: Adds npm provenance flag
|
|
262
268
|
|
|
263
269
|
### Patch Changes
|
|
264
270
|
|
|
265
|
-
-
|
|
271
|
+
- 59389ea: Removes limit on related workflows on subscription detail page
|
|
266
272
|
|
|
267
273
|
## 2.10.1
|
|
268
274
|
|
|
269
275
|
### Patch Changes
|
|
270
276
|
|
|
271
|
-
-
|
|
277
|
+
- 4a1ef5b: Adds pre-wrap style to value display fieldds
|
|
272
278
|
|
|
273
279
|
## 2.10.0
|
|
274
280
|
|
|
275
281
|
### Minor Changes
|
|
276
282
|
|
|
277
|
-
-
|
|
278
|
-
-
|
|
283
|
+
- e198ef6: 1528 Add tooltip to WfoInlineText edit, fix bug showing empty tooltip
|
|
284
|
+
- 4adc510: Adds table view to workflow steps
|
|
279
285
|
|
|
280
286
|
## 2.9.1
|
|
281
287
|
|
|
282
288
|
### Patch Changes
|
|
283
289
|
|
|
284
|
-
-
|
|
290
|
+
- fc4a7c5: Fixes too many productblock values being hidden
|
|
285
291
|
|
|
286
292
|
## 2.9.0
|
|
287
293
|
|
|
288
294
|
### Minor Changes
|
|
289
295
|
|
|
290
|
-
-
|
|
296
|
+
- fc8002a: 1503 Makes disabled action menu items expandable to list all subscriptions preventing this action to be available
|
|
291
297
|
|
|
292
298
|
### Patch Changes
|
|
293
299
|
|
|
294
|
-
-
|
|
295
|
-
-
|
|
296
|
-
-
|
|
297
|
-
-
|
|
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
|
|
298
304
|
|
|
299
305
|
## 2.8.4
|
|
300
306
|
|
|
301
307
|
### Patch Changes
|
|
302
308
|
|
|
303
|
-
-
|
|
304
|
-
-
|
|
305
|
-
-
|
|
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
|
|
306
312
|
|
|
307
313
|
## 2.8.3
|
|
308
314
|
|
|
309
315
|
### Patch Changes
|
|
310
316
|
|
|
311
|
-
-
|
|
317
|
+
- 85f1514: Added new icons - WfoActualWork, WfoMalfunction, WfoPlannedWork
|
|
312
318
|
|
|
313
319
|
## 2.8.2
|
|
314
320
|
|
|
315
321
|
### Patch Changes
|
|
316
322
|
|
|
317
|
-
-
|
|
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)
|
|
318
324
|
|
|
319
325
|
## 2.8.1
|
|
320
326
|
|
|
321
327
|
### Patch Changes
|
|
322
328
|
|
|
323
|
-
-
|
|
324
|
-
-
|
|
325
|
-
-
|
|
326
|
-
-
|
|
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
|
|
327
333
|
|
|
328
334
|
## 2.8.0
|
|
329
335
|
|
|
330
336
|
### Minor Changes
|
|
331
337
|
|
|
332
|
-
-
|
|
338
|
+
- 846a884: Updates npm dependency minor versions
|
|
333
339
|
|
|
334
340
|
## 2.7.1
|
|
335
341
|
|
|
336
342
|
### Patch Changes
|
|
337
343
|
|
|
338
|
-
-
|
|
344
|
+
- 2da7671: Fix: Add onchange on the useEffect state in order to set the default
|
|
339
345
|
|
|
340
346
|
## 2.7.0
|
|
341
347
|
|
|
342
348
|
### Minor Changes
|
|
343
349
|
|
|
344
|
-
-
|
|
350
|
+
- b293024: Adds flags to disable RTK cache in development
|
|
345
351
|
|
|
346
352
|
### Patch Changes
|
|
347
353
|
|
|
348
|
-
-
|
|
349
|
-
-
|
|
350
|
-
-
|
|
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
|
|
351
357
|
|
|
352
358
|
## 2.6.0
|
|
353
359
|
|
|
354
360
|
### Minor Changes
|
|
355
361
|
|
|
356
|
-
-
|
|
362
|
+
- 404ffe2: Shows empty values in productBlocks in detail mode
|
|
357
363
|
|
|
358
364
|
### Patch Changes
|
|
359
365
|
|
|
360
|
-
-
|
|
366
|
+
- 293c85c: 1440 Adjusted FieldValue type to include ReactNode for NMS
|
|
361
367
|
|
|
362
368
|
## 2.5.0
|
|
363
369
|
|
|
364
370
|
### Minor Changes
|
|
365
371
|
|
|
366
|
-
-
|
|
367
|
-
-
|
|
368
|
-
-
|
|
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
|
|
369
375
|
|
|
370
376
|
### Patch Changes
|
|
371
377
|
|
|
372
|
-
-
|
|
378
|
+
- ac98ce6: Update tsv information modal
|
|
373
379
|
|
|
374
380
|
## 2.4.0
|
|
375
381
|
|
|
376
382
|
### Minor Changes
|
|
377
383
|
|
|
378
|
-
-
|
|
384
|
+
- ad83b95: Improves performace of subscription dropdown options
|
|
379
385
|
|
|
380
386
|
### Patch Changes
|
|
381
387
|
|
|
382
|
-
-
|
|
388
|
+
- ff6f520: 1377 Added copy button to UUID fields in tables
|
|
383
389
|
|
|
384
390
|
## 2.3.0
|
|
385
391
|
|
|
386
392
|
### Minor Changes
|
|
387
393
|
|
|
388
|
-
-
|
|
389
|
-
-
|
|
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.
|
|
390
396
|
|
|
391
397
|
## 2.2.0
|
|
392
398
|
|
|
393
399
|
### Minor Changes
|
|
394
400
|
|
|
395
|
-
-
|
|
396
|
-
-
|
|
401
|
+
- e228d98: Sorts grouped table groups
|
|
402
|
+
- d24efe6: 1381 Render mouseover tooltip for the new tables
|
|
397
403
|
|
|
398
404
|
### Patch Changes
|
|
399
405
|
|
|
400
|
-
-
|
|
406
|
+
- 60021b1: Fixes checkboxes without labels
|
|
401
407
|
|
|
402
408
|
## 2.1.1
|
|
403
409
|
|
|
404
410
|
### Patch Changes
|
|
405
411
|
|
|
406
|
-
-
|
|
407
|
-
-
|
|
408
|
-
-
|
|
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
|
|
409
415
|
|
|
410
416
|
## 2.1.0
|
|
411
417
|
|
|
412
418
|
### Minor Changes
|
|
413
419
|
|
|
414
|
-
-
|
|
415
|
-
-
|
|
416
|
-
-
|
|
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
|
|
417
423
|
|
|
418
424
|
### Patch Changes
|
|
419
425
|
|
|
420
|
-
-
|
|
426
|
+
- 851eb96: 1393 Fix workflow dropdown not refreshed after subscription is set in sync
|
|
421
427
|
|
|
422
428
|
## 2.0.0
|
|
423
429
|
|
|
424
430
|
### Major Changes
|
|
425
431
|
|
|
426
|
-
-
|
|
432
|
+
- 7991a97: 1384 - (Breaking change) - Replaces WfoBasicTable and WfoTableWithFilter with WfoTable and WfoAdvancedTable. Both have slightly different interfaces compared with the previous components
|
|
427
433
|
|
|
428
434
|
### Minor Changes
|
|
429
435
|
|
|
430
|
-
-
|
|
431
|
-
-
|
|
436
|
+
- ca01308: Refactor WfoSubscriptionGeneral, use WfoSubscriptionDetailSection in forms
|
|
437
|
+
- 0041a7c: 699, 1370 - Fix and update product block view
|
|
432
438
|
|
|
433
439
|
### Patch Changes
|
|
434
440
|
|
|
435
|
-
-
|
|
436
|
-
-
|
|
437
|
-
-
|
|
438
|
-
-
|
|
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
|
|
439
445
|
|
|
440
446
|
## 1.38.2
|
|
441
447
|
|
|
442
448
|
### Patch Changes
|
|
443
449
|
|
|
444
|
-
-
|
|
445
|
-
-
|
|
450
|
+
- 414391f: Adjust start task combobox size, so it doesn't hide list items
|
|
451
|
+
- 7c6f8b2: Add enum for ids of subscription detail sections
|
|
446
452
|
|
|
447
453
|
## 1.38.1
|
|
448
454
|
|
|
449
455
|
### Patch Changes
|
|
450
456
|
|
|
451
|
-
-
|
|
457
|
+
- 702cbdf: Display orchestrator-ui-library version in header
|
|
452
458
|
|
|
453
459
|
## 1.38.0
|
|
454
460
|
|
|
455
461
|
### Minor Changes
|
|
456
462
|
|
|
457
|
-
-
|
|
458
|
-
-
|
|
459
|
-
-
|
|
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
|
|
460
466
|
|
|
461
467
|
## 1.37.1
|
|
462
468
|
|
|
463
469
|
### Patch Changes
|
|
464
470
|
|
|
465
|
-
-
|
|
471
|
+
- a95a3c7: Changed order of side menu to reflect the importance of the pages in a more logical order
|
|
466
472
|
|
|
467
473
|
## 1.37.0
|
|
468
474
|
|
|
469
475
|
### Minor Changes
|
|
470
476
|
|
|
471
|
-
-
|
|
472
|
-
-
|
|
473
|
-
-
|
|
474
|
-
-
|
|
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
|
|
475
481
|
|
|
476
482
|
### Patch Changes
|
|
477
483
|
|
|
478
|
-
-
|
|
479
|
-
-
|
|
480
|
-
-
|
|
481
|
-
-
|
|
482
|
-
-
|
|
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.
|
|
483
489
|
|
|
484
490
|
## 1.36.1
|
|
485
491
|
|
|
486
492
|
### Patch Changes
|
|
487
493
|
|
|
488
|
-
-
|
|
494
|
+
- f7571b1: 822 Removes debounce mechanism in the websocket logic
|
|
489
495
|
|
|
490
496
|
## 1.36.0
|
|
491
497
|
|
|
492
498
|
### Minor Changes
|
|
493
499
|
|
|
494
|
-
-
|
|
500
|
+
- 5663e2c: Fixes list item delete button
|
|
495
501
|
|
|
496
502
|
### Patch Changes
|
|
497
503
|
|
|
498
|
-
-
|
|
499
|
-
-
|
|
500
|
-
-
|
|
501
|
-
-
|
|
502
|
-
-
|
|
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
|
|
503
509
|
|
|
504
510
|
## 1.35.0
|
|
505
511
|
|
|
506
512
|
### Minor Changes
|
|
507
513
|
|
|
508
|
-
-
|
|
509
|
-
-
|
|
514
|
+
- 3a8ba59: Adds hamburger menu
|
|
515
|
+
- 86cbc9c: Adds celery worker status card to settings page
|
|
510
516
|
|
|
511
517
|
### Patch Changes
|
|
512
518
|
|
|
513
|
-
-
|
|
514
|
-
-
|
|
515
|
-
-
|
|
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
|
|
516
522
|
|
|
517
523
|
## 1.34.0
|
|
518
524
|
|
|
519
525
|
### Minor Changes
|
|
520
526
|
|
|
521
|
-
-
|
|
527
|
+
- 6a098f6: WFO GraphQL base query that handles both errors and data returned
|
|
522
528
|
|
|
523
529
|
## 1.33.0
|
|
524
530
|
|
|
525
531
|
### Minor Changes
|
|
526
532
|
|
|
527
|
-
-
|
|
533
|
+
- bd05bd4: Makes productBlocks on service configuration tab scrollable
|
|
528
534
|
|
|
529
535
|
### Patch Changes
|
|
530
536
|
|
|
531
|
-
-
|
|
537
|
+
- a728dfe: 1168 Exposes toObjectWithSortedKeys util
|
|
532
538
|
|
|
533
539
|
## 1.32.0
|
|
534
540
|
|
|
535
541
|
### Minor Changes
|
|
536
542
|
|
|
537
|
-
-
|
|
538
|
-
-
|
|
543
|
+
- 06f97cc: Updates graphql seperator character
|
|
544
|
+
- cf75ff3: Keep uppercase letters if original text in breadcrumb is only uppercase
|
|
539
545
|
|
|
540
546
|
### Patch Changes
|
|
541
547
|
|
|
542
|
-
-
|
|
543
|
-
-
|
|
548
|
+
- 845dce4: Fix form label not visible in SummaryField and TimestampField
|
|
549
|
+
- 95862a2: Orders productsblocks in service configuration page better
|
|
544
550
|
|
|
545
551
|
## 1.31.0
|
|
546
552
|
|
|
547
553
|
### Minor Changes
|
|
548
554
|
|
|
549
|
-
-
|
|
555
|
+
- 8e2c77c: Updates graphql error code to match backend
|
|
550
556
|
|
|
551
557
|
## 1.30.3
|
|
552
558
|
|
|
553
559
|
### Patch Changes
|
|
554
560
|
|
|
555
|
-
-
|
|
561
|
+
- 679ae6c: Fix for vlan field not showing initial value on 2nd page on modify workflow
|
|
556
562
|
|
|
557
563
|
## 1.30.2
|
|
558
564
|
|
|
559
565
|
### Patch Changes
|
|
560
566
|
|
|
561
|
-
-
|
|
567
|
+
- fe3e991: Fixes websocket connection without authorization
|
|
562
568
|
|
|
563
569
|
## 1.30.1
|
|
564
570
|
|
|
565
571
|
### Patch Changes
|
|
566
572
|
|
|
567
|
-
-
|
|
573
|
+
- 6f308f9: Fix not logging out when token expires
|
|
568
574
|
|
|
569
575
|
## 1.30.0
|
|
570
576
|
|
|
571
577
|
### Minor Changes
|
|
572
578
|
|
|
573
|
-
-
|
|
579
|
+
- 231230c: Updates most packages to latest version
|
|
574
580
|
|
|
575
581
|
## 1.29.1
|
|
576
582
|
|
|
577
583
|
### Patch Changes
|
|
578
584
|
|
|
579
|
-
-
|
|
585
|
+
- deff75b: Workflow-list and Task-list pages: Keeps old data in table while refreshing data
|
|
580
586
|
|
|
581
587
|
## 1.29.0
|
|
582
588
|
|
|
583
589
|
### Minor Changes
|
|
584
590
|
|
|
585
|
-
-
|
|
586
|
-
-
|
|
591
|
+
- 80f18ae: Fixes npm audit messages
|
|
592
|
+
- 637f8ea: Adds websocket status badge to page title instead of header
|
|
587
593
|
|
|
588
594
|
## 1.28.0
|
|
589
595
|
|
|
590
596
|
### Minor Changes
|
|
591
597
|
|
|
592
|
-
-
|
|
598
|
+
- 3444973: added a new table for the nms chassis general tab
|
|
593
599
|
|
|
594
600
|
## 1.27.1
|
|
595
601
|
|
|
596
602
|
### Patch Changes
|
|
597
603
|
|
|
598
|
-
-
|
|
604
|
+
- 54b537c: Added productType to Workflow option used by LIR prefixes
|
|
599
605
|
|
|
600
606
|
## 1.27.0
|
|
601
607
|
|
|
602
608
|
### Minor Changes
|
|
603
609
|
|
|
604
|
-
-
|
|
605
|
-
-
|
|
606
|
-
-
|
|
607
|
-
-
|
|
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
|
|
608
614
|
|
|
609
615
|
## 1.26.0
|
|
610
616
|
|
|
611
617
|
### Minor Changes
|
|
612
618
|
|
|
613
|
-
-
|
|
619
|
+
- 3508ff8: Sort product block instance values by field name
|
|
614
620
|
|
|
615
621
|
### Patch Changes
|
|
616
622
|
|
|
617
|
-
-
|
|
623
|
+
- 257ef6e: Added number type to parseDate function
|
|
618
624
|
|
|
619
625
|
## 1.25.0
|
|
620
626
|
|
|
621
627
|
### Minor Changes
|
|
622
628
|
|
|
623
|
-
-
|
|
624
|
-
-
|
|
625
|
-
-
|
|
626
|
-
-
|
|
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
|
|
627
633
|
|
|
628
634
|
### Patch Changes
|
|
629
635
|
|
|
630
|
-
-
|
|
631
|
-
-
|
|
636
|
+
- 43bcc3c: Fixes table settings reset
|
|
637
|
+
- 02d39db: Fix pressing back not returning to the form page for submitted forms
|
|
632
638
|
|
|
633
639
|
## 1.24.0
|
|
634
640
|
|
|
635
641
|
### Minor Changes
|
|
636
642
|
|
|
637
|
-
-
|
|
638
|
-
-
|
|
639
|
-
-
|
|
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
|
|
640
646
|
|
|
641
647
|
### Patch Changes
|
|
642
648
|
|
|
643
|
-
-
|
|
644
|
-
-
|
|
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
|
|
645
651
|
|
|
646
652
|
## 1.23.0
|
|
647
653
|
|
|
648
654
|
### Minor Changes
|
|
649
655
|
|
|
650
|
-
-
|
|
651
|
-
-
|
|
656
|
+
- 33240b6: Fixes websockets with authentication
|
|
657
|
+
- b94c618: Added customer with subscription query used by nms
|
|
652
658
|
|
|
653
659
|
### Patch Changes
|
|
654
660
|
|
|
655
|
-
-
|
|
661
|
+
- 9f18b7c: 1066 VlanField: Only allows to clear the value when the field is enabled
|
|
656
662
|
|
|
657
663
|
## 1.22.0
|
|
658
664
|
|
|
659
665
|
### Minor Changes
|
|
660
666
|
|
|
661
|
-
-
|
|
662
|
-
-
|
|
667
|
+
- f6dc4fb: Replaces subscriptionsWithFilter REST call with a graphQL query
|
|
668
|
+
- d48df6b: Exports WFoUserInputForm
|
|
663
669
|
|
|
664
670
|
### Patch Changes
|
|
665
671
|
|
|
666
|
-
-
|
|
667
|
-
-
|
|
668
|
-
-
|
|
669
|
-
-
|
|
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
|
|
670
676
|
|
|
671
677
|
## 1.21.0
|
|
672
678
|
|
|
673
679
|
### Minor Changes
|
|
674
680
|
|
|
675
|
-
-
|
|
676
|
-
-
|
|
677
|
-
-
|
|
678
|
-
-
|
|
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
|
|
679
685
|
|
|
680
686
|
### Patch Changes
|
|
681
687
|
|
|
682
|
-
-
|
|
683
|
-
-
|
|
688
|
+
- 13d7c6d: Fixes missing aria-labels on icons
|
|
689
|
+
- b9680b8: 626 Applies dark theme to form fields
|
|
684
690
|
|
|
685
691
|
## 1.20.0
|
|
686
692
|
|
|
687
693
|
### Minor Changes
|
|
688
694
|
|
|
689
|
-
-
|
|
695
|
+
- decb678: Removes obsolete configuration options
|
|
690
696
|
|
|
691
697
|
## 1.19.1
|
|
692
698
|
|
|
693
699
|
### Patch Changes
|
|
694
700
|
|
|
695
|
-
-
|
|
701
|
+
- e1811bc: revert username to old code solution
|
|
696
702
|
|
|
697
703
|
## 1.19.0
|
|
698
704
|
|
|
699
705
|
### Minor Changes
|
|
700
706
|
|
|
701
|
-
-
|
|
707
|
+
- 7dc5cf0: Moving axios form fields and fetches to RTK
|
|
702
708
|
|
|
703
709
|
### Patch Changes
|
|
704
710
|
|
|
705
|
-
-
|
|
706
|
-
-
|
|
711
|
+
- 213fb25: Uses preferred_username to filter for my-workflows
|
|
712
|
+
- 71fa3bd: 1055 Making OAuth Scopes configurable via Environment Variables
|
|
707
713
|
|
|
708
714
|
## 1.18.0
|
|
709
715
|
|
|
710
716
|
### Minor Changes
|
|
711
717
|
|
|
712
|
-
-
|
|
718
|
+
- b8cf381: 626 Tweaks dark theme on detail pages and the settings page
|
|
713
719
|
|
|
714
720
|
### Patch Changes
|
|
715
721
|
|
|
716
|
-
-
|
|
722
|
+
- 3888ea9: Adjustment to placeholder translations
|
|
717
723
|
|
|
718
724
|
## 1.17.0
|
|
719
725
|
|
|
720
726
|
### Minor Changes
|
|
721
727
|
|
|
722
|
-
-
|
|
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.
|
|
723
729
|
|
|
724
730
|
## 1.16.0
|
|
725
731
|
|
|
726
732
|
### Minor Changes
|
|
727
733
|
|
|
728
|
-
-
|
|
734
|
+
- ed6d5c7: Fixes tooltip message on vlan field
|
|
729
735
|
|
|
730
736
|
### Patch Changes
|
|
731
737
|
|
|
732
|
-
-
|
|
738
|
+
- 5301916: Added trash icon
|
|
733
739
|
|
|
734
740
|
## 1.15.0
|
|
735
741
|
|
|
736
742
|
### Minor Changes
|
|
737
743
|
|
|
738
|
-
-
|
|
744
|
+
- a8c625e: Added workflow information link and env vars for it
|
|
739
745
|
|
|
740
746
|
## 1.14.2
|
|
741
747
|
|
|
742
748
|
### Patch Changes
|
|
743
749
|
|
|
744
|
-
-
|
|
745
|
-
-
|
|
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
|
|
746
752
|
|
|
747
753
|
## 1.14.1
|
|
748
754
|
|
|
749
755
|
### Patch Changes
|
|
750
756
|
|
|
751
|
-
-
|
|
757
|
+
- d835c16: add retry for processes in waiting state - added new icon to be used …
|
|
752
758
|
|
|
753
759
|
## 1.14.0
|
|
754
760
|
|
|
755
761
|
### Minor Changes
|
|
756
762
|
|
|
757
|
-
-
|
|
763
|
+
- 5b9d042: Moved form wizards to RTK
|
|
758
764
|
|
|
759
765
|
## 1.13.2
|
|
760
766
|
|
|
761
767
|
### Patch Changes
|
|
762
768
|
|
|
763
|
-
-
|
|
764
|
-
-
|
|
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
|
|
765
771
|
|
|
766
772
|
## 1.13.1
|
|
767
773
|
|
|
768
774
|
### Patch Changes
|
|
769
775
|
|
|
770
|
-
-
|
|
776
|
+
- 63ee9c0: 863 Adds title for traceback section on workflow detail page
|
|
771
777
|
|
|
772
778
|
## 1.13.0
|
|
773
779
|
|
|
774
780
|
### Minor Changes
|
|
775
781
|
|
|
776
|
-
-
|
|
782
|
+
- 12d72f9: Ads feature toggles to configuration
|
|
777
783
|
|
|
778
784
|
### Patch Changes
|
|
779
785
|
|
|
780
|
-
-
|
|
781
|
-
-
|
|
786
|
+
- abd239c: filter workflows on target
|
|
787
|
+
- 72ee276: 863 Adds Traceback on process detail page
|
|
782
788
|
|
|
783
789
|
## 1.12.0
|
|
784
790
|
|
|
785
791
|
### Minor Changes
|
|
786
792
|
|
|
787
|
-
-
|
|
793
|
+
- a95a6dc: Updates what the websocket interface is listening to
|
|
788
794
|
|
|
789
795
|
## 1.11.0
|
|
790
796
|
|
|
791
797
|
### Minor Changes
|
|
792
798
|
|
|
793
|
-
-
|
|
799
|
+
- 38b0c66: 333 - Adds override option for General tab on the SubscriptionDetail page and adds Customer descriptions field
|
|
794
800
|
|
|
795
801
|
### Patch Changes
|
|
796
802
|
|
|
797
|
-
-
|
|
798
|
-
-
|
|
803
|
+
- 9eca836: 983 Improvements in exporting data from the metadata pages
|
|
804
|
+
- df1a9b6: Hide filter option on related subscriptions table
|
|
799
805
|
|
|
800
806
|
## 1.10.0
|
|
801
807
|
|
|
802
808
|
### Minor Changes
|
|
803
809
|
|
|
804
|
-
-
|
|
810
|
+
- 04ef921: Deprecate apiclient version of UserInputFormWizard
|
|
805
811
|
|
|
806
812
|
## 1.9.0
|
|
807
813
|
|
|
808
814
|
### Minor Changes
|
|
809
815
|
|
|
810
|
-
-
|
|
816
|
+
- a9f3806: Improves sideBar navigation
|
|
811
817
|
|
|
812
818
|
## 1.8.0
|
|
813
819
|
|
|
814
820
|
### Minor Changes
|
|
815
821
|
|
|
816
|
-
-
|
|
822
|
+
- 752b3fd: 102 Adds context provider and hook to override values in subscription detail product blocks
|
|
817
823
|
|
|
818
824
|
## 1.7.0
|
|
819
825
|
|
|
820
826
|
### Minor Changes
|
|
821
827
|
|
|
822
|
-
-
|
|
828
|
+
- d61106d: Release of the metadata task page
|
|
823
829
|
|
|
824
830
|
## 1.6.2
|
|
825
831
|
|
|
826
832
|
### Patch Changes
|
|
827
833
|
|
|
828
|
-
-
|
|
834
|
+
- 0bf6f82: New metadata taskpage with rtk
|
|
829
835
|
|
|
830
836
|
## 1.6.1
|
|
831
837
|
|
|
832
838
|
### Patch Changes
|
|
833
839
|
|
|
834
|
-
-
|
|
835
|
-
-
|
|
840
|
+
- 3cfd9f5: Fixes error in exported values
|
|
841
|
+
- 5807458: 332 Subscription detail page: hides metadata section when there is no data available
|
|
836
842
|
|
|
837
843
|
## 1.6.0
|
|
838
844
|
|
|
839
845
|
### Minor Changes
|
|
840
846
|
|
|
841
|
-
-
|
|
847
|
+
- bf4698e: 332 Adds subscription metadata to the subscription list page and subscription detail page
|
|
842
848
|
|
|
843
849
|
### Patch Changes
|
|
844
850
|
|
|
845
|
-
-
|
|
846
|
-
|
|
847
|
-
|
|
848
|
-
|
|
849
|
-
-
|
|
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
|
|
850
856
|
|
|
851
857
|
## 1.5.0
|
|
852
858
|
|
|
853
859
|
### Minor Changes
|
|
854
860
|
|
|
855
|
-
-
|
|
856
|
-
-
|
|
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.
|
|
857
863
|
|
|
858
864
|
### Patch Changes
|
|
859
865
|
|
|
860
|
-
-
|
|
861
|
-
-
|
|
862
|
-
-
|
|
863
|
-
-
|
|
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
|
|
864
870
|
|
|
865
871
|
## 1.4.0.
|
|
866
872
|
|
|
867
873
|
### Minor Changes
|
|
868
874
|
|
|
869
|
-
-
|
|
870
|
-
-
|
|
871
|
-
-
|
|
872
|
-
-
|
|
873
|
-
-
|
|
874
|
-
-
|
|
875
|
-
-
|
|
876
|
-
-
|
|
877
|
-
-
|
|
878
|
-
-
|
|
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
|
|
879
885
|
|
|
880
886
|
## 1.3.1
|
|
881
887
|
|
|
882
888
|
### Patch Changes
|
|
883
889
|
|
|
884
|
-
-
|
|
885
|
-
-
|
|
890
|
+
- 043b943: Moves processSteps query to RTK client
|
|
891
|
+
- b511e4a: Fixes bug that occurs in some create workflows
|
|
886
892
|
|
|
887
893
|
## 1.3.0
|
|
888
894
|
|
|
889
895
|
### Minor Changes
|
|
890
896
|
|
|
891
|
-
-
|
|
897
|
+
- 1ab3e59: Adds set in sync action to subscription detail page
|
|
892
898
|
|
|
893
899
|
## 1.2.0
|
|
894
900
|
|
|
895
901
|
### Minor Changes
|
|
896
902
|
|
|
897
|
-
-
|
|
903
|
+
- 857b6de: Added option to override the baseQuery with custom baseQuery in RTK client
|
|
898
904
|
|
|
899
905
|
## 1.1.0
|
|
900
906
|
|
|
901
907
|
### Minor Changes
|
|
902
908
|
|
|
903
|
-
-
|
|
909
|
+
- 2d0c99c: 840 Updates policy resources
|
|
904
910
|
|
|
905
911
|
## 1.0.0
|
|
906
912
|
|
|
907
913
|
### Major Changes
|
|
908
914
|
|
|
909
|
-
-
|
|
915
|
+
- 507399b: R1 Release
|
|
910
916
|
|
|
911
917
|
## 0.13.1
|
|
912
918
|
|
|
913
919
|
### Patch Changes
|
|
914
920
|
|
|
915
|
-
-
|
|
921
|
+
- 9155f40: Added isDisabled prop to WfoSubmitModal
|
|
916
922
|
|
|
917
923
|
## 0.13.0
|
|
918
924
|
|
|
919
925
|
### Minor Changes
|
|
920
926
|
|
|
921
|
-
-
|
|
927
|
+
- 89835a4: 702 - Moves processDetail to rtkquery
|
|
922
928
|
|
|
923
929
|
### Patch Changes
|
|
924
930
|
|
|
925
|
-
-
|
|
931
|
+
- e56c142: 760 remove duplicate product tags on metadata workflow page
|
|
926
932
|
|
|
927
933
|
## 0.12.0
|
|
928
934
|
|
|
929
935
|
### Minor Changes
|
|
930
936
|
|
|
931
|
-
-
|
|
932
|
-
|
|
937
|
+
- 5efb8b0: #821 Reverted FORMS_ENPOINT string, removed cimStartForm, added new string utils
|
|
938
|
+
#833 Small change to useQueryWithFetch for the default sending level
|
|
933
939
|
|
|
934
940
|
## 0.11.1
|
|
935
941
|
|
|
936
942
|
### Patch Changes
|
|
937
943
|
|
|
938
|
-
-
|
|
939
|
-
-
|
|
944
|
+
- e83d9aa: new summary card out-of-sync subscriptions
|
|
945
|
+
- 7ff8936: Applies policies in several components
|
|
940
946
|
|
|
941
947
|
## 0.11.0
|
|
942
948
|
|
|
943
949
|
### Minor Changes
|
|
944
950
|
|
|
945
|
-
-
|
|
946
|
-
-
|
|
951
|
+
- 6332355: Adds dark theme behind feature toggle
|
|
952
|
+
- e808db4: Add a websocket that can be called to clear cache
|
|
947
953
|
|
|
948
954
|
### Patch Changes
|
|
949
955
|
|
|
950
|
-
-
|
|
951
|
-
-
|
|
956
|
+
- c3da8a6: add customer abbrev to customer drop down string in form field
|
|
957
|
+
- 05c9acc: add status and insync badge to subscription detail page
|
|
952
958
|
|
|
953
959
|
## 0.10.0
|
|
954
960
|
|
|
955
961
|
### Minor Changes
|
|
956
962
|
|
|
957
|
-
-
|
|
963
|
+
- 18da717: 460 Introduces a usePolicy hook to help with conditionally rendering of components. The useWfoSession hook can be used to identify the user
|
|
958
964
|
|
|
959
965
|
## 0.9.1
|
|
960
966
|
|
|
961
967
|
### Patch Changes
|
|
962
968
|
|
|
963
|
-
-
|
|
969
|
+
- 1578b99: NPM Audit fix for IP package
|
|
964
970
|
|
|
965
971
|
## 0.9.0
|
|
966
972
|
|
|
967
973
|
### Minor Changes
|
|
968
974
|
|
|
969
|
-
-
|
|
970
|
-
-
|
|
975
|
+
- 8675375: Fixes a SelectField bug
|
|
976
|
+
- c8c6e10: Update npm dependency versions
|
|
971
977
|
|
|
972
978
|
### Patch Changes
|
|
973
979
|
|
|
974
|
-
-
|
|
975
|
-
-
|
|
980
|
+
- 4bee6a1: Fixes crashes caused by uniforms connectField function
|
|
981
|
+
- 56d5e6e: Trigger the changesets action
|
|
976
982
|
|
|
977
983
|
## 0.8.1
|
|
978
984
|
|
|
979
985
|
### Patch Changes
|
|
980
986
|
|
|
981
|
-
-
|
|
982
|
-
-
|
|
983
|
-
-
|
|
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
|
|
984
990
|
|
|
985
991
|
## 0.8.0
|
|
986
992
|
|
|
987
993
|
### Minor Changes
|
|
988
994
|
|
|
989
|
-
-
|
|
995
|
+
- 8eded72: Required for issue 573 Add restart open relate
|
|
990
996
|
|
|
991
997
|
### Patch Changes
|
|
992
998
|
|
|
993
|
-
-
|
|
999
|
+
- 534ecf4: 685: Fix form reloading and resetting inputs
|
|
994
1000
|
|
|
995
1001
|
## 0.7.0
|
|
996
1002
|
|
|
997
1003
|
### Minor Changes
|
|
998
1004
|
|
|
999
|
-
-
|
|
1005
|
+
- 5d20aec: Adds accesToken to RTK Query clients
|
|
1000
1006
|
|
|
1001
1007
|
## 0.6.0
|
|
1002
1008
|
|
|
1003
1009
|
### Minor Changes
|
|
1004
1010
|
|
|
1005
|
-
-
|
|
1006
|
-
-
|
|
1007
|
-
-
|
|
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.
|
|
1008
1014
|
|
|
1009
1015
|
## 0.5.2
|
|
1010
1016
|
|
|
1011
1017
|
### Patch Changes
|
|
1012
1018
|
|
|
1013
|
-
-
|
|
1014
|
-
-
|
|
1019
|
+
- e88410d: Update form fields to remove 'organisation' naming
|
|
1020
|
+
- 2310074: 723: Fix SummaryField .includes is not a function
|
|
1015
1021
|
|
|
1016
1022
|
## 0.5.1
|
|
1017
1023
|
|
|
1018
1024
|
### Patch Changes
|
|
1019
1025
|
|
|
1020
|
-
-
|
|
1021
|
-
-
|
|
1022
|
-
-
|
|
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.
|
|
1023
1029
|
|
|
1024
1030
|
## 0.5.0
|
|
1025
1031
|
|
|
1026
1032
|
### Minor Changes
|
|
1027
1033
|
|
|
1028
|
-
-
|
|
1034
|
+
- 267a753: Adding RTK and RTK Query for some endpoints and store data
|
|
1029
1035
|
|
|
1030
1036
|
## 0.4.0
|
|
1031
1037
|
|
|
1032
1038
|
### Minor Changes
|
|
1033
1039
|
|
|
1034
|
-
-
|
|
1040
|
+
- cdc668f: 544 - Export functionality for the tables
|
|
1035
1041
|
|
|
1036
1042
|
### Patch Changes
|
|
1037
1043
|
|
|
1038
|
-
-
|
|
1039
|
-
-
|
|
1040
|
-
-
|
|
1041
|
-
-
|
|
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
|
|
1042
1048
|
|
|
1043
1049
|
## 0.3.1
|
|
1044
1050
|
|
|
1045
1051
|
### Patch Changes
|
|
1046
1052
|
|
|
1047
|
-
-
|
|
1048
|
-
-
|
|
1049
|
-
-
|
|
1050
|
-
-
|
|
1051
|
-
-
|
|
1052
|
-
-
|
|
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
|
|
1053
1059
|
|
|
1054
1060
|
## 0.3.0
|
|
1055
1061
|
|
|
1056
1062
|
### Minor Changes
|
|
1057
1063
|
|
|
1058
|
-
-
|
|
1064
|
+
- ef5eace: Updates all major dependencies including Typescript to version 5 and NextJS to version 14
|
|
1059
1065
|
|
|
1060
1066
|
## 0.2.7
|
|
1061
1067
|
|
|
1062
1068
|
### Patch Changes
|
|
1063
1069
|
|
|
1064
|
-
-
|
|
1070
|
+
- ce48846: Updates linting rules to ban all console statements except console.error()
|
|
1065
1071
|
|
|
1066
1072
|
## 0.2.6
|
|
1067
1073
|
|
|
1068
1074
|
### Patch Changes
|
|
1069
1075
|
|
|
1070
|
-
-
|
|
1076
|
+
- 6597ac1: Test release after adding absolute imports (issue 414)
|
|
1071
1077
|
|
|
1072
1078
|
## 0.2.5
|
|
1073
1079
|
|
|
1074
1080
|
### Patch Changes
|
|
1075
1081
|
|
|
1076
|
-
-
|
|
1082
|
+
- 6d680f6: Test release before adding absolute imports (issue 414)
|
|
1077
1083
|
|
|
1078
1084
|
## 0.2.4
|
|
1079
1085
|
|
|
1080
1086
|
### Patch Changes
|
|
1081
1087
|
|
|
1082
|
-
-
|
|
1088
|
+
- 38d1229: Fixed handling navigation for pages with sidebar submenu items
|
|
1083
1089
|
|
|
1084
1090
|
## 0.2.3
|
|
1085
1091
|
|
|
1086
1092
|
### Patch Changes
|
|
1087
1093
|
|
|
1088
|
-
-
|
|
1094
|
+
- 577825a: Adds title to process list page
|
|
1089
1095
|
|
|
1090
1096
|
## 0.2.2
|
|
1091
1097
|
|
|
1092
1098
|
### Patch Changes
|
|
1093
1099
|
|
|
1094
|
-
-
|
|
1100
|
+
- f49382c: Updates metadata pages and adds initial version of process-list page
|
|
1095
1101
|
|
|
1096
1102
|
## 0.2.1
|
|
1097
1103
|
|
|
1098
1104
|
### Patch Changes
|
|
1099
1105
|
|
|
1100
|
-
-
|
|
1106
|
+
- 3533525: Updated TS-Config to improve developer experience
|
|
1101
1107
|
|
|
1102
1108
|
## 0.2.0
|
|
1103
1109
|
|
|
1104
1110
|
### Minor Changes
|
|
1105
1111
|
|
|
1106
|
-
-
|
|
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
|
|
1107
1113
|
|
|
1108
1114
|
## 0.1.2
|
|
1109
1115
|
|
|
1110
1116
|
### Patch Changes
|
|
1111
1117
|
|
|
1112
|
-
-
|
|
1118
|
+
- 0cef169: Splitted WFO in separate packages
|
|
1113
1119
|
|
|
1114
1120
|
## 0.1.1
|
|
1115
1121
|
|
|
1116
1122
|
### Patch Changes
|
|
1117
1123
|
|
|
1118
|
-
-
|
|
1124
|
+
- Converted tsconfig and eslint to standalone NPM package
|
|
1119
1125
|
|
|
1120
1126
|
## 0.1.0
|
|
1121
1127
|
|
|
1122
1128
|
### Minor Changes
|
|
1123
1129
|
|
|
1124
|
-
-
|
|
1130
|
+
- c597fc5: Switched to tsup build in turborepo
|