feat(editor): block UI in NDV when workflow is listening to events (#4390)

* feature: block UI in NDV when workflow is listening to events

* feature: hide stop listening button in parameters pane and show stop listening button in input pane for webhook

* feature: create block UI design system component

* fix: add back accidentally removed prop

* fix(editor): extend node settings event listener button functionality

* refactor(editor): using composition API in BlockUi component
This commit is contained in:
Csaba Tuncsik
2022-10-31 18:59:53 +01:00
committed by GitHub
parent 7563d450f9
commit 6c2c621f1d
12 changed files with 151 additions and 19 deletions

View File

@@ -10,6 +10,7 @@
:executingMessage="$locale.baseText('ndv.output.executing')"
:sessionId="sessionId"
:isReadOnly="isReadOnly"
:blockUI="blockUI"
paneType="output"
@runChange="onRunIndexChange"
@linkRun="onLinkRun"
@@ -109,6 +110,10 @@ export default mixins(
sessionId: {
type: String,
},
blockUI: {
type: Boolean,
default: false,
},
},
computed: {
node(): INodeUi {