@radio-garden/ditojs-admin 2.92.0-1.79f40ebcd → 2.92.0-3.3b53c54b2
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/package.json +2 -2
- package/types/index.d.ts +3 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@radio-garden/ditojs-admin",
|
|
3
|
-
"version": "2.92.0-
|
|
3
|
+
"version": "2.92.0-3.3b53c54b2",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Dito.js Admin is a schema based admin interface for Dito.js Server, featuring auto-generated views and forms and built with Vue.js",
|
|
6
6
|
"repository": "https://github.com/ditojs/dito/tree/main/packages/admin",
|
|
@@ -87,7 +87,7 @@
|
|
|
87
87
|
"vite": "^8.0.0",
|
|
88
88
|
"@ditojs/build": "^2.92.0"
|
|
89
89
|
},
|
|
90
|
-
"gitHead": "
|
|
90
|
+
"gitHead": "3b53c54b2",
|
|
91
91
|
"gitBranch": "rg",
|
|
92
92
|
"scripts": {
|
|
93
93
|
"build": "vite build",
|
package/types/index.d.ts
CHANGED
|
@@ -852,14 +852,14 @@ export interface SchemaOptionsMixin<$Item, $Option = any> {
|
|
|
852
852
|
* searching for specific options.
|
|
853
853
|
*/
|
|
854
854
|
search?:
|
|
855
|
-
| ItemAccessor<$Item, {
|
|
855
|
+
| ItemAccessor<$Item, { searchTerm: string }, OrPromiseOf<$Option[]>>
|
|
856
856
|
| {
|
|
857
857
|
/**
|
|
858
|
-
* Filters options based on the
|
|
858
|
+
* Filters options based on the `searchTerm`
|
|
859
859
|
* available in the context. Returns matching
|
|
860
860
|
* options, optionally as a promise.
|
|
861
861
|
*/
|
|
862
|
-
filter?: ItemAccessor<$Item, {
|
|
862
|
+
filter?: ItemAccessor<$Item, { searchTerm: string }, OrPromiseOf<$Option[]>>
|
|
863
863
|
/**
|
|
864
864
|
* Debounce config for the filter. Delays
|
|
865
865
|
* invocation until input pauses.
|