ketcher-react 3.12.0-rc.1 → 3.12.0
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 +18 -13
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/{index.modern-4b58287a.js → index.modern-b0607a67.js} +4 -3
- package/dist/cjs/index.modern-b0607a67.js.map +1 -0
- package/dist/cjs/script/editor/Editor.d.ts +2 -2
- package/dist/index.js +18 -13
- package/dist/index.js.map +1 -1
- package/dist/{index.modern-521d26f9.js → index.modern-b9db71c5.js} +5 -4
- package/dist/index.modern-b9db71c5.js.map +1 -0
- package/dist/script/editor/Editor.d.ts +2 -2
- package/package.json +1 -1
- package/dist/cjs/index.modern-4b58287a.js.map +0 -1
- package/dist/index.modern-521d26f9.js.map +0 -1
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
* See the License for the specific language governing permissions and
|
|
14
14
|
* limitations under the License.
|
|
15
15
|
***************************************************************************/
|
|
16
|
-
import { Action, Atom, AtomLabel, AttachmentPointName, Editor as KetcherEditor, FloatingToolsParams, IKetMonomerTemplate, MonomerCreationState, MULTITAIL_ARROW_KEY, Render, Struct, KetMonomerClass, RnaPresetComponentKey } from 'ketcher-core';
|
|
16
|
+
import { Action, Atom, AtomLabel, AttachmentPointName, Editor as KetcherEditor, FloatingToolsParams, IKetMonomerTemplate, MonomerCreationState, MULTITAIL_ARROW_KEY, Render, Struct, Vec2, KetMonomerClass, RnaPresetComponentKey } from 'ketcher-core';
|
|
17
17
|
import { PipelineSubscription, Subscription } from 'subscription';
|
|
18
18
|
import { Highlighter } from './highlighter';
|
|
19
19
|
import { ContextMenuInfo } from '../ui/views/components/ContextMenu/contextMenu.types';
|
|
@@ -117,7 +117,7 @@ declare class Editor implements KetcherEditor {
|
|
|
117
117
|
assignConnectionPointAtom(atomId: number, attachmentPointName?: AttachmentPointName, assignedAttachmentPointsByMonomer?: Map<AttachmentPointName, [
|
|
118
118
|
number,
|
|
119
119
|
number
|
|
120
|
-
]>, monomerStructure?: Selection, forceAddNewLeavingGroupAtom?: boolean, leavingAtomLabel?: AtomLabel): void;
|
|
120
|
+
]>, monomerStructure?: Selection, forceAddNewLeavingGroupAtom?: boolean, leavingAtomLabel?: AtomLabel, leavingAtomPosition?: Vec2): void;
|
|
121
121
|
closeMonomerCreationWizard(restoreOriginalStruct?: boolean): void;
|
|
122
122
|
saveNewMonomer(data: any): {
|
|
123
123
|
monomer: import("ketcher-core").Chem | import("ketcher-core").Sugar | import("ketcher-core").Peptide | import("ketcher-core").RNABase | import("ketcher-core").Phosphate;
|