amis-editor-core 6.7.0 → 6.8.0
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/Editor.d.ts +1 -0
- package/esm/component/HighlightBox.d.ts +2 -1
- package/esm/component/Panel/Outline.d.ts +5 -1
- package/esm/component/Panel/RightPanels.d.ts +2 -0
- package/esm/component/Preview.d.ts +2 -0
- package/esm/component/RegionWrapper.d.ts +12 -0
- package/esm/component/SubEditor.d.ts +3 -0
- package/esm/component/VRenderer.d.ts +12 -0
- package/esm/dnd/index.d.ts +0 -11
- package/esm/index.js +2 -2
- package/esm/layout/flex.d.ts +60 -0
- package/esm/manager.d.ts +12 -0
- package/esm/plugin.d.ts +6 -0
- package/esm/store/editor.d.ts +69 -11
- package/esm/store/node.d.ts +12 -0
- package/esm/util.d.ts +1 -0
- package/lib/component/Editor.d.ts +1 -0
- package/lib/component/HighlightBox.d.ts +2 -1
- package/lib/component/Panel/Outline.d.ts +5 -1
- package/lib/component/Panel/RightPanels.d.ts +2 -0
- package/lib/component/Preview.d.ts +2 -0
- package/lib/component/RegionWrapper.d.ts +12 -0
- package/lib/component/SubEditor.d.ts +3 -0
- package/lib/component/VRenderer.d.ts +12 -0
- package/lib/dnd/index.d.ts +0 -11
- package/lib/editor.js +1 -1
- package/lib/index.js +2 -2
- package/lib/layout/flex.d.ts +60 -1
- package/lib/manager.d.ts +12 -0
- package/lib/plugin.d.ts +6 -0
- package/lib/store/editor.d.ts +69 -11
- package/lib/store/node.d.ts +12 -0
- package/lib/style.css +1 -1
- package/lib/util.d.ts +1 -0
- package/package.json +1 -1
package/lib/util.d.ts
CHANGED
|
@@ -196,6 +196,7 @@ export declare function modalsToDefinitions(modals: Array<EditorModalBody>, defi
|
|
|
196
196
|
*/
|
|
197
197
|
export declare function mergeDefinitions(originSchema: any, definitions: any, modal: any): any;
|
|
198
198
|
export declare function setDefaultColSize(regionList: any[], row: number, preRow?: number): any[];
|
|
199
|
+
export declare function getModals(schema: any): any[];
|
|
199
200
|
export declare const RAW_TYPE_MAP: {
|
|
200
201
|
[k in SchemaType | 'user-select' | 'department-select']?: 'string' | 'number' | 'array' | 'boolean' | 'object' | 'enum' | 'date' | 'datetime' | 'time' | 'quarter' | 'year' | 'month' | 'user' | 'department';
|
|
201
202
|
};
|