@adminforth/universal-search 1.4.13 → 1.4.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +29 -1
- package/package.json +4 -3
package/README.md
CHANGED
|
@@ -1,7 +1,35 @@
|
|
|
1
|
-
# Universal
|
|
1
|
+
# AdminForth Universal Search Plugin
|
|
2
|
+
|
|
3
|
+
<img src="https://img.shields.io/badge/License-MIT-blue.svg" alt="License: MIT" /> <img src="https://woodpecker.devforth.io/api/badges/3848/status.svg" alt="Build Status" /> <a href="https://www.npmjs.com/package/@adminforth/universal-search"><img src="https://img.shields.io/npm/dm/@adminforth/universal-search" alt="npm downloads" /></a> <a href="https://www.npmjs.com/package/@adminforth/universal-search"><img src="https://img.shields.io/npm/v/@adminforth/universal-search" alt="npm version" /></a>
|
|
4
|
+
|
|
5
|
+
[](https://tluma.ai/ask-ai/devforth/adminforth)
|
|
2
6
|
|
|
3
7
|
Lightweight plugin adding one debounced search input to the List view (injection point: `beforeActionButtons`). It builds a single OR filter across configured columns.
|
|
4
8
|
|
|
9
|
+
## Features
|
|
10
|
+
|
|
11
|
+
- Add one debounced search input to AdminForth list views.
|
|
12
|
+
- Search across configured columns with a single query.
|
|
13
|
+
- Help teams find records faster in large back offices.
|
|
14
|
+
- Keep cross-column discovery close to the list screen.
|
|
15
|
+
|
|
16
|
+
## Documentation
|
|
17
|
+
|
|
18
|
+
Full setup and configuration guide:
|
|
19
|
+
|
|
20
|
+
[AdminForth Universal Filters Documentation](https://adminforth.dev/docs/tutorial/Plugins/universal-search/)
|
|
21
|
+
|
|
22
|
+
## About AdminForth
|
|
23
|
+
|
|
24
|
+
AdminForth is an open-source, agent-first admin framework for building robust admin panels and back-office applications faster.
|
|
25
|
+
|
|
26
|
+
## Related links
|
|
27
|
+
|
|
28
|
+
- [AdminForth website](https://adminforth.dev)
|
|
29
|
+
- [npm package](https://www.npmjs.com/package/@adminforth/universal-search)
|
|
30
|
+
- [More AdminForth plugins](https://adminforth.dev/docs/tutorial/ListOfPlugins/)
|
|
31
|
+
- [Built by DevForth](https://devforth.io)
|
|
32
|
+
|
|
5
33
|
## Install
|
|
6
34
|
|
|
7
35
|
```bash
|
package/package.json
CHANGED
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adminforth/universal-search",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.14",
|
|
4
4
|
"description": "Universal quick search input plugin for AdminForth (injected before action buttons)",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"types": "dist/index.d.ts",
|
|
8
|
+
"homepage": "https://adminforth.dev/docs/tutorial/Plugins/universal-search/",
|
|
8
9
|
"scripts": {
|
|
9
10
|
"build": "tsc && rsync -av --exclude 'node_modules' custom dist/"
|
|
10
11
|
},
|
|
@@ -45,12 +46,12 @@
|
|
|
45
46
|
},
|
|
46
47
|
"devDependencies": {
|
|
47
48
|
"@types/node": "^22.18.6",
|
|
48
|
-
"adminforth": "^2.
|
|
49
|
+
"adminforth": "^2.42.0",
|
|
49
50
|
"semantic-release": "^24.2.9",
|
|
50
51
|
"semantic-release-slack-bot": "^4.0.2",
|
|
51
52
|
"typescript": "^5.9.2"
|
|
52
53
|
},
|
|
53
54
|
"peerDependencies": {
|
|
54
|
-
"adminforth": "^2.
|
|
55
|
+
"adminforth": "^2.42.0"
|
|
55
56
|
}
|
|
56
57
|
}
|