@operato/flow 9.0.0 → 9.0.2

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.
Files changed (113) hide show
  1. package/CHANGELOG.md +17 -0
  2. package/dist/src/api/tasks.d.ts +7 -0
  3. package/dist/src/api/tasks.js +2517 -0
  4. package/dist/src/api/tasks.js.map +1 -0
  5. package/dist/src/base/anchor-instance.d.ts +30 -0
  6. package/dist/src/base/anchor-instance.js +82 -0
  7. package/dist/src/base/anchor-instance.js.map +1 -0
  8. package/dist/src/base/flow-edge-instance.d.ts +31 -0
  9. package/dist/src/base/flow-edge-instance.js +170 -0
  10. package/dist/src/base/flow-edge-instance.js.map +1 -0
  11. package/dist/src/base/flow-node-abstract.d.ts +49 -0
  12. package/dist/src/base/flow-node-abstract.js +199 -0
  13. package/dist/src/base/flow-node-abstract.js.map +1 -0
  14. package/dist/src/components/flow-debug-panel.d.ts +22 -0
  15. package/dist/src/components/flow-debug-panel.js +156 -0
  16. package/dist/src/components/flow-debug-panel.js.map +1 -0
  17. package/dist/src/components/flow-executor.d.ts +29 -0
  18. package/dist/src/components/flow-executor.js +88 -0
  19. package/dist/src/components/flow-executor.js.map +1 -0
  20. package/dist/src/components/flow-options-builder.d.ts +18 -0
  21. package/dist/src/components/flow-options-builder.js +145 -0
  22. package/dist/src/components/flow-options-builder.js.map +1 -0
  23. package/dist/src/components/flow-properties-panel.d.ts +22 -0
  24. package/dist/src/components/flow-properties-panel.js +232 -0
  25. package/dist/src/components/flow-properties-panel.js.map +1 -0
  26. package/dist/src/components/flow-side-panel.d.ts +9 -0
  27. package/dist/src/components/flow-side-panel.js +83 -0
  28. package/dist/src/components/flow-side-panel.js.map +1 -0
  29. package/dist/src/components/flow-sidebar.d.ts +7 -0
  30. package/dist/src/components/flow-sidebar.js +84 -0
  31. package/dist/src/components/flow-sidebar.js.map +1 -0
  32. package/dist/src/components/flow-toolbar.d.ts +15 -0
  33. package/dist/src/components/flow-toolbar.js +161 -0
  34. package/dist/src/components/flow-toolbar.js.map +1 -0
  35. package/dist/src/components/property-editor.d.ts +35 -0
  36. package/dist/src/components/property-editor.js +78 -0
  37. package/dist/src/components/property-editor.js.map +1 -0
  38. package/dist/src/components/property-panel/data-mapper-popup.d.ts +11 -0
  39. package/dist/src/components/property-panel/data-mapper-popup.js +86 -0
  40. package/dist/src/components/property-panel/data-mapper-popup.js.map +1 -0
  41. package/dist/src/components/property-panel/task-selection-popup.d.ts +10 -0
  42. package/dist/src/components/property-panel/task-selection-popup.js +106 -0
  43. package/dist/src/components/property-panel/task-selection-popup.js.map +1 -0
  44. package/dist/src/context/flow-context.d.ts +21 -0
  45. package/dist/src/context/flow-context.js +3 -0
  46. package/dist/src/context/flow-context.js.map +1 -0
  47. package/dist/src/context/flow-debug-context.d.ts +16 -0
  48. package/dist/src/context/flow-debug-context.js +3 -0
  49. package/dist/src/context/flow-debug-context.js.map +1 -0
  50. package/dist/src/context/flow-edit-context.d.ts +11 -0
  51. package/dist/src/context/flow-edit-context.js +3 -0
  52. package/dist/src/context/flow-edit-context.js.map +1 -0
  53. package/dist/src/handlers/dnd-event-handler.d.ts +9 -0
  54. package/dist/src/handlers/dnd-event-handler.js +41 -0
  55. package/dist/src/handlers/dnd-event-handler.js.map +1 -0
  56. package/dist/src/handlers/flow-event-handler.d.ts +20 -0
  57. package/dist/src/handlers/flow-event-handler.js +75 -0
  58. package/dist/src/handlers/flow-event-handler.js.map +1 -0
  59. package/dist/src/handlers/keydown-event-handler.d.ts +6 -0
  60. package/dist/src/handlers/keydown-event-handler.js +24 -0
  61. package/dist/src/handlers/keydown-event-handler.js.map +1 -0
  62. package/dist/src/handlers/pointer-event-handler.d.ts +9 -0
  63. package/dist/src/handlers/pointer-event-handler.js +118 -0
  64. package/dist/src/handlers/pointer-event-handler.js.map +1 -0
  65. package/dist/src/index.d.ts +2 -0
  66. package/dist/src/index.js +3 -0
  67. package/dist/src/index.js.map +1 -0
  68. package/dist/src/nodes/decision.d.ts +16 -0
  69. package/dist/src/nodes/decision.js +43 -0
  70. package/dist/src/nodes/decision.js.map +1 -0
  71. package/dist/src/nodes/end-event.d.ts +14 -0
  72. package/dist/src/nodes/end-event.js +47 -0
  73. package/dist/src/nodes/end-event.js.map +1 -0
  74. package/dist/src/nodes/index.d.ts +5 -0
  75. package/dist/src/nodes/index.js +19 -0
  76. package/dist/src/nodes/index.js.map +1 -0
  77. package/dist/src/nodes/intermediate-event.d.ts +14 -0
  78. package/dist/src/nodes/intermediate-event.js +52 -0
  79. package/dist/src/nodes/intermediate-event.js.map +1 -0
  80. package/dist/src/nodes/iterator.d.ts +12 -0
  81. package/dist/src/nodes/iterator.js +29 -0
  82. package/dist/src/nodes/iterator.js.map +1 -0
  83. package/dist/src/nodes/select.d.ts +17 -0
  84. package/dist/src/nodes/select.js +71 -0
  85. package/dist/src/nodes/select.js.map +1 -0
  86. package/dist/src/nodes/start-event.d.ts +15 -0
  87. package/dist/src/nodes/start-event.js +46 -0
  88. package/dist/src/nodes/start-event.js.map +1 -0
  89. package/dist/src/nodes/subflow.d.ts +12 -0
  90. package/dist/src/nodes/subflow.js +30 -0
  91. package/dist/src/nodes/subflow.js.map +1 -0
  92. package/dist/src/nodes/task.d.ts +17 -0
  93. package/dist/src/nodes/task.js +60 -0
  94. package/dist/src/nodes/task.js.map +1 -0
  95. package/dist/src/ox-flow-editor.d.ts +94 -0
  96. package/dist/src/ox-flow-editor.js +426 -0
  97. package/dist/src/ox-flow-editor.js.map +1 -0
  98. package/dist/src/ox-flow-monitor.d.ts +24 -0
  99. package/dist/src/ox-flow-monitor.js +117 -0
  100. package/dist/src/ox-flow-monitor.js.map +1 -0
  101. package/dist/src/property-editors/ox-input-anchors.d.ts +12 -0
  102. package/dist/src/property-editors/ox-input-anchors.js +163 -0
  103. package/dist/src/property-editors/ox-input-anchors.js.map +1 -0
  104. package/dist/src/property-editors/ox-property-editor-anchors.d.ts +6 -0
  105. package/dist/src/property-editors/ox-property-editor-anchors.js +25 -0
  106. package/dist/src/property-editors/ox-property-editor-anchors.js.map +1 -0
  107. package/dist/src/types.d.ts +97 -0
  108. package/dist/src/types.js +2 -0
  109. package/dist/src/types.js.map +1 -0
  110. package/dist/src/utils/generate-mapping-scheme.d.ts +6 -0
  111. package/dist/src/utils/generate-mapping-scheme.js +50 -0
  112. package/dist/src/utils/generate-mapping-scheme.js.map +1 -0
  113. package/package.json +8 -8
package/CHANGELOG.md CHANGED
@@ -3,6 +3,23 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ### [9.0.2](https://github.com/hatiolab/operato/compare/v9.0.1...v9.0.2) (2025-07-01)
7
+
8
+
9
+ ### :bug: Bug Fix
10
+
11
+ * invalid package configuration ([ccde20b](https://github.com/hatiolab/operato/commit/ccde20b75e6cbd1f881e5bac631e361aebfd21c3))
12
+
13
+
14
+
15
+ ### [9.0.1](https://github.com/hatiolab/operato/compare/v9.0.0...v9.0.1) (2025-07-01)
16
+
17
+ **Note:** Version bump only for package @operato/flow
18
+
19
+
20
+
21
+
22
+
6
23
  ## [9.0.0](https://github.com/hatiolab/operato/compare/v9.0.0-beta.92...v9.0.0) (2025-06-30)
7
24
 
8
25
  **Note:** Version bump only for package @operato/flow
@@ -0,0 +1,7 @@
1
+ import { TaskType } from '../types';
2
+ export declare const TaskTypes: TaskType[];
3
+ export declare const BaseTasks: TaskType[];
4
+ export declare const ControlFlowTasks: TaskType[];
5
+ export declare const TaskGroups: {
6
+ [group: string]: TaskType[];
7
+ };