Skip to content

Commit 5b8b085

Browse files
committed
fix: rebuild
1 parent 2c61a04 commit 5b8b085

3 files changed

Lines changed: 86 additions & 15 deletions

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"typescript": "^5.7.3"
2222
},
2323
"peerDependencies": {
24-
"adminforth": "^2.24.0"
24+
"adminforth": "^2.30.0"
2525
},
2626
"release": {
2727
"plugins": [

pnpm-lock.yaml

Lines changed: 83 additions & 12 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

types.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Filters, type IAdminForthSingleFilter, type IAdminForthAndOrFilter } from "adminforth"
1+
import { Filters, type IAdminForthSingleFilter, type IAdminForthAndOrFilter, type PluginsCommonOptions } from "adminforth"
22
interface IFilter {
33
name: string;
44
icon?: string;
@@ -9,6 +9,6 @@ interface IFilter {
99
}[];
1010
searchInput?: (searchVal: string) => IAdminForthSingleFilter | IAdminForthAndOrFilter | Promise<IAdminForthSingleFilter | IAdminForthAndOrFilter>;
1111
}
12-
export interface PluginOptions {
12+
export interface PluginOptions extends PluginsCommonOptions {
1313
filters: IFilter[]
1414
}

0 commit comments

Comments
 (0)