ketcher-react 3.8.0-rc.2 → 3.8.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.
@@ -111,6 +111,8 @@ declare class Editor implements KetcherEditor {
111
111
  reassignAttachmentPointAtom(atomId: number, atomLabel: string): void;
112
112
  reassignAttachmentPoint(currentName: AttachmentPointName, newName: AttachmentPointName): void;
113
113
  removeAttachmentPoint(name: AttachmentPointName): void;
114
+ cleanupCloseAttachmentPointEditPopup(): void;
115
+ setProblematicAttachmentPoints(problematicPoints: Set<AttachmentPointName>): void;
114
116
  selection(ci?: any): Selection | null;
115
117
  hover(ci: {
116
118
  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.3",
4
4
  "description": "Web-based molecule sketcher",
5
5
  "license": "Apache-2.0",
6
6
  "homepage": "http://lifescience.opensource.epam.com/ketcher",