0
0
Fork 1
Spiegel von https://github.com/paviliondev/discourse-custom-wizard.git synchronisiert 2024-09-21 00:01:12 +02:00
discourse-custom-wizard/assets/javascripts/discourse/templates/components/wizard-mapper-pair.hbs
2023-07-10 07:55:54 +01:00

41 Zeilen
Kein EOL
804 B
Handlebars

<div class="key mapper-block">
{{wizard-mapper-selector
selectorType="key"
inputType=inputType
value=pair.key
activeType=pair.key_type
options=options
onUpdate=onUpdate
}}
</div>
{{wizard-mapper-connector
connector=pair.connector
connectors=connectors
connectorType="pair"
inputType=inputType
options=options
onUpdate=onUpdate
}}
<div class="value mapper-block">
{{wizard-mapper-selector
selectorType="value"
inputType=inputType
value=pair.value
activeType=pair.value_type
options=options
onUpdate=onUpdate
connector=pair.connector
}}
</div>
{{#if showJoin}}
<span class="join-pair">&</span>
{{/if}}
{{#if showRemove}}
<a role="button" {{action removePair pair}} class="remove-pair">{{d-icon
"times"
}}</a>
{{/if}}