ketcher-react 2.26.0-rc.9 → 2.27.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/MonomerPreview/AmbiguousMonomerPreview/AmbiguousMonomerPreview.d.ts +3 -1
- package/dist/index.css +1 -1
- package/dist/index.css.map +1 -1
- package/dist/index.js +104 -42
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +104 -42
- package/dist/index.modern.js.map +1 -1
- package/dist/script/editor/highlighter.d.ts +1 -0
- package/dist/script/ui/views/components/ContextMenu/contextMenu.types.d.ts +6 -6
- package/package.json +1 -1
|
@@ -25,7 +25,12 @@ export interface AtomContextMenuProps extends BaseContextMenuProps, WithExtraIte
|
|
|
25
25
|
id: CONTEXT_MENU_ID.FOR_ATOMS;
|
|
26
26
|
atomIds: Array<number>;
|
|
27
27
|
}
|
|
28
|
-
export interface
|
|
28
|
+
export interface RGroupAttachmentPointContextMenuProps extends BaseContextMenuProps, WithExtraItems {
|
|
29
|
+
id: CONTEXT_MENU_ID.FOR_R_GROUP_ATTACHMENT_POINT;
|
|
30
|
+
rgroupAttachmentPoints: Array<number>;
|
|
31
|
+
atomIds?: AtomContextMenuProps['atomIds'];
|
|
32
|
+
}
|
|
33
|
+
export interface SelectionContextMenuProps extends BaseContextMenuProps, Partial<Pick<BondsContextMenuProps, 'bondIds'>>, Partial<Pick<AtomContextMenuProps, 'atomIds'>>, Partial<Pick<RGroupAttachmentPointContextMenuProps, 'rgroupAttachmentPoints'>> {
|
|
29
34
|
id: CONTEXT_MENU_ID.FOR_SELECTION;
|
|
30
35
|
}
|
|
31
36
|
export interface FunctionalGroupsContextMenuProps extends BaseContextMenuProps {
|
|
@@ -36,11 +41,6 @@ export interface MacromoleculeContextMenuProps extends BaseContextMenuProps {
|
|
|
36
41
|
id: CONTEXT_MENU_ID.FOR_MACROMOLECULE;
|
|
37
42
|
functionalGroups: FunctionalGroup[];
|
|
38
43
|
}
|
|
39
|
-
export interface RGroupAttachmentPointContextMenuProps extends BaseContextMenuProps, WithExtraItems {
|
|
40
|
-
id: CONTEXT_MENU_ID.FOR_R_GROUP_ATTACHMENT_POINT;
|
|
41
|
-
rgroupAttachmentPoints: Array<number>;
|
|
42
|
-
atomIds?: AtomContextMenuProps['atomIds'];
|
|
43
|
-
}
|
|
44
44
|
export interface MultitailArrowContextMenuProps {
|
|
45
45
|
id: CONTEXT_MENU_ID.FOR_MULTITAIL_ARROW;
|
|
46
46
|
itemId: number;
|