@knime/hub-features 1.15.10 → 1.16.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,19 @@
|
|
|
1
1
|
# @knime/hub-features
|
|
2
2
|
|
|
3
|
+
## 1.16.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- f2d266c: Updated node version range for support for node 22 - 24
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies [f2d266c]
|
|
12
|
+
- Updated dependencies [f2d266c]
|
|
13
|
+
- @knime/components@1.43.0
|
|
14
|
+
- @knime/utils@1.8.0
|
|
15
|
+
- @knime/styles@1.15.0
|
|
16
|
+
|
|
3
17
|
## 1.15.10
|
|
4
18
|
|
|
5
19
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@knime/hub-features",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.16.0",
|
|
4
4
|
"description": "Vue components & composables for shared hub features",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -36,9 +36,9 @@
|
|
|
36
36
|
"lodash-es": "4.17.21",
|
|
37
37
|
"ofetch": "^1.4.1",
|
|
38
38
|
"typescript": "^5.8.3",
|
|
39
|
-
"@knime/components": "1.
|
|
40
|
-
"@knime/styles": "1.
|
|
41
|
-
"@knime/utils": "1.
|
|
39
|
+
"@knime/components": "1.43.0",
|
|
40
|
+
"@knime/styles": "1.15.0",
|
|
41
|
+
"@knime/utils": "1.8.0"
|
|
42
42
|
},
|
|
43
43
|
"peerDependencies": {
|
|
44
44
|
"consola": "3.x",
|
|
@@ -48,10 +48,13 @@
|
|
|
48
48
|
"@vitejs/plugin-vue": "^6.0.1",
|
|
49
49
|
"@vue/test-utils": "2.4.6",
|
|
50
50
|
"consola": "3.4.2",
|
|
51
|
-
"vite": "7.
|
|
51
|
+
"vite": "^7.2.2",
|
|
52
52
|
"vite-svg-loader": "5.1.0",
|
|
53
53
|
"vue-tsc": "3.0.4"
|
|
54
54
|
},
|
|
55
|
+
"engines": {
|
|
56
|
+
"node": ">=22 <25"
|
|
57
|
+
},
|
|
55
58
|
"scripts": {
|
|
56
59
|
"type-check": "vue-tsc --noEmit -p tsconfig.vitest.json --composite false",
|
|
57
60
|
"test:unit": "TZ='Europe/Berlin' vitest"
|
|
@@ -216,12 +216,12 @@ onMounted(() => {
|
|
|
216
216
|
position: initial;
|
|
217
217
|
}
|
|
218
218
|
|
|
219
|
-
|
|
220
|
-
|
|
219
|
+
.headline,
|
|
220
|
+
.panel {
|
|
221
221
|
line-height: 1.5;
|
|
222
222
|
}
|
|
223
223
|
|
|
224
|
-
|
|
224
|
+
.headline {
|
|
225
225
|
padding-right: 18px;
|
|
226
226
|
margin: 0;
|
|
227
227
|
margin: 0 0 var(--space-8);
|
|
@@ -229,7 +229,7 @@ onMounted(() => {
|
|
|
229
229
|
font-weight: 700;
|
|
230
230
|
}
|
|
231
231
|
|
|
232
|
-
|
|
232
|
+
.panel {
|
|
233
233
|
& .description {
|
|
234
234
|
margin-bottom: var(--space-6);
|
|
235
235
|
}
|