feat: add user input type with icon support in input component
This commit is contained in:
@@ -73,6 +73,15 @@
|
||||
Email
|
||||
</app-input>
|
||||
|
||||
<app-input
|
||||
type="user"
|
||||
placeholder="Nombre de usuario"
|
||||
[value]="user"
|
||||
(valueChange)="user = $event"
|
||||
>
|
||||
Usuario
|
||||
</app-input>
|
||||
|
||||
<app-input
|
||||
type="password-toggle"
|
||||
placeholder="********"
|
||||
|
||||
@@ -12,6 +12,7 @@ export class ReutilizablesTestPageComponent {
|
||||
protected textValue = 'Auriculares';
|
||||
protected numberValue = '24';
|
||||
protected email = 'usuario@empresa.com';
|
||||
protected user = 'Juan Perez';
|
||||
protected password = '12345678';
|
||||
protected date = '2026-06-24';
|
||||
protected amount = '125000';
|
||||
|
||||
Reference in New Issue
Block a user