@adminforth/text-complete 2.0.5 → 2.0.6
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.ts +2 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adminforth/text-complete",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.6",
|
|
4
4
|
"description": "Text completion plugin for adminforth",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -54,6 +54,6 @@
|
|
|
54
54
|
]
|
|
55
55
|
},
|
|
56
56
|
"peerDependencies": {
|
|
57
|
-
"adminforth": "^2.
|
|
57
|
+
"adminforth": "^2.30.0"
|
|
58
58
|
}
|
|
59
59
|
}
|
package/types.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { CompletionAdapter } from "adminforth";
|
|
2
|
+
import {type PluginsCommonOptions } from "adminforth";
|
|
2
3
|
|
|
3
|
-
export interface PluginOptions {
|
|
4
|
+
export interface PluginOptions extends PluginsCommonOptions {
|
|
4
5
|
/**
|
|
5
6
|
* Field where plugin will auto-complete text. Should be string or text field.
|
|
6
7
|
*/
|