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.
@@ -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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ketcher-react",
3
- "version": "3.8.0-rc.2",
3
+ "version": "3.8.0-rc.4",
4
4
  "description": "Web-based molecule sketcher",
5
5
  "license": "Apache-2.0",
6
6
  "homepage": "http://lifescience.opensource.epam.com/ketcher",