@knime/hub-features 1.6.5 → 1.6.7
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/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @knime/hub-features
|
|
2
2
|
|
|
3
|
+
## 1.6.7
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [2d42337]
|
|
8
|
+
- @knime/components@1.25.0
|
|
9
|
+
|
|
10
|
+
## 1.6.6
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- Updated dependencies [6e1501f]
|
|
15
|
+
- @knime/styles@1.4.0
|
|
16
|
+
- @knime/components@1.24.2
|
|
17
|
+
- @knime/utils@1.3.3
|
|
18
|
+
|
|
3
19
|
## 1.6.5
|
|
4
20
|
|
|
5
21
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@knime/hub-features",
|
|
3
|
-
"version": "1.6.
|
|
3
|
+
"version": "1.6.7",
|
|
4
4
|
"description": "Vue components & composables for shared hub features",
|
|
5
5
|
"homepage": "https://knime.github.io/webapps-common/",
|
|
6
6
|
"license": "GPL 3 and Additional Permissions according to Sec. 7 (SEE the file LICENSE)",
|
|
@@ -31,9 +31,9 @@
|
|
|
31
31
|
"lodash-es": "4.17.21",
|
|
32
32
|
"ofetch": "^1.4.1",
|
|
33
33
|
"typescript": "^5.4.5",
|
|
34
|
-
"@knime/components": "1.
|
|
35
|
-
"@knime/styles": "1.
|
|
36
|
-
"@knime/utils": "1.3.
|
|
34
|
+
"@knime/components": "1.25.0",
|
|
35
|
+
"@knime/styles": "1.4.0",
|
|
36
|
+
"@knime/utils": "1.3.3"
|
|
37
37
|
},
|
|
38
38
|
"peerDependencies": {
|
|
39
39
|
"consola": "3.x",
|
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
"@vitejs/plugin-vue": "^5.1.4",
|
|
44
44
|
"@vue/test-utils": "2.4.6",
|
|
45
45
|
"consola": "3.2.3",
|
|
46
|
-
"vite": "5.4.
|
|
46
|
+
"vite": "5.4.17",
|
|
47
47
|
"vite-svg-loader": "5.1.0",
|
|
48
48
|
"vue-tsc": "2.2.0"
|
|
49
49
|
},
|
|
@@ -42,6 +42,7 @@ const labelsEventBus = useEventBus("versionLabels");
|
|
|
42
42
|
|
|
43
43
|
const closeLabelPopovers = throttle(() => {
|
|
44
44
|
labelsEventBus.emit("versionLabelShowPopover");
|
|
45
|
+
// eslint-disable-next-line no-magic-numbers
|
|
45
46
|
}, 10000); // Arbitrary delay to reduce overhead, is automatically reset @scrollend
|
|
46
47
|
</script>
|
|
47
48
|
|
|
@@ -277,6 +277,7 @@ export const useFileUpload = (options: UseFileUploadOptions = {}) => {
|
|
|
277
277
|
const uploadPayload = await promise.retryPromise({
|
|
278
278
|
fn: () => prepareUpload(parentId, enqueableFiles),
|
|
279
279
|
excludeError: (error: FetchError) =>
|
|
280
|
+
// eslint-disable-next-line no-magic-numbers
|
|
280
281
|
Boolean(error.statusCode && error.statusCode < 500),
|
|
281
282
|
retryDelayMS: DEFAULT_RETRY_DELAY_MS,
|
|
282
283
|
});
|