amis-editor-core 6.14.0-beta.11 → 6.14.0-beta.13
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/component/ClassNameControl.d.ts +1 -1
- package/esm/component/RegionWrapper.d.ts +7 -6
- package/esm/component/VRenderer.d.ts +7 -6
- package/esm/index.js +2 -2
- package/esm/util.d.ts +1 -3
- package/lib/component/ClassNameControl.d.ts +1 -1
- package/lib/component/RegionWrapper.d.ts +7 -6
- package/lib/component/VRenderer.d.ts +7 -6
- package/lib/component/base/BackTop.d.ts +1 -1
- package/lib/editor.js +1 -1
- package/lib/index.js +2 -2
- package/lib/util.d.ts +1 -3
- package/package.json +1 -1
package/lib/util.d.ts
CHANGED
|
@@ -3,8 +3,6 @@ import type { VariableItem } from 'amis-ui';
|
|
|
3
3
|
import { Diff } from 'deep-diff';
|
|
4
4
|
import { EditorModalBody } from './store/editor';
|
|
5
5
|
import type { SchemaType } from 'amis/lib/Schema';
|
|
6
|
-
import type { DialogSchema } from 'amis/lib/renderers/Dialog';
|
|
7
|
-
import type { DrawerSchema } from 'amis/lib/renderers/Drawer';
|
|
8
6
|
declare const guid: any, omitControls: any, isObjectShallowModified: any, cloneObject: any, anyChanged: any, noop: any, makeHorizontalDeeper: any, isEmpty: any, eachTree: any, createObject: any;
|
|
9
7
|
export { guid, isObjectShallowModified, anyChanged, noop, makeHorizontalDeeper, omitControls, isEmpty, cloneObject, eachTree, createObject };
|
|
10
8
|
export declare let themeConfig: any;
|
|
@@ -197,7 +195,7 @@ export declare function modalsToDefinitions(modals: Array<EditorModalBody>, defi
|
|
|
197
195
|
*/
|
|
198
196
|
export declare function mergeDefinitions(originSchema: any, definitions: any, modal: any): any;
|
|
199
197
|
export declare function setDefaultColSize(regionList: any[], row: number, preRow?: number): any[];
|
|
200
|
-
export declare function getModals(schema: any): (
|
|
198
|
+
export declare function getModals(schema: any): (import("amis/lib/renderers/Dialog").AMISDialogSchema | import("amis/lib/renderers/Drawer").AMISDrawerSchema)[];
|
|
201
199
|
export declare function collectRefs(schema: any): string[];
|
|
202
200
|
/**
|
|
203
201
|
* 深度 splice 数组,同时返回新的对象,按需拷贝,没有副作用
|