@adminforth/rich-editor 2.0.2 → 2.0.4

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.
Files changed (3) hide show
  1. package/build.log +2 -2
  2. package/package.json +3 -3
  3. package/types.ts +3 -1
package/build.log CHANGED
@@ -10,5 +10,5 @@ custom/package.json
10
10
  custom/quillEditor.vue
11
11
  custom/tsconfig.json
12
12
 
13
- sent 35,505 bytes received 115 bytes 71,240.00 bytes/sec
14
- total size is 35,088 speedup is 0.99
13
+ sent 35,511 bytes received 115 bytes 71,252.00 bytes/sec
14
+ total size is 35,088 speedup is 0.98
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adminforth/rich-editor",
3
- "version": "2.0.2",
3
+ "version": "2.0.4",
4
4
  "description": "Rich editor plugin for adminforth",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -21,12 +21,12 @@
21
21
  "rich editor"
22
22
  ],
23
23
  "author": "devforth",
24
- "license": "ISC",
24
+ "license": "MIT",
25
25
  "dependencies": {
26
26
  "cheerio": "^1.0.0"
27
27
  },
28
28
  "peerDependencies": {
29
- "adminforth": "^2.24.0"
29
+ "adminforth": "^2.30.0"
30
30
  },
31
31
  "devDependencies": {
32
32
  "@types/node": "^22.10.7",
package/types.ts CHANGED
@@ -1,4 +1,6 @@
1
1
  import { CompletionAdapter } from "adminforth";
2
+ import {type PluginsCommonOptions } from "adminforth";
3
+
2
4
 
3
5
  // example options ussage:
4
6
  //{
@@ -15,7 +17,7 @@ import { CompletionAdapter } from "adminforth";
15
17
  // }
16
18
  //}
17
19
 
18
- export interface PluginOptions {
20
+ export interface PluginOptions extends PluginsCommonOptions {
19
21
 
20
22
  /**
21
23
  * Field where plugin will auto-complete text. Should be string or text field.