@knime/hub-features 1.2.7 → 1.2.9

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.9
4
+
5
+ ### Patch Changes
6
+
7
+ - 8cf8803: Correcting type import path for Toast
8
+
9
+ ## 1.2.8
10
+
11
+ ### Patch Changes
12
+
13
+ - Updated dependencies
14
+ - @knime/components@1.15.6
15
+
3
16
  ## 1.2.7
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.7",
3
+ "version": "1.2.9",
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,8 +27,8 @@
27
27
  "consola": "3.2.3",
28
28
  "ofetch": "^1.4.1",
29
29
  "typescript": "^5.4.5",
30
- "@knime/components": "1.15.5",
31
30
  "@knime/styles": "1.2.0",
31
+ "@knime/components": "1.15.6",
32
32
  "@knime/utils": "1.2.4"
33
33
  },
34
34
  "peerDependencies": {
@@ -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";