2020-03-21 18:30:11 +01:00
|
|
|
{{#if options.hasOutput}}
|
|
|
|
{{#if outputPrefixKey}}
|
|
|
|
<div class="prefix">
|
|
|
|
<span>{{i18n outputPrefixKey}}</span>
|
2018-05-24 07:34:58 +02:00
|
|
|
</div>
|
|
|
|
{{/if}}
|
2020-03-21 18:30:11 +01:00
|
|
|
{{/if}}
|
|
|
|
|
|
|
|
<div class="pairs">
|
|
|
|
{{#each input.pairs as |pair|}}
|
|
|
|
{{wizard-custom-input-pair
|
|
|
|
pair=pair
|
|
|
|
keyPlaceholder=keyPlaceholder
|
|
|
|
valuePlaceholder=valuePlaceholder
|
|
|
|
userFields=userFields
|
|
|
|
wizardFields=wizardFields
|
|
|
|
options=options
|
|
|
|
removePair=(action 'removePair')}}
|
|
|
|
{{/each}}
|
|
|
|
{{#if options.hasOutput}}
|
|
|
|
<a {{action 'addPair'}} class="add-pair">{{d-icon 'plus'}}</a>
|
2018-05-24 07:34:58 +02:00
|
|
|
{{/if}}
|
|
|
|
</div>
|
|
|
|
|
2020-03-21 18:30:11 +01:00
|
|
|
{{#if options.hasOutput}}
|
|
|
|
<div class="connector">
|
|
|
|
{{#if outputConnectorKey}}
|
|
|
|
<span class="output-connector">
|
|
|
|
{{i18n outputConnectorKey}}
|
|
|
|
</span>
|
|
|
|
{{/if}}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="output input-block">
|
|
|
|
{{wizard-custom-input-chooser
|
|
|
|
inputType='output'
|
|
|
|
userFields=userFields
|
|
|
|
wizardFields=wizardFields
|
|
|
|
value=input.output
|
|
|
|
activeType=input.output_type
|
|
|
|
customPlaceholder=outputPlaceholder
|
|
|
|
options=options}}
|
|
|
|
</div>
|
|
|
|
{{/if}}
|
|
|
|
|
|
|
|
{{d-button
|
|
|
|
action=remove
|
|
|
|
actionParam=input
|
|
|
|
icon='times'
|
|
|
|
class='remove-input'}}
|