Skip to content

Commit

Permalink
fix(element-templates): add allowed types
Browse files Browse the repository at this point in the history
  • Loading branch information
philippfromme committed Jan 27, 2025
1 parent 080d51b commit bc76f1b
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 30 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -358,21 +358,21 @@ Configures a generic BPMN element property.

#### `zeebe:input`

| **Binding `type`** | `zeebe:input` |
| --------------------------- | ----------------------------------------------------- |
| **Valid property `type`'s** | `String`<br /> `Text`<br />`Hidden`<br />`Dropdown` |
| **Binding parameters** | `name`: The name of the input parameter |
| **Mapping result** | `<zeebe:input target="[name]" source="[userInput] />` |
| **Binding `type`** | `zeebe:input` |
| --------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------- |
| **Valid property `type`'s** | `String`<br /> `Text`<br />`Hidden`<br />`Dropdown`<br />`Boolean`<br />`Number`<br />(`Boolean` and `Number` require `feel` to be `optional` or `static`) |
| **Binding parameters** | `name`: The name of the input parameter |
| **Mapping result** | `<zeebe:input target="[name]" source="[userInput] />` |

Configures an [input mapping](../../../../concepts/variables/#input-mappings).

#### `zeebe:output`

| **Binding `type`** | `zeebe:output` |
| --------------------------- | -------------------------------------------------------- |
| **Valid property `type`'s** | `String`<br /> `Text`<br />`Hidden`<br />`Dropdown` |
| **Binding parameters** | `source`: The source of the output parameter |
| **Mapping result** | `<zeebe:output target="[userInput]" source="[source] />` |
| **Binding `type`** | `zeebe:output` |
| --------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------- |
| **Valid property `type`'s** | `String`<br /> `Text`<br />`Hidden`<br />`Dropdown``Boolean`<br />`Number`<br />(`Boolean` and `Number` require `feel` to be `optional` or `static`) |
| **Binding parameters** | `source`: The source of the output parameter |
| **Mapping result** | `<zeebe:output target="[userInput]" source="[source] />` |

Configures an [output mapping](../../../../concepts/variables/#output-mappings).

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -358,21 +358,21 @@ Configures a generic BPMN element property.

#### `zeebe:input`

| **Binding `type`** | `zeebe:input` |
| --------------------------- | ----------------------------------------------------- |
| **Valid property `type`'s** | `String`<br /> `Text`<br />`Hidden`<br />`Dropdown` |
| **Binding parameters** | `name`: The name of the input parameter |
| **Mapping result** | `<zeebe:input target="[name]" source="[userInput] />` |
| **Binding `type`** | `zeebe:input` |
| --------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------- |
| **Valid property `type`'s** | `String`<br /> `Text`<br />`Hidden`<br />`Dropdown`<br />`Boolean`<br />`Number`<br />(`Boolean` and `Number` require `feel` to be `optional` or `static`) |
| **Binding parameters** | `name`: The name of the input parameter |
| **Mapping result** | `<zeebe:input target="[name]" source="[userInput] />` |

Configures an [input mapping](../../../../concepts/variables/#input-mappings).

#### `zeebe:output`

| **Binding `type`** | `zeebe:output` |
| --------------------------- | -------------------------------------------------------- |
| **Valid property `type`'s** | `String`<br /> `Text`<br />`Hidden`<br />`Dropdown` |
| **Binding parameters** | `source`: The source of the output parameter |
| **Mapping result** | `<zeebe:output target="[userInput]" source="[source] />` |
| **Binding `type`** | `zeebe:output` |
| --------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------- |
| **Valid property `type`'s** | `String`<br /> `Text`<br />`Hidden`<br />`Dropdown`<br />`Boolean`<br />`Number`<br />(`Boolean` and `Number` require `feel` to be `optional` or `static`) |
| **Binding parameters** | `source`: The source of the output parameter |
| **Mapping result** | `<zeebe:output target="[userInput]" source="[source] />` |

Configures an [output mapping](../../../../concepts/variables/#output-mappings).

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -358,21 +358,21 @@ Configures a generic BPMN element property.

#### `zeebe:input`

| **Binding `type`** | `zeebe:input` |
| --------------------------- | ----------------------------------------------------- |
| **Valid property `type`'s** | `String`<br /> `Text`<br />`Hidden`<br />`Dropdown` |
| **Binding parameters** | `name`: The name of the input parameter |
| **Mapping result** | `<zeebe:input target="[name]" source="[userInput] />` |
| **Binding `type`** | `zeebe:input` |
| --------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------- |
| **Valid property `type`'s** | `String`<br /> `Text`<br />`Hidden`<br />`Dropdown`<br />`Boolean`<br />`Number`<br />(`Boolean` and `Number` require `feel` to be `optional` or `static`) |
| **Binding parameters** | `name`: The name of the input parameter |
| **Mapping result** | `<zeebe:input target="[name]" source="[userInput] />` |

Configures an [input mapping](../../../../concepts/variables/#input-mappings).

#### `zeebe:output`

| **Binding `type`** | `zeebe:output` |
| --------------------------- | -------------------------------------------------------- |
| **Valid property `type`'s** | `String`<br /> `Text`<br />`Hidden`<br />`Dropdown` |
| **Binding parameters** | `source`: The source of the output parameter |
| **Mapping result** | `<zeebe:output target="[userInput]" source="[source] />` |
| **Binding `type`** | `zeebe:output` |
| --------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------- |
| **Valid property `type`'s** | `String`<br /> `Text`<br />`Hidden`<br />`Dropdown`<br />`Boolean`<br />`Number`<br />(`Boolean` and `Number` require `feel` to be `optional` or `static`) |
| **Binding parameters** | `source`: The source of the output parameter |
| **Mapping result** | `<zeebe:output target="[userInput]" source="[source] />` |

Configures an [output mapping](../../../../concepts/variables/#output-mappings).

Expand Down

0 comments on commit bc76f1b

Please sign in to comment.