@knime/hub-features 1.11.8 → 1.12.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/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,28 @@
|
|
|
1
1
|
# @knime/hub-features
|
|
2
2
|
|
|
3
|
+
## 1.12.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 0df972d: Dependency updates. Mostly relevant:
|
|
8
|
+
|
|
9
|
+
- vite, vitest (and coverage reporter), vite-plugin-vue, vue-tsc
|
|
10
|
+
- tiptap
|
|
11
|
+
- vueuse/core
|
|
12
|
+
|
|
13
|
+
Other improvements:
|
|
14
|
+
|
|
15
|
+
- Updated license-checker to allow for Open Font License (OFL)
|
|
16
|
+
- Updated svgo.config.d.ts to fix detection of svg config when supplying it to the vite-svg-loader plugin in vite.config files
|
|
17
|
+
- Remove usages of interface in favor of type, when used in .vue; interfaces create multiple type issues when inferring props, etc which are likely caused by the declaration merging feature of interfaces.
|
|
18
|
+
|
|
19
|
+
### Patch Changes
|
|
20
|
+
|
|
21
|
+
- Updated dependencies [0df972d]
|
|
22
|
+
- @knime/components@1.34.0
|
|
23
|
+
- @knime/styles@1.11.0
|
|
24
|
+
- @knime/utils@1.5.4
|
|
25
|
+
|
|
3
26
|
## 1.11.8
|
|
4
27
|
|
|
5
28
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@knime/hub-features",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.12.0",
|
|
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)",
|
|
@@ -24,28 +24,28 @@
|
|
|
24
24
|
}
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"@floating-ui/vue": "1.1.
|
|
28
|
-
"@vueuse/components": "~
|
|
29
|
-
"@vueuse/core": "~
|
|
30
|
-
"@vueuse/shared": "~
|
|
27
|
+
"@floating-ui/vue": "1.1.8",
|
|
28
|
+
"@vueuse/components": "~13.6.0",
|
|
29
|
+
"@vueuse/core": "~13.6.0",
|
|
30
|
+
"@vueuse/shared": "~13.6.0",
|
|
31
31
|
"lodash-es": "4.17.21",
|
|
32
32
|
"ofetch": "^1.4.1",
|
|
33
|
-
"typescript": "^5.
|
|
34
|
-
"@knime/components": "1.
|
|
35
|
-
"@knime/
|
|
36
|
-
"@knime/
|
|
33
|
+
"typescript": "^5.8.3",
|
|
34
|
+
"@knime/components": "1.34.0",
|
|
35
|
+
"@knime/styles": "1.11.0",
|
|
36
|
+
"@knime/utils": "1.5.4"
|
|
37
37
|
},
|
|
38
38
|
"peerDependencies": {
|
|
39
39
|
"consola": "3.x",
|
|
40
40
|
"vue": ">=3.5.0"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
|
-
"@vitejs/plugin-vue": "^
|
|
43
|
+
"@vitejs/plugin-vue": "^6.0.1",
|
|
44
44
|
"@vue/test-utils": "2.4.6",
|
|
45
|
-
"consola": "3.2
|
|
46
|
-
"vite": "
|
|
45
|
+
"consola": "3.4.2",
|
|
46
|
+
"vite": "7.0.5",
|
|
47
47
|
"vite-svg-loader": "5.1.0",
|
|
48
|
-
"vue-tsc": "
|
|
48
|
+
"vue-tsc": "3.0.4"
|
|
49
49
|
},
|
|
50
50
|
"scripts": {
|
|
51
51
|
"type-check": "vue-tsc --noEmit -p tsconfig.vitest.json --composite false",
|
|
@@ -11,10 +11,10 @@ import Popover from "../Popover.vue";
|
|
|
11
11
|
|
|
12
12
|
import type { AssignedLabel } from "./types";
|
|
13
13
|
|
|
14
|
-
|
|
14
|
+
type PopoverElement = HTMLElement & {
|
|
15
15
|
closeMenu: () => void;
|
|
16
16
|
openMenu: () => void;
|
|
17
|
-
}
|
|
17
|
+
};
|
|
18
18
|
|
|
19
19
|
const LABEL_LENGTH = 25;
|
|
20
20
|
|