PHPackages                             borjajimnz/text-input-autocomplete - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Utility &amp; Helpers](/categories/utility)
4. /
5. borjajimnz/text-input-autocomplete

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

borjajimnz/text-input-autocomplete
==================================

Filamentphp TextInput with Autocomplete feature

1.5.3(1y ago)1307MITBladePHP ^8.3CI passing

Since Jan 8Pushed 1y ago1 watchersCompare

[ Source](https://github.com/borjajimnz/text-input-autocomplete)[ Packagist](https://packagist.org/packages/borjajimnz/text-input-autocomplete)[ Docs](https://github.com/borjajimnz/text-input-autocomplete)[ GitHub Sponsors](https://github.com/borjajimnz)[ RSS](/packages/borjajimnz-text-input-autocomplete/feed)WikiDiscussions main Synced today

READMEChangelog (9)Dependencies (8)Versions (11)Used By (0)

FilamentPHP TextInput Field with Autocomplete feature
=====================================================

[](#filamentphp-textinput-field-with-autocomplete-feature)

[![Latest Version on Packagist](https://camo.githubusercontent.com/d09448c7c2ea14b0d2cc22b337c191bd926a901395bb8a62dc4869d8cde19228/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f626f726a616a696d6e7a2f746578742d696e7075742d6175746f636f6d706c6574652e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/borjajimnz/text-input-autocomplete)[![GitHub Code Style Action Status](https://camo.githubusercontent.com/c8948b6082746e78900b0f8354c3654e08202674a5700c018be37c340ae7f2dc/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f626f726a616a696d6e7a2f746578742d696e7075742d6175746f636f6d706c6574652f6669782d7068702d636f64652d7374796c652d6973737565732e796d6c3f6272616e63683d6d61696e266c6162656c3d636f64652532307374796c65267374796c653d666c61742d737175617265)](https://github.com/borjajimnz/text-input-autocomplete/actions?query=workflow%3A%22Fix+PHP+code+style+issues%22+branch%3Amain)[![Total Downloads](https://camo.githubusercontent.com/dbfe5465536fa3236850cbae37fadd041f6d21158861168e6feec8707f69888c/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f626f726a616a696d6e7a2f746578742d696e7075742d6175746f636f6d706c6574652e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/borjajimnz/text-input-autocomplete)

This package replaces the native `` functionality with a custom, non-native autocomplete for the TextInput component in FilamentPHP 3, offering enhanced flexibility and customization options.

[![](./images/demo.png)](./images/demo.png)

Installation
------------

[](#installation)

You can install the package via composer:

```
composer require borjajimnz/text-input-autocomplete
```

Usage
-----

[](#usage)

By default, we will use a non-native datalist. If you want to use the native one, simply add `->datalistNative()`.

Use the *Tab* key to navigate through the available options in the datalist, or move around using the *Up* and *Down* arrow keys.

```
use Borjajimnz\TextInputAutocomplete\Forms\Components\AutoComplete;

AutoComplete::make('favorite')
    ->datalist(function () {
        return ['php','laravel', 'livewire','filamentphp', 'tailwindcss'];
    });
```

These are all the options available to configure your field, if needed.

```
use Borjajimnz\TextInputAutocomplete\Forms\Components\AutoComplete;

AutoComplete::make('favorite')
    ->datalistNative(false)
    ->datalistMinCharsToSearch(0)
    ->datalistMaxItems(false)
    ->datalistDisableScroll(false)
    ->datalistOpenOnClick(true)
    ->datalist(function () {
        return ['php','laravel', 'livewire','filamentphp', 'tailwindcss'];
    });
```

Or if you want to use the native datalist with a custom ID.

```
use Borjajimnz\TextInputAutocomplete\Forms\Components\AutoComplete;

AutoComplete::make('favorite')
    ->datalistNativeId('customized.id')
    ->datalist(function () {
        return ['php','laravel', 'livewire','filamentphp', 'tailwindcss'];
    });
```

Security Vulnerabilities
------------------------

[](#security-vulnerabilities)

Please review [our security policy](../../security/policy) on how to report security vulnerabilities.

Credits
-------

[](#credits)

- [FilamentPHP](https://github.com/filamentphp)
- [Livewire](https://livewire.laravel.com)
- [Laravel](https://github.com/laravel)

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

###  Health Score

33

—

LowBetter than 72% of packages

Maintenance38

Infrequent updates — may be unmaintained

Popularity14

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity60

Established project with proven stability

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~1 days

Total

9

Last Release

536d ago

PHP version history (2 changes)1.0PHP ^8.4

1.2PHP ^8.3

### Community

Maintainers

![](https://www.gravatar.com/avatar/dbdce2dcd692334ea70cfca340e9eac2f1fec8e57773226d01cecec05e7df498?d=identicon)[borjajimnz](/maintainers/borjajimnz)

---

Top Contributors

[![borjajimnz](https://avatars.githubusercontent.com/u/5682426?v=4)](https://github.com/borjajimnz "borjajimnz (26 commits)")

---

Tags

laravelfilamentphpBorja Jiméneztext-input-autocomplete

###  Code Quality

TestsPest

Code StyleLaravel Pint

### Embed Badge

![Health badge](/badges/borjajimnz-text-input-autocomplete/health.svg)

```
[![Health](https://phpackages.com/badges/borjajimnz-text-input-autocomplete/health.svg)](https://phpackages.com/packages/borjajimnz-text-input-autocomplete)
```

###  Alternatives

[spatie/laravel-pdf

Create PDFs in Laravel apps

1.0k4.8M47](/packages/spatie-laravel-pdf)[codewithdennis/filament-select-tree

The multi-level select field enables you to make single selections from a predefined list of options that are organized into multiple levels or depths.

329530.5k29](/packages/codewithdennis-filament-select-tree)[worksome/exchange

Check Exchange Rates for any currency in Laravel.

124603.0k](/packages/worksome-exchange)[rawilk/profile-filament-plugin

Profile &amp; MFA starter kit for filament.

3914.6k](/packages/rawilk-profile-filament-plugin)[tarfin-labs/event-machine

Event-driven state machines for Laravel with event sourcing, type-safe context, and full audit trail.

199.4k](/packages/tarfin-labs-event-machine)[tapp/filament-form-builder

User facing form builder using Filament components

132.4k3](/packages/tapp-filament-form-builder)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
