{{#unless (or (and attr.options.editType (not-eq attr.options.editType "textarea")) (eq attr.type "boolean"))}} {{/unless}} {{#if attr.options.possibleValues}}
{{else if (eq attr.options.editType 'mountAccessor')}} {{mount-accessor-select name=attr.name label=labelString warning=attr.options.warning helpText=attr.options.helpText value=(get model valuePath) onChange=(action "setAndBroadcast" valuePath) }} {{else if (eq attr.options.editType 'kv')}} {{kv-object-editor value=(get model valuePath) onChange=(action "setAndBroadcast" valuePath) label=labelString warning=attr.options.warning helpText=attr.options.helpText }} {{else if (eq attr.options.editType 'file')}} {{text-file index='' file=file onChange=(action 'setFile') warning=attr.options.warning label=labelString }} {{else if (eq attr.options.editType 'ttl')}} {{ttl-picker initialValue=(or (get model valuePath) attr.options.defaultValue) labelText=labelString warning=attr.options.warning setDefaultValue=false onChange=(action (action "setAndBroadcast" valuePath)) }} {{else if (eq attr.options.editType 'stringArray')}} {{string-list label=labelString warning=attr.options.warning helpText=attr.options.helpText inputValue=(get model valuePath) onChange=(action (action "setAndBroadcast" valuePath)) }} {{else if (or (eq attr.type 'number') (eq attr.type 'string'))}}
{{#if (eq attr.options.editType 'textarea')}} {{else}} {{/if}}
{{else if (eq attr.type 'boolean')}}
{{else if (eq attr.type 'object')}} {{json-editor value=(if (get model valuePath) (stringify (get model valuePath)) emptyData) valueUpdated=(action "codemirrorUpdated" attr.name) }} {{/if}}