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/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
@@ -1,5 +1,5 @@
1
1
  /**
2
- * amis-editor-core v5.2.1-beta.30
2
+ * amis-editor-core v5.2.1-beta.32
3
3
  * Copyright 2018-2022 @fex
4
4
  */
5
5