UIInputPassword
Name
Type
Default
Description
Example
import {UIInputPassword} from 'writer'
render($$) {
const el = $$('div')
return el.append(
$$(UIInputPassword, {
id: 'myPasswordInput',
label: this.getLabel('Password'),
placehodlder: 'My placeholder',
size: 'large',
value: '',
onChange: (value) => {
// Do something
}
})
)
}