ketcher-react 2.8.0-rc.3-dev.1 → 2.8.0-rc.3-dev.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 +29 -0
- package/dist/constants.d.ts +17 -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 +23859 -0
- package/dist/index.js.map +1 -0
- package/dist/index.modern.js +23794 -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 +96 -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 +48 -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 +32 -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/dropAndMerge.d.ts +8 -0
- package/dist/script/editor/tool/helper/getGroupIdsFromItems.d.ts +12 -0
- package/dist/script/editor/tool/helper/getMergeItems.d.ts +2 -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 +34 -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 +38 -0
- package/dist/script/editor/tool/sgroup.d.ts +30 -0
- package/dist/script/editor/tool/simpleobject.d.ts +26 -0
- package/dist/script/editor/tool/template.d.ts +32 -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/functionalGroupsTooltip.d.ts +3 -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 +38 -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/flips.d.ts +1 -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 +662 -0
- package/dist/script/ui/action/isHidden.d.ts +16 -0
- package/dist/script/ui/action/server.d.ts +125 -0
- package/dist/script/ui/action/templates.d.ts +13 -0
- package/dist/script/ui/action/tools.d.ts +350 -0
- package/dist/script/ui/action/zoom.d.ts +27 -0
- package/dist/script/ui/component/actionmenu.d.ts +9 -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 +43 -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 +32 -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 +40 -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 +60 -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 +42 -0
- package/dist/script/ui/dialog/template/TemplateTable.d.ts +39 -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/SDataFieldset.d.ts +4 -0
- package/dist/script/ui/dialog/toolbox/SGroupFieldset.d.ts +4 -0
- package/dist/script/ui/dialog/toolbox/enhancedStereo/enhancedStereo.d.ts +42 -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/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 +6 -0
- package/dist/script/ui/state/editor/index.d.ts +23 -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/handleHotkeysOverItem.d.ts +15 -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/atoms.d.ts +13 -0
- package/dist/script/ui/state/modal/form.d.ts +153 -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 +77 -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 +15 -0
- package/dist/script/ui/utils/renderStruct.d.ts +9 -0
- package/dist/script/ui/utils/settingsManager.d.ts +25 -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/ContextMenu/ContextMenu.d.ts +19 -0
- package/dist/script/ui/views/components/ContextMenu/ContextMenuTrigger.d.ts +18 -0
- package/dist/script/ui/views/components/ContextMenu/contextMenu.types.d.ts +16 -0
- package/dist/script/ui/views/components/ContextMenu/hooks/useAtomEdit.d.ts +3 -0
- package/dist/script/ui/views/components/ContextMenu/hooks/useAtomStereo.d.ts +3 -0
- package/dist/script/ui/views/components/ContextMenu/hooks/useBondEdit.d.ts +3 -0
- package/dist/script/ui/views/components/ContextMenu/hooks/useBondSGroupAttach.d.ts +3 -0
- package/dist/script/ui/views/components/ContextMenu/hooks/useBondSGroupEdit.d.ts +3 -0
- package/dist/script/ui/views/components/ContextMenu/hooks/useBondTypeChange.d.ts +3 -0
- package/dist/script/ui/views/components/ContextMenu/hooks/useDelete.d.ts +3 -0
- package/dist/script/ui/views/components/ContextMenu/hooks/useFunctionalGroupEoc.d.ts +6 -0
- package/dist/script/ui/views/components/ContextMenu/hooks/useFunctionalGroupRemove.d.ts +3 -0
- package/dist/script/ui/views/components/ContextMenu/index.d.ts +2 -0
- package/dist/script/ui/views/components/ContextMenu/menuItems/AtomMenuItems.d.ts +3 -0
- package/dist/script/ui/views/components/ContextMenu/menuItems/BondMenuItems.d.ts +3 -0
- package/dist/script/ui/views/components/ContextMenu/menuItems/FunctionalGroupMenuItems.d.ts +3 -0
- package/dist/script/ui/views/components/ContextMenu/menuItems/SelectionMenuItems.d.ts +3 -0
- package/dist/script/ui/views/components/ContextMenu/utils.d.ts +25 -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 +27 -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 +24 -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 +45 -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 +22 -0
- package/dist/script/ui/views/modal/components/toolbox/Atom/Atom.d.ts +38 -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 +35 -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 +55 -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 +1 -0
- package/dist/script/ui/views/toolbars/toolbar.types.d.ts +32 -0
- package/package.json +9 -10
|
@@ -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 } from './Modal.container';
|
|
@@ -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
|
+
declare const mediaSizes: {
|
|
17
|
+
smallWidth: number;
|
|
18
|
+
smallHeight: number;
|
|
19
|
+
};
|
|
20
|
+
export default mediaSizes;
|
|
@@ -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
|
+
interface BaseProps {
|
|
17
|
+
className: string;
|
|
18
|
+
formState: {
|
|
19
|
+
errors: Record<string, string>;
|
|
20
|
+
result: Record<string, any>;
|
|
21
|
+
valid: boolean;
|
|
22
|
+
};
|
|
23
|
+
}
|
|
24
|
+
interface BaseCallProps {
|
|
25
|
+
onCancel: () => void;
|
|
26
|
+
onOk: (result: any) => void;
|
|
27
|
+
}
|
|
28
|
+
export type { BaseProps, BaseCallProps };
|
|
@@ -0,0 +1,24 @@
|
|
|
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 ArrowScrollProps {
|
|
18
|
+
startInView: boolean;
|
|
19
|
+
endInView: boolean;
|
|
20
|
+
scrollUp: any;
|
|
21
|
+
scrollDown: any;
|
|
22
|
+
}
|
|
23
|
+
declare const ArrowScroll: ({ startInView, endInView, scrollUp, scrollDown }: ArrowScrollProps) => JSX.Element;
|
|
24
|
+
export { ArrowScroll };
|
|
@@ -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
|
+
import { BottomToolbarProps } from './BottomToolbar';
|
|
17
|
+
import { ComponentType } from 'react';
|
|
18
|
+
declare type OwnProps = Pick<BottomToolbarProps, 'className'>;
|
|
19
|
+
declare const BottomToolbarContainer: ComponentType<OwnProps>;
|
|
20
|
+
export { BottomToolbarContainer };
|
|
@@ -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
|
+
/// <reference types="react" />
|
|
17
|
+
import { ToolbarGroupItemCallProps, ToolbarGroupItemProps } from '../ToolbarGroupItem';
|
|
18
|
+
interface BottomToolbarProps extends Omit<ToolbarGroupItemProps, 'id' | 'options'> {
|
|
19
|
+
className?: string;
|
|
20
|
+
active?: {
|
|
21
|
+
opts: any;
|
|
22
|
+
tool: string;
|
|
23
|
+
};
|
|
24
|
+
}
|
|
25
|
+
declare type BottomToolbarCallProps = ToolbarGroupItemCallProps;
|
|
26
|
+
declare type Props = BottomToolbarProps & BottomToolbarCallProps;
|
|
27
|
+
declare const BottomToolbar: (props: Props) => JSX.Element;
|
|
28
|
+
export type { BottomToolbarProps, BottomToolbarCallProps };
|
|
29
|
+
export { BottomToolbar };
|
|
@@ -0,0 +1,34 @@
|
|
|
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
|
+
import { UiActionAction } from '../../../../action';
|
|
18
|
+
interface TemplatesListProps {
|
|
19
|
+
active?: {
|
|
20
|
+
tool?: string;
|
|
21
|
+
opts: {
|
|
22
|
+
struct: any;
|
|
23
|
+
};
|
|
24
|
+
};
|
|
25
|
+
disableableButtons: string[];
|
|
26
|
+
indigoVerification: boolean;
|
|
27
|
+
}
|
|
28
|
+
interface TemplatesListCallProps {
|
|
29
|
+
onAction: (action: UiActionAction) => void;
|
|
30
|
+
}
|
|
31
|
+
declare type Props = TemplatesListProps & TemplatesListCallProps;
|
|
32
|
+
declare const TemplatesList: (props: Props) => JSX.Element;
|
|
33
|
+
export type { TemplatesListProps, TemplatesListCallProps };
|
|
34
|
+
export { TemplatesList };
|
|
@@ -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 './TemplatesList';
|
|
@@ -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 './BottomToolbar.container';
|
|
@@ -0,0 +1,25 @@
|
|
|
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
|
+
import { ToolbarGroupItemCallProps, ToolbarGroupItemProps } from '../../ToolbarGroupItem';
|
|
18
|
+
interface BondProps extends Omit<ToolbarGroupItemProps, 'id' | 'options'> {
|
|
19
|
+
height?: number;
|
|
20
|
+
}
|
|
21
|
+
declare type BondCallProps = ToolbarGroupItemCallProps;
|
|
22
|
+
declare type Props = BondProps & BondCallProps;
|
|
23
|
+
declare const Bond: (props: Props) => JSX.Element;
|
|
24
|
+
export type { BondProps, BondCallProps };
|
|
25
|
+
export { Bond };
|
|
@@ -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 './Bond';
|
|
@@ -0,0 +1,24 @@
|
|
|
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 { GroupDescriptor } from '../../ToolbarGroupItem/ToolbarMultiToolItem/variants/variants.types';
|
|
17
|
+
import { ToolbarItem } from '../../toolbar.types';
|
|
18
|
+
declare const bondCommon: ToolbarItem[];
|
|
19
|
+
declare const bondStereo: ToolbarItem[];
|
|
20
|
+
declare const bondQuery: ToolbarItem[];
|
|
21
|
+
declare const bondSpecial: ToolbarItem[];
|
|
22
|
+
declare const groupOptions: ToolbarItem[];
|
|
23
|
+
declare const groupDescriptors: GroupDescriptor[];
|
|
24
|
+
export { bondCommon, bondStereo, bondQuery, bondSpecial, groupOptions, groupDescriptors };
|
|
@@ -0,0 +1,19 @@
|
|
|
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
|
+
import { LeftToolbarProps } from './LeftToolbar';
|
|
18
|
+
declare const LeftToolbarContainer: import("react-redux").ConnectedComponent<(props: LeftToolbarProps & import("../ToolbarGroupItem/ToolbarGroupItem").ToolbarGroupItemCallProps) => JSX.Element, import("react-redux").Omit<LeftToolbarProps & import("../ToolbarGroupItem/ToolbarGroupItem").ToolbarGroupItemCallProps, "status" | "opened" | "disableableButtons" | "indigoVerification" | "vertical" | "onAction" | "onOpen">>;
|
|
19
|
+
export { LeftToolbarContainer };
|
|
@@ -0,0 +1,25 @@
|
|
|
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
|
+
import { ToolbarGroupItemCallProps, ToolbarGroupItemProps } from '../ToolbarGroupItem';
|
|
18
|
+
interface LeftToolbarProps extends Omit<ToolbarGroupItemProps, 'id' | 'options'> {
|
|
19
|
+
className?: string;
|
|
20
|
+
}
|
|
21
|
+
declare type LeftToolbarCallProps = ToolbarGroupItemCallProps;
|
|
22
|
+
declare type Props = LeftToolbarProps & LeftToolbarCallProps;
|
|
23
|
+
declare const LeftToolbar: (props: Props) => JSX.Element;
|
|
24
|
+
export type { LeftToolbarProps, LeftToolbarCallProps };
|
|
25
|
+
export { LeftToolbar };
|
|
@@ -0,0 +1,25 @@
|
|
|
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
|
+
import { ToolbarGroupItemCallProps, ToolbarGroupItemProps } from '../../ToolbarGroupItem';
|
|
18
|
+
interface RGroupProps extends Omit<ToolbarGroupItemProps, 'id' | 'options'> {
|
|
19
|
+
height?: number;
|
|
20
|
+
}
|
|
21
|
+
declare type RGroupCallProps = ToolbarGroupItemCallProps;
|
|
22
|
+
declare type Props = RGroupProps & RGroupCallProps;
|
|
23
|
+
declare const RGroup: (props: Props) => JSX.Element;
|
|
24
|
+
export type { RGroupProps, RGroupCallProps };
|
|
25
|
+
export { RGroup };
|
|
@@ -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 './RGroup';
|
|
@@ -0,0 +1,25 @@
|
|
|
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
|
+
import { ToolbarGroupItemCallProps, ToolbarGroupItemProps } from '../../ToolbarGroupItem';
|
|
18
|
+
interface ShapeProps extends Omit<ToolbarGroupItemProps, 'id' | 'options'> {
|
|
19
|
+
height?: number;
|
|
20
|
+
}
|
|
21
|
+
declare type ShapeCallProps = ToolbarGroupItemCallProps;
|
|
22
|
+
declare type Props = ShapeProps & ShapeCallProps;
|
|
23
|
+
declare const Shape: (props: Props) => JSX.Element;
|
|
24
|
+
export type { ShapeProps, ShapeCallProps };
|
|
25
|
+
export { Shape };
|
|
@@ -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 './Shape';
|
|
@@ -0,0 +1,25 @@
|
|
|
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
|
+
import { ToolbarGroupItemCallProps, ToolbarGroupItemProps } from '../../ToolbarGroupItem';
|
|
18
|
+
interface TransformProps extends Omit<ToolbarGroupItemProps, 'id' | 'options'> {
|
|
19
|
+
height?: number;
|
|
20
|
+
}
|
|
21
|
+
declare type TransformCallProps = ToolbarGroupItemCallProps;
|
|
22
|
+
declare type Props = TransformProps & TransformCallProps;
|
|
23
|
+
declare const Transform: (props: Props) => JSX.Element;
|
|
24
|
+
export type { TransformProps, TransformCallProps };
|
|
25
|
+
export { Transform };
|
|
@@ -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 './Transform';
|
|
@@ -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 './LeftToolbar.container';
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { bondCommon, bondQuery, bondSpecial, bondStereo } from './Bond/options';
|
|
2
|
+
import { ToolbarItem } from '../toolbar.types';
|
|
3
|
+
declare const rGroupOptions: ToolbarItem[];
|
|
4
|
+
declare const shapeOptions: ToolbarItem[];
|
|
5
|
+
declare const transformOptions: ToolbarItem[];
|
|
6
|
+
declare const selectOptions: ToolbarItem[];
|
|
7
|
+
declare const arrowsOptions: ToolbarItem[];
|
|
8
|
+
declare const mappingOptions: ToolbarItem[];
|
|
9
|
+
export { rGroupOptions, bondCommon, bondQuery, bondSpecial, bondStereo, shapeOptions, transformOptions, selectOptions, arrowsOptions, mappingOptions };
|
|
@@ -0,0 +1,32 @@
|
|
|
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
|
+
import { UiActionAction } from '../../../../action';
|
|
18
|
+
interface AtomsListProps {
|
|
19
|
+
atoms: string[];
|
|
20
|
+
active?: {
|
|
21
|
+
tool?: string;
|
|
22
|
+
opts: {
|
|
23
|
+
label: string;
|
|
24
|
+
};
|
|
25
|
+
};
|
|
26
|
+
}
|
|
27
|
+
interface AtomsListCallProps {
|
|
28
|
+
onAction: (action: UiActionAction) => void;
|
|
29
|
+
}
|
|
30
|
+
declare const AtomsList: import("react").ForwardRefExoticComponent<AtomsListProps & AtomsListCallProps & import("react").RefAttributes<HTMLDivElement>>;
|
|
31
|
+
export type { AtomsListProps, AtomsListCallProps };
|
|
32
|
+
export { AtomsList };
|
|
@@ -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 './AtomsList';
|
|
@@ -0,0 +1,21 @@
|
|
|
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 { RightToolbarProps } from './RightToolbar';
|
|
17
|
+
import { ComponentType } from 'react';
|
|
18
|
+
declare type OwnProps = Pick<RightToolbarProps, 'className'>;
|
|
19
|
+
declare const RightToolbarContainer: ComponentType<OwnProps>;
|
|
20
|
+
export { RightToolbarContainer };
|
|
21
|
+
export default RightToolbarContainer;
|
|
@@ -0,0 +1,30 @@
|
|
|
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
|
+
import { ToolbarGroupItemCallProps, ToolbarGroupItemProps } from '../ToolbarGroupItem';
|
|
18
|
+
interface RightToolbarProps extends Omit<ToolbarGroupItemProps, 'id' | 'options'> {
|
|
19
|
+
className?: string;
|
|
20
|
+
active?: {
|
|
21
|
+
opts: any;
|
|
22
|
+
tool: string;
|
|
23
|
+
};
|
|
24
|
+
freqAtoms: any[];
|
|
25
|
+
}
|
|
26
|
+
declare type RightToolbarCallProps = ToolbarGroupItemCallProps;
|
|
27
|
+
declare type Props = RightToolbarProps & RightToolbarCallProps;
|
|
28
|
+
declare const RightToolbar: (props: Props) => JSX.Element;
|
|
29
|
+
export type { RightToolbarProps, RightToolbarCallProps };
|
|
30
|
+
export { RightToolbar };
|
|
@@ -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 './RightToolbar.container';
|