Skip to content

Commit

Permalink
feat(zeebe): mark FEEL expressions
Browse files Browse the repository at this point in the history
closes #599
  • Loading branch information
marstamm committed Mar 15, 2022
1 parent 32789fd commit 4629485
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/provider/zeebe/properties/AssignmentDefinitionProps.js
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,7 @@ function Assignee(props) {
element,
id: 'assignmentDefinitionAssignee',
label: translate('Assignee'),
feel: 'optional',
getValue,
setValue,
debounce
Expand Down Expand Up @@ -208,6 +209,7 @@ function CandidateGroups(props) {
element,
id: 'assignmentDefinitionCandidateGroups',
label: translate('Candidate groups'),
feel: 'optional',
getValue,
setValue,
debounce
Expand Down
1 change: 1 addition & 0 deletions src/provider/zeebe/properties/ConditionProps.js
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,7 @@ function ConditionExpression(props) {
element,
id: 'conditionExpression',
label: translate('Condition expression'),
feel: 'required',
getValue,
setValue,
debounce
Expand Down
1 change: 1 addition & 0 deletions src/provider/zeebe/properties/InputOutputParameter.js
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,7 @@ function SourceProperty(props) {
element: parameter,
id: idPrefix + '-source',
label: translate('Variable assignment value'),
feel: 'required',
getValue,
setValue,
debounce
Expand Down
3 changes: 3 additions & 0 deletions src/provider/zeebe/properties/MultiInstanceProps.js
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@ function InputCollection(props) {
element,
id: 'multiInstance-inputCollection',
label: translate('Input collection'),
feel: 'required',
getValue,
setValue,
debounce
Expand Down Expand Up @@ -161,6 +162,7 @@ function OutputElement(props) {
element,
id: 'multiInstance-outputElement',
label: translate('Output element'),
feel: 'required',
getValue,
setValue,
debounce
Expand Down Expand Up @@ -201,6 +203,7 @@ function CompletionCondition(props) {
element,
id: 'multiInstance-completionCondition',
label: translate('Completion condition'),
feel: 'optional',
getValue,
setValue,
debounce
Expand Down
1 change: 1 addition & 0 deletions src/provider/zeebe/properties/TargetProps.js
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,7 @@ function TargetProcessId(props) {
element,
id: 'targetProcessId',
label: translate('Process ID'),
feel: 'optional',
getValue,
setValue,
debounce
Expand Down
2 changes: 2 additions & 0 deletions src/provider/zeebe/properties/TaskDefinitionProps.js
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,7 @@ function TaskDefinitionType(props) {
element,
id: 'taskDefinitionType',
label: translate('Type'),
feel: 'optional',
getValue,
setValue,
debounce
Expand Down Expand Up @@ -211,6 +212,7 @@ function TaskDefinitionRetries(props) {
element,
id: 'taskDefinitionRetries',
label: translate('Retries'),
feel: 'optional',
getValue,
setValue,
debounce
Expand Down
2 changes: 2 additions & 0 deletions src/provider/zeebe/properties/TimerProps.js
Original file line number Diff line number Diff line change
Expand Up @@ -205,6 +205,7 @@ function TimerEventDefinitionValue(props) {
element,
id: 'timerEventDefinitionValue',
label: translate('Value'),
feel: 'optional',
getValue,
setValue,
debounce,
Expand Down Expand Up @@ -285,6 +286,7 @@ function TimerEventDefinitionDurationValue(props) {
element,
id: 'timerEventDefinitionDurationValue',
label: translate('Timer duration'),
feel: 'optional',
getValue,
setValue,
debounce,
Expand Down

0 comments on commit 4629485

Please sign in to comment.