Files
psp_panel/src/app/shared/components/input/input.component.html
T

22 lines
725 B
HTML
Raw Normal View History

2025-12-04 21:07:18 +03:30
<uikit-field [label]="label" [name]="name" [control]="control">
@if (type === "switch") {
<p-toggleSwitch [formControl]="control" />
} @else {
<input
pInputText
[attr.id]="name"
[formControl]="control"
[attr.name]="name"
[attr.placeholder]="placeholder"
[attr.inputmode]="inputMode"
[attr.maxlength]="maxLength || null"
[attr.type]="htmlType"
[attr.autocomplete]="autocomplete"
[class]="`${inputClass} w-full ${size === 'large' ? 'p-inputtext-lg' : size === 'small' ? 'p-inputtext-sm' : ''}`"
[required]="isRequired"
[invalid]="control.invalid && (control.touched || control.dirty)"
(input)="onInput($event)"
/>
}
2025-12-04 21:07:18 +03:30
</uikit-field>