amis-editor-core 6.11.0-beta.9 → 6.11.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.
@@ -51,6 +51,7 @@ export default class Preview extends Component<PreviewProps> {
51
51
  handleMouseMove(e: MouseEvent): void;
52
52
  handleMouseLeave(): void;
53
53
  handeMouseOver(e: MouseEvent): void;
54
+ handleSubmit(e: Event): void;
54
55
  handleDragEnter(e: React.DragEvent): void;
55
56
  handleDragLeave(e: React.DragEvent): void;
56
57
  handleDragOver(e: React.DragEvent): void;
@@ -16,7 +16,7 @@ export default class BackTop extends React.Component<BackTopProps, BackTopStates
16
16
  constructor(props: any);
17
17
  componentDidMount(): void;
18
18
  componentWillUnmount(): void;
19
- getDefaultTarget(): (Window & typeof globalThis) | Document;
19
+ getDefaultTarget(): Document | (Window & typeof globalThis);
20
20
  handleScroll(e: React.UIEvent<HTMLElement> | {
21
21
  target: any;
22
22
  }): void;
package/lib/dnd/flex.d.ts CHANGED
@@ -45,6 +45,6 @@ export declare class FlexDNDMode implements DNDModeInterface {
45
45
  * 销毁
46
46
  */
47
47
  dispose(): void;
48
- getDropPosition(): "left" | "right" | "bottom" | "top" | undefined;
48
+ getDropPosition(): "left" | "right" | "top" | "bottom" | undefined;
49
49
  interruptionDrop(): boolean;
50
50
  }
package/lib/editor.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * amis-editor-core v6.11.0-beta.9
2
+ * amis-editor-core v6.11.0
3
3
  * Copyright 2018-2025 @fex
4
4
  */
5
5