WIP: feat: delete ports #4
@@ -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"),
|
||||
),
|
||||
]
|
||||
)
|
||||
|
||||
@@ -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"),
|
||||
),
|
||||
]
|
||||
)
|
||||
|
||||
@@ -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"),
|
||||
),
|
||||
]
|
||||
)
|
||||
|
||||
@@ -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"),
|
||||
),
|
||||
]
|
||||
)
|
||||
|
||||
@@ -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"),
|
||||
),
|
||||
]
|
||||
)
|
||||
|
||||
@@ -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"),
|
||||
),
|
||||
]
|
||||
)
|
||||
|
||||
@@ -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"),
|
||||
),
|
||||
]
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user