amis-editor-core 5.2.1-beta.30 → 5.2.1-beta.32
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/esm/index.js +2 -2
- package/esm/manager.d.ts +6 -1
- package/lib/editor.js +1 -1
- package/lib/index.js +2 -2
- package/lib/manager.d.ts +6 -1
- package/lib/util.d.ts +1 -1
- package/package.json +3 -2
- package/static/Code-hover.png +0 -0
- package/static/Code.png +0 -0
- package/static/Outline-hover.png +0 -0
- package/static/Outline.png +0 -0
- package/static/Renderers-hover.png +0 -0
- package/static/Renderers.png +0 -0
- package/static/check.svg +16 -0
- package/static/empty.png +0 -0
- package/static/search.svg +8 -0
- package/static/side_hide_left.svg +10 -0
package/esm/manager.d.ts
CHANGED
|
@@ -21,7 +21,12 @@ export interface PluginClass {
|
|
|
21
21
|
id?: string;
|
|
22
22
|
}
|
|
23
23
|
/**
|
|
24
|
-
*
|
|
24
|
+
* 自动加载预先注册的自定义插件
|
|
25
|
+
* 备注:新版 amis-widget[3.0.0] 需要
|
|
26
|
+
*/
|
|
27
|
+
export declare function autoPreRegisterEditorCustomPlugins(): void;
|
|
28
|
+
/**
|
|
29
|
+
* 注册Editor插件。
|
|
25
30
|
* @param editor
|
|
26
31
|
*/
|
|
27
32
|
export declare function registerEditorPlugin(klass: PluginClass): void;
|
package/lib/editor.js
CHANGED