@ -56,25 +56,25 @@
{{#if multiline}}
< textarea class = "input-monitor rc-input__element" name = "{{_id}}" rows = "4" style = "height: auto" { { isDisabled } } { { isReadonly } } > {{value}}< / textarea >
{{else}}
< input class = "input-monitor rc-input__element" type = "text" name = "{{_id}}" value = "{{value}}" placeholder = "{{placeholder}}" { { isDisabled } } { { isReadonly } } / >
< input class = "input-monitor rc-input__element" type = "text" name = "{{_id}}" value = "{{value}}" placeholder = "{{placeholder}}" { { isDisabled } } { { isReadonly } } { { canAutocomplete } } / >
{{/if}}
{{/if}}
{{#if $eq type 'relativeUrl'}}
< input class = "input-monitor rc-input__element" type = "text" name = "{{_id}}" value = "{{relativeUrl value}}" placeholder = "{{placeholder}}" { { isDisabled } } { { isReadonly } } / >
< input class = "input-monitor rc-input__element" type = "text" name = "{{_id}}" value = "{{relativeUrl value}}" placeholder = "{{placeholder}}" { { isDisabled } } { { isReadonly } } { { canAutocomplete } } / >
{{/if}}
{{#if $eq type 'password'}}
< input class = "input-monitor rc-input__element" type = "password" name = "{{_id}}" value = "{{value}}" placeholder = "{{placeholder}}" { { isDisabled } } { { isReadonly } } / >
< input class = "input-monitor rc-input__element" type = "password" name = "{{_id}}" value = "{{value}}" placeholder = "{{placeholder}}" { { isDisabled } } { { isReadonly } } { { canAutocomplete } } / >
{{/if}}
{{#if $eq type 'int'}}
< input class = "input-monitor rc-input__element" type = "number" name = "{{_id}}" value = "{{value}}" placeholder = "{{placeholder}}" { { isDisabled } } { { isReadonly } } / >
< input class = "input-monitor rc-input__element" type = "number" name = "{{_id}}" value = "{{value}}" placeholder = "{{placeholder}}" { { isDisabled } } { { isReadonly } } { { canAutocomplete } } / >
{{/if}}
{{#if $eq type 'boolean'}}
< label > < input class = "input-monitor" type = "radio" name = "{{_id}}" value = "1" checked = "{{$eq value true}}" { { isDisabled } } { { isReadonly } } / > {{_ "True"}}< / label >
< label > < input class = "input-monitor" type = "radio" name = "{{_id}}" value = "0" checked = "{{$eq value false}}" { { isDisabled } } { { isReadonly } } / > {{_ "False"}}< / label >
< label > < input class = "input-monitor" type = "radio" name = "{{_id}}" value = "1" checked = "{{$eq value true}}" { { isDisabled } } { { isReadonly } } { { canAutocomplete } } / > {{_ "True"}}< / label >
< label > < input class = "input-monitor" type = "radio" name = "{{_id}}" value = "0" checked = "{{$eq value false}}" { { isDisabled } } { { isReadonly } } { { canAutocomplete } } / > {{_ "False"}}< / label >
{{/if}}
{{#if $eq type 'select'}}
@ -103,7 +103,7 @@
{{/if}}
{{#if $eq editor 'expression'}}
< div class = "flex-grow-1" >
< input class = "input-monitor rc-input__element" type = "text" name = "{{_id}}" value = "{{value}}" { { isDisabled } } / >
< input class = "input-monitor rc-input__element" type = "text" name = "{{_id}}" value = "{{value}}" { { isDisabled } } { { canAutocomplete } } / >
< / div >
{{/if}}
< div class = "color-editor " >
@ -118,7 +118,7 @@
{{/if}}
{{#if $eq type 'font'}}
< input class = "input-monitor rc-input__element" type = "text" name = "{{_id}}" value = "{{value}}" { { isDisabled } } { { isReadonly } } / >
< input class = "input-monitor rc-input__element" type = "text" name = "{{_id}}" value = "{{value}}" { { isDisabled } } { { isReadonly } } { { canAutocomplete } } / >
{{/if}}
{{#if $eq type 'code'}}
@ -143,7 +143,7 @@
{{#if hasChanges section}}
< span style = "line-height: 40px" class = "secondary-font-color" > {{_ "Save_to_enable_this_action"}}< / span >
{{else}}
< button type = "button" class = "button primary action" data-setting = "{{_id}}" data-action = "{{value}}" { { isDisabled } } > {{_ actionText}}< / button >
< button type = "button" class = "button primary action" data-setting = "{{_id}}" data-action = "{{value}}" { { isDisabled } } > {{_ actionText}}< / button >
{{/if}}
{{/if}}