@knime/hub-features 1.11.8 → 1.12.1

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,35 @@
1
1
  # @knime/hub-features
2
2
 
3
+ ## 1.12.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [6887f7b]
8
+ - @knime/components@1.34.1
9
+
10
+ ## 1.12.0
11
+
12
+ ### Minor Changes
13
+
14
+ - 0df972d: Dependency updates. Mostly relevant:
15
+
16
+ - vite, vitest (and coverage reporter), vite-plugin-vue, vue-tsc
17
+ - tiptap
18
+ - vueuse/core
19
+
20
+ Other improvements:
21
+
22
+ - Updated license-checker to allow for Open Font License (OFL)
23
+ - Updated svgo.config.d.ts to fix detection of svg config when supplying it to the vite-svg-loader plugin in vite.config files
24
+ - 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.
25
+
26
+ ### Patch Changes
27
+
28
+ - Updated dependencies [0df972d]
29
+ - @knime/components@1.34.0
30
+ - @knime/styles@1.11.0
31
+ - @knime/utils@1.5.4
32
+
3
33
  ## 1.11.8
4
34
 
5
35
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@knime/hub-features",
3
- "version": "1.11.8",
3
+ "version": "1.12.1",
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.5",
28
- "@vueuse/components": "~10.11.1",
29
- "@vueuse/core": "~10.11.1",
30
- "@vueuse/shared": "~10.11.1",
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.4.5",
34
- "@knime/components": "1.33.2",
35
- "@knime/utils": "1.5.3",
36
- "@knime/styles": "1.10.0"
33
+ "typescript": "^5.8.3",
34
+ "@knime/styles": "1.11.0",
35
+ "@knime/utils": "1.5.4",
36
+ "@knime/components": "1.34.1"
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": "^5.2.3",
43
+ "@vitejs/plugin-vue": "^6.0.1",
44
44
  "@vue/test-utils": "2.4.6",
45
- "consola": "3.2.3",
46
- "vite": "5.4.17",
45
+ "consola": "3.4.2",
46
+ "vite": "7.0.5",
47
47
  "vite-svg-loader": "5.1.0",
48
- "vue-tsc": "2.2.0"
48
+ "vue-tsc": "3.0.4"
49
49
  },
50
50
  "scripts": {
51
51
  "type-check": "vue-tsc --noEmit -p tsconfig.vitest.json --composite false",
@@ -128,7 +128,7 @@ const onMenuItemClick = (_: Event, item: (typeof menuItems.value)[number]) => {
128
128
  flex-direction: column;
129
129
  gap: 3px;
130
130
  overflow-wrap: anywhere;
131
- word-break: break-word;
131
+ word-break: normal;
132
132
 
133
133
  & h6 {
134
134
  display: flex;
@@ -11,10 +11,10 @@ import Popover from "../Popover.vue";
11
11
 
12
12
  import type { AssignedLabel } from "./types";
13
13
 
14
- interface PopoverElement extends HTMLElement {
14
+ type PopoverElement = HTMLElement & {
15
15
  closeMenu: () => void;
16
16
  openMenu: () => void;
17
- }
17
+ };
18
18
 
19
19
  const LABEL_LENGTH = 25;
20
20
 
@@ -171,8 +171,8 @@ const onLabelLeave = () => {
171
171
  display: flex;
172
172
  flex-direction: column;
173
173
  gap: 3px;
174
- overflow-wrap: anywhere;
175
- word-break: break-word;
174
+ overflow-wrap: break-word;
175
+ word-break: normal;
176
176
 
177
177
  & h6 {
178
178
  display: block;