ketcher-react 2.18.0 → 2.19.0-rc.2
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/components/Accordion/Accordion.d.ts +1 -1
- package/dist/components/Accordion/types.d.ts +1 -0
- package/dist/components/Icon/utils/iconNameToIcon.d.ts +3 -0
- package/dist/index.js +4939 -4830
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +4940 -4831
- package/dist/index.modern.js.map +1 -1
- package/dist/script/editor/tool/template.d.ts +2 -1
- package/dist/script/editor/tool/templatePreview.d.ts +1 -1
- package/package.json +1 -1
|
@@ -16,6 +16,7 @@
|
|
|
16
16
|
import { Struct, Bond } from 'ketcher-core';
|
|
17
17
|
import Editor from '../Editor';
|
|
18
18
|
import { Tool } from './Tool';
|
|
19
|
+
import TemplatePreview from './templatePreview';
|
|
19
20
|
export declare function getBondFlipSign(struct: Struct, bond: Bond): number;
|
|
20
21
|
export declare function getAngleFromEvent(event: any, ci: any, restruct: any): any;
|
|
21
22
|
declare class TemplateTool implements Tool {
|
|
@@ -23,7 +24,7 @@ declare class TemplateTool implements Tool {
|
|
|
23
24
|
private readonly mode;
|
|
24
25
|
private readonly template;
|
|
25
26
|
private readonly findItems;
|
|
26
|
-
|
|
27
|
+
templatePreview: TemplatePreview | null;
|
|
27
28
|
private dragCtx;
|
|
28
29
|
private targetGroupsIds;
|
|
29
30
|
private readonly isSaltOrSolvent;
|
|
@@ -35,7 +35,7 @@ declare class TemplatePreview {
|
|
|
35
35
|
private moveFloatingPreview;
|
|
36
36
|
private showFloatingPreview;
|
|
37
37
|
private hideFloatingPreview;
|
|
38
|
-
|
|
38
|
+
hideConnectedPreview(): void;
|
|
39
39
|
private showConnectedPreview;
|
|
40
40
|
}
|
|
41
41
|
export default TemplatePreview;
|