ketcher-react 2.11.0-rc.1 → 2.11.0-rc.3
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/dist/index.css +1 -1
- package/dist/index.css.map +1 -1
- package/dist/index.js +90 -73
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +91 -73
- package/dist/index.modern.js.map +1 -1
- package/dist/script/editor/Editor.d.ts +1 -0
- package/dist/script/editor/tool/rotate.d.ts +1 -1
- package/dist/script/editor/tool/template.d.ts +1 -1
- package/dist/script/ui/views/components/StructEditor/InfoPanel.d.ts +1 -1
- package/package.json +1 -1
|
@@ -27,7 +27,7 @@ declare class RotateTool {
|
|
|
27
27
|
* - atoms in contracted functional groups
|
|
28
28
|
* + functional groups's attachment atoms
|
|
29
29
|
*/
|
|
30
|
-
getCenter(editor: Editor
|
|
30
|
+
getCenter(editor: Editor): readonly [Vec2 | undefined, number[]];
|
|
31
31
|
mousemove(event: any): boolean;
|
|
32
32
|
mouseup(): boolean;
|
|
33
33
|
cancel(): void;
|
|
@@ -34,7 +34,7 @@ declare class TemplateTool {
|
|
|
34
34
|
get isNeedToShowRemoveAbbreviationPopup(): boolean;
|
|
35
35
|
findKeyOfRelatedGroupId(clickedClosestItemId: number): number;
|
|
36
36
|
showRemoveAbbreviationPopup(): Promise<void>;
|
|
37
|
-
mousedown(event:
|
|
37
|
+
mousedown(event: MouseEvent): Promise<void>;
|
|
38
38
|
mousemove(event: any): boolean;
|
|
39
39
|
mouseup(event: any): boolean;
|
|
40
40
|
cancel(e: any): void;
|
|
@@ -23,5 +23,5 @@ interface InfoPanelProps {
|
|
|
23
23
|
sGroup: SGroup;
|
|
24
24
|
className?: string;
|
|
25
25
|
}
|
|
26
|
-
declare const _default: import("react-redux").ConnectedComponent<FC<InfoPanelProps>, import("react-redux").Omit<InfoPanelProps, "
|
|
26
|
+
declare const _default: import("react-redux").ConnectedComponent<FC<InfoPanelProps>, import("react-redux").Omit<InfoPanelProps, "sGroup" | "render" | "clientX" | "clientY" | "groupStruct">>;
|
|
27
27
|
export default _default;
|