@knime/hub-features 1.24.2 → 1.24.3
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,12 @@
|
|
|
1
1
|
# @knime/hub-features
|
|
2
2
|
|
|
3
|
+
## 1.24.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 7d53d49: Add events: node created via datafile drag-drop and via floating canvas actions
|
|
8
|
+
Adjust event: add direction for quick-action-menu (QAM) related events
|
|
9
|
+
|
|
3
10
|
## 1.24.2
|
|
4
11
|
|
|
5
12
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@knime/hub-features",
|
|
3
|
-
"version": "1.24.
|
|
3
|
+
"version": "1.24.3",
|
|
4
4
|
"description": "Vue components & composables for shared hub features",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -40,8 +40,8 @@
|
|
|
40
40
|
"ofetch": "^1.4.1",
|
|
41
41
|
"typescript": "^5.9.3",
|
|
42
42
|
"@knime/components": "1.46.0",
|
|
43
|
-
"@knime/
|
|
44
|
-
"@knime/
|
|
43
|
+
"@knime/utils": "1.10.1",
|
|
44
|
+
"@knime/styles": "1.15.0"
|
|
45
45
|
},
|
|
46
46
|
"peerDependencies": {
|
|
47
47
|
"consola": "3.x",
|
|
@@ -76,6 +76,8 @@ export interface AnalyticsEventSchema {
|
|
|
76
76
|
noderepo_dragdrop_: NodeCreated_Base;
|
|
77
77
|
noderepo_doubleclick_: NodeCreated_WithOptionalConnectedTo;
|
|
78
78
|
noderepo_keyboard_enter: NodeCreated_WithOptionalConnectedTo;
|
|
79
|
+
canvas_dragdrop_datafile: NodeCreated_Base;
|
|
80
|
+
floatingcanvastools_button_addnodebyfile: NodeCreated_Base;
|
|
79
81
|
explorer_dragdrop_: NodeCreated_Base;
|
|
80
82
|
qam_click_: NodeCreated_WithOptionalConnectedToPorts;
|
|
81
83
|
qam_keyboard_enter: NodeCreated_WithOptionalConnectedToPorts;
|
|
@@ -161,6 +163,7 @@ export interface ConnectedTo_WithPorts {
|
|
|
161
163
|
nodeFactoryId: string;
|
|
162
164
|
nodePortIndex?: number;
|
|
163
165
|
nodePortId?: string;
|
|
166
|
+
direction: "forward" | "backward";
|
|
164
167
|
}
|
|
165
168
|
export interface QAMOpened_Payload {
|
|
166
169
|
connectedTo: ConnectedTo_WithPorts;
|
|
@@ -233,6 +233,8 @@
|
|
|
233
233
|
"noderepo_dragdrop_",
|
|
234
234
|
"noderepo_doubleclick_",
|
|
235
235
|
"noderepo_keyboard_enter",
|
|
236
|
+
"canvas_dragdrop_datafile",
|
|
237
|
+
"floatingcanvastools_button_addnodebyfile",
|
|
236
238
|
"explorer_dragdrop_",
|
|
237
239
|
"qam_click_",
|
|
238
240
|
"qam_keyboard_enter",
|
|
@@ -249,6 +251,12 @@
|
|
|
249
251
|
"noderepo_keyboard_enter": {
|
|
250
252
|
"$ref": "#/definitions/NodeCreated_WithOptionalConnectedTo"
|
|
251
253
|
},
|
|
254
|
+
"canvas_dragdrop_datafile": {
|
|
255
|
+
"$ref": "#/definitions/NodeCreated_Base"
|
|
256
|
+
},
|
|
257
|
+
"floatingcanvastools_button_addnodebyfile": {
|
|
258
|
+
"$ref": "#/definitions/NodeCreated_Base"
|
|
259
|
+
},
|
|
252
260
|
"explorer_dragdrop_": {
|
|
253
261
|
"$ref": "#/definitions/NodeCreated_Base"
|
|
254
262
|
},
|
|
@@ -523,7 +531,7 @@
|
|
|
523
531
|
"ConnectedTo_WithPorts": {
|
|
524
532
|
"type": "object",
|
|
525
533
|
"additionalProperties": false,
|
|
526
|
-
"required": ["nodeType", "nodeFactoryId"],
|
|
534
|
+
"required": ["nodeType", "nodeFactoryId", "direction"],
|
|
527
535
|
"properties": {
|
|
528
536
|
"nodeType": {
|
|
529
537
|
"type": "string",
|
|
@@ -537,6 +545,10 @@
|
|
|
537
545
|
},
|
|
538
546
|
"nodePortId": {
|
|
539
547
|
"type": "string"
|
|
548
|
+
},
|
|
549
|
+
"direction": {
|
|
550
|
+
"type": "string",
|
|
551
|
+
"enum": ["forward", "backward"]
|
|
540
552
|
}
|
|
541
553
|
}
|
|
542
554
|
},
|