amis-editor-core 6.9.0-rc.4 → 6.9.0-rc.6
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/ModalForm.d.ts +1 -1
- package/esm/index.d.ts +2 -1
- package/esm/index.js +2 -2
- package/esm/store/editor.d.ts +3 -0
- package/lib/component/ModalForm.d.ts +1 -1
- package/lib/dnd/flex.d.ts +1 -1
- package/lib/editor.js +1 -1
- package/lib/index.d.ts +2 -1
- package/lib/index.js +2 -2
- package/lib/layout/flex.d.ts +0 -1
- package/lib/store/editor.d.ts +3 -0
- package/package.json +1 -1
package/lib/layout/flex.d.ts
CHANGED
package/lib/store/editor.d.ts
CHANGED
|
@@ -507,7 +507,9 @@ export declare const MainStore: import("mobx-state-tree").IModelType<{
|
|
|
507
507
|
scaffoldError: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
508
508
|
popOverForm: import("mobx-state-tree").IMaybe<import("mobx-state-tree").IType<PopOverFormContext, PopOverFormContext, PopOverFormContext>>;
|
|
509
509
|
modalForm: import("mobx-state-tree").IMaybe<import("mobx-state-tree").IType<ModalFormContext, ModalFormContext, ModalFormContext>>;
|
|
510
|
+
modalMode: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
510
511
|
modalFormBuzy: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
512
|
+
modalFormError: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
511
513
|
subEditorContext: import("mobx-state-tree").IMaybe<import("mobx-state-tree").IType<SubEditorContext, SubEditorContext, SubEditorContext>>;
|
|
512
514
|
superEditorData: import("mobx-state-tree").IMaybe<import("mobx-state-tree").IType<any, any, any>>;
|
|
513
515
|
calculateStarted: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
@@ -3735,6 +3737,7 @@ export declare const MainStore: import("mobx-state-tree").IModelType<{
|
|
|
3735
3737
|
openModalForm(context: ModalFormContext): void;
|
|
3736
3738
|
closeModalForm(): void;
|
|
3737
3739
|
markModalFormBuzy(value: any): void;
|
|
3740
|
+
setModalFormError(msg?: string): void;
|
|
3738
3741
|
activeHighlightNodes(ids: Array<string>): void;
|
|
3739
3742
|
deActiveHighlightNodes(ids: Array<string>): void;
|
|
3740
3743
|
calculateHighlightBox(ids?: Array<string>): void;
|