@knime/hub-features 1.2.8 → 1.2.10

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,18 @@
1
1
  # @knime/hub-features
2
2
 
3
+ ## 1.2.10
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [de31f24]
8
+ - @knime/components@1.16.0
9
+
10
+ ## 1.2.9
11
+
12
+ ### Patch Changes
13
+
14
+ - 8cf8803: Correcting type import path for Toast
15
+
3
16
  ## 1.2.8
4
17
 
5
18
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@knime/hub-features",
3
- "version": "1.2.8",
3
+ "version": "1.2.10",
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)",
@@ -27,7 +27,7 @@
27
27
  "consola": "3.2.3",
28
28
  "ofetch": "^1.4.1",
29
29
  "typescript": "^5.4.5",
30
- "@knime/components": "1.15.6",
30
+ "@knime/components": "1.16.0",
31
31
  "@knime/styles": "1.2.0",
32
32
  "@knime/utils": "1.2.4"
33
33
  },
@@ -1,6 +1,7 @@
1
1
  import { h } from "vue";
2
2
  import { FetchError } from "ofetch";
3
- import type { Toast } from "packages/components/src";
3
+
4
+ import type { Toast } from "@knime/components";
4
5
 
5
6
  import RFCErrorToastTemplate from "./RFCErrorToastTemplate.vue";
6
7
  import { RFCError, type RFCErrorData } from "./types";