@knime/hub-features 1.30.0 → 1.31.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 +11 -0
- package/package.json +3 -3
- package/src/analytics/schema/editor-event-functions.ts +751 -0
- package/src/analytics/schema/schema.d.ts +378 -0
- package/src/analytics/schema/schema.json +2172 -119
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# @knime/hub-features
|
|
2
2
|
|
|
3
|
+
## 1.31.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- fb53b9c: Add execution related events
|
|
8
|
+
|
|
9
|
+
- Executing/Cancelling/Resetting all nodes
|
|
10
|
+
- Executing/Cancelling/Resetting selected nodes
|
|
11
|
+
- Loop execution
|
|
12
|
+
- Node configuration apply & execute
|
|
13
|
+
|
|
3
14
|
## 1.30.0
|
|
4
15
|
|
|
5
16
|
### Minor Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@knime/hub-features",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.31.0",
|
|
4
4
|
"description": "Vue components & composables for shared hub features",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -39,9 +39,9 @@
|
|
|
39
39
|
"lodash-es": "4.18.1",
|
|
40
40
|
"ofetch": "^1.4.1",
|
|
41
41
|
"typescript": "^5.9.3",
|
|
42
|
-
"@knime/
|
|
42
|
+
"@knime/components": "1.46.7",
|
|
43
43
|
"@knime/styles": "1.15.1",
|
|
44
|
-
"@knime/
|
|
44
|
+
"@knime/utils": "1.11.1"
|
|
45
45
|
},
|
|
46
46
|
"peerDependencies": {
|
|
47
47
|
"consola": "3.x",
|