mirror of
https://github.com/kemko/nomad.git
synced 2026-01-05 18:05:42 +03:00
* chore: update tests to handle invidual toggle responsibility * chore: prettify secure-variable-form template * ui: extract input group markup into seperate component
19 lines
380 B
JavaScript
19 lines
380 B
JavaScript
// @ts-check
|
|
|
|
import { action } from '@ember/object';
|
|
import Component from '@glimmer/component';
|
|
import { tracked } from '@glimmer/tracking';
|
|
|
|
export default class InputGroup extends Component {
|
|
@tracked isObscured = true;
|
|
|
|
get inputType() {
|
|
return this.isObscured ? 'password' : 'text';
|
|
}
|
|
|
|
@action
|
|
toggleInputType() {
|
|
this.isObscured = !this.isObscured;
|
|
}
|
|
}
|