https://github.com/devforth/adminforth-universal-search
https://github.com/devforth/adminforth-universal-search
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/devforth/adminforth-universal-search
- Owner: devforth
- License: mit
- Created: 2025-09-22T08:31:33.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2025-11-28T15:10:10.000Z (4 months ago)
- Last Synced: 2025-11-30T21:08:53.545Z (4 months ago)
- Language: TypeScript
- Size: 133 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Universal Filters
Lightweight plugin adding one debounced search input to the List view (injection point: `beforeActionButtons`). It builds a single OR filter across configured columns.
## Install
```bash
npm install @adminforth/universal-search
```
## Usage
```ts
import UniversalFiltersPlugin from '@adminforth/universal-search';
plugins: [
new UniversalFiltersPlugin({
columns: [
{ name: 'title' },
{ name: 'description' },
{ name: 'country', caseSensitive: true },
{ name: 'price', exact: true },
],
debounceMs: 400,
})
]
```
Full docs & advanced options: see AdminForth docs (Plugins -> Universal Filters).
## License
MIT