ketcher-react 2.7.0-rc.7 → 2.7.0-rc.7-dev1
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 +29 -0
- package/dist/constants.d.ts +16 -0
- package/dist/contexts/appContext.d.ts +22 -0
- package/dist/contexts/errorsContext.d.ts +21 -0
- package/dist/contexts/formContext.d.ts +18 -0
- package/dist/contexts/index.d.ts +21 -0
- package/dist/contexts/settingsContext.d.ts +21 -0
- package/dist/hooks/index.d.ts +21 -0
- package/dist/hooks/useAppContext.d.ts +16 -0
- package/dist/hooks/useFormContext.d.ts +16 -0
- package/dist/hooks/useInterval.d.ts +16 -0
- package/dist/hooks/useResizeObserver.d.ts +26 -0
- package/dist/hooks/useSettingsContext.d.ts +16 -0
- package/dist/hooks/useSubscribtionOnEvents.d.ts +16 -0
- package/dist/icons/index.d.ts +16 -0
- package/dist/index.css +2 -0
- package/dist/index.css.map +1 -0
- package/dist/index.d.ts +18 -0
- package/dist/index.js +22460 -0
- package/dist/index.js.map +1 -0
- package/dist/index.modern.js +22398 -0
- package/dist/index.modern.js.map +1 -0
- package/dist/script/api.d.ts +19 -0
- package/dist/script/builders/index.d.ts +16 -0
- package/dist/script/builders/ketcher/ButtonConfig.d.ts +18 -0
- package/dist/script/builders/ketcher/ButtonName.d.ts +16 -0
- package/dist/script/builders/ketcher/ButtonsConfig.d.ts +20 -0
- package/dist/script/builders/ketcher/KetcherBuilder.d.ts +29 -0
- package/dist/script/builders/ketcher/index.d.ts +17 -0
- package/dist/script/editor/Editor.d.ts +90 -0
- package/dist/script/editor/highlighter.d.ts +32 -0
- package/dist/script/editor/index.d.ts +18 -0
- package/dist/script/editor/shared/closest.d.ts +25 -0
- package/dist/script/editor/shared/utils.d.ts +19 -0
- package/dist/script/editor/tool/apoint.d.ts +23 -0
- package/dist/script/editor/tool/atom.d.ts +31 -0
- package/dist/script/editor/tool/attach.d.ts +24 -0
- package/dist/script/editor/tool/bond.d.ts +30 -0
- package/dist/script/editor/tool/chain.d.ts +27 -0
- package/dist/script/editor/tool/charge.d.ts +24 -0
- package/dist/script/editor/tool/enhanced-stereo.d.ts +24 -0
- package/dist/script/editor/tool/eraser.d.ts +31 -0
- package/dist/script/editor/tool/hand.d.ts +30 -0
- package/dist/script/editor/tool/helper/lasso.d.ts +59 -0
- package/dist/script/editor/tool/helper/locate.d.ts +40 -0
- package/dist/script/editor/tool/index.d.ts +47 -0
- package/dist/script/editor/tool/paste.d.ts +29 -0
- package/dist/script/editor/tool/reactionarrow.d.ts +27 -0
- package/dist/script/editor/tool/reactionmap.d.ts +28 -0
- package/dist/script/editor/tool/reactionplus.d.ts +26 -0
- package/dist/script/editor/tool/reactionunmap.d.ts +23 -0
- package/dist/script/editor/tool/rgroupatom.d.ts +23 -0
- package/dist/script/editor/tool/rgroupfragment.d.ts +24 -0
- package/dist/script/editor/tool/rotate.d.ts +28 -0
- package/dist/script/editor/tool/select.d.ts +35 -0
- package/dist/script/editor/tool/sgroup.d.ts +31 -0
- package/dist/script/editor/tool/simpleobject.d.ts +26 -0
- package/dist/script/editor/tool/template.d.ts +30 -0
- package/dist/script/editor/tool/text.d.ts +26 -0
- package/dist/script/editor/utils/customOnChangeHandler.d.ts +16 -0
- package/dist/script/editor/utils/elementOffset.d.ts +17 -0
- package/dist/script/editor/utils/index.d.ts +17 -0
- package/dist/script/index.d.ts +27 -0
- package/dist/script/ui/App/App.container.d.ts +20 -0
- package/dist/script/ui/App/App.d.ts +23 -0
- package/dist/script/ui/App/AppHidden/AppHidden.container.d.ts +19 -0
- package/dist/script/ui/App/AppHidden/AppHidden.d.ts +23 -0
- package/dist/script/ui/App/AppHidden/index.d.ts +16 -0
- package/dist/script/ui/App/index.d.ts +16 -0
- package/dist/script/ui/App/initApp.d.ts +18 -0
- package/dist/script/ui/Portal/Portal.d.ts +37 -0
- package/dist/script/ui/Portal/index.d.ts +16 -0
- package/dist/script/ui/action/action.types.d.ts +44 -0
- package/dist/script/ui/action/atoms.d.ts +40 -0
- package/dist/script/ui/action/copyAs.d.ts +1 -0
- package/dist/script/ui/action/copyImageToClipboard.d.ts +2 -0
- package/dist/script/ui/action/debug.d.ts +13 -0
- package/dist/script/ui/action/fullscreen.d.ts +23 -0
- package/dist/script/ui/action/functionalGroups.d.ts +31 -0
- package/dist/script/ui/action/help.d.ts +8 -0
- package/dist/script/ui/action/index.d.ts +648 -0
- package/dist/script/ui/action/isHidden.d.ts +16 -0
- package/dist/script/ui/action/server.d.ts +117 -0
- package/dist/script/ui/action/templates.d.ts +13 -0
- package/dist/script/ui/action/tools.d.ts +355 -0
- package/dist/script/ui/action/zoom.d.ts +25 -0
- package/dist/script/ui/component/ContextMenu/ContextMenu.d.ts +3 -0
- package/dist/script/ui/component/actionmenu.d.ts +10 -0
- package/dist/script/ui/component/cliparea/cliparea.d.ts +20 -0
- package/dist/script/ui/component/form/MeasureInput/measure-input.d.ts +8 -0
- package/dist/script/ui/component/form/Select/Select.d.ts +30 -0
- package/dist/script/ui/component/form/Select/Select.test.d.ts +1 -0
- package/dist/script/ui/component/form/Select/index.d.ts +17 -0
- package/dist/script/ui/component/form/buttonlist.d.ts +9 -0
- package/dist/script/ui/component/form/colorPicker/ColorPicker.d.ts +28 -0
- package/dist/script/ui/component/form/colorPicker/ColorPicker.test.d.ts +1 -0
- package/dist/script/ui/component/form/combobox/combobox.d.ts +12 -0
- package/dist/script/ui/component/form/form/errorPopover.d.ts +5 -0
- package/dist/script/ui/component/form/form/form.d.ts +25 -0
- package/dist/script/ui/component/form/input.d.ts +34 -0
- package/dist/script/ui/component/form/select-checkbox.d.ts +5 -0
- package/dist/script/ui/component/form/select-list.d.ts +26 -0
- package/dist/script/ui/component/form/systemfonts.d.ts +2 -0
- package/dist/script/ui/component/structrender.d.ts +33 -0
- package/dist/script/ui/component/view/Atom/Atom.d.ts +7 -0
- package/dist/script/ui/component/view/Atom/index.d.ts +16 -0
- package/dist/script/ui/component/view/Tabs/Tabs.d.ts +9 -0
- package/dist/script/ui/component/view/Tabs/index.d.ts +16 -0
- package/dist/script/ui/component/view/icon.d.ts +5 -0
- package/dist/script/ui/component/view/openbutton.d.ts +9 -0
- package/dist/script/ui/component/view/savebutton.d.ts +2 -0
- package/dist/script/ui/data/convert/keynorm.d.ts +6 -0
- package/dist/script/ui/data/convert/structConverter.d.ts +17 -0
- package/dist/script/ui/data/convert/structconv.d.ts +24 -0
- package/dist/script/ui/data/schema/options-schema.d.ts +26 -0
- package/dist/script/ui/data/schema/schema-helper.d.ts +2 -0
- package/dist/script/ui/data/schema/sdata-schema.d.ts +58 -0
- package/dist/script/ui/data/schema/struct-schema.d.ts +301 -0
- package/dist/script/ui/data/templates.d.ts +2 -0
- package/dist/script/ui/dialog/index.d.ts +17 -0
- package/dist/script/ui/dialog/template/EmptySearchResult.d.ts +20 -0
- package/dist/script/ui/dialog/template/TemplateDialog.d.ts +41 -0
- package/dist/script/ui/dialog/template/TemplateTable.d.ts +38 -0
- package/dist/script/ui/dialog/template/template-attach.d.ts +28 -0
- package/dist/script/ui/dialog/template/useSaltsAndSolvets.d.ts +2 -0
- package/dist/script/ui/dialog/toolbox/enhancedStereo/enhancedStereo.d.ts +44 -0
- package/dist/script/ui/dialog/toolbox/labeledit.d.ts +3 -0
- package/dist/script/ui/dialog/toolbox/rgroup/rgroup.d.ts +15 -0
- package/dist/script/ui/dialog/toolbox/sdata.d.ts +19 -0
- package/dist/script/ui/dialog/toolbox/sgroup.d.ts +9 -0
- package/dist/script/ui/index.d.ts +16 -0
- package/dist/script/ui/state/action/index.d.ts +7 -0
- package/dist/script/ui/state/constants.d.ts +7 -0
- package/dist/script/ui/state/editor/index.d.ts +27 -0
- package/dist/script/ui/state/functionalGroups/index.d.ts +25 -0
- package/dist/script/ui/state/functionalGroups/selectors/index.d.ts +18 -0
- package/dist/script/ui/state/hotkeys.d.ts +23 -0
- package/dist/script/ui/state/index.d.ts +6 -0
- package/dist/script/ui/state/modal/form.d.ts +164 -0
- package/dist/script/ui/state/modal/index.d.ts +3 -0
- package/dist/script/ui/state/modal/sdata.d.ts +16 -0
- package/dist/script/ui/state/options/index.d.ts +68 -0
- package/dist/script/ui/state/request/index.d.ts +22 -0
- package/dist/script/ui/state/request/reducer.test.d.ts +16 -0
- package/dist/script/ui/state/request/request.types.d.ts +27 -0
- package/dist/script/ui/state/saltsAndSolvents/index.d.ts +23 -0
- package/dist/script/ui/state/saltsAndSolvents/selectors/index.d.ts +16 -0
- package/dist/script/ui/state/server/index.d.ts +7 -0
- package/dist/script/ui/state/shared.d.ts +19 -0
- package/dist/script/ui/state/templates/index.d.ts +69 -0
- package/dist/script/ui/state/templates/init-lib.d.ts +8 -0
- package/dist/script/ui/state/toolbar/index.d.ts +33 -0
- package/dist/script/ui/storage-ext.d.ts +9 -0
- package/dist/script/ui/utils/fileOpener.d.ts +16 -0
- package/dist/script/ui/utils/index.d.ts +7 -0
- package/dist/script/ui/utils/renderStruct.d.ts +9 -0
- package/dist/script/ui/views/AppClipArea.d.ts +18 -0
- package/dist/script/ui/views/Editor.d.ts +3 -0
- package/dist/script/ui/views/components/Cursor.d.ts +6 -0
- package/dist/script/ui/views/components/Dialog/Dialog.d.ts +44 -0
- package/dist/script/ui/views/components/Dialog/index.d.ts +16 -0
- package/dist/script/ui/views/components/Spinner/LoadingCircles.d.ts +17 -0
- package/dist/script/ui/views/components/Spinner/index.d.ts +16 -0
- package/dist/script/ui/views/components/StructEditor/InfoPanel.d.ts +29 -0
- package/dist/script/ui/views/components/StructEditor/StructEditor.d.ts +19 -0
- package/dist/script/ui/views/components/StructEditor/index.d.ts +16 -0
- package/dist/script/ui/views/components/index.d.ts +19 -0
- package/dist/script/ui/views/modal/Modal.container.d.ts +19 -0
- package/dist/script/ui/views/modal/Modal.d.ts +28 -0
- package/dist/script/ui/views/modal/components/Confirm/Confirm.d.ts +7 -0
- package/dist/script/ui/views/modal/components/Confirm/index.d.ts +1 -0
- package/dist/script/ui/views/modal/components/ExtendedTable/ExtendedTable.d.ts +2 -0
- package/dist/script/ui/views/modal/components/ExtendedTable/components/GenericGroups/BoxWithLines.d.ts +18 -0
- package/dist/script/ui/views/modal/components/ExtendedTable/components/GenericGroups/GenGroup.d.ts +24 -0
- package/dist/script/ui/views/modal/components/ExtendedTable/components/GenericGroups/GenSet.d.ts +26 -0
- package/dist/script/ui/views/modal/components/ExtendedTable/components/GenericGroups/GenericGroups.d.ts +22 -0
- package/dist/script/ui/views/modal/components/ExtendedTable/components/GenericGroups/index.d.ts +27 -0
- package/dist/script/ui/views/modal/components/ExtendedTable/helpers.d.ts +1 -0
- package/dist/script/ui/views/modal/components/ExtendedTable/index.d.ts +1 -0
- package/dist/script/ui/views/modal/components/PeriodTable/PeriodTable.d.ts +37 -0
- package/dist/script/ui/views/modal/components/PeriodTable/components/AtomInfo/AtomInfo.d.ts +5 -0
- package/dist/script/ui/views/modal/components/PeriodTable/components/AtomInfo/index.d.ts +16 -0
- package/dist/script/ui/views/modal/components/PeriodTable/components/ElementsTable/ElementsTable.d.ts +9 -0
- package/dist/script/ui/views/modal/components/PeriodTable/components/ElementsTable/components/Header.d.ts +2 -0
- package/dist/script/ui/views/modal/components/PeriodTable/components/ElementsTable/components/MainRow.d.ts +11 -0
- package/dist/script/ui/views/modal/components/PeriodTable/components/ElementsTable/components/OutinerRow.d.ts +10 -0
- package/dist/script/ui/views/modal/components/PeriodTable/components/ElementsTable/components/index.d.ts +19 -0
- package/dist/script/ui/views/modal/components/PeriodTable/components/ElementsTable/index.d.ts +16 -0
- package/dist/script/ui/views/modal/components/PeriodTable/components/TypeChoice/TypeChoice.d.ts +6 -0
- package/dist/script/ui/views/modal/components/PeriodTable/components/TypeChoice/index.d.ts +16 -0
- package/dist/script/ui/views/modal/components/PeriodTable/components/index.d.ts +20 -0
- package/dist/script/ui/views/modal/components/PeriodTable/index.d.ts +16 -0
- package/dist/script/ui/views/modal/components/Text/FontControl/FontControl.d.ts +22 -0
- package/dist/script/ui/views/modal/components/Text/FontControl/index.d.ts +16 -0
- package/dist/script/ui/views/modal/components/Text/SpecialSymbols/SpecialSymbolsButton.d.ts +22 -0
- package/dist/script/ui/views/modal/components/Text/SpecialSymbolsList/SpecialSymbolsList.d.ts +20 -0
- package/dist/script/ui/views/modal/components/Text/Text.d.ts +26 -0
- package/dist/script/ui/views/modal/components/Text/TextButton/TextButton.d.ts +30 -0
- package/dist/script/ui/views/modal/components/Text/TextButton/index.d.ts +16 -0
- package/dist/script/ui/views/modal/components/Text/index.d.ts +16 -0
- package/dist/script/ui/views/modal/components/document/Open/Open.container.d.ts +26 -0
- package/dist/script/ui/views/modal/components/document/Open/Open.d.ts +29 -0
- package/dist/script/ui/views/modal/components/document/Open/components/AnalyzingFile.d.ts +20 -0
- package/dist/script/ui/views/modal/components/document/Open/components/DialogActionButton.d.ts +25 -0
- package/dist/script/ui/views/modal/components/document/Open/components/FileDrop.d.ts +26 -0
- package/dist/script/ui/views/modal/components/document/Open/components/OpenOptions.d.ts +24 -0
- package/dist/script/ui/views/modal/components/document/Open/components/TextEditor.d.ts +22 -0
- package/dist/script/ui/views/modal/components/document/Open/components/ViewSwitcher.d.ts +31 -0
- package/dist/script/ui/views/modal/components/document/Open/index.d.ts +16 -0
- package/dist/script/ui/views/modal/components/document/Save/Save.d.ts +44 -0
- package/dist/script/ui/views/modal/components/document/Save/index.d.ts +16 -0
- package/dist/script/ui/views/modal/components/document/index.d.ts +18 -0
- package/dist/script/ui/views/modal/components/meta/About/About.d.ts +3 -0
- package/dist/script/ui/views/modal/components/meta/About/index.d.ts +16 -0
- package/dist/script/ui/views/modal/components/meta/Settings/Accordion/Accordion.d.ts +22 -0
- package/dist/script/ui/views/modal/components/meta/Settings/Accordion/index.d.ts +16 -0
- package/dist/script/ui/views/modal/components/meta/Settings/Settings.d.ts +38 -0
- package/dist/script/ui/views/modal/components/meta/Settings/fieldGroups.d.ts +41 -0
- package/dist/script/ui/views/modal/components/meta/Settings/index.d.ts +16 -0
- package/dist/script/ui/views/modal/components/meta/index.d.ts +18 -0
- package/dist/script/ui/views/modal/components/process/Analyse/Analyse.d.ts +10 -0
- package/dist/script/ui/views/modal/components/process/Analyse/components/FormulaInput/FormulaInput.d.ts +5 -0
- package/dist/script/ui/views/modal/components/process/Analyse/components/FormulaInput/index.d.ts +16 -0
- package/dist/script/ui/views/modal/components/process/Analyse/components/FrozenInput/FrozenInput.d.ts +19 -0
- package/dist/script/ui/views/modal/components/process/Analyse/components/FrozenInput/index.d.ts +16 -0
- package/dist/script/ui/views/modal/components/process/Analyse/components/index.d.ts +18 -0
- package/dist/script/ui/views/modal/components/process/Analyse/index.d.ts +16 -0
- package/dist/script/ui/views/modal/components/process/Check/Check.d.ts +3 -0
- package/dist/script/ui/views/modal/components/process/Check/components/ErrorsCheck.d.ts +17 -0
- package/dist/script/ui/views/modal/components/process/Check/components/index.d.ts +16 -0
- package/dist/script/ui/views/modal/components/process/Check/index.d.ts +16 -0
- package/dist/script/ui/views/modal/components/process/Miew/Miew.d.ts +31 -0
- package/dist/script/ui/views/modal/components/process/Miew/index.d.ts +16 -0
- package/dist/script/ui/views/modal/components/process/Recognize/Recognize.d.ts +3 -0
- package/dist/script/ui/views/modal/components/process/Recognize/index.d.ts +16 -0
- package/dist/script/ui/views/modal/components/process/index.d.ts +20 -0
- package/dist/script/ui/views/modal/components/toolbox/Atom/Atom.container.d.ts +20 -0
- package/dist/script/ui/views/modal/components/toolbox/Atom/Atom.d.ts +36 -0
- package/dist/script/ui/views/modal/components/toolbox/Atom/ElementNumber/ElementNumber.d.ts +22 -0
- package/dist/script/ui/views/modal/components/toolbox/Atom/ElementNumber/index.d.ts +16 -0
- package/dist/script/ui/views/modal/components/toolbox/Atom/index.d.ts +16 -0
- package/dist/script/ui/views/modal/components/toolbox/Attach/Attach.container.d.ts +18 -0
- package/dist/script/ui/views/modal/components/toolbox/Attach/Attach.d.ts +25 -0
- package/dist/script/ui/views/modal/components/toolbox/Attach/index.d.ts +16 -0
- package/dist/script/ui/views/modal/components/toolbox/Automap/Automap.container.d.ts +19 -0
- package/dist/script/ui/views/modal/components/toolbox/Automap/Automap.d.ts +33 -0
- package/dist/script/ui/views/modal/components/toolbox/Automap/index.d.ts +16 -0
- package/dist/script/ui/views/modal/components/toolbox/Bond/Bond.container.d.ts +18 -0
- package/dist/script/ui/views/modal/components/toolbox/Bond/Bond.d.ts +26 -0
- package/dist/script/ui/views/modal/components/toolbox/Bond/index.d.ts +16 -0
- package/dist/script/ui/views/modal/components/toolbox/FG/RemoveFG.d.ts +24 -0
- package/dist/script/ui/views/modal/components/toolbox/RgroupLogic/RgroupLogic.container.d.ts +18 -0
- package/dist/script/ui/views/modal/components/toolbox/RgroupLogic/RgroupLogic.d.ts +30 -0
- package/dist/script/ui/views/modal/components/toolbox/RgroupLogic/components/IfThenSelect/IfThenSelect.d.ts +20 -0
- package/dist/script/ui/views/modal/components/toolbox/RgroupLogic/components/IfThenSelect/index.d.ts +16 -0
- package/dist/script/ui/views/modal/components/toolbox/RgroupLogic/components/index.d.ts +16 -0
- package/dist/script/ui/views/modal/components/toolbox/RgroupLogic/index.d.ts +16 -0
- package/dist/script/ui/views/modal/components/toolbox/index.d.ts +21 -0
- package/dist/script/ui/views/modal/index.d.ts +16 -0
- package/dist/script/ui/views/modal/mediaSizes.d.ts +20 -0
- package/dist/script/ui/views/modal/modal.types.d.ts +28 -0
- package/dist/script/ui/views/toolbars/ArrowScroll/ArrowScroll.d.ts +24 -0
- package/dist/script/ui/views/toolbars/ArrowScroll/index.d.ts +2 -0
- package/dist/script/ui/views/toolbars/BottomToolbar/BottomToolbar.container.d.ts +20 -0
- package/dist/script/ui/views/toolbars/BottomToolbar/BottomToolbar.d.ts +29 -0
- package/dist/script/ui/views/toolbars/BottomToolbar/TemplatesList/TemplatesList.d.ts +34 -0
- package/dist/script/ui/views/toolbars/BottomToolbar/TemplatesList/index.d.ts +16 -0
- package/dist/script/ui/views/toolbars/BottomToolbar/index.d.ts +16 -0
- package/dist/script/ui/views/toolbars/LeftToolbar/Bond/Bond.d.ts +25 -0
- package/dist/script/ui/views/toolbars/LeftToolbar/Bond/index.d.ts +16 -0
- package/dist/script/ui/views/toolbars/LeftToolbar/Bond/options.d.ts +24 -0
- package/dist/script/ui/views/toolbars/LeftToolbar/LeftToolbar.container.d.ts +19 -0
- package/dist/script/ui/views/toolbars/LeftToolbar/LeftToolbar.d.ts +25 -0
- package/dist/script/ui/views/toolbars/LeftToolbar/RGroup/RGroup.d.ts +25 -0
- package/dist/script/ui/views/toolbars/LeftToolbar/RGroup/index.d.ts +16 -0
- package/dist/script/ui/views/toolbars/LeftToolbar/Shape/Shape.d.ts +25 -0
- package/dist/script/ui/views/toolbars/LeftToolbar/Shape/index.d.ts +16 -0
- package/dist/script/ui/views/toolbars/LeftToolbar/Transform/Transform.d.ts +25 -0
- package/dist/script/ui/views/toolbars/LeftToolbar/Transform/index.d.ts +16 -0
- package/dist/script/ui/views/toolbars/LeftToolbar/index.d.ts +16 -0
- package/dist/script/ui/views/toolbars/LeftToolbar/leftToolbarOptions.d.ts +9 -0
- package/dist/script/ui/views/toolbars/RightToolbar/AtomsList/AtomsList.d.ts +32 -0
- package/dist/script/ui/views/toolbars/RightToolbar/AtomsList/index.d.ts +16 -0
- package/dist/script/ui/views/toolbars/RightToolbar/RightToolbar.container.d.ts +21 -0
- package/dist/script/ui/views/toolbars/RightToolbar/RightToolbar.d.ts +30 -0
- package/dist/script/ui/views/toolbars/RightToolbar/index.d.ts +16 -0
- package/dist/script/ui/views/toolbars/ToolbarGroupItem/ActionButton/ActionButton.d.ts +36 -0
- package/dist/script/ui/views/toolbars/ToolbarGroupItem/ActionButton/index.d.ts +16 -0
- package/dist/script/ui/views/toolbars/ToolbarGroupItem/ToolbarGroupItem.d.ts +36 -0
- package/dist/script/ui/views/toolbars/ToolbarGroupItem/ToolbarMultiToolItem/ToolbarMultiToolItem.d.ts +41 -0
- package/dist/script/ui/views/toolbars/ToolbarGroupItem/ToolbarMultiToolItem/index.d.ts +16 -0
- package/dist/script/ui/views/toolbars/ToolbarGroupItem/ToolbarMultiToolItem/usePortalOpening.d.ts +19 -0
- package/dist/script/ui/views/toolbars/ToolbarGroupItem/ToolbarMultiToolItem/usePortalStyle.d.ts +19 -0
- package/dist/script/ui/views/toolbars/ToolbarGroupItem/ToolbarMultiToolItem/variants/DefaultMultiTool/DefaultMultiTool.d.ts +23 -0
- package/dist/script/ui/views/toolbars/ToolbarGroupItem/ToolbarMultiToolItem/variants/DefaultMultiTool/index.d.ts +18 -0
- package/dist/script/ui/views/toolbars/ToolbarGroupItem/ToolbarMultiToolItem/variants/GroupedMultiTool/GroupedMultiTool.d.ts +23 -0
- package/dist/script/ui/views/toolbars/ToolbarGroupItem/ToolbarMultiToolItem/variants/GroupedMultiTool/index.d.ts +16 -0
- package/dist/script/ui/views/toolbars/ToolbarGroupItem/ToolbarMultiToolItem/variants/chooseMultiTool.d.ts +18 -0
- package/dist/script/ui/views/toolbars/ToolbarGroupItem/ToolbarMultiToolItem/variants/variants.types.d.ts +35 -0
- package/dist/script/ui/views/toolbars/ToolbarGroupItem/index.d.ts +16 -0
- package/dist/script/ui/views/toolbars/ToolbarGroupItem/utils/index.d.ts +16 -0
- package/dist/script/ui/views/toolbars/ToolbarGroupItem/utils/makeItems.d.ts +18 -0
- package/dist/script/ui/views/toolbars/TopToolbar/ClipboardControls.d.ts +31 -0
- package/dist/script/ui/views/toolbars/TopToolbar/Divider.d.ts +17 -0
- package/dist/script/ui/views/toolbars/TopToolbar/ElementWithDropdown.d.ts +23 -0
- package/dist/script/ui/views/toolbars/TopToolbar/ExternalFuncControls.d.ts +36 -0
- package/dist/script/ui/views/toolbars/TopToolbar/FileControls.d.ts +26 -0
- package/dist/script/ui/views/toolbars/TopToolbar/IconButton.d.ts +26 -0
- package/dist/script/ui/views/toolbars/TopToolbar/ScaleTransformer.d.ts +24 -0
- package/dist/script/ui/views/toolbars/TopToolbar/SystemControls.d.ts +28 -0
- package/dist/script/ui/views/toolbars/TopToolbar/TopToolbar.container.d.ts +18 -0
- package/dist/script/ui/views/toolbars/TopToolbar/TopToolbar.d.ts +56 -0
- package/dist/script/ui/views/toolbars/TopToolbar/UndoRedo.d.ts +27 -0
- package/dist/script/ui/views/toolbars/TopToolbar/ZoomControls.d.ts +29 -0
- package/dist/script/ui/views/toolbars/TopToolbar/ZoomInput.d.ts +26 -0
- package/dist/script/ui/views/toolbars/TopToolbar/ZoomList.d.ts +23 -0
- package/dist/script/ui/views/toolbars/TopToolbar/ZoomSlider.d.ts +22 -0
- package/dist/script/ui/views/toolbars/TopToolbar/index.d.ts +16 -0
- package/dist/script/ui/views/toolbars/index.d.ts +19 -0
- package/dist/script/ui/views/toolbars/mediaSizes.d.ts +23 -0
- package/dist/script/ui/views/toolbars/shortcutStr.d.ts +16 -0
- package/dist/script/ui/views/toolbars/toolbar.types.d.ts +32 -0
- package/package.json +1 -1
|
@@ -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 * from './initApp';
|
|
@@ -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 { StructService } from 'ketcher-core';
|
|
17
|
+
declare function initApp(element: HTMLDivElement | null, staticResourcesUrl: string, options: any, server: StructService, setEditor: (editor: any) => void): void;
|
|
18
|
+
export { initApp };
|
|
@@ -0,0 +1,37 @@
|
|
|
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 { CSSProperties, Component } from 'react';
|
|
17
|
+
interface PortalProps {
|
|
18
|
+
isOpen: boolean;
|
|
19
|
+
className?: string;
|
|
20
|
+
style?: CSSProperties;
|
|
21
|
+
}
|
|
22
|
+
declare type Props = PortalProps;
|
|
23
|
+
declare class Portal extends Component<Props> {
|
|
24
|
+
private readonly element;
|
|
25
|
+
private isElementInDom;
|
|
26
|
+
constructor(props: any);
|
|
27
|
+
componentDidMount(): void;
|
|
28
|
+
componentWillUnmount(): void;
|
|
29
|
+
componentDidUpdate(prevProps: Readonly<Props>): void;
|
|
30
|
+
private addElementInDOM;
|
|
31
|
+
private removeElementFromDOM;
|
|
32
|
+
private removeClassNames;
|
|
33
|
+
private addClassName;
|
|
34
|
+
private updateStyle;
|
|
35
|
+
render(): any;
|
|
36
|
+
}
|
|
37
|
+
export { Portal };
|
|
@@ -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 * from './Portal';
|
|
@@ -0,0 +1,44 @@
|
|
|
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 { Dispatch } from 'redux';
|
|
17
|
+
declare type ToolVariant = 'about' | 'analyse' | 'arom' | 'bond-any' | 'bond-hydrogen' | 'bond-aromatic' | 'bond-crossed' | 'bond-dative' | 'bond-double' | 'bond-doublearomatic' | 'bond-down' | 'bond-single' | 'bond-singlearomatic' | 'bond-singledouble' | 'bond-triple' | 'bond-up' | 'bond-updown' | 'chain' | 'charge-minus' | 'charge-plus' | 'check' | 'chiral-flag' | 'cip' | 'clean' | 'copy' | 'copy-image' | 'cut' | 'dearom' | 'dropdown' | 'enhanced-stereo' | 'erase' | 'fullscreen' | 'functional-groups' | 'generic-groups' | 'help' | 'layout' | 'logo' | 'miew' | 'clear' | 'open' | 'paste' | 'period-table' | 'reaction-arrow' | 'reaction-automap' | 'reaction-map' | 'reaction-plus' | 'reaction-unmap' | 'recognize' | 'redo' | 'rgroup-attpoints' | 'rgroup-fragment' | 'rgroup-label' | 'save' | 'select-fragment' | 'select-lasso' | 'select-rectangle' | 'settings' | 'sgroup' | 'sgroup-data' | 'template-0' | 'template-1' | 'template-2' | 'template-3' | 'template-4' | 'template-5' | 'template-6' | 'template-7' | 'template-lib' | 'text' | 'transform-flip-h' | 'transform-flip-v' | 'transform-rotate' | 'zoom-in' | 'zoom-out' | 'shape-circle' | 'shape-rectangle' | 'shape-polyline' | 'shape-line' | 'undo';
|
|
18
|
+
declare type Editor = any;
|
|
19
|
+
declare type Server = any;
|
|
20
|
+
declare type Options = any;
|
|
21
|
+
declare type ReduxState = any;
|
|
22
|
+
declare type ActionObj = {
|
|
23
|
+
tool?: string;
|
|
24
|
+
opts?: any;
|
|
25
|
+
dialog?: string;
|
|
26
|
+
thunk?: (dispatch: Dispatch, getState: () => ReduxState) => void;
|
|
27
|
+
};
|
|
28
|
+
declare type ActionFn = (editor: Editor) => void;
|
|
29
|
+
declare type UiActionAction = ActionObj | ActionFn;
|
|
30
|
+
declare type GetActionState = (editor: Editor, server?: Server, options?: Options) => boolean;
|
|
31
|
+
declare type IsActionState = boolean | GetActionState;
|
|
32
|
+
interface UiAction {
|
|
33
|
+
title?: string;
|
|
34
|
+
shortcut?: string;
|
|
35
|
+
action: UiActionAction;
|
|
36
|
+
selected?: IsActionState;
|
|
37
|
+
disabled?: IsActionState;
|
|
38
|
+
hidden?: IsActionState;
|
|
39
|
+
onAction?: (action: UiActionAction) => void;
|
|
40
|
+
}
|
|
41
|
+
declare type Tools = {
|
|
42
|
+
[ket in keyof ToolVariant]?: UiAction;
|
|
43
|
+
};
|
|
44
|
+
export type { Tools, UiAction, UiActionAction };
|
|
@@ -0,0 +1,40 @@
|
|
|
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 const basicAtoms: string[];
|
|
17
|
+
export namespace atomCuts {
|
|
18
|
+
const H: string;
|
|
19
|
+
const C: string;
|
|
20
|
+
const N: string;
|
|
21
|
+
const O: string;
|
|
22
|
+
const S: string;
|
|
23
|
+
const P: string;
|
|
24
|
+
const F: string;
|
|
25
|
+
const Cl: string;
|
|
26
|
+
const Br: string;
|
|
27
|
+
const I: string;
|
|
28
|
+
const A: string;
|
|
29
|
+
const Q: string;
|
|
30
|
+
const R: string;
|
|
31
|
+
const K: string;
|
|
32
|
+
const M: string;
|
|
33
|
+
const Si: string;
|
|
34
|
+
const Na: string;
|
|
35
|
+
const X: string;
|
|
36
|
+
const D: string;
|
|
37
|
+
const B: string;
|
|
38
|
+
}
|
|
39
|
+
declare var _default: {};
|
|
40
|
+
export default _default;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export default function copyAs(type: any): null | undefined;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
export default debugObj;
|
|
2
|
+
declare const debugObj: {
|
|
3
|
+
'force-update': {
|
|
4
|
+
shortcut: string;
|
|
5
|
+
action: (editor: any) => void;
|
|
6
|
+
hidden: (options: any) => boolean;
|
|
7
|
+
};
|
|
8
|
+
'qs-serialize': {
|
|
9
|
+
shortcut: string;
|
|
10
|
+
action: (editor: any) => void;
|
|
11
|
+
};
|
|
12
|
+
hidden: (options: any) => boolean;
|
|
13
|
+
};
|
|
@@ -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
|
+
declare const _default: {
|
|
17
|
+
fullscreen: {
|
|
18
|
+
title: string;
|
|
19
|
+
action: () => void;
|
|
20
|
+
hidden: (options: any) => boolean;
|
|
21
|
+
};
|
|
22
|
+
};
|
|
23
|
+
export default _default;
|
|
@@ -0,0 +1,31 @@
|
|
|
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
|
+
declare const functionalGroupsLib: {
|
|
17
|
+
'functional-groups': {
|
|
18
|
+
shortcut: string;
|
|
19
|
+
title: string;
|
|
20
|
+
action: {
|
|
21
|
+
dialog: string;
|
|
22
|
+
prop: {
|
|
23
|
+
tab: number;
|
|
24
|
+
};
|
|
25
|
+
};
|
|
26
|
+
selected: (editor: any) => boolean;
|
|
27
|
+
disabled: (_: any, __: any, options: any) => boolean;
|
|
28
|
+
hidden: (options: any) => boolean;
|
|
29
|
+
};
|
|
30
|
+
};
|
|
31
|
+
export default functionalGroupsLib;
|