@knime/hub-features 1.25.3 → 1.26.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,11 @@
1
1
  # @knime/hub-features
2
2
 
3
+ ## 1.26.0
4
+
5
+ ### Minor Changes
6
+
7
+ - eb41bf0: add schema for container enter/exit
8
+
3
9
  ## 1.25.3
4
10
 
5
11
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@knime/hub-features",
3
- "version": "1.25.3",
3
+ "version": "1.26.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/components": "1.46.4",
43
42
  "@knime/styles": "1.15.1",
44
- "@knime/utils": "1.11.0"
43
+ "@knime/utils": "1.11.0",
44
+ "@knime/components": "1.46.4"
45
45
  },
46
46
  "peerDependencies": {
47
47
  "consola": "3.x",
@@ -1,3 +1,4 @@
1
+ /* eslint-disable */
1
2
  /**
2
3
  * This file was automatically generated by json-schema-to-typescript.
3
4
  * DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
@@ -114,6 +115,15 @@ export interface AnalyticsEventSchema {
114
115
  version_created: {
115
116
  versionhistorypanel_button_: EmptyPayload;
116
117
  };
118
+ containernode_entered: {
119
+ component_doubleclick_ctrl: ContainerNodeNavigationPayload;
120
+ component_ctxmenu_: ContainerNodeNavigationPayload;
121
+ keyboard_shortcut_: ContainerNodeNavigationPayload;
122
+ };
123
+ containernode_exited: {
124
+ wftoolbar_button_workflow: ContainerNodeNavigationPayload;
125
+ keyboard_shortcut_: ContainerNodeNavigationPayload;
126
+ };
117
127
  };
118
128
  }
119
129
  export interface KaiPromptedPayload {
@@ -175,3 +185,7 @@ export interface SearchPayload {
175
185
  repoType: "node" | "component";
176
186
  keyword: string;
177
187
  }
188
+ export interface ContainerNodeNavigationPayload {
189
+ nodeType: "component" | "metanode";
190
+ nodeHubId?: string;
191
+ }
@@ -33,6 +33,8 @@
33
33
  "session_interrupted",
34
34
  "session_resumed",
35
35
  "containernode_created",
36
+ "containernode_entered",
37
+ "containernode_exited",
36
38
  "hint_shown",
37
39
  "hint_closed"
38
40
  ],
@@ -382,6 +384,39 @@
382
384
  "$ref": "#/definitions/EmptyPayload"
383
385
  }
384
386
  }
387
+ },
388
+ "containernode_entered": {
389
+ "type": "object",
390
+ "additionalProperties": false,
391
+ "required": [
392
+ "component_doubleclick_ctrl",
393
+ "component_ctxmenu_",
394
+ "keyboard_shortcut_"
395
+ ],
396
+ "properties": {
397
+ "component_doubleclick_ctrl": {
398
+ "$ref": "#/definitions/ContainerNodeNavigationPayload"
399
+ },
400
+ "component_ctxmenu_": {
401
+ "$ref": "#/definitions/ContainerNodeNavigationPayload"
402
+ },
403
+ "keyboard_shortcut_": {
404
+ "$ref": "#/definitions/ContainerNodeNavigationPayload"
405
+ }
406
+ }
407
+ },
408
+ "containernode_exited": {
409
+ "type": "object",
410
+ "additionalProperties": false,
411
+ "required": ["wftoolbar_button_workflow", "keyboard_shortcut_"],
412
+ "properties": {
413
+ "wftoolbar_button_workflow": {
414
+ "$ref": "#/definitions/ContainerNodeNavigationPayload"
415
+ },
416
+ "keyboard_shortcut_": {
417
+ "$ref": "#/definitions/ContainerNodeNavigationPayload"
418
+ }
419
+ }
385
420
  }
386
421
  }
387
422
  }
@@ -640,6 +675,20 @@
640
675
  "properties": {
641
676
  "hintId": { "type": "string" }
642
677
  }
678
+ },
679
+ "ContainerNodeNavigationPayload": {
680
+ "type": "object",
681
+ "additionalProperties": false,
682
+ "required": ["nodeType"],
683
+ "properties": {
684
+ "nodeType": {
685
+ "type": "string",
686
+ "enum": ["component", "metanode"]
687
+ },
688
+ "nodeHubId": {
689
+ "type": "string"
690
+ }
691
+ }
643
692
  }
644
693
  }
645
694
  }