Files
nomad/ui/app/components/variable-form/input-group.hbs
Phil Renaud 89cceebb91 [ui] Multi-line variable values and helios upgrades generally (#19544)
* Multi-line variable values and helios upgrades generally

* Variables page titles and actions restyle

* Hacky fix to keyboard shortcut otherwise bumping space on shift

* Related entities heliosified

* Namespace and path fields heliosed

* Paths table heliosified

* Variable view table

* Fixups after design discussion

* Monospaced editing

* De-commented template placeholder

* Acceptance tests updated for helios components across variables

* Tests helios'd in variable-form-test

* PR suggestions
2024-01-03 15:54:22 -05:00

18 lines
386 B
Handlebars

{{!
Copyright (c) HashiCorp, Inc.
SPDX-License-Identifier: BUSL-1.1
~}}
<label class="value-label">
<Hds::Form::MaskedInput::Field
@isMultiline={{true}}
@value={{@entry.value}}
rows="1"
class="hds-typography-code-200"
{{! prevent auto-fill }}
autocomplete="new-password"
data-test-var-value
as |F|>
<F.Label>Value</F.Label>
</Hds::Form::MaskedInput::Field>
</label>