feat(input): add autofocus attribute to input component for improved accessibility

This commit is contained in:
Andras Bacsai
2025-08-02 15:45:21 +02:00
parent a0bc4dac55
commit 1ddec358a5
2 changed files with 3 additions and 2 deletions

View File

@@ -25,6 +25,7 @@ class Input extends Component
public string $autocomplete = 'off',
public ?int $minlength = null,
public ?int $maxlength = null,
public bool $autofocus = false,
) {}
public function render(): View|Closure|string