ketcher-react 3.8.0-rc.2 → 3.8.0-rc.4
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/cjs/index.js +209 -61
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/{index.modern-30f7e490.js → index.modern-7604afae.js} +63 -15
- package/dist/cjs/index.modern-7604afae.js.map +1 -0
- package/dist/cjs/script/editor/Editor.d.ts +3 -0
- package/dist/cjs/script/ui/views/components/MonomerCreationWizard/components/AttachmentPoint/AttachmentPoint.d.ts +2 -1
- package/dist/index.js +210 -62
- package/dist/index.js.map +1 -1
- package/dist/{index.modern-7694d091.js → index.modern-eb9aa0eb.js} +63 -15
- package/dist/index.modern-eb9aa0eb.js.map +1 -0
- package/dist/script/editor/Editor.d.ts +3 -0
- package/dist/script/ui/views/components/MonomerCreationWizard/components/AttachmentPoint/AttachmentPoint.d.ts +2 -1
- package/package.json +1 -1
- package/dist/cjs/index.modern-30f7e490.js.map +0 -1
- package/dist/index.modern-7694d091.js.map +0 -1
|
@@ -107,10 +107,13 @@ declare class Editor implements KetcherEditor {
|
|
|
107
107
|
openMonomerCreationWizard(): void;
|
|
108
108
|
assignLeavingGroupAtom(atomId: number): void;
|
|
109
109
|
closeMonomerCreationWizard(): void;
|
|
110
|
+
private cleanupAttachmentPoint;
|
|
110
111
|
saveNewMonomer(data: any): void;
|
|
111
112
|
reassignAttachmentPointAtom(atomId: number, atomLabel: string): void;
|
|
112
113
|
reassignAttachmentPoint(currentName: AttachmentPointName, newName: AttachmentPointName): void;
|
|
113
114
|
removeAttachmentPoint(name: AttachmentPointName): void;
|
|
115
|
+
cleanupCloseAttachmentPointEditPopup(): void;
|
|
116
|
+
setProblematicAttachmentPoints(problematicPoints: Set<AttachmentPointName>): void;
|
|
114
117
|
selection(ci?: any): Selection | null;
|
|
115
118
|
hover(ci: {
|
|
116
119
|
id: number;
|
|
@@ -2,6 +2,7 @@ import { AttachmentPointName } from 'ketcher-core';
|
|
|
2
2
|
declare type Props = {
|
|
3
3
|
name: AttachmentPointName;
|
|
4
4
|
atomLabel: string;
|
|
5
|
+
implicitH: number;
|
|
5
6
|
};
|
|
6
|
-
declare const AttachmentPoint: ({ name, atomLabel }: Props) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
declare const AttachmentPoint: ({ name, atomLabel, implicitH }: Props) => import("react/jsx-runtime").JSX.Element;
|
|
7
8
|
export default AttachmentPoint;
|