@kestra-io/ui-libs 0.0.49 → 0.0.50

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kestra-io/ui-libs",
3
- "version": "v0.0.49",
3
+ "version": "v0.0.50",
4
4
  "type": "module",
5
5
  "files": [
6
6
  "src",
@@ -282,7 +282,10 @@
282
282
  }
283
283
 
284
284
  const expand = (expandData) => {
285
- const taskTypesWithSubflows = ["io.kestra.core.tasks.flows.Flow", "io.kestra.core.tasks.flows.Subflow", "io.kestra.core.tasks.flows.ForEachItem$ForEachItemExecutable"];
285
+ const taskTypesWithSubflows = [
286
+ "io.kestra.core.tasks.flows.Flow", "io.kestra.core.tasks.flows.Subflow", "io.kestra.plugin.core.flow.Subflow",
287
+ "io.kestra.core.tasks.flows.ForEachItem$ForEachItemExecutable", "io.kestra.plugin.core.flow.ForEachItem$ForEachItemExecutable"
288
+ ];
286
289
  if (taskTypesWithSubflows.includes(expandData.type) && !props.expandedSubflows.includes(expandData.id)) {
287
290
  forwardEvent("expand-subflow", [...props.expandedSubflows, expandData.id]);
288
291
  return;