ketcher-react 2.22.0-rc.1-dev.1 → 2.22.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.
@@ -11,3 +11,10 @@ export declare function filterNotInContractedSGroup(itemsToFilter: {
11
11
  atoms: number[];
12
12
  bonds: number[];
13
13
  };
14
+ export declare function filterNotPartOfSuperatomWithoutLabel(itemsToFilter: {
15
+ atoms?: number[];
16
+ bonds?: number[];
17
+ }, struct: Struct): {
18
+ atoms: number[];
19
+ bonds: number[];
20
+ };
@@ -0,0 +1,3 @@
1
+ import { ItemEventParams } from '../contextMenu.types';
2
+ declare const useAddAttachmentPoint: () => (({ props }: ItemEventParams) => Promise<void>)[];
3
+ export default useAddAttachmentPoint;
@@ -0,0 +1,3 @@
1
+ import { ItemEventParams } from '../contextMenu.types';
2
+ declare const useRemoveAttachmentPoint: () => (({ props }: ItemEventParams) => Promise<void>)[];
3
+ export default useRemoveAttachmentPoint;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ketcher-react",
3
- "version": "2.22.0-rc.1-dev.1",
3
+ "version": "2.22.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",