ketcher-react 3.0.0-rc.1 → 3.0.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.
- package/dist/Editor.d.ts +6 -28
- package/dist/MicromoleculesEditor.d.ts +28 -0
- package/dist/cjs/Editor.d.ts +6 -0
- package/dist/cjs/MicromoleculesEditor.d.ts +28 -0
- package/dist/cjs/components/Accordion/Accordion.d.ts +2 -0
- package/dist/cjs/components/Accordion/index.d.ts +16 -0
- package/dist/cjs/components/Accordion/styles.d.ts +29 -0
- package/dist/cjs/components/Accordion/types.d.ts +27 -0
- package/dist/cjs/components/Buttons/Button/Button.d.ts +1 -0
- package/dist/cjs/components/Buttons/Button/index.d.ts +16 -0
- package/dist/cjs/components/Buttons/Button/styles.d.ts +5 -0
- package/dist/cjs/components/Buttons/IconButton/IconButton.d.ts +17 -0
- package/dist/cjs/components/Buttons/IconButton/IconButtonBase.d.ts +17 -0
- package/dist/cjs/components/Buttons/IconButton/IconButtonCustomIcon.d.ts +17 -0
- package/dist/cjs/components/Buttons/IconButton/index.d.ts +17 -0
- package/dist/cjs/components/Buttons/IconButton/styles.d.ts +28 -0
- package/dist/cjs/components/Buttons/IconButton/types.d.ts +40 -0
- package/dist/cjs/components/Buttons/index.d.ts +17 -0
- package/dist/cjs/components/Dialog/Dialog.d.ts +45 -0
- package/dist/cjs/components/Dialog/index.d.ts +16 -0
- package/dist/cjs/components/Icon/Icon.d.ts +18 -0
- package/dist/cjs/components/Icon/index.d.ts +19 -0
- package/dist/cjs/components/Icon/types.d.ts +26 -0
- package/dist/cjs/components/Icon/utils/getIconByName.d.ts +17 -0
- package/dist/cjs/components/Icon/utils/getIconName.d.ts +17 -0
- package/dist/cjs/components/Icon/utils/iconNameToIcon.d.ts +237 -0
- package/dist/cjs/components/InfoModal/InfoModal.d.ts +22 -0
- package/dist/cjs/components/InfoModal/constants.d.ts +4 -0
- package/dist/cjs/components/InfoModal/index.d.ts +17 -0
- package/dist/cjs/components/Input/Input.d.ts +1 -0
- package/dist/cjs/components/Input/index.d.ts +16 -0
- package/dist/cjs/components/Input/styles.d.ts +20 -0
- package/dist/cjs/components/MonomerPreview/AmbiguousMonomerPreview/AmbiguousMonomerPreview.d.ts +9 -0
- package/dist/cjs/components/MonomerPreview/AmbiguousMonomerPreview/AmbiguousMonomerPreview.styles.d.ts +29 -0
- package/dist/cjs/components/MonomerPreview/AmbiguousMonomerPreview/index.d.ts +3 -0
- package/dist/cjs/components/MonomerPreview/AmbiguousMonomerPreview/types.d.ts +46 -0
- package/dist/cjs/components/MonomerPreview/calculatePreviewPosition.d.ts +28 -0
- package/dist/cjs/components/MonomerPreview/constants.d.ts +9 -0
- package/dist/cjs/components/MonomerPreview/index.d.ts +3 -0
- package/dist/cjs/components/StructRender/StructRender.d.ts +18 -0
- package/dist/cjs/components/StructRender/index.d.ts +16 -0
- package/dist/cjs/components/StructRender/styles.d.ts +22 -0
- package/dist/cjs/components/StructRender/types.d.ts +29 -0
- package/dist/cjs/components/ToggleButtonGroup/ToggleButtonGroup.d.ts +8 -0
- package/dist/cjs/components/ToggleButtonGroup/ToggleButtonGroup.test.d.ts +16 -0
- package/dist/cjs/components/index.d.ts +23 -0
- package/dist/cjs/components/styles/consts.d.ts +59 -0
- package/dist/cjs/components/styles/index.d.ts +16 -0
- package/dist/cjs/constants.d.ts +49 -0
- package/dist/cjs/contexts/appContext.d.ts +23 -0
- package/dist/cjs/contexts/errorsContext.d.ts +21 -0
- package/dist/cjs/contexts/formContext.d.ts +18 -0
- package/dist/cjs/contexts/index.d.ts +21 -0
- package/dist/cjs/contexts/settingsContext.d.ts +21 -0
- package/dist/cjs/hooks/index.d.ts +21 -0
- package/dist/cjs/hooks/useAppContext.d.ts +16 -0
- package/dist/cjs/hooks/useClickOutside.d.ts +2 -0
- package/dist/cjs/hooks/useFormContext.d.ts +16 -0
- package/dist/cjs/hooks/useInterval.d.ts +16 -0
- package/dist/cjs/hooks/useResizeObserver.d.ts +26 -0
- package/dist/cjs/hooks/useSettingsContext.d.ts +16 -0
- package/dist/cjs/hooks/useSubscribtionOnEvents.d.ts +16 -0
- package/dist/cjs/index.css +2 -0
- package/dist/cjs/index.css.map +1 -0
- package/dist/cjs/index.d.ts +20 -0
- package/dist/{index.modern.js → cjs/index.js} +4299 -4055
- package/dist/cjs/index.js.map +1 -0
- package/dist/cjs/index.modern-1ee858dd.js +15323 -0
- package/dist/cjs/index.modern-1ee858dd.js.map +1 -0
- package/dist/cjs/script/api.d.ts +19 -0
- package/dist/cjs/script/builders/index.d.ts +16 -0
- package/dist/cjs/script/builders/ketcher/ButtonConfig.d.ts +18 -0
- package/dist/cjs/script/builders/ketcher/ButtonName.d.ts +17 -0
- package/dist/cjs/script/builders/ketcher/ButtonsConfig.d.ts +20 -0
- package/dist/cjs/script/builders/ketcher/CustomButtons.d.ts +5 -0
- package/dist/cjs/script/builders/ketcher/KetcherBuilder.d.ts +39 -0
- package/dist/cjs/script/builders/ketcher/index.d.ts +17 -0
- package/dist/cjs/script/editor/Editor.d.ts +119 -0
- package/dist/cjs/script/editor/HoverIcon.d.ts +31 -0
- package/dist/cjs/script/editor/highlighter.d.ts +33 -0
- package/dist/cjs/script/editor/index.d.ts +19 -0
- package/dist/cjs/script/editor/shared/closest.d.ts +43 -0
- package/dist/cjs/script/editor/shared/closest.types.d.ts +9 -0
- package/dist/cjs/script/editor/tool/Tool.d.ts +21 -0
- package/dist/cjs/script/editor/tool/apoint.d.ts +23 -0
- package/dist/cjs/script/editor/tool/apoint.utils.d.ts +2 -0
- package/dist/cjs/script/editor/tool/arrow/arrow.types.d.ts +19 -0
- package/dist/cjs/script/editor/tool/arrow/arrowTool.d.ts +9 -0
- package/dist/cjs/script/editor/tool/arrow/commonArrow.d.ts +17 -0
- package/dist/cjs/script/editor/tool/arrow/multitailArrowAdd.d.ts +14 -0
- package/dist/cjs/script/editor/tool/arrow/multitailArrowMoveTool.d.ts +12 -0
- package/dist/cjs/script/editor/tool/arrow/reactionArrowAdd.d.ts +20 -0
- package/dist/cjs/script/editor/tool/arrow/reactionArrowMoveTool.d.ts +12 -0
- package/dist/cjs/script/editor/tool/atom.d.ts +29 -0
- package/dist/cjs/script/editor/tool/attach.d.ts +24 -0
- package/dist/cjs/script/editor/tool/bond.d.ts +31 -0
- package/dist/cjs/script/editor/tool/chain.d.ts +27 -0
- package/dist/cjs/script/editor/tool/charge.d.ts +24 -0
- package/dist/cjs/script/editor/tool/enhanced-stereo.d.ts +25 -0
- package/dist/cjs/script/editor/tool/eraser.d.ts +30 -0
- package/dist/cjs/script/editor/tool/hand.d.ts +29 -0
- package/dist/cjs/script/editor/tool/helper/deleteFunctionalGroups.d.ts +2 -0
- package/dist/cjs/script/editor/tool/helper/dropAndMerge.d.ts +3 -0
- package/dist/cjs/script/editor/tool/helper/filterNotInCollapsedSGroup.d.ts +20 -0
- package/dist/cjs/script/editor/tool/helper/getGroupIdsFromItems.d.ts +12 -0
- package/dist/cjs/script/editor/tool/helper/isAtomOutSideCanvas.d.ts +2 -0
- package/dist/cjs/script/editor/tool/helper/isMacroMolecule.d.ts +5 -0
- package/dist/cjs/script/editor/tool/helper/lasso.d.ts +68 -0
- package/dist/cjs/script/editor/tool/helper/locate.d.ts +47 -0
- package/dist/cjs/script/editor/tool/image.d.ts +18 -0
- package/dist/cjs/script/editor/tool/index.d.ts +2 -0
- package/dist/cjs/script/editor/tool/paste.d.ts +34 -0
- package/dist/cjs/script/editor/tool/reactionmap.d.ts +27 -0
- package/dist/cjs/script/editor/tool/reactionplus.d.ts +26 -0
- package/dist/cjs/script/editor/tool/reactionunmap.d.ts +23 -0
- package/dist/cjs/script/editor/tool/rgroupatom.d.ts +23 -0
- package/dist/cjs/script/editor/tool/rgroupfragment.d.ts +24 -0
- package/dist/cjs/script/editor/tool/rotate-controller.d.ts +56 -0
- package/dist/cjs/script/editor/tool/rotate-controller.test.d.ts +1 -0
- package/dist/cjs/script/editor/tool/rotate-controller.utils.d.ts +3 -0
- package/dist/cjs/script/editor/tool/rotate.d.ts +51 -0
- package/dist/cjs/script/editor/tool/select/index.d.ts +7 -0
- package/dist/cjs/script/editor/tool/select/select.d.ts +42 -0
- package/dist/cjs/script/editor/tool/select/select.helpers.d.ts +17 -0
- package/dist/cjs/script/editor/tool/select/select.types.d.ts +1 -0
- package/dist/cjs/script/editor/tool/select/selectViewOnly.d.ts +14 -0
- package/dist/cjs/script/editor/tool/sgroup.d.ts +31 -0
- package/dist/cjs/script/editor/tool/simpleobject.d.ts +28 -0
- package/dist/cjs/script/editor/tool/template.d.ts +48 -0
- package/dist/cjs/script/editor/tool/templatePreview.d.ts +41 -0
- package/dist/cjs/script/editor/tool/text.d.ts +27 -0
- package/dist/cjs/script/editor/utils/customOnChangeHandler.d.ts +16 -0
- package/dist/cjs/script/editor/utils/elementOffset.d.ts +17 -0
- package/dist/cjs/script/editor/utils/functionalGroupsTooltip.d.ts +7 -0
- package/dist/cjs/script/editor/utils/getItemCursor.d.ts +3 -0
- package/dist/cjs/script/editor/utils/handleMovingPosibilityCursor.d.ts +1 -0
- package/dist/cjs/script/editor/utils/handleMovingPosibilityCursor.test.d.ts +1 -0
- package/dist/cjs/script/editor/utils/index.d.ts +19 -0
- package/dist/cjs/script/editor/utils/normalizeAngle.d.ts +11 -0
- package/dist/cjs/script/editor/utils/structLayout.d.ts +3 -0
- package/dist/cjs/script/index.d.ts +40 -0
- package/dist/cjs/script/providers/index.d.ts +1 -0
- package/dist/cjs/script/providers/indigoProvider.d.ts +5 -0
- package/dist/cjs/script/ui/App/App.container.d.ts +22 -0
- package/dist/cjs/script/ui/App/App.d.ts +24 -0
- package/dist/cjs/script/ui/App/AppHidden/AppHidden.container.d.ts +18 -0
- package/dist/cjs/script/ui/App/AppHidden/AppHidden.d.ts +22 -0
- package/dist/cjs/script/ui/App/AppHidden/index.d.ts +16 -0
- package/dist/cjs/script/ui/App/index.d.ts +16 -0
- package/dist/cjs/script/ui/App/initApp.d.ts +25 -0
- package/dist/cjs/script/ui/Portal/Portal.d.ts +38 -0
- package/dist/cjs/script/ui/Portal/index.d.ts +16 -0
- package/dist/cjs/script/ui/action/action.types.d.ts +45 -0
- package/dist/cjs/script/ui/action/atoms.d.ts +40 -0
- package/dist/cjs/script/ui/action/copyAs.d.ts +1 -0
- package/dist/cjs/script/ui/action/copyImageToClipboard.d.ts +2 -0
- package/dist/cjs/script/ui/action/createCopyOfSelected.d.ts +14 -0
- package/dist/cjs/script/ui/action/debug.d.ts +13 -0
- package/dist/cjs/script/ui/action/flips.d.ts +1 -0
- package/dist/cjs/script/ui/action/fullscreen.d.ts +24 -0
- package/dist/cjs/script/ui/action/functionalGroups.d.ts +31 -0
- package/dist/cjs/script/ui/action/help.d.ts +9 -0
- package/dist/cjs/script/ui/action/highlightColors/HighlightColors.d.ts +6 -0
- package/dist/cjs/script/ui/action/highlightColors/style.d.ts +25 -0
- package/dist/cjs/script/ui/action/index.d.ts +19 -0
- package/dist/cjs/script/ui/action/isHidden.d.ts +16 -0
- package/dist/cjs/script/ui/action/server.d.ts +92 -0
- package/dist/cjs/script/ui/action/templates.d.ts +16 -0
- package/dist/cjs/script/ui/action/tools.d.ts +372 -0
- package/dist/cjs/script/ui/action/zoom.d.ts +31 -0
- package/dist/cjs/script/ui/component/actionmenu.d.ts +9 -0
- package/dist/cjs/script/ui/component/cliparea/cliparea.d.ts +22 -0
- package/dist/cjs/script/ui/component/form/Input/Input.d.ts +43 -0
- package/dist/cjs/script/ui/component/form/Input/Input.test.d.ts +1 -0
- package/dist/cjs/script/ui/component/form/MeasureInput/measure-input.d.ts +12 -0
- package/dist/cjs/script/ui/component/form/Select/Select.d.ts +32 -0
- package/dist/cjs/script/ui/component/form/Select/Select.test.d.ts +1 -0
- package/dist/cjs/script/ui/component/form/Select/index.d.ts +17 -0
- package/dist/cjs/script/ui/component/form/buttonlist.d.ts +9 -0
- package/dist/cjs/script/ui/component/form/colorPicker/ColorPicker.d.ts +27 -0
- package/dist/cjs/script/ui/component/form/colorPicker/ColorPicker.test.d.ts +1 -0
- package/dist/cjs/script/ui/component/form/combobox/combobox.d.ts +12 -0
- package/dist/cjs/script/ui/component/form/form/errorPopover.d.ts +5 -0
- package/dist/cjs/script/ui/component/form/form/form.d.ts +29 -0
- package/dist/cjs/script/ui/component/form/select-checkbox.d.ts +5 -0
- package/dist/cjs/script/ui/component/form/select-list.d.ts +26 -0
- package/dist/cjs/script/ui/component/form/systemfonts.d.ts +2 -0
- package/dist/cjs/script/ui/component/view/Atom/Atom.d.ts +7 -0
- package/dist/cjs/script/ui/component/view/Atom/index.d.ts +16 -0
- package/dist/cjs/script/ui/component/view/SaveButton.test.d.ts +16 -0
- package/dist/cjs/script/ui/component/view/Tabs/Tabs.d.ts +9 -0
- package/dist/cjs/script/ui/component/view/Tabs/index.d.ts +16 -0
- package/dist/cjs/script/ui/component/view/ToolActions.test.d.ts +1 -0
- package/dist/cjs/script/ui/component/view/openbutton.d.ts +9 -0
- package/dist/cjs/script/ui/component/view/saveButton.types.d.ts +2 -0
- package/dist/cjs/script/ui/component/view/saveButton.utils.d.ts +2 -0
- package/dist/cjs/script/ui/component/view/savebutton.d.ts +33 -0
- package/dist/cjs/script/ui/data/convert/structConverter.d.ts +17 -0
- package/dist/cjs/script/ui/data/convert/structconv.d.ts +52 -0
- package/dist/cjs/script/ui/data/schema/options-schema.d.ts +36 -0
- package/dist/cjs/script/ui/data/schema/schema-helper.d.ts +2 -0
- package/dist/cjs/script/ui/data/schema/sdata-schema.d.ts +60 -0
- package/dist/cjs/script/ui/data/schema/struct-schema.d.ts +436 -0
- package/dist/cjs/script/ui/data/templates.d.ts +2 -0
- package/dist/cjs/script/ui/data/utils.d.ts +11 -0
- package/dist/cjs/script/ui/data/utils.test.d.ts +1 -0
- package/dist/cjs/script/ui/dialog/AbbreviationLookup/AbbreviationLookup.constants.d.ts +4 -0
- package/dist/cjs/script/ui/dialog/AbbreviationLookup/AbbreviationLookup.container.d.ts +16 -0
- package/dist/cjs/script/ui/dialog/AbbreviationLookup/AbbreviationLookup.container.test.d.ts +1 -0
- package/dist/cjs/script/ui/dialog/AbbreviationLookup/AbbreviationLookup.d.ts +21 -0
- package/dist/cjs/script/ui/dialog/AbbreviationLookup/AbbreviationLookup.test.d.ts +1 -0
- package/dist/cjs/script/ui/dialog/AbbreviationLookup/AbbreviationLookup.test.utils.d.ts +7 -0
- package/dist/cjs/script/ui/dialog/AbbreviationLookup/AbbreviationLookup.types.d.ts +37 -0
- package/dist/cjs/script/ui/dialog/AbbreviationLookup/AbbreviationLookup.utils.d.ts +22 -0
- package/dist/cjs/script/ui/dialog/AbbreviationLookup/AbbreviationLookup.utils.test.d.ts +16 -0
- package/dist/cjs/script/ui/dialog/AbbreviationLookup/hooks/useOptions.d.ts +17 -0
- package/dist/cjs/script/ui/dialog/AbbreviationLookup/hooks/useOptions.test.d.ts +1 -0
- package/dist/cjs/script/ui/dialog/AbbreviationLookup/index.d.ts +17 -0
- package/dist/cjs/script/ui/dialog/index.d.ts +17 -0
- package/dist/cjs/script/ui/dialog/template/EmptySearchResult.d.ts +19 -0
- package/dist/cjs/script/ui/dialog/template/TemplateDialog.d.ts +42 -0
- package/dist/cjs/script/ui/dialog/template/TemplateTable.d.ts +39 -0
- package/dist/cjs/script/ui/dialog/template/template-attach.d.ts +33 -0
- package/dist/cjs/script/ui/dialog/template/useSaltsAndSolvets.d.ts +2 -0
- package/dist/cjs/script/ui/dialog/toolbox/SDataFieldset.d.ts +4 -0
- package/dist/cjs/script/ui/dialog/toolbox/SGroupFieldset.d.ts +4 -0
- package/dist/cjs/script/ui/dialog/toolbox/enhancedStereo/enhancedStereo.d.ts +42 -0
- package/dist/cjs/script/ui/dialog/toolbox/labeledit.d.ts +3 -0
- package/dist/cjs/script/ui/dialog/toolbox/rgroup/rgroup.d.ts +15 -0
- package/dist/cjs/script/ui/dialog/toolbox/sgroup.d.ts +9 -0
- package/dist/cjs/script/ui/dialog/toolbox/sgroup.test.d.ts +1 -0
- package/dist/cjs/script/ui/index.d.ts +16 -0
- package/dist/cjs/script/ui/state/abbreviationLookup/abbreviationLookup.types.d.ts +19 -0
- package/dist/cjs/script/ui/state/abbreviationLookup/index.d.ts +30 -0
- package/dist/cjs/script/ui/state/abbreviationLookup/index.test.d.ts +1 -0
- package/dist/cjs/script/ui/state/abbreviationLookup/selectors/index.d.ts +16 -0
- package/dist/cjs/script/ui/state/abbreviationLookup/selectors/selectors.d.ts +17 -0
- package/dist/cjs/script/ui/state/action/index.d.ts +7 -0
- package/dist/cjs/script/ui/state/common/common.types.d.ts +21 -0
- package/dist/cjs/script/ui/state/common/index.d.ts +26 -0
- package/dist/cjs/script/ui/state/common/index.test.d.ts +1 -0
- package/dist/cjs/script/ui/state/common/selectors/index.d.ts +16 -0
- package/dist/cjs/script/ui/state/common/selectors/selectors.d.ts +19 -0
- package/dist/cjs/script/ui/state/constants.d.ts +23 -0
- package/dist/cjs/script/ui/state/editor/index.d.ts +28 -0
- package/dist/cjs/script/ui/state/editor/selectors/index.d.ts +16 -0
- package/dist/cjs/script/ui/state/editor/utils/generateCommonProperties.d.ts +6 -0
- package/dist/cjs/script/ui/state/editor/utils/index.d.ts +1 -0
- package/dist/cjs/script/ui/state/floatingTools/index.d.ts +16 -0
- package/dist/cjs/script/ui/state/floatingTools/selectors/index.d.ts +5 -0
- package/dist/cjs/script/ui/state/functionalGroups/index.d.ts +32 -0
- package/dist/cjs/script/ui/state/functionalGroups/selectors/index.d.ts +18 -0
- package/dist/cjs/script/ui/state/handleHotkeysOverItem.d.ts +15 -0
- package/dist/cjs/script/ui/state/hotkeys.d.ts +27 -0
- package/dist/cjs/script/ui/state/hotkeys.test.d.ts +1 -0
- package/dist/cjs/script/ui/state/index.d.ts +11 -0
- package/dist/cjs/script/ui/state/modal/atoms.d.ts +7 -0
- package/dist/cjs/script/ui/state/modal/bonds.d.ts +6 -0
- package/dist/cjs/script/ui/state/modal/form.d.ts +162 -0
- package/dist/cjs/script/ui/state/modal/index.d.ts +3 -0
- package/dist/cjs/script/ui/state/modal/sdata.d.ts +16 -0
- package/dist/cjs/script/ui/state/modal/utils/index.d.ts +1 -0
- package/dist/cjs/script/ui/state/modal/utils/updateOnlyChangedProperties.d.ts +1 -0
- package/dist/cjs/script/ui/state/mouse.d.ts +17 -0
- package/dist/cjs/script/ui/state/moveSelectedItems.d.ts +5 -0
- package/dist/cjs/script/ui/state/options/index.d.ts +106 -0
- package/dist/cjs/script/ui/state/request/index.d.ts +22 -0
- package/dist/cjs/script/ui/state/request/reducer.test.d.ts +16 -0
- package/dist/cjs/script/ui/state/request/request.types.d.ts +27 -0
- package/dist/cjs/script/ui/state/saltsAndSolvents/index.d.ts +30 -0
- package/dist/cjs/script/ui/state/saltsAndSolvents/selectors/index.d.ts +16 -0
- package/dist/cjs/script/ui/state/server/index.d.ts +7 -0
- package/dist/cjs/script/ui/state/server/selectors/index.d.ts +16 -0
- package/dist/cjs/script/ui/state/shared.d.ts +43 -0
- package/dist/cjs/script/ui/state/templates/index.d.ts +92 -0
- package/dist/cjs/script/ui/state/templates/init-lib.d.ts +28 -0
- package/dist/cjs/script/ui/state/templates/selectors/index.d.ts +16 -0
- package/dist/cjs/script/ui/state/toolbar/index.d.ts +33 -0
- package/dist/cjs/script/ui/storage-ext.d.ts +9 -0
- package/dist/cjs/script/ui/utils/fileOpener.d.ts +1 -0
- package/dist/cjs/script/ui/utils/index.d.ts +14 -0
- package/dist/cjs/script/ui/views/AppClipArea.d.ts +18 -0
- package/dist/cjs/script/ui/views/Editor.d.ts +3 -0
- package/dist/cjs/script/ui/views/components/ContextMenu/ContextMenu.d.ts +19 -0
- package/dist/cjs/script/ui/views/components/ContextMenu/ContextMenuTrigger.d.ts +18 -0
- package/dist/cjs/script/ui/views/components/ContextMenu/ContextMenuTrigger.utils.d.ts +7 -0
- package/dist/cjs/script/ui/views/components/ContextMenu/contextMenu.types.d.ts +74 -0
- package/dist/cjs/script/ui/views/components/ContextMenu/hooks/useAddAttachmentPoint.d.ts +4 -0
- package/dist/cjs/script/ui/views/components/ContextMenu/hooks/useAtomEdit.d.ts +4 -0
- package/dist/cjs/script/ui/views/components/ContextMenu/hooks/useAtomStereo.d.ts +4 -0
- package/dist/cjs/script/ui/views/components/ContextMenu/hooks/useBondEdit.d.ts +4 -0
- package/dist/cjs/script/ui/views/components/ContextMenu/hooks/useBondSGroupAttach.d.ts +4 -0
- package/dist/cjs/script/ui/views/components/ContextMenu/hooks/useBondSGroupEdit.d.ts +4 -0
- package/dist/cjs/script/ui/views/components/ContextMenu/hooks/useBondTypeChange.d.ts +4 -0
- package/dist/cjs/script/ui/views/components/ContextMenu/hooks/useChangeBondDirection.d.ts +3 -0
- package/dist/cjs/script/ui/views/components/ContextMenu/hooks/useDelete.d.ts +4 -0
- package/dist/cjs/script/ui/views/components/ContextMenu/hooks/useFunctionalGroupEoc.d.ts +7 -0
- package/dist/cjs/script/ui/views/components/ContextMenu/hooks/useFunctionalGroupRemove.d.ts +4 -0
- package/dist/cjs/script/ui/views/components/ContextMenu/hooks/useMonomerExpansionHandlers.d.ts +4 -0
- package/dist/cjs/script/ui/views/components/ContextMenu/hooks/useMultitailArrowTails.d.ts +11 -0
- package/dist/cjs/script/ui/views/components/ContextMenu/hooks/useRGroupAttachmentPointEdit.d.ts +4 -0
- package/dist/cjs/script/ui/views/components/ContextMenu/hooks/useRGroupAttachmentPointRemove.d.ts +4 -0
- package/dist/cjs/script/ui/views/components/ContextMenu/hooks/useRemoveAttachmentPoint.d.ts +4 -0
- package/dist/cjs/script/ui/views/components/ContextMenu/index.d.ts +2 -0
- package/dist/cjs/script/ui/views/components/ContextMenu/menuItems/AtomMenuItems.d.ts +4 -0
- package/dist/cjs/script/ui/views/components/ContextMenu/menuItems/BondMenuItems.d.ts +4 -0
- package/dist/cjs/script/ui/views/components/ContextMenu/menuItems/FunctionalGroupMenuItems.d.ts +4 -0
- package/dist/cjs/script/ui/views/components/ContextMenu/menuItems/MacromoleculeMenuItems.d.ts +3 -0
- package/dist/cjs/script/ui/views/components/ContextMenu/menuItems/MultitailArrowMenuItems.d.ts +2 -0
- package/dist/cjs/script/ui/views/components/ContextMenu/menuItems/RGroupAttachmentPointMenuItems.d.ts +4 -0
- package/dist/cjs/script/ui/views/components/ContextMenu/menuItems/SelectionMenuItems.d.ts +4 -0
- package/dist/cjs/script/ui/views/components/ContextMenu/utils.d.ts +25 -0
- package/dist/cjs/script/ui/views/components/ContextMenu/utils.test.d.ts +1 -0
- package/dist/cjs/script/ui/views/components/Spinner/LoadingCircles.d.ts +16 -0
- package/dist/cjs/script/ui/views/components/Spinner/index.d.ts +16 -0
- package/dist/cjs/script/ui/views/components/StructEditor/InfoPanel.d.ts +27 -0
- package/dist/cjs/script/ui/views/components/StructEditor/InfoTooltip.d.ts +23 -0
- package/dist/cjs/script/ui/views/components/StructEditor/SGroupDataRender.d.ts +13 -0
- package/dist/cjs/script/ui/views/components/StructEditor/StructEditor.d.ts +33 -0
- package/dist/cjs/script/ui/views/components/StructEditor/helpers.d.ts +3 -0
- package/dist/cjs/script/ui/views/components/StructEditor/index.d.ts +16 -0
- package/dist/cjs/script/ui/views/components/index.d.ts +19 -0
- package/dist/cjs/script/ui/views/modal/Modal.container.d.ts +19 -0
- package/dist/cjs/script/ui/views/modal/Modal.d.ts +27 -0
- package/dist/cjs/script/ui/views/modal/components/Confirm/Confirm.d.ts +6 -0
- package/dist/cjs/script/ui/views/modal/components/Confirm/index.d.ts +1 -0
- package/dist/cjs/script/ui/views/modal/components/ExtendedTable/ExtendedTable.d.ts +2 -0
- package/dist/cjs/script/ui/views/modal/components/ExtendedTable/components/GenericGroups/BoxWithLines.d.ts +17 -0
- package/dist/cjs/script/ui/views/modal/components/ExtendedTable/components/GenericGroups/GenGroup.d.ts +24 -0
- package/dist/cjs/script/ui/views/modal/components/ExtendedTable/components/GenericGroups/GenSet.d.ts +26 -0
- package/dist/cjs/script/ui/views/modal/components/ExtendedTable/components/GenericGroups/GenericGroups.d.ts +22 -0
- package/dist/cjs/script/ui/views/modal/components/ExtendedTable/components/GenericGroups/components/ButtonGenSet/ButtonGenSet.d.ts +24 -0
- package/dist/cjs/script/ui/views/modal/components/ExtendedTable/components/GenericGroups/components/ButtonGenSet/index.d.ts +16 -0
- package/dist/cjs/script/ui/views/modal/components/ExtendedTable/components/GenericGroups/index.d.ts +27 -0
- package/dist/cjs/script/ui/views/modal/components/ExtendedTable/helpers.d.ts +1 -0
- package/dist/cjs/script/ui/views/modal/components/ExtendedTable/index.d.ts +1 -0
- package/dist/cjs/script/ui/views/modal/components/InfoModal/InfoModal.d.ts +18 -0
- package/dist/cjs/script/ui/views/modal/components/InfoModal/InfoModal.test.d.ts +1 -0
- package/dist/cjs/script/ui/views/modal/components/InfoModal/InfoModal.test.utils.d.ts +63 -0
- package/dist/cjs/script/ui/views/modal/components/InfoModal/PasteErrorModalBody/PasteErrorModalBody.d.ts +2 -0
- package/dist/cjs/script/ui/views/modal/components/InfoModal/PasteErrorModalBody/index.d.ts +1 -0
- package/dist/cjs/script/ui/views/modal/components/InfoModal/constants.d.ts +9 -0
- package/dist/cjs/script/ui/views/modal/components/InfoModal/index.d.ts +16 -0
- package/dist/cjs/script/ui/views/modal/components/PeriodTable/PeriodTable.d.ts +37 -0
- package/dist/cjs/script/ui/views/modal/components/PeriodTable/components/AtomInfo/AtomInfo.d.ts +5 -0
- package/dist/cjs/script/ui/views/modal/components/PeriodTable/components/AtomInfo/index.d.ts +16 -0
- package/dist/cjs/script/ui/views/modal/components/PeriodTable/components/ElementsTable/ElementsTable.d.ts +9 -0
- package/dist/cjs/script/ui/views/modal/components/PeriodTable/components/ElementsTable/components/Header.d.ts +2 -0
- package/dist/cjs/script/ui/views/modal/components/PeriodTable/components/ElementsTable/components/MainRow.d.ts +11 -0
- package/dist/cjs/script/ui/views/modal/components/PeriodTable/components/ElementsTable/components/OutinerRow.d.ts +10 -0
- package/dist/cjs/script/ui/views/modal/components/PeriodTable/components/ElementsTable/components/index.d.ts +19 -0
- package/dist/cjs/script/ui/views/modal/components/PeriodTable/components/ElementsTable/index.d.ts +16 -0
- package/dist/cjs/script/ui/views/modal/components/PeriodTable/components/TypeChoice/TypeChoice.d.ts +6 -0
- package/dist/cjs/script/ui/views/modal/components/PeriodTable/components/TypeChoice/index.d.ts +16 -0
- package/dist/cjs/script/ui/views/modal/components/PeriodTable/components/index.d.ts +20 -0
- package/dist/cjs/script/ui/views/modal/components/PeriodTable/index.d.ts +16 -0
- package/dist/cjs/script/ui/views/modal/components/Text/FontControl/FontControl.d.ts +21 -0
- package/dist/cjs/script/ui/views/modal/components/Text/FontControl/index.d.ts +16 -0
- package/dist/cjs/script/ui/views/modal/components/Text/SpecialSymbols/SpecialSymbolsButton.d.ts +21 -0
- package/dist/cjs/script/ui/views/modal/components/Text/SpecialSymbolsList/SpecialSymbolsList.d.ts +19 -0
- package/dist/cjs/script/ui/views/modal/components/Text/Text.d.ts +25 -0
- package/dist/cjs/script/ui/views/modal/components/Text/TextButton/TextButton.d.ts +30 -0
- package/dist/cjs/script/ui/views/modal/components/Text/TextButton/index.d.ts +16 -0
- package/dist/cjs/script/ui/views/modal/components/Text/index.d.ts +16 -0
- package/dist/cjs/script/ui/views/modal/components/document/Open/Open.container.d.ts +24 -0
- package/dist/cjs/script/ui/views/modal/components/document/Open/Open.d.ts +30 -0
- package/dist/cjs/script/ui/views/modal/components/document/Open/components/AnalyzingFile.d.ts +19 -0
- package/dist/cjs/script/ui/views/modal/components/document/Open/components/CDXStructuresViewer/CDXStructuresViewer.d.ts +23 -0
- package/dist/cjs/script/ui/views/modal/components/document/Open/components/CDXStructuresViewer/index.d.ts +2 -0
- package/dist/cjs/script/ui/views/modal/components/document/Open/components/DialogActionButton.d.ts +24 -0
- package/dist/cjs/script/ui/views/modal/components/document/Open/components/FileDrop.d.ts +26 -0
- package/dist/cjs/script/ui/views/modal/components/document/Open/components/OpenOptions.d.ts +24 -0
- package/dist/cjs/script/ui/views/modal/components/document/Open/components/TextEditor.d.ts +21 -0
- package/dist/cjs/script/ui/views/modal/components/document/Open/components/ViewSwitcher.d.ts +33 -0
- package/dist/cjs/script/ui/views/modal/components/document/Open/index.d.ts +16 -0
- package/dist/cjs/script/ui/views/modal/components/document/Save/Save.d.ts +46 -0
- package/dist/cjs/script/ui/views/modal/components/document/Save/Save.test.d.ts +1 -0
- package/dist/cjs/script/ui/views/modal/components/document/Save/Save.test.utils.d.ts +2 -0
- package/dist/cjs/script/ui/views/modal/components/document/Save/index.d.ts +16 -0
- package/dist/cjs/script/ui/views/modal/components/document/index.d.ts +18 -0
- package/dist/cjs/script/ui/views/modal/components/meta/About/About.d.ts +3 -0
- package/dist/cjs/script/ui/views/modal/components/meta/About/index.d.ts +16 -0
- package/dist/cjs/script/ui/views/modal/components/meta/Settings/Accordion/Accordion.d.ts +22 -0
- package/dist/cjs/script/ui/views/modal/components/meta/Settings/Accordion/index.d.ts +16 -0
- package/dist/cjs/script/ui/views/modal/components/meta/Settings/Settings.d.ts +38 -0
- package/dist/cjs/script/ui/views/modal/components/meta/Settings/fieldGroups.d.ts +42 -0
- package/dist/cjs/script/ui/views/modal/components/meta/Settings/index.d.ts +16 -0
- package/dist/cjs/script/ui/views/modal/components/meta/index.d.ts +18 -0
- package/dist/cjs/script/ui/views/modal/components/process/Analyse/Analyse.d.ts +10 -0
- package/dist/cjs/script/ui/views/modal/components/process/Analyse/components/FormulaInput/FormulaInput.d.ts +5 -0
- package/dist/cjs/script/ui/views/modal/components/process/Analyse/components/FormulaInput/index.d.ts +16 -0
- package/dist/cjs/script/ui/views/modal/components/process/Analyse/components/FrozenInput/FrozenInput.d.ts +19 -0
- package/dist/cjs/script/ui/views/modal/components/process/Analyse/components/FrozenInput/index.d.ts +16 -0
- package/dist/cjs/script/ui/views/modal/components/process/Analyse/components/index.d.ts +18 -0
- package/dist/cjs/script/ui/views/modal/components/process/Analyse/index.d.ts +16 -0
- package/dist/cjs/script/ui/views/modal/components/process/Check/Check.d.ts +3 -0
- package/dist/cjs/script/ui/views/modal/components/process/Check/components/ErrorsCheck.d.ts +17 -0
- package/dist/cjs/script/ui/views/modal/components/process/Check/components/index.d.ts +16 -0
- package/dist/cjs/script/ui/views/modal/components/process/Check/index.d.ts +16 -0
- package/dist/cjs/script/ui/views/modal/components/process/Miew/Miew.d.ts +30 -0
- package/dist/cjs/script/ui/views/modal/components/process/Miew/index.d.ts +16 -0
- package/dist/cjs/script/ui/views/modal/components/process/Recognize/Recognize.d.ts +3 -0
- package/dist/cjs/script/ui/views/modal/components/process/Recognize/index.d.ts +16 -0
- package/dist/cjs/script/ui/views/modal/components/process/index.d.ts +20 -0
- package/dist/cjs/script/ui/views/modal/components/toolbox/Atom/Atom.container.d.ts +24 -0
- package/dist/cjs/script/ui/views/modal/components/toolbox/Atom/Atom.d.ts +40 -0
- package/dist/cjs/script/ui/views/modal/components/toolbox/Atom/AtomElement/AtomElement.d.ts +3 -0
- package/dist/cjs/script/ui/views/modal/components/toolbox/Atom/ElementNumber/ElementNumber.d.ts +21 -0
- package/dist/cjs/script/ui/views/modal/components/toolbox/Atom/ElementNumber/index.d.ts +16 -0
- package/dist/cjs/script/ui/views/modal/components/toolbox/Atom/helper.d.ts +6 -0
- package/dist/cjs/script/ui/views/modal/components/toolbox/Atom/index.d.ts +16 -0
- package/dist/cjs/script/ui/views/modal/components/toolbox/Attach/Attach.container.d.ts +17 -0
- package/dist/cjs/script/ui/views/modal/components/toolbox/Attach/Attach.d.ts +24 -0
- package/dist/cjs/script/ui/views/modal/components/toolbox/Attach/index.d.ts +16 -0
- package/dist/cjs/script/ui/views/modal/components/toolbox/Automap/Automap.container.d.ts +18 -0
- package/dist/cjs/script/ui/views/modal/components/toolbox/Automap/Automap.d.ts +32 -0
- package/dist/cjs/script/ui/views/modal/components/toolbox/Automap/index.d.ts +16 -0
- package/dist/cjs/script/ui/views/modal/components/toolbox/Bond/Bond.container.d.ts +17 -0
- package/dist/cjs/script/ui/views/modal/components/toolbox/Bond/Bond.d.ts +28 -0
- package/dist/cjs/script/ui/views/modal/components/toolbox/Bond/index.d.ts +16 -0
- package/dist/cjs/script/ui/views/modal/components/toolbox/FG/RemoveFG.d.ts +23 -0
- package/dist/cjs/script/ui/views/modal/components/toolbox/RgroupLogic/RgroupLogic.container.d.ts +17 -0
- package/dist/cjs/script/ui/views/modal/components/toolbox/RgroupLogic/RgroupLogic.d.ts +29 -0
- package/dist/cjs/script/ui/views/modal/components/toolbox/RgroupLogic/components/IfThenSelect/IfThenSelect.d.ts +19 -0
- package/dist/cjs/script/ui/views/modal/components/toolbox/RgroupLogic/components/IfThenSelect/index.d.ts +16 -0
- package/dist/cjs/script/ui/views/modal/components/toolbox/RgroupLogic/components/index.d.ts +16 -0
- package/dist/cjs/script/ui/views/modal/components/toolbox/RgroupLogic/index.d.ts +16 -0
- package/dist/cjs/script/ui/views/modal/components/toolbox/index.d.ts +21 -0
- package/dist/cjs/script/ui/views/modal/index.d.ts +16 -0
- package/dist/cjs/script/ui/views/modal/mediaSizes.d.ts +20 -0
- package/dist/cjs/script/ui/views/modal/modal.types.d.ts +28 -0
- package/dist/cjs/script/ui/views/toolbars/ArrowScroll/ArrowScroll.d.ts +23 -0
- package/dist/cjs/script/ui/views/toolbars/ArrowScroll/index.d.ts +2 -0
- package/dist/cjs/script/ui/views/toolbars/BottomToolbar/BottomToolbar.container.d.ts +20 -0
- package/dist/cjs/script/ui/views/toolbars/BottomToolbar/BottomToolbar.d.ts +28 -0
- package/dist/cjs/script/ui/views/toolbars/BottomToolbar/TemplatesList/TemplatesList.d.ts +34 -0
- package/dist/cjs/script/ui/views/toolbars/BottomToolbar/TemplatesList/index.d.ts +16 -0
- package/dist/cjs/script/ui/views/toolbars/BottomToolbar/index.d.ts +16 -0
- package/dist/cjs/script/ui/views/toolbars/FloatingTools/FloatingTools.container.d.ts +4 -0
- package/dist/cjs/script/ui/views/toolbars/FloatingTools/FloatingTools.d.ts +20 -0
- package/dist/cjs/script/ui/views/toolbars/FloatingTools/index.d.ts +1 -0
- package/dist/cjs/script/ui/views/toolbars/LeftToolbar/Bond/Bond.d.ts +24 -0
- package/dist/cjs/script/ui/views/toolbars/LeftToolbar/Bond/index.d.ts +16 -0
- package/dist/cjs/script/ui/views/toolbars/LeftToolbar/Bond/options.d.ts +24 -0
- package/dist/cjs/script/ui/views/toolbars/LeftToolbar/LeftToolbar.container.d.ts +18 -0
- package/dist/cjs/script/ui/views/toolbars/LeftToolbar/LeftToolbar.d.ts +24 -0
- package/dist/cjs/script/ui/views/toolbars/LeftToolbar/RGroup/RGroup.d.ts +24 -0
- package/dist/cjs/script/ui/views/toolbars/LeftToolbar/RGroup/index.d.ts +16 -0
- package/dist/cjs/script/ui/views/toolbars/LeftToolbar/Shape/Shape.d.ts +24 -0
- package/dist/cjs/script/ui/views/toolbars/LeftToolbar/Shape/index.d.ts +16 -0
- package/dist/cjs/script/ui/views/toolbars/LeftToolbar/index.d.ts +16 -0
- package/dist/cjs/script/ui/views/toolbars/LeftToolbar/leftToolbarOptions.d.ts +8 -0
- package/dist/cjs/script/ui/views/toolbars/ModeControl/ModeControl.d.ts +21 -0
- package/dist/cjs/script/ui/views/toolbars/ModeControl/index.d.ts +1 -0
- package/dist/cjs/script/ui/views/toolbars/RightToolbar/AtomsList/AtomsList.d.ts +33 -0
- package/dist/cjs/script/ui/views/toolbars/RightToolbar/AtomsList/index.d.ts +16 -0
- package/dist/cjs/script/ui/views/toolbars/RightToolbar/RightToolbar.container.d.ts +21 -0
- package/dist/cjs/script/ui/views/toolbars/RightToolbar/RightToolbar.d.ts +29 -0
- package/dist/cjs/script/ui/views/toolbars/RightToolbar/index.d.ts +16 -0
- package/dist/cjs/script/ui/views/toolbars/ToolbarGroupItem/ActionButton/ActionButton.d.ts +37 -0
- package/dist/cjs/script/ui/views/toolbars/ToolbarGroupItem/ActionButton/index.d.ts +16 -0
- package/dist/cjs/script/ui/views/toolbars/ToolbarGroupItem/ToolbarGroupItem.d.ts +34 -0
- package/dist/cjs/script/ui/views/toolbars/ToolbarGroupItem/ToolbarMultiToolItem/ToolbarMultiToolItem.d.ts +41 -0
- package/dist/cjs/script/ui/views/toolbars/ToolbarGroupItem/ToolbarMultiToolItem/index.d.ts +16 -0
- package/dist/cjs/script/ui/views/toolbars/ToolbarGroupItem/ToolbarMultiToolItem/usePortalOpening.d.ts +19 -0
- package/dist/cjs/script/ui/views/toolbars/ToolbarGroupItem/ToolbarMultiToolItem/usePortalStyle.d.ts +19 -0
- package/dist/cjs/script/ui/views/toolbars/ToolbarGroupItem/ToolbarMultiToolItem/variants/DefaultMultiTool/DefaultMultiTool.d.ts +22 -0
- package/dist/cjs/script/ui/views/toolbars/ToolbarGroupItem/ToolbarMultiToolItem/variants/DefaultMultiTool/index.d.ts +18 -0
- package/dist/cjs/script/ui/views/toolbars/ToolbarGroupItem/ToolbarMultiToolItem/variants/GroupedMultiTool/GroupedMultiTool.d.ts +22 -0
- package/dist/cjs/script/ui/views/toolbars/ToolbarGroupItem/ToolbarMultiToolItem/variants/GroupedMultiTool/index.d.ts +16 -0
- package/dist/cjs/script/ui/views/toolbars/ToolbarGroupItem/ToolbarMultiToolItem/variants/chooseMultiTool.d.ts +18 -0
- package/dist/cjs/script/ui/views/toolbars/ToolbarGroupItem/ToolbarMultiToolItem/variants/variants.types.d.ts +35 -0
- package/dist/cjs/script/ui/views/toolbars/ToolbarGroupItem/index.d.ts +16 -0
- package/dist/cjs/script/ui/views/toolbars/ToolbarGroupItem/utils/index.d.ts +16 -0
- package/dist/cjs/script/ui/views/toolbars/ToolbarGroupItem/utils/makeItems.d.ts +18 -0
- package/dist/cjs/script/ui/views/toolbars/TopToolbar/ClipboardControls.d.ts +30 -0
- package/dist/cjs/script/ui/views/toolbars/TopToolbar/CustomButtons.d.ts +8 -0
- package/dist/cjs/script/ui/views/toolbars/TopToolbar/Divider.d.ts +17 -0
- package/dist/cjs/script/ui/views/toolbars/TopToolbar/ElementWithDropdown.d.ts +23 -0
- package/dist/cjs/script/ui/views/toolbars/TopToolbar/ExternalFuncControls.d.ts +35 -0
- package/dist/cjs/script/ui/views/toolbars/TopToolbar/FileControls.d.ts +10 -0
- package/dist/cjs/script/ui/views/toolbars/TopToolbar/ScaleTransformer.d.ts +24 -0
- package/dist/cjs/script/ui/views/toolbars/TopToolbar/SystemControls.d.ts +27 -0
- package/dist/cjs/script/ui/views/toolbars/TopToolbar/TopToolbar.container.d.ts +17 -0
- package/dist/cjs/script/ui/views/toolbars/TopToolbar/TopToolbar.d.ts +59 -0
- package/dist/cjs/script/ui/views/toolbars/TopToolbar/TopToolbarIconButton.d.ts +21 -0
- package/dist/cjs/script/ui/views/toolbars/TopToolbar/UndoRedo.d.ts +26 -0
- package/dist/cjs/script/ui/views/toolbars/TopToolbar/ZoomControls.d.ts +28 -0
- package/dist/cjs/script/ui/views/toolbars/TopToolbar/ZoomInput.d.ts +26 -0
- package/dist/cjs/script/ui/views/toolbars/TopToolbar/ZoomList.d.ts +22 -0
- package/dist/cjs/script/ui/views/toolbars/TopToolbar/ZoomSlider.d.ts +21 -0
- package/dist/cjs/script/ui/views/toolbars/TopToolbar/index.d.ts +16 -0
- package/dist/cjs/script/ui/views/toolbars/index.d.ts +20 -0
- package/dist/cjs/script/ui/views/toolbars/mediaSizes.d.ts +23 -0
- package/dist/cjs/script/ui/views/toolbars/toolbar.types.d.ts +34 -0
- package/dist/cjs/setupTests.d.ts +1 -0
- package/dist/index.css +1 -1
- package/dist/index.css.map +1 -1
- package/dist/index.js +4201 -4157
- package/dist/index.js.map +1 -1
- package/dist/index.modern-4a164708.js +15301 -0
- package/dist/index.modern-4a164708.js.map +1 -0
- package/dist/script/ui/views/toolbars/ModeControl/ModeControl.d.ts +21 -0
- package/dist/script/ui/views/toolbars/ModeControl/index.d.ts +1 -0
- package/package.json +12 -4
- package/dist/index.modern.js.map +0 -1
|
@@ -0,0 +1,237 @@
|
|
|
1
|
+
/****************************************************************************
|
|
2
|
+
* Copyright 2021 EPAM Systems
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
***************************************************************************/
|
|
16
|
+
export declare const iconNameToIcon: {
|
|
17
|
+
readonly α: ReactComponent;
|
|
18
|
+
readonly β: ReactComponent;
|
|
19
|
+
readonly γ: ReactComponent;
|
|
20
|
+
readonly δ: ReactComponent;
|
|
21
|
+
readonly ε: ReactComponent;
|
|
22
|
+
readonly ζ: ReactComponent;
|
|
23
|
+
readonly η: ReactComponent;
|
|
24
|
+
readonly θ: ReactComponent;
|
|
25
|
+
readonly ι: ReactComponent;
|
|
26
|
+
readonly κ: ReactComponent;
|
|
27
|
+
readonly λ: ReactComponent;
|
|
28
|
+
readonly μ: ReactComponent;
|
|
29
|
+
readonly ν: ReactComponent;
|
|
30
|
+
readonly ξ: ReactComponent;
|
|
31
|
+
readonly ο: ReactComponent;
|
|
32
|
+
readonly π: ReactComponent;
|
|
33
|
+
readonly ρ: ReactComponent;
|
|
34
|
+
readonly σ: ReactComponent;
|
|
35
|
+
readonly τ: ReactComponent;
|
|
36
|
+
readonly υ: ReactComponent;
|
|
37
|
+
readonly φ: ReactComponent;
|
|
38
|
+
readonly χ: ReactComponent;
|
|
39
|
+
readonly ψ: ReactComponent;
|
|
40
|
+
readonly ω: ReactComponent;
|
|
41
|
+
readonly Å: ReactComponent;
|
|
42
|
+
readonly '\u00B0': ReactComponent;
|
|
43
|
+
readonly ħ: ReactComponent;
|
|
44
|
+
readonly '\u00B1': ReactComponent;
|
|
45
|
+
readonly '\u2030': ReactComponent;
|
|
46
|
+
readonly '\u221A': ReactComponent;
|
|
47
|
+
readonly '\u2190': ReactComponent;
|
|
48
|
+
readonly '\u2192': ReactComponent;
|
|
49
|
+
readonly '\u2190/': ReactComponent;
|
|
50
|
+
readonly '/\u2192': ReactComponent;
|
|
51
|
+
readonly '\u2194': ReactComponent;
|
|
52
|
+
readonly '\u220F': ReactComponent;
|
|
53
|
+
readonly '\u2211': ReactComponent;
|
|
54
|
+
readonly '\u221E': ReactComponent;
|
|
55
|
+
readonly '\u2202': ReactComponent;
|
|
56
|
+
readonly '\u2206': ReactComponent;
|
|
57
|
+
readonly '\u222B': ReactComponent;
|
|
58
|
+
readonly '\u2248': ReactComponent;
|
|
59
|
+
readonly '=/': ReactComponent;
|
|
60
|
+
readonly '\u2264': ReactComponent;
|
|
61
|
+
readonly '\u2265': ReactComponent;
|
|
62
|
+
readonly '\u2109': ReactComponent;
|
|
63
|
+
readonly '\u2103': ReactComponent;
|
|
64
|
+
readonly about: ReactComponent;
|
|
65
|
+
readonly analyse: ReactComponent;
|
|
66
|
+
readonly 'any-atom': ReactComponent;
|
|
67
|
+
readonly arom: ReactComponent;
|
|
68
|
+
readonly 'arrow-upward': ReactComponent;
|
|
69
|
+
readonly bonds: ReactComponent;
|
|
70
|
+
readonly 'bond-any': ReactComponent;
|
|
71
|
+
readonly 'bond-aromatic': ReactComponent;
|
|
72
|
+
readonly 'bond-crossed': ReactComponent;
|
|
73
|
+
readonly 'bond-hydrogen': ReactComponent;
|
|
74
|
+
readonly 'bond-dative': ReactComponent;
|
|
75
|
+
readonly 'bond-double': ReactComponent;
|
|
76
|
+
readonly 'bond-doublearomatic': ReactComponent;
|
|
77
|
+
readonly 'bond-down': ReactComponent;
|
|
78
|
+
readonly 'bond-single': ReactComponent;
|
|
79
|
+
readonly 'bond-singlearomatic': ReactComponent;
|
|
80
|
+
readonly 'bond-singledouble': ReactComponent;
|
|
81
|
+
readonly 'bond-triple': ReactComponent;
|
|
82
|
+
readonly 'bond-up': ReactComponent;
|
|
83
|
+
readonly 'bond-updown': ReactComponent;
|
|
84
|
+
readonly 'capital-t': ReactComponent;
|
|
85
|
+
readonly chain: ReactComponent;
|
|
86
|
+
readonly 'charge-minus': ReactComponent;
|
|
87
|
+
readonly 'charge-plus': ReactComponent;
|
|
88
|
+
readonly check: ReactComponent;
|
|
89
|
+
readonly 'check-mark': ReactComponent;
|
|
90
|
+
readonly 'chiral-flag': ReactComponent;
|
|
91
|
+
readonly cip: ReactComponent;
|
|
92
|
+
readonly clean: ReactComponent;
|
|
93
|
+
readonly copies: ReactComponent;
|
|
94
|
+
readonly copy: ReactComponent;
|
|
95
|
+
readonly 'copy-image': ReactComponent;
|
|
96
|
+
readonly 'copy-mol': ReactComponent;
|
|
97
|
+
readonly 'copy-ket': ReactComponent;
|
|
98
|
+
readonly cut: ReactComponent;
|
|
99
|
+
readonly dearom: ReactComponent;
|
|
100
|
+
readonly delete: ReactComponent;
|
|
101
|
+
readonly dropdown: ReactComponent;
|
|
102
|
+
readonly 'enhanced-stereo': ReactComponent;
|
|
103
|
+
readonly edit: ReactComponent;
|
|
104
|
+
readonly 'elements-group': ReactComponent;
|
|
105
|
+
readonly 'extended-table': ReactComponent;
|
|
106
|
+
readonly erase: ReactComponent;
|
|
107
|
+
readonly 'file-thumbnail': ReactComponent;
|
|
108
|
+
readonly 'fullscreen-enter': ReactComponent;
|
|
109
|
+
readonly 'fullscreen-exit': ReactComponent;
|
|
110
|
+
readonly 'generic-groups': ReactComponent;
|
|
111
|
+
readonly hand: ReactComponent;
|
|
112
|
+
readonly compressedhand: ReactComponent;
|
|
113
|
+
readonly help: ReactComponent;
|
|
114
|
+
readonly history: ReactComponent;
|
|
115
|
+
readonly 'image-frame': ReactComponent;
|
|
116
|
+
readonly layout: ReactComponent;
|
|
117
|
+
readonly logo: ReactComponent;
|
|
118
|
+
readonly miew: ReactComponent;
|
|
119
|
+
readonly 'macromolecules-mode': ReactComponent;
|
|
120
|
+
readonly 'molecules-mode': ReactComponent;
|
|
121
|
+
readonly clear: ReactComponent;
|
|
122
|
+
readonly open: ReactComponent;
|
|
123
|
+
readonly paste: ReactComponent;
|
|
124
|
+
readonly 'period-table': ReactComponent;
|
|
125
|
+
readonly arrows: ReactComponent;
|
|
126
|
+
readonly 'reaction-arrow-elliptical-arc-arrow-filled-bow': ReactComponent;
|
|
127
|
+
readonly 'reaction-arrow-elliptical-arc-arrow-filled-triangle': ReactComponent;
|
|
128
|
+
readonly 'reaction-arrow-elliptical-arc-arrow-open-angle': ReactComponent;
|
|
129
|
+
readonly 'reaction-arrow-elliptical-arc-arrow-open-half-angle': ReactComponent;
|
|
130
|
+
readonly 'reaction-arrow-open-angle': ReactComponent;
|
|
131
|
+
readonly 'reaction-arrow-filled-triangle': ReactComponent;
|
|
132
|
+
readonly 'reaction-arrow-filled-bow': ReactComponent;
|
|
133
|
+
readonly 'reaction-arrow-dashed-open-angle': ReactComponent;
|
|
134
|
+
readonly 'reaction-arrow-failed': ReactComponent;
|
|
135
|
+
readonly 'reaction-arrow-retrosynthetic': ReactComponent;
|
|
136
|
+
readonly 'reaction-arrow-both-ends-filled-triangle': ReactComponent;
|
|
137
|
+
readonly 'reaction-arrow-equilibrium-filled-half-bow': ReactComponent;
|
|
138
|
+
readonly 'reaction-arrow-equilibrium-filled-triangle': ReactComponent;
|
|
139
|
+
readonly 'reaction-arrow-equilibrium-open-angle': ReactComponent;
|
|
140
|
+
readonly 'reaction-arrow-unbalanced-equilibrium-filled-half-bow': ReactComponent;
|
|
141
|
+
readonly 'reaction-arrow-unbalanced-equilibrium-open-half-angle': ReactComponent;
|
|
142
|
+
readonly 'reaction-arrow-unbalanced-equilibrium-large-filled-half-bow': ReactComponent;
|
|
143
|
+
readonly 'reaction-arrow-unbalanced-equilibrium-filled-half-triangle': ReactComponent;
|
|
144
|
+
readonly "reaction-arrow-multitail": ReactComponent;
|
|
145
|
+
readonly 'reaction-automap': ReactComponent;
|
|
146
|
+
readonly 'reaction-mapping-tools': ReactComponent;
|
|
147
|
+
readonly 'reaction-map': ReactComponent;
|
|
148
|
+
readonly 'reaction-plus': ReactComponent;
|
|
149
|
+
readonly 'reaction-unmap': ReactComponent;
|
|
150
|
+
readonly recognize: ReactComponent;
|
|
151
|
+
readonly redo: ReactComponent;
|
|
152
|
+
readonly rgroup: ReactComponent;
|
|
153
|
+
readonly 'rgroup-attpoints': ReactComponent;
|
|
154
|
+
readonly 'rgroup-fragment': ReactComponent;
|
|
155
|
+
readonly 'rgroup-label': ReactComponent;
|
|
156
|
+
readonly save: ReactComponent;
|
|
157
|
+
readonly search: ReactComponent;
|
|
158
|
+
readonly 'select-fragment': ReactComponent;
|
|
159
|
+
readonly 'select-lasso': ReactComponent;
|
|
160
|
+
readonly 'select-rectangle': ReactComponent;
|
|
161
|
+
readonly settings: ReactComponent;
|
|
162
|
+
readonly sgroup: ReactComponent;
|
|
163
|
+
readonly 'template-0': ReactComponent;
|
|
164
|
+
readonly 'template-1': ReactComponent;
|
|
165
|
+
readonly 'template-2': ReactComponent;
|
|
166
|
+
readonly 'template-3': ReactComponent;
|
|
167
|
+
readonly 'template-4': ReactComponent;
|
|
168
|
+
readonly 'template-5': ReactComponent;
|
|
169
|
+
readonly 'template-6': ReactComponent;
|
|
170
|
+
readonly 'template-7': ReactComponent;
|
|
171
|
+
readonly 'template-dialog': ReactComponent;
|
|
172
|
+
readonly 'template-lib': ReactComponent;
|
|
173
|
+
readonly 'snake-mode': ReactComponent;
|
|
174
|
+
readonly text: ReactComponent;
|
|
175
|
+
readonly images: ReactComponent;
|
|
176
|
+
readonly 'text-bold': ReactComponent;
|
|
177
|
+
readonly 'text-italic': ReactComponent;
|
|
178
|
+
readonly 'text-subscript': ReactComponent;
|
|
179
|
+
readonly 'text-superscript': ReactComponent;
|
|
180
|
+
readonly 'transform-flip-h': ReactComponent;
|
|
181
|
+
readonly 'transform-flip-v': ReactComponent;
|
|
182
|
+
readonly undo: ReactComponent;
|
|
183
|
+
readonly 'zoom-in': ReactComponent;
|
|
184
|
+
readonly 'zoom-out': ReactComponent;
|
|
185
|
+
readonly 'zoom-reset': ReactComponent;
|
|
186
|
+
readonly shapes: ReactComponent;
|
|
187
|
+
readonly 'shape-ellipse': ReactComponent;
|
|
188
|
+
readonly 'shape-rectangle': ReactComponent;
|
|
189
|
+
readonly 'shape-polyline': ReactComponent;
|
|
190
|
+
readonly 'shape-line': ReactComponent;
|
|
191
|
+
readonly 'not-found': ReactComponent;
|
|
192
|
+
readonly 'save-1': ReactComponent;
|
|
193
|
+
readonly 'open-1': ReactComponent;
|
|
194
|
+
readonly reset: ReactComponent;
|
|
195
|
+
readonly close: ReactComponent;
|
|
196
|
+
readonly general: ReactComponent;
|
|
197
|
+
readonly 'general-white': ReactComponent;
|
|
198
|
+
readonly stereo: ReactComponent;
|
|
199
|
+
readonly 'stereo-white': ReactComponent;
|
|
200
|
+
readonly atoms: ReactComponent;
|
|
201
|
+
readonly 'atoms-white': ReactComponent;
|
|
202
|
+
readonly 'bond-common': ReactComponent;
|
|
203
|
+
readonly 'bonds-white': ReactComponent;
|
|
204
|
+
readonly server: ReactComponent;
|
|
205
|
+
readonly 'server-white': ReactComponent;
|
|
206
|
+
readonly '3dviewer': ReactComponent;
|
|
207
|
+
readonly '3dviewer-white': ReactComponent;
|
|
208
|
+
readonly debugging: ReactComponent;
|
|
209
|
+
readonly 'debugging-white': ReactComponent;
|
|
210
|
+
readonly 'dropdown-indicator': ReactComponent;
|
|
211
|
+
readonly 'text-special-symbols': ReactComponent;
|
|
212
|
+
readonly chevron: ReactComponent;
|
|
213
|
+
readonly 'open-window-paste-icon': ReactComponent;
|
|
214
|
+
readonly 'open-window-upload-icon': ReactComponent;
|
|
215
|
+
readonly bracket: ReactComponent;
|
|
216
|
+
readonly error: ReactComponent;
|
|
217
|
+
readonly 'rap-left-link': ReactComponent;
|
|
218
|
+
readonly 'rap-middle-link': ReactComponent;
|
|
219
|
+
readonly 'rap-right-link': ReactComponent;
|
|
220
|
+
readonly 'arrows-left': ReactComponent;
|
|
221
|
+
readonly 'arrows-right': ReactComponent;
|
|
222
|
+
readonly sugar: ReactComponent;
|
|
223
|
+
readonly base: ReactComponent;
|
|
224
|
+
readonly phosphate: ReactComponent;
|
|
225
|
+
readonly preset: ReactComponent;
|
|
226
|
+
readonly nucleotide: ReactComponent;
|
|
227
|
+
readonly 'edit-filled': ReactComponent;
|
|
228
|
+
readonly 'vertical-dots': ReactComponent;
|
|
229
|
+
readonly expand: ReactComponent;
|
|
230
|
+
readonly 'minimize-expansion': ReactComponent;
|
|
231
|
+
readonly 'explicit-hydrogens': ReactComponent;
|
|
232
|
+
readonly 'flex-layout-mode': ReactComponent;
|
|
233
|
+
readonly 'snake-layout-mode': ReactComponent;
|
|
234
|
+
readonly 'sequence-layout-mode': ReactComponent;
|
|
235
|
+
readonly questionMark: ReactComponent;
|
|
236
|
+
readonly 'no-highlight-cross': ReactComponent;
|
|
237
|
+
};
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
/****************************************************************************
|
|
2
|
+
* Copyright 2021 EPAM Systems
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
***************************************************************************/
|
|
16
|
+
/// <reference types="react" />
|
|
17
|
+
interface InfoModalProps {
|
|
18
|
+
message: string;
|
|
19
|
+
close: () => void;
|
|
20
|
+
}
|
|
21
|
+
declare const InfoModal: ({ message, close }: InfoModalProps) => JSX.Element;
|
|
22
|
+
export default InfoModal;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/****************************************************************************
|
|
2
|
+
* Copyright 2021 EPAM Systems
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
***************************************************************************/
|
|
16
|
+
import InfoModal from './InfoModal';
|
|
17
|
+
export { InfoModal };
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const Input: (props: React.InputHTMLAttributes<HTMLInputElement>) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
/****************************************************************************
|
|
2
|
+
* Copyright 2021 EPAM Systems
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
***************************************************************************/
|
|
16
|
+
export { Input } from './Input';
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
/****************************************************************************
|
|
2
|
+
* Copyright 2021 EPAM Systems
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
***************************************************************************/
|
|
16
|
+
/// <reference types="react" />
|
|
17
|
+
export declare const StyledInput: import("@emotion/styled").StyledComponent<{
|
|
18
|
+
theme?: import("@emotion/react").Theme | undefined;
|
|
19
|
+
as?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> | undefined;
|
|
20
|
+
}, import("react").DetailedHTMLProps<import("react").InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, {}>;
|
package/dist/cjs/components/MonomerPreview/AmbiguousMonomerPreview/AmbiguousMonomerPreview.d.ts
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { CSSProperties } from 'react';
|
|
2
|
+
import { AmbiguousMonomerPreviewState } from './types';
|
|
3
|
+
interface Props {
|
|
4
|
+
className?: string;
|
|
5
|
+
preview: AmbiguousMonomerPreviewState;
|
|
6
|
+
style?: CSSProperties;
|
|
7
|
+
}
|
|
8
|
+
declare const AmbiguousMonomerPreview: ({ className, preview, style }: Props) => import("react/jsx-runtime").JSX.Element;
|
|
9
|
+
export { AmbiguousMonomerPreview };
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
export declare const Container: import("@emotion/styled").StyledComponent<{
|
|
3
|
+
theme?: import("@emotion/react").Theme | undefined;
|
|
4
|
+
as?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> | undefined;
|
|
5
|
+
}, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
|
6
|
+
export declare const Header: import("@emotion/styled").StyledComponent<{
|
|
7
|
+
theme?: import("@emotion/react").Theme | undefined;
|
|
8
|
+
as?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> | undefined;
|
|
9
|
+
}, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
|
10
|
+
export declare const Content: import("@emotion/styled").StyledComponent<{
|
|
11
|
+
theme?: import("@emotion/react").Theme | undefined;
|
|
12
|
+
as?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> | undefined;
|
|
13
|
+
}, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
|
14
|
+
export declare const ContentLine: import("@emotion/styled").StyledComponent<{
|
|
15
|
+
theme?: import("@emotion/react").Theme | undefined;
|
|
16
|
+
as?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> | undefined;
|
|
17
|
+
}, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
|
18
|
+
interface RatioBarProps {
|
|
19
|
+
ratio: number;
|
|
20
|
+
}
|
|
21
|
+
export declare const RatioBar: import("@emotion/styled").StyledComponent<{
|
|
22
|
+
theme?: import("@emotion/react").Theme | undefined;
|
|
23
|
+
as?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> | undefined;
|
|
24
|
+
} & RatioBarProps, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
|
25
|
+
export declare const MonomerName: import("@emotion/styled").StyledComponent<{
|
|
26
|
+
theme?: import("@emotion/react").Theme | undefined;
|
|
27
|
+
as?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> | undefined;
|
|
28
|
+
}, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
|
29
|
+
export {};
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
import { AmbiguousMonomerType, AttachmentPointsToBonds, IKetIdtAliases, MonomerItemType, PolymerBond } from 'ketcher-core';
|
|
2
|
+
export declare enum PreviewType {
|
|
3
|
+
Monomer = "monomer",
|
|
4
|
+
Preset = "preset",
|
|
5
|
+
Bond = "bond",
|
|
6
|
+
AmbiguousMonomer = "ambiguousMonomer"
|
|
7
|
+
}
|
|
8
|
+
export interface PreviewStyle {
|
|
9
|
+
readonly top?: string;
|
|
10
|
+
readonly left?: string;
|
|
11
|
+
readonly right?: string;
|
|
12
|
+
readonly transform?: string;
|
|
13
|
+
}
|
|
14
|
+
interface BasePreviewState {
|
|
15
|
+
readonly type: PreviewType;
|
|
16
|
+
readonly style?: PreviewStyle;
|
|
17
|
+
}
|
|
18
|
+
export interface MonomerPreviewState extends BasePreviewState {
|
|
19
|
+
readonly type: PreviewType.Monomer;
|
|
20
|
+
readonly monomer: MonomerItemType | undefined;
|
|
21
|
+
readonly attachmentPointsToBonds?: AttachmentPointsToBonds;
|
|
22
|
+
}
|
|
23
|
+
export declare enum PresetPosition {
|
|
24
|
+
Library = "library",
|
|
25
|
+
ChainStart = "chainStart",
|
|
26
|
+
ChainMiddle = "chainMiddle",
|
|
27
|
+
ChainEnd = "chainEnd"
|
|
28
|
+
}
|
|
29
|
+
export interface PresetPreviewState extends BasePreviewState {
|
|
30
|
+
readonly type: PreviewType.Preset;
|
|
31
|
+
readonly monomers: ReadonlyArray<MonomerItemType | undefined>;
|
|
32
|
+
readonly position: PresetPosition;
|
|
33
|
+
readonly name?: string;
|
|
34
|
+
readonly idtAliases?: IKetIdtAliases;
|
|
35
|
+
}
|
|
36
|
+
export interface BondPreviewState extends BasePreviewState {
|
|
37
|
+
readonly type: PreviewType.Bond;
|
|
38
|
+
readonly polymerBond: PolymerBond;
|
|
39
|
+
}
|
|
40
|
+
export interface AmbiguousMonomerPreviewState extends BasePreviewState {
|
|
41
|
+
readonly type: PreviewType.AmbiguousMonomer;
|
|
42
|
+
readonly monomer: AmbiguousMonomerType;
|
|
43
|
+
readonly presetMonomers?: ReadonlyArray<MonomerItemType | undefined>;
|
|
44
|
+
}
|
|
45
|
+
export declare type EditorStatePreview = MonomerPreviewState | PresetPreviewState | BondPreviewState | AmbiguousMonomerPreviewState;
|
|
46
|
+
export {};
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
/****************************************************************************
|
|
2
|
+
* Copyright 2021 EPAM Systems
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
***************************************************************************/
|
|
16
|
+
import { AmbiguousMonomerType, PolymerBond } from 'ketcher-core';
|
|
17
|
+
import { PreviewStyle } from './AmbiguousMonomerPreview/types';
|
|
18
|
+
export declare const calculateMonomerPreviewTop: (target?: CalculatePreviewTopPayload) => string;
|
|
19
|
+
export declare const calculateNucleoElementPreviewTop: (target?: CalculatePreviewTopPayload) => string;
|
|
20
|
+
declare type CalculatePreviewTopPayload = {
|
|
21
|
+
left: number;
|
|
22
|
+
top: number;
|
|
23
|
+
bottom: number;
|
|
24
|
+
};
|
|
25
|
+
export declare const calculateAmbiguousMonomerPreviewTop: (monomer: AmbiguousMonomerType) => (target?: CalculatePreviewTopPayload) => string;
|
|
26
|
+
export declare function calculateAmbiguousMonomerPreviewLeft(initialLeft: number): number;
|
|
27
|
+
export declare const calculateBondPreviewPosition: (bond: PolymerBond, bondCoordinates: DOMRect) => PreviewStyle;
|
|
28
|
+
export {};
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
/****************************************************************************
|
|
2
|
+
* Copyright 2021 EPAM Systems
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
***************************************************************************/
|
|
16
|
+
import { IStructRenderProps } from './types';
|
|
17
|
+
declare const StructRender: ({ struct, options, className, fullsize, update, }: IStructRenderProps) => import("react/jsx-runtime").JSX.Element;
|
|
18
|
+
export default StructRender;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
/****************************************************************************
|
|
2
|
+
* Copyright 2021 EPAM Systems
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
***************************************************************************/
|
|
16
|
+
export { default as StructRender } from './StructRender';
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
/****************************************************************************
|
|
2
|
+
* Copyright 2021 EPAM Systems
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
***************************************************************************/
|
|
16
|
+
/// <reference types="react" />
|
|
17
|
+
export declare const Container: import("@emotion/styled").StyledComponent<{
|
|
18
|
+
theme?: import("@emotion/react").Theme | undefined;
|
|
19
|
+
as?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> | undefined;
|
|
20
|
+
} & {
|
|
21
|
+
fullsize?: boolean | undefined;
|
|
22
|
+
}, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
/****************************************************************************
|
|
2
|
+
* Copyright 2021 EPAM Systems
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
***************************************************************************/
|
|
16
|
+
import { RenderOptions } from 'application/render/render.types';
|
|
17
|
+
import { Struct } from 'ketcher-core';
|
|
18
|
+
interface CasheOptions {
|
|
19
|
+
cachePrefix?: string;
|
|
20
|
+
needCache?: boolean;
|
|
21
|
+
}
|
|
22
|
+
export interface IStructRenderProps {
|
|
23
|
+
struct: Struct;
|
|
24
|
+
options?: (RenderOptions & CasheOptions) | CasheOptions;
|
|
25
|
+
className?: string;
|
|
26
|
+
update?: boolean;
|
|
27
|
+
fullsize?: boolean;
|
|
28
|
+
}
|
|
29
|
+
export {};
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
/****************************************************************************
|
|
2
|
+
* Copyright 2021 EPAM Systems
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
***************************************************************************/
|
|
16
|
+
export {};
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
/****************************************************************************
|
|
2
|
+
* Copyright 2021 EPAM Systems
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
***************************************************************************/
|
|
16
|
+
export * from './Icon';
|
|
17
|
+
export * from './Buttons';
|
|
18
|
+
export * from './StructRender';
|
|
19
|
+
export * from './Input';
|
|
20
|
+
export * from './Accordion';
|
|
21
|
+
export * from './InfoModal';
|
|
22
|
+
export * from './Dialog';
|
|
23
|
+
export * from './MonomerPreview';
|