WIP: feat: delete ports #4

Draft
ivan.dev wants to merge 5 commits from VORKOUT-31 into main
7 changed files with 10 additions and 10 deletions
Showing only changes of commit 5aa14f5ae8 - Show all commits

View File

@@ -110,7 +110,7 @@ CALLBACK_FORM_DESCRIPTOR = FormDescriptor(
name="then_row",
type="row",
label="Then",
link_port=LinkPort(id="then_output", label="Then"),
link_port=LinkPort(id=0, label="Then"),
),
]
)

View File

@@ -43,7 +43,7 @@ EACH_FORM_DESCRIPTOR = FormDescriptor(
name="list_row",
type="row",
label="List",
link_port=LinkPort(id="then_output", label="Then"),
link_port=LinkPort(id=0, label="Then"),
elements=[
LineElement(
name="list",
@@ -57,7 +57,7 @@ EACH_FORM_DESCRIPTOR = FormDescriptor(
name="else_row",
type="row",
label="Alternative path",
link_port=LinkPort(id="else_output", label="Else"),
link_port=LinkPort(id=1, label="Else"),
),
]
)

View File

@@ -71,7 +71,7 @@ RUN_FORM_DESCRIPTOR = FormDescriptor(
name="then_row",
type="row",
label="Then",
link_port=LinkPort(id="then_output", label="Then"),
link_port=LinkPort(id=0, label="Then"),
),
]
)

View File

@@ -44,7 +44,7 @@ SWITCH_FORM_DESCRIPTOR = FormDescriptor(
name="switch_row",
type="row",
label="Switch condition",
link_port=LinkPort(id="case_1_output", label="case_1", is_addable=True),
link_port=LinkPort(id=0, label="case_1", is_addable=True),
elements=[
AreaElement(
name="switch_value",
@@ -58,7 +58,7 @@ SWITCH_FORM_DESCRIPTOR = FormDescriptor(
name="default_row",
type="row",
label="Default",
link_port=LinkPort(id="default_output", label="default"),
link_port=LinkPort(id=0, label="default"),
),
]
)

View File

@@ -70,7 +70,7 @@ TRIGGER_FORM_DESCRIPTOR = FormDescriptor(
name="then_row",
type="row",
label="Then",
link_port=LinkPort(id="then_output", label="Then"),
link_port=LinkPort(id=0, label="Then"),
),
]
)

View File

@@ -84,7 +84,7 @@ WAIT_FORM_DESCRIPTOR = FormDescriptor(
name="then_row",
type="row",
label="Transition",
link_port=LinkPort(id="then_output", label="then"),
link_port=LinkPort(id=0, label="then"),
),
]
)

View File

@@ -44,7 +44,7 @@ WHILE_FORM_DESCRIPTOR = FormDescriptor(
name="condition_row",
type="row",
label="Parameter",
link_port=LinkPort(id="then_output", label="Then"),
link_port=LinkPort(id=0, label="Then"),
elements=[
AreaElement(
name="condition",
@@ -58,7 +58,7 @@ WHILE_FORM_DESCRIPTOR = FormDescriptor(
name="else_row",
type="row",
label="Alternative path",
link_port=LinkPort(id="else_output", label="Else"),
link_port=LinkPort(id=0, label="Else"),
),
]
)