ketcher-react 2.28.0-rc.4 → 3.0.0-rc.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -0
- package/dist/Editor.d.ts +6 -28
- package/dist/MicromoleculesEditor.d.ts +28 -0
- package/dist/cjs/Editor.d.ts +6 -0
- package/dist/cjs/MicromoleculesEditor.d.ts +28 -0
- package/dist/cjs/components/Accordion/Accordion.d.ts +2 -0
- package/dist/cjs/components/Accordion/index.d.ts +16 -0
- package/dist/cjs/components/Accordion/styles.d.ts +29 -0
- package/dist/cjs/components/Accordion/types.d.ts +27 -0
- package/dist/cjs/components/Buttons/Button/Button.d.ts +1 -0
- package/dist/cjs/components/Buttons/Button/index.d.ts +16 -0
- package/dist/cjs/components/Buttons/Button/styles.d.ts +5 -0
- package/dist/cjs/components/Buttons/IconButton/IconButton.d.ts +17 -0
- package/dist/cjs/components/Buttons/IconButton/IconButtonBase.d.ts +17 -0
- package/dist/cjs/components/Buttons/IconButton/IconButtonCustomIcon.d.ts +17 -0
- package/dist/cjs/components/Buttons/IconButton/index.d.ts +17 -0
- package/dist/cjs/components/Buttons/IconButton/styles.d.ts +28 -0
- package/dist/cjs/components/Buttons/IconButton/types.d.ts +40 -0
- package/dist/cjs/components/Buttons/index.d.ts +17 -0
- package/dist/cjs/components/Dialog/Dialog.d.ts +45 -0
- package/dist/cjs/components/Dialog/index.d.ts +16 -0
- package/dist/cjs/components/Icon/Icon.d.ts +18 -0
- package/dist/cjs/components/Icon/index.d.ts +19 -0
- package/dist/cjs/components/Icon/types.d.ts +26 -0
- package/dist/cjs/components/Icon/utils/getIconByName.d.ts +17 -0
- package/dist/cjs/components/Icon/utils/getIconName.d.ts +17 -0
- package/dist/cjs/components/Icon/utils/iconNameToIcon.d.ts +237 -0
- package/dist/cjs/components/InfoModal/InfoModal.d.ts +22 -0
- package/dist/cjs/components/InfoModal/constants.d.ts +4 -0
- package/dist/cjs/components/InfoModal/index.d.ts +17 -0
- package/dist/cjs/components/Input/Input.d.ts +1 -0
- package/dist/cjs/components/Input/index.d.ts +16 -0
- package/dist/cjs/components/Input/styles.d.ts +20 -0
- package/dist/cjs/components/MonomerPreview/AmbiguousMonomerPreview/AmbiguousMonomerPreview.d.ts +9 -0
- package/dist/cjs/components/MonomerPreview/AmbiguousMonomerPreview/AmbiguousMonomerPreview.styles.d.ts +29 -0
- package/dist/cjs/components/MonomerPreview/AmbiguousMonomerPreview/index.d.ts +3 -0
- package/dist/cjs/components/MonomerPreview/AmbiguousMonomerPreview/types.d.ts +46 -0
- package/dist/cjs/components/MonomerPreview/calculatePreviewPosition.d.ts +28 -0
- package/dist/cjs/components/MonomerPreview/constants.d.ts +9 -0
- package/dist/cjs/components/MonomerPreview/index.d.ts +3 -0
- package/dist/cjs/components/StructRender/StructRender.d.ts +18 -0
- package/dist/cjs/components/StructRender/index.d.ts +16 -0
- package/dist/cjs/components/StructRender/styles.d.ts +22 -0
- package/dist/cjs/components/StructRender/types.d.ts +29 -0
- package/dist/cjs/components/ToggleButtonGroup/ToggleButtonGroup.d.ts +8 -0
- package/dist/cjs/components/ToggleButtonGroup/ToggleButtonGroup.test.d.ts +16 -0
- package/dist/cjs/components/index.d.ts +23 -0
- package/dist/cjs/components/styles/consts.d.ts +59 -0
- package/dist/cjs/components/styles/index.d.ts +16 -0
- package/dist/cjs/constants.d.ts +49 -0
- package/dist/cjs/contexts/appContext.d.ts +23 -0
- package/dist/cjs/contexts/errorsContext.d.ts +21 -0
- package/dist/cjs/contexts/formContext.d.ts +18 -0
- package/dist/cjs/contexts/index.d.ts +21 -0
- package/dist/cjs/contexts/settingsContext.d.ts +21 -0
- package/dist/cjs/hooks/index.d.ts +21 -0
- package/dist/cjs/hooks/useAppContext.d.ts +16 -0
- package/dist/cjs/hooks/useClickOutside.d.ts +2 -0
- package/dist/cjs/hooks/useFormContext.d.ts +16 -0
- package/dist/cjs/hooks/useInterval.d.ts +16 -0
- package/dist/cjs/hooks/useResizeObserver.d.ts +26 -0
- package/dist/cjs/hooks/useSettingsContext.d.ts +16 -0
- package/dist/cjs/hooks/useSubscribtionOnEvents.d.ts +16 -0
- package/dist/cjs/index.css +2 -0
- package/dist/cjs/index.css.map +1 -0
- package/dist/cjs/index.d.ts +20 -0
- package/dist/{index.modern.js → cjs/index.js} +4305 -4061
- package/dist/cjs/index.js.map +1 -0
- package/dist/cjs/index.modern-285b5e16.js +15323 -0
- package/dist/cjs/index.modern-285b5e16.js.map +1 -0
- package/dist/cjs/script/api.d.ts +19 -0
- package/dist/cjs/script/builders/index.d.ts +16 -0
- package/dist/cjs/script/builders/ketcher/ButtonConfig.d.ts +18 -0
- package/dist/cjs/script/builders/ketcher/ButtonName.d.ts +17 -0
- package/dist/cjs/script/builders/ketcher/ButtonsConfig.d.ts +20 -0
- package/dist/cjs/script/builders/ketcher/CustomButtons.d.ts +5 -0
- package/dist/cjs/script/builders/ketcher/KetcherBuilder.d.ts +39 -0
- package/dist/cjs/script/builders/ketcher/index.d.ts +17 -0
- package/dist/cjs/script/editor/Editor.d.ts +119 -0
- package/dist/cjs/script/editor/HoverIcon.d.ts +31 -0
- package/dist/cjs/script/editor/highlighter.d.ts +33 -0
- package/dist/cjs/script/editor/index.d.ts +19 -0
- package/dist/cjs/script/editor/shared/closest.d.ts +43 -0
- package/dist/cjs/script/editor/shared/closest.types.d.ts +9 -0
- package/dist/cjs/script/editor/tool/Tool.d.ts +21 -0
- package/dist/cjs/script/editor/tool/apoint.d.ts +23 -0
- package/dist/cjs/script/editor/tool/apoint.utils.d.ts +2 -0
- package/dist/cjs/script/editor/tool/arrow/arrow.types.d.ts +19 -0
- package/dist/cjs/script/editor/tool/arrow/arrowTool.d.ts +9 -0
- package/dist/cjs/script/editor/tool/arrow/commonArrow.d.ts +17 -0
- package/dist/cjs/script/editor/tool/arrow/multitailArrowAdd.d.ts +14 -0
- package/dist/cjs/script/editor/tool/arrow/multitailArrowMoveTool.d.ts +12 -0
- package/dist/cjs/script/editor/tool/arrow/reactionArrowAdd.d.ts +20 -0
- package/dist/cjs/script/editor/tool/arrow/reactionArrowMoveTool.d.ts +12 -0
- package/dist/cjs/script/editor/tool/atom.d.ts +29 -0
- package/dist/cjs/script/editor/tool/attach.d.ts +24 -0
- package/dist/cjs/script/editor/tool/bond.d.ts +31 -0
- package/dist/cjs/script/editor/tool/chain.d.ts +27 -0
- package/dist/cjs/script/editor/tool/charge.d.ts +24 -0
- package/dist/cjs/script/editor/tool/enhanced-stereo.d.ts +25 -0
- package/dist/cjs/script/editor/tool/eraser.d.ts +30 -0
- package/dist/cjs/script/editor/tool/hand.d.ts +29 -0
- package/dist/cjs/script/editor/tool/helper/deleteFunctionalGroups.d.ts +2 -0
- package/dist/cjs/script/editor/tool/helper/dropAndMerge.d.ts +3 -0
- package/dist/cjs/script/editor/tool/helper/filterNotInCollapsedSGroup.d.ts +20 -0
- package/dist/cjs/script/editor/tool/helper/getGroupIdsFromItems.d.ts +12 -0
- package/dist/cjs/script/editor/tool/helper/isAtomOutSideCanvas.d.ts +2 -0
- package/dist/cjs/script/editor/tool/helper/isMacroMolecule.d.ts +5 -0
- package/dist/cjs/script/editor/tool/helper/lasso.d.ts +68 -0
- package/dist/cjs/script/editor/tool/helper/locate.d.ts +47 -0
- package/dist/cjs/script/editor/tool/image.d.ts +18 -0
- package/dist/cjs/script/editor/tool/index.d.ts +2 -0
- package/dist/cjs/script/editor/tool/paste.d.ts +34 -0
- package/dist/cjs/script/editor/tool/reactionmap.d.ts +27 -0
- package/dist/cjs/script/editor/tool/reactionplus.d.ts +26 -0
- package/dist/cjs/script/editor/tool/reactionunmap.d.ts +23 -0
- package/dist/cjs/script/editor/tool/rgroupatom.d.ts +23 -0
- package/dist/cjs/script/editor/tool/rgroupfragment.d.ts +24 -0
- package/dist/cjs/script/editor/tool/rotate-controller.d.ts +56 -0
- package/dist/cjs/script/editor/tool/rotate-controller.test.d.ts +1 -0
- package/dist/cjs/script/editor/tool/rotate-controller.utils.d.ts +3 -0
- package/dist/cjs/script/editor/tool/rotate.d.ts +51 -0
- package/dist/cjs/script/editor/tool/select/index.d.ts +7 -0
- package/dist/cjs/script/editor/tool/select/select.d.ts +42 -0
- package/dist/cjs/script/editor/tool/select/select.helpers.d.ts +17 -0
- package/dist/cjs/script/editor/tool/select/select.types.d.ts +1 -0
- package/dist/cjs/script/editor/tool/select/selectViewOnly.d.ts +14 -0
- package/dist/cjs/script/editor/tool/sgroup.d.ts +31 -0
- package/dist/cjs/script/editor/tool/simpleobject.d.ts +28 -0
- package/dist/cjs/script/editor/tool/template.d.ts +48 -0
- package/dist/cjs/script/editor/tool/templatePreview.d.ts +41 -0
- package/dist/cjs/script/editor/tool/text.d.ts +27 -0
- package/dist/cjs/script/editor/utils/customOnChangeHandler.d.ts +16 -0
- package/dist/cjs/script/editor/utils/elementOffset.d.ts +17 -0
- package/dist/cjs/script/editor/utils/functionalGroupsTooltip.d.ts +7 -0
- package/dist/cjs/script/editor/utils/getItemCursor.d.ts +3 -0
- package/dist/cjs/script/editor/utils/handleMovingPosibilityCursor.d.ts +1 -0
- package/dist/cjs/script/editor/utils/handleMovingPosibilityCursor.test.d.ts +1 -0
- package/dist/cjs/script/editor/utils/index.d.ts +19 -0
- package/dist/cjs/script/editor/utils/normalizeAngle.d.ts +11 -0
- package/dist/cjs/script/editor/utils/structLayout.d.ts +3 -0
- package/dist/cjs/script/index.d.ts +40 -0
- package/dist/cjs/script/providers/index.d.ts +1 -0
- package/dist/cjs/script/providers/indigoProvider.d.ts +5 -0
- package/dist/cjs/script/ui/App/App.container.d.ts +22 -0
- package/dist/cjs/script/ui/App/App.d.ts +24 -0
- package/dist/cjs/script/ui/App/AppHidden/AppHidden.container.d.ts +18 -0
- package/dist/cjs/script/ui/App/AppHidden/AppHidden.d.ts +22 -0
- package/dist/cjs/script/ui/App/AppHidden/index.d.ts +16 -0
- package/dist/cjs/script/ui/App/index.d.ts +16 -0
- package/dist/cjs/script/ui/App/initApp.d.ts +25 -0
- package/dist/cjs/script/ui/Portal/Portal.d.ts +38 -0
- package/dist/cjs/script/ui/Portal/index.d.ts +16 -0
- package/dist/cjs/script/ui/action/action.types.d.ts +45 -0
- package/dist/cjs/script/ui/action/atoms.d.ts +40 -0
- package/dist/cjs/script/ui/action/copyAs.d.ts +1 -0
- package/dist/cjs/script/ui/action/copyImageToClipboard.d.ts +2 -0
- package/dist/cjs/script/ui/action/createCopyOfSelected.d.ts +14 -0
- package/dist/cjs/script/ui/action/debug.d.ts +13 -0
- package/dist/cjs/script/ui/action/flips.d.ts +1 -0
- package/dist/cjs/script/ui/action/fullscreen.d.ts +24 -0
- package/dist/cjs/script/ui/action/functionalGroups.d.ts +31 -0
- package/dist/cjs/script/ui/action/help.d.ts +9 -0
- package/dist/cjs/script/ui/action/highlightColors/HighlightColors.d.ts +6 -0
- package/dist/cjs/script/ui/action/highlightColors/style.d.ts +25 -0
- package/dist/cjs/script/ui/action/index.d.ts +19 -0
- package/dist/cjs/script/ui/action/isHidden.d.ts +16 -0
- package/dist/cjs/script/ui/action/server.d.ts +92 -0
- package/dist/cjs/script/ui/action/templates.d.ts +16 -0
- package/dist/cjs/script/ui/action/tools.d.ts +372 -0
- package/dist/cjs/script/ui/action/zoom.d.ts +31 -0
- package/dist/cjs/script/ui/component/actionmenu.d.ts +9 -0
- package/dist/cjs/script/ui/component/cliparea/cliparea.d.ts +22 -0
- package/dist/cjs/script/ui/component/form/Input/Input.d.ts +43 -0
- package/dist/cjs/script/ui/component/form/Input/Input.test.d.ts +1 -0
- package/dist/cjs/script/ui/component/form/MeasureInput/measure-input.d.ts +12 -0
- package/dist/cjs/script/ui/component/form/Select/Select.d.ts +32 -0
- package/dist/cjs/script/ui/component/form/Select/Select.test.d.ts +1 -0
- package/dist/cjs/script/ui/component/form/Select/index.d.ts +17 -0
- package/dist/cjs/script/ui/component/form/buttonlist.d.ts +9 -0
- package/dist/cjs/script/ui/component/form/colorPicker/ColorPicker.d.ts +27 -0
- package/dist/cjs/script/ui/component/form/colorPicker/ColorPicker.test.d.ts +1 -0
- package/dist/cjs/script/ui/component/form/combobox/combobox.d.ts +12 -0
- package/dist/cjs/script/ui/component/form/form/errorPopover.d.ts +5 -0
- package/dist/cjs/script/ui/component/form/form/form.d.ts +29 -0
- package/dist/cjs/script/ui/component/form/select-checkbox.d.ts +5 -0
- package/dist/cjs/script/ui/component/form/select-list.d.ts +26 -0
- package/dist/cjs/script/ui/component/form/systemfonts.d.ts +2 -0
- package/dist/cjs/script/ui/component/view/Atom/Atom.d.ts +7 -0
- package/dist/cjs/script/ui/component/view/Atom/index.d.ts +16 -0
- package/dist/cjs/script/ui/component/view/SaveButton.test.d.ts +16 -0
- package/dist/cjs/script/ui/component/view/Tabs/Tabs.d.ts +9 -0
- package/dist/cjs/script/ui/component/view/Tabs/index.d.ts +16 -0
- package/dist/cjs/script/ui/component/view/ToolActions.test.d.ts +1 -0
- package/dist/cjs/script/ui/component/view/openbutton.d.ts +9 -0
- package/dist/cjs/script/ui/component/view/saveButton.types.d.ts +2 -0
- package/dist/cjs/script/ui/component/view/saveButton.utils.d.ts +2 -0
- package/dist/cjs/script/ui/component/view/savebutton.d.ts +33 -0
- package/dist/cjs/script/ui/data/convert/structConverter.d.ts +17 -0
- package/dist/cjs/script/ui/data/convert/structconv.d.ts +52 -0
- package/dist/cjs/script/ui/data/schema/options-schema.d.ts +36 -0
- package/dist/cjs/script/ui/data/schema/schema-helper.d.ts +2 -0
- package/dist/cjs/script/ui/data/schema/sdata-schema.d.ts +60 -0
- package/dist/cjs/script/ui/data/schema/struct-schema.d.ts +436 -0
- package/dist/cjs/script/ui/data/templates.d.ts +2 -0
- package/dist/cjs/script/ui/data/utils.d.ts +11 -0
- package/dist/cjs/script/ui/data/utils.test.d.ts +1 -0
- package/dist/cjs/script/ui/dialog/AbbreviationLookup/AbbreviationLookup.constants.d.ts +4 -0
- package/dist/cjs/script/ui/dialog/AbbreviationLookup/AbbreviationLookup.container.d.ts +16 -0
- package/dist/cjs/script/ui/dialog/AbbreviationLookup/AbbreviationLookup.container.test.d.ts +1 -0
- package/dist/cjs/script/ui/dialog/AbbreviationLookup/AbbreviationLookup.d.ts +21 -0
- package/dist/cjs/script/ui/dialog/AbbreviationLookup/AbbreviationLookup.test.d.ts +1 -0
- package/dist/cjs/script/ui/dialog/AbbreviationLookup/AbbreviationLookup.test.utils.d.ts +7 -0
- package/dist/cjs/script/ui/dialog/AbbreviationLookup/AbbreviationLookup.types.d.ts +37 -0
- package/dist/cjs/script/ui/dialog/AbbreviationLookup/AbbreviationLookup.utils.d.ts +22 -0
- package/dist/cjs/script/ui/dialog/AbbreviationLookup/AbbreviationLookup.utils.test.d.ts +16 -0
- package/dist/cjs/script/ui/dialog/AbbreviationLookup/hooks/useOptions.d.ts +17 -0
- package/dist/cjs/script/ui/dialog/AbbreviationLookup/hooks/useOptions.test.d.ts +1 -0
- package/dist/cjs/script/ui/dialog/AbbreviationLookup/index.d.ts +17 -0
- package/dist/cjs/script/ui/dialog/index.d.ts +17 -0
- package/dist/cjs/script/ui/dialog/template/EmptySearchResult.d.ts +19 -0
- package/dist/cjs/script/ui/dialog/template/TemplateDialog.d.ts +42 -0
- package/dist/cjs/script/ui/dialog/template/TemplateTable.d.ts +39 -0
- package/dist/cjs/script/ui/dialog/template/template-attach.d.ts +33 -0
- package/dist/cjs/script/ui/dialog/template/useSaltsAndSolvets.d.ts +2 -0
- package/dist/cjs/script/ui/dialog/toolbox/SDataFieldset.d.ts +4 -0
- package/dist/cjs/script/ui/dialog/toolbox/SGroupFieldset.d.ts +4 -0
- package/dist/cjs/script/ui/dialog/toolbox/enhancedStereo/enhancedStereo.d.ts +42 -0
- package/dist/cjs/script/ui/dialog/toolbox/labeledit.d.ts +3 -0
- package/dist/cjs/script/ui/dialog/toolbox/rgroup/rgroup.d.ts +15 -0
- package/dist/cjs/script/ui/dialog/toolbox/sgroup.d.ts +9 -0
- package/dist/cjs/script/ui/dialog/toolbox/sgroup.test.d.ts +1 -0
- package/dist/cjs/script/ui/index.d.ts +16 -0
- package/dist/cjs/script/ui/state/abbreviationLookup/abbreviationLookup.types.d.ts +19 -0
- package/dist/cjs/script/ui/state/abbreviationLookup/index.d.ts +30 -0
- package/dist/cjs/script/ui/state/abbreviationLookup/index.test.d.ts +1 -0
- package/dist/cjs/script/ui/state/abbreviationLookup/selectors/index.d.ts +16 -0
- package/dist/cjs/script/ui/state/abbreviationLookup/selectors/selectors.d.ts +17 -0
- package/dist/cjs/script/ui/state/action/index.d.ts +7 -0
- package/dist/cjs/script/ui/state/common/common.types.d.ts +21 -0
- package/dist/cjs/script/ui/state/common/index.d.ts +26 -0
- package/dist/cjs/script/ui/state/common/index.test.d.ts +1 -0
- package/dist/cjs/script/ui/state/common/selectors/index.d.ts +16 -0
- package/dist/cjs/script/ui/state/common/selectors/selectors.d.ts +19 -0
- package/dist/cjs/script/ui/state/constants.d.ts +23 -0
- package/dist/cjs/script/ui/state/editor/index.d.ts +28 -0
- package/dist/cjs/script/ui/state/editor/selectors/index.d.ts +16 -0
- package/dist/cjs/script/ui/state/editor/utils/generateCommonProperties.d.ts +6 -0
- package/dist/cjs/script/ui/state/editor/utils/index.d.ts +1 -0
- package/dist/cjs/script/ui/state/floatingTools/index.d.ts +16 -0
- package/dist/cjs/script/ui/state/floatingTools/selectors/index.d.ts +5 -0
- package/dist/cjs/script/ui/state/functionalGroups/index.d.ts +32 -0
- package/dist/cjs/script/ui/state/functionalGroups/selectors/index.d.ts +18 -0
- package/dist/cjs/script/ui/state/handleHotkeysOverItem.d.ts +15 -0
- package/dist/cjs/script/ui/state/hotkeys.d.ts +27 -0
- package/dist/cjs/script/ui/state/hotkeys.test.d.ts +1 -0
- package/dist/cjs/script/ui/state/index.d.ts +11 -0
- package/dist/cjs/script/ui/state/modal/atoms.d.ts +7 -0
- package/dist/cjs/script/ui/state/modal/bonds.d.ts +6 -0
- package/dist/cjs/script/ui/state/modal/form.d.ts +162 -0
- package/dist/cjs/script/ui/state/modal/index.d.ts +3 -0
- package/dist/cjs/script/ui/state/modal/sdata.d.ts +16 -0
- package/dist/cjs/script/ui/state/modal/utils/index.d.ts +1 -0
- package/dist/cjs/script/ui/state/modal/utils/updateOnlyChangedProperties.d.ts +1 -0
- package/dist/cjs/script/ui/state/mouse.d.ts +17 -0
- package/dist/cjs/script/ui/state/moveSelectedItems.d.ts +5 -0
- package/dist/cjs/script/ui/state/options/index.d.ts +106 -0
- package/dist/cjs/script/ui/state/request/index.d.ts +22 -0
- package/dist/cjs/script/ui/state/request/reducer.test.d.ts +16 -0
- package/dist/cjs/script/ui/state/request/request.types.d.ts +27 -0
- package/dist/cjs/script/ui/state/saltsAndSolvents/index.d.ts +30 -0
- package/dist/cjs/script/ui/state/saltsAndSolvents/selectors/index.d.ts +16 -0
- package/dist/cjs/script/ui/state/server/index.d.ts +7 -0
- package/dist/cjs/script/ui/state/server/selectors/index.d.ts +16 -0
- package/dist/cjs/script/ui/state/shared.d.ts +43 -0
- package/dist/cjs/script/ui/state/templates/index.d.ts +92 -0
- package/dist/cjs/script/ui/state/templates/init-lib.d.ts +28 -0
- package/dist/cjs/script/ui/state/templates/selectors/index.d.ts +16 -0
- package/dist/cjs/script/ui/state/toolbar/index.d.ts +33 -0
- package/dist/cjs/script/ui/storage-ext.d.ts +9 -0
- package/dist/cjs/script/ui/utils/fileOpener.d.ts +1 -0
- package/dist/cjs/script/ui/utils/index.d.ts +14 -0
- package/dist/cjs/script/ui/views/AppClipArea.d.ts +18 -0
- package/dist/cjs/script/ui/views/Editor.d.ts +3 -0
- package/dist/cjs/script/ui/views/components/ContextMenu/ContextMenu.d.ts +19 -0
- package/dist/cjs/script/ui/views/components/ContextMenu/ContextMenuTrigger.d.ts +18 -0
- package/dist/cjs/script/ui/views/components/ContextMenu/ContextMenuTrigger.utils.d.ts +7 -0
- package/dist/cjs/script/ui/views/components/ContextMenu/contextMenu.types.d.ts +74 -0
- package/dist/cjs/script/ui/views/components/ContextMenu/hooks/useAddAttachmentPoint.d.ts +4 -0
- package/dist/cjs/script/ui/views/components/ContextMenu/hooks/useAtomEdit.d.ts +4 -0
- package/dist/cjs/script/ui/views/components/ContextMenu/hooks/useAtomStereo.d.ts +4 -0
- package/dist/cjs/script/ui/views/components/ContextMenu/hooks/useBondEdit.d.ts +4 -0
- package/dist/cjs/script/ui/views/components/ContextMenu/hooks/useBondSGroupAttach.d.ts +4 -0
- package/dist/cjs/script/ui/views/components/ContextMenu/hooks/useBondSGroupEdit.d.ts +4 -0
- package/dist/cjs/script/ui/views/components/ContextMenu/hooks/useBondTypeChange.d.ts +4 -0
- package/dist/cjs/script/ui/views/components/ContextMenu/hooks/useChangeBondDirection.d.ts +3 -0
- package/dist/cjs/script/ui/views/components/ContextMenu/hooks/useDelete.d.ts +4 -0
- package/dist/cjs/script/ui/views/components/ContextMenu/hooks/useFunctionalGroupEoc.d.ts +7 -0
- package/dist/cjs/script/ui/views/components/ContextMenu/hooks/useFunctionalGroupRemove.d.ts +4 -0
- package/dist/cjs/script/ui/views/components/ContextMenu/hooks/useMonomerExpansionHandlers.d.ts +4 -0
- package/dist/cjs/script/ui/views/components/ContextMenu/hooks/useMultitailArrowTails.d.ts +11 -0
- package/dist/cjs/script/ui/views/components/ContextMenu/hooks/useRGroupAttachmentPointEdit.d.ts +4 -0
- package/dist/cjs/script/ui/views/components/ContextMenu/hooks/useRGroupAttachmentPointRemove.d.ts +4 -0
- package/dist/cjs/script/ui/views/components/ContextMenu/hooks/useRemoveAttachmentPoint.d.ts +4 -0
- package/dist/cjs/script/ui/views/components/ContextMenu/index.d.ts +2 -0
- package/dist/cjs/script/ui/views/components/ContextMenu/menuItems/AtomMenuItems.d.ts +4 -0
- package/dist/cjs/script/ui/views/components/ContextMenu/menuItems/BondMenuItems.d.ts +4 -0
- package/dist/cjs/script/ui/views/components/ContextMenu/menuItems/FunctionalGroupMenuItems.d.ts +4 -0
- package/dist/cjs/script/ui/views/components/ContextMenu/menuItems/MacromoleculeMenuItems.d.ts +3 -0
- package/dist/cjs/script/ui/views/components/ContextMenu/menuItems/MultitailArrowMenuItems.d.ts +2 -0
- package/dist/cjs/script/ui/views/components/ContextMenu/menuItems/RGroupAttachmentPointMenuItems.d.ts +4 -0
- package/dist/cjs/script/ui/views/components/ContextMenu/menuItems/SelectionMenuItems.d.ts +4 -0
- package/dist/cjs/script/ui/views/components/ContextMenu/utils.d.ts +25 -0
- package/dist/cjs/script/ui/views/components/ContextMenu/utils.test.d.ts +1 -0
- package/dist/cjs/script/ui/views/components/Spinner/LoadingCircles.d.ts +16 -0
- package/dist/cjs/script/ui/views/components/Spinner/index.d.ts +16 -0
- package/dist/cjs/script/ui/views/components/StructEditor/InfoPanel.d.ts +27 -0
- package/dist/cjs/script/ui/views/components/StructEditor/InfoTooltip.d.ts +23 -0
- package/dist/cjs/script/ui/views/components/StructEditor/SGroupDataRender.d.ts +13 -0
- package/dist/cjs/script/ui/views/components/StructEditor/StructEditor.d.ts +33 -0
- package/dist/cjs/script/ui/views/components/StructEditor/helpers.d.ts +3 -0
- package/dist/cjs/script/ui/views/components/StructEditor/index.d.ts +16 -0
- package/dist/cjs/script/ui/views/components/index.d.ts +19 -0
- package/dist/cjs/script/ui/views/modal/Modal.container.d.ts +19 -0
- package/dist/cjs/script/ui/views/modal/Modal.d.ts +27 -0
- package/dist/cjs/script/ui/views/modal/components/Confirm/Confirm.d.ts +6 -0
- package/dist/cjs/script/ui/views/modal/components/Confirm/index.d.ts +1 -0
- package/dist/cjs/script/ui/views/modal/components/ExtendedTable/ExtendedTable.d.ts +2 -0
- package/dist/cjs/script/ui/views/modal/components/ExtendedTable/components/GenericGroups/BoxWithLines.d.ts +17 -0
- package/dist/cjs/script/ui/views/modal/components/ExtendedTable/components/GenericGroups/GenGroup.d.ts +24 -0
- package/dist/cjs/script/ui/views/modal/components/ExtendedTable/components/GenericGroups/GenSet.d.ts +26 -0
- package/dist/cjs/script/ui/views/modal/components/ExtendedTable/components/GenericGroups/GenericGroups.d.ts +22 -0
- package/dist/cjs/script/ui/views/modal/components/ExtendedTable/components/GenericGroups/components/ButtonGenSet/ButtonGenSet.d.ts +24 -0
- package/dist/cjs/script/ui/views/modal/components/ExtendedTable/components/GenericGroups/components/ButtonGenSet/index.d.ts +16 -0
- package/dist/cjs/script/ui/views/modal/components/ExtendedTable/components/GenericGroups/index.d.ts +27 -0
- package/dist/cjs/script/ui/views/modal/components/ExtendedTable/helpers.d.ts +1 -0
- package/dist/cjs/script/ui/views/modal/components/ExtendedTable/index.d.ts +1 -0
- package/dist/cjs/script/ui/views/modal/components/InfoModal/InfoModal.d.ts +18 -0
- package/dist/cjs/script/ui/views/modal/components/InfoModal/InfoModal.test.d.ts +1 -0
- package/dist/cjs/script/ui/views/modal/components/InfoModal/InfoModal.test.utils.d.ts +63 -0
- package/dist/cjs/script/ui/views/modal/components/InfoModal/PasteErrorModalBody/PasteErrorModalBody.d.ts +2 -0
- package/dist/cjs/script/ui/views/modal/components/InfoModal/PasteErrorModalBody/index.d.ts +1 -0
- package/dist/cjs/script/ui/views/modal/components/InfoModal/constants.d.ts +9 -0
- package/dist/cjs/script/ui/views/modal/components/InfoModal/index.d.ts +16 -0
- package/dist/cjs/script/ui/views/modal/components/PeriodTable/PeriodTable.d.ts +37 -0
- package/dist/cjs/script/ui/views/modal/components/PeriodTable/components/AtomInfo/AtomInfo.d.ts +5 -0
- package/dist/cjs/script/ui/views/modal/components/PeriodTable/components/AtomInfo/index.d.ts +16 -0
- package/dist/cjs/script/ui/views/modal/components/PeriodTable/components/ElementsTable/ElementsTable.d.ts +9 -0
- package/dist/cjs/script/ui/views/modal/components/PeriodTable/components/ElementsTable/components/Header.d.ts +2 -0
- package/dist/cjs/script/ui/views/modal/components/PeriodTable/components/ElementsTable/components/MainRow.d.ts +11 -0
- package/dist/cjs/script/ui/views/modal/components/PeriodTable/components/ElementsTable/components/OutinerRow.d.ts +10 -0
- package/dist/cjs/script/ui/views/modal/components/PeriodTable/components/ElementsTable/components/index.d.ts +19 -0
- package/dist/cjs/script/ui/views/modal/components/PeriodTable/components/ElementsTable/index.d.ts +16 -0
- package/dist/cjs/script/ui/views/modal/components/PeriodTable/components/TypeChoice/TypeChoice.d.ts +6 -0
- package/dist/cjs/script/ui/views/modal/components/PeriodTable/components/TypeChoice/index.d.ts +16 -0
- package/dist/cjs/script/ui/views/modal/components/PeriodTable/components/index.d.ts +20 -0
- package/dist/cjs/script/ui/views/modal/components/PeriodTable/index.d.ts +16 -0
- package/dist/cjs/script/ui/views/modal/components/Text/FontControl/FontControl.d.ts +21 -0
- package/dist/cjs/script/ui/views/modal/components/Text/FontControl/index.d.ts +16 -0
- package/dist/cjs/script/ui/views/modal/components/Text/SpecialSymbols/SpecialSymbolsButton.d.ts +21 -0
- package/dist/cjs/script/ui/views/modal/components/Text/SpecialSymbolsList/SpecialSymbolsList.d.ts +19 -0
- package/dist/cjs/script/ui/views/modal/components/Text/Text.d.ts +25 -0
- package/dist/cjs/script/ui/views/modal/components/Text/TextButton/TextButton.d.ts +30 -0
- package/dist/cjs/script/ui/views/modal/components/Text/TextButton/index.d.ts +16 -0
- package/dist/cjs/script/ui/views/modal/components/Text/index.d.ts +16 -0
- package/dist/cjs/script/ui/views/modal/components/document/Open/Open.container.d.ts +24 -0
- package/dist/cjs/script/ui/views/modal/components/document/Open/Open.d.ts +30 -0
- package/dist/cjs/script/ui/views/modal/components/document/Open/components/AnalyzingFile.d.ts +19 -0
- package/dist/cjs/script/ui/views/modal/components/document/Open/components/CDXStructuresViewer/CDXStructuresViewer.d.ts +23 -0
- package/dist/cjs/script/ui/views/modal/components/document/Open/components/CDXStructuresViewer/index.d.ts +2 -0
- package/dist/cjs/script/ui/views/modal/components/document/Open/components/DialogActionButton.d.ts +24 -0
- package/dist/cjs/script/ui/views/modal/components/document/Open/components/FileDrop.d.ts +26 -0
- package/dist/cjs/script/ui/views/modal/components/document/Open/components/OpenOptions.d.ts +24 -0
- package/dist/cjs/script/ui/views/modal/components/document/Open/components/TextEditor.d.ts +21 -0
- package/dist/cjs/script/ui/views/modal/components/document/Open/components/ViewSwitcher.d.ts +33 -0
- package/dist/cjs/script/ui/views/modal/components/document/Open/index.d.ts +16 -0
- package/dist/cjs/script/ui/views/modal/components/document/Save/Save.d.ts +46 -0
- package/dist/cjs/script/ui/views/modal/components/document/Save/Save.test.d.ts +1 -0
- package/dist/cjs/script/ui/views/modal/components/document/Save/Save.test.utils.d.ts +2 -0
- package/dist/cjs/script/ui/views/modal/components/document/Save/index.d.ts +16 -0
- package/dist/cjs/script/ui/views/modal/components/document/index.d.ts +18 -0
- package/dist/cjs/script/ui/views/modal/components/meta/About/About.d.ts +3 -0
- package/dist/cjs/script/ui/views/modal/components/meta/About/index.d.ts +16 -0
- package/dist/cjs/script/ui/views/modal/components/meta/Settings/Accordion/Accordion.d.ts +22 -0
- package/dist/cjs/script/ui/views/modal/components/meta/Settings/Accordion/index.d.ts +16 -0
- package/dist/cjs/script/ui/views/modal/components/meta/Settings/Settings.d.ts +38 -0
- package/dist/cjs/script/ui/views/modal/components/meta/Settings/fieldGroups.d.ts +42 -0
- package/dist/cjs/script/ui/views/modal/components/meta/Settings/index.d.ts +16 -0
- package/dist/cjs/script/ui/views/modal/components/meta/index.d.ts +18 -0
- package/dist/cjs/script/ui/views/modal/components/process/Analyse/Analyse.d.ts +10 -0
- package/dist/cjs/script/ui/views/modal/components/process/Analyse/components/FormulaInput/FormulaInput.d.ts +5 -0
- package/dist/cjs/script/ui/views/modal/components/process/Analyse/components/FormulaInput/index.d.ts +16 -0
- package/dist/cjs/script/ui/views/modal/components/process/Analyse/components/FrozenInput/FrozenInput.d.ts +19 -0
- package/dist/cjs/script/ui/views/modal/components/process/Analyse/components/FrozenInput/index.d.ts +16 -0
- package/dist/cjs/script/ui/views/modal/components/process/Analyse/components/index.d.ts +18 -0
- package/dist/cjs/script/ui/views/modal/components/process/Analyse/index.d.ts +16 -0
- package/dist/cjs/script/ui/views/modal/components/process/Check/Check.d.ts +3 -0
- package/dist/cjs/script/ui/views/modal/components/process/Check/components/ErrorsCheck.d.ts +17 -0
- package/dist/cjs/script/ui/views/modal/components/process/Check/components/index.d.ts +16 -0
- package/dist/cjs/script/ui/views/modal/components/process/Check/index.d.ts +16 -0
- package/dist/cjs/script/ui/views/modal/components/process/Miew/Miew.d.ts +30 -0
- package/dist/cjs/script/ui/views/modal/components/process/Miew/index.d.ts +16 -0
- package/dist/cjs/script/ui/views/modal/components/process/Recognize/Recognize.d.ts +3 -0
- package/dist/cjs/script/ui/views/modal/components/process/Recognize/index.d.ts +16 -0
- package/dist/cjs/script/ui/views/modal/components/process/index.d.ts +20 -0
- package/dist/cjs/script/ui/views/modal/components/toolbox/Atom/Atom.container.d.ts +24 -0
- package/dist/cjs/script/ui/views/modal/components/toolbox/Atom/Atom.d.ts +40 -0
- package/dist/cjs/script/ui/views/modal/components/toolbox/Atom/AtomElement/AtomElement.d.ts +3 -0
- package/dist/cjs/script/ui/views/modal/components/toolbox/Atom/ElementNumber/ElementNumber.d.ts +21 -0
- package/dist/cjs/script/ui/views/modal/components/toolbox/Atom/ElementNumber/index.d.ts +16 -0
- package/dist/cjs/script/ui/views/modal/components/toolbox/Atom/helper.d.ts +6 -0
- package/dist/cjs/script/ui/views/modal/components/toolbox/Atom/index.d.ts +16 -0
- package/dist/cjs/script/ui/views/modal/components/toolbox/Attach/Attach.container.d.ts +17 -0
- package/dist/cjs/script/ui/views/modal/components/toolbox/Attach/Attach.d.ts +24 -0
- package/dist/cjs/script/ui/views/modal/components/toolbox/Attach/index.d.ts +16 -0
- package/dist/cjs/script/ui/views/modal/components/toolbox/Automap/Automap.container.d.ts +18 -0
- package/dist/cjs/script/ui/views/modal/components/toolbox/Automap/Automap.d.ts +32 -0
- package/dist/cjs/script/ui/views/modal/components/toolbox/Automap/index.d.ts +16 -0
- package/dist/cjs/script/ui/views/modal/components/toolbox/Bond/Bond.container.d.ts +17 -0
- package/dist/cjs/script/ui/views/modal/components/toolbox/Bond/Bond.d.ts +28 -0
- package/dist/cjs/script/ui/views/modal/components/toolbox/Bond/index.d.ts +16 -0
- package/dist/cjs/script/ui/views/modal/components/toolbox/FG/RemoveFG.d.ts +23 -0
- package/dist/cjs/script/ui/views/modal/components/toolbox/RgroupLogic/RgroupLogic.container.d.ts +17 -0
- package/dist/cjs/script/ui/views/modal/components/toolbox/RgroupLogic/RgroupLogic.d.ts +29 -0
- package/dist/cjs/script/ui/views/modal/components/toolbox/RgroupLogic/components/IfThenSelect/IfThenSelect.d.ts +19 -0
- package/dist/cjs/script/ui/views/modal/components/toolbox/RgroupLogic/components/IfThenSelect/index.d.ts +16 -0
- package/dist/cjs/script/ui/views/modal/components/toolbox/RgroupLogic/components/index.d.ts +16 -0
- package/dist/cjs/script/ui/views/modal/components/toolbox/RgroupLogic/index.d.ts +16 -0
- package/dist/cjs/script/ui/views/modal/components/toolbox/index.d.ts +21 -0
- package/dist/cjs/script/ui/views/modal/index.d.ts +16 -0
- package/dist/cjs/script/ui/views/modal/mediaSizes.d.ts +20 -0
- package/dist/cjs/script/ui/views/modal/modal.types.d.ts +28 -0
- package/dist/cjs/script/ui/views/toolbars/ArrowScroll/ArrowScroll.d.ts +23 -0
- package/dist/cjs/script/ui/views/toolbars/ArrowScroll/index.d.ts +2 -0
- package/dist/cjs/script/ui/views/toolbars/BottomToolbar/BottomToolbar.container.d.ts +20 -0
- package/dist/cjs/script/ui/views/toolbars/BottomToolbar/BottomToolbar.d.ts +28 -0
- package/dist/cjs/script/ui/views/toolbars/BottomToolbar/TemplatesList/TemplatesList.d.ts +34 -0
- package/dist/cjs/script/ui/views/toolbars/BottomToolbar/TemplatesList/index.d.ts +16 -0
- package/dist/cjs/script/ui/views/toolbars/BottomToolbar/index.d.ts +16 -0
- package/dist/cjs/script/ui/views/toolbars/FloatingTools/FloatingTools.container.d.ts +4 -0
- package/dist/cjs/script/ui/views/toolbars/FloatingTools/FloatingTools.d.ts +20 -0
- package/dist/cjs/script/ui/views/toolbars/FloatingTools/index.d.ts +1 -0
- package/dist/cjs/script/ui/views/toolbars/LeftToolbar/Bond/Bond.d.ts +24 -0
- package/dist/cjs/script/ui/views/toolbars/LeftToolbar/Bond/index.d.ts +16 -0
- package/dist/cjs/script/ui/views/toolbars/LeftToolbar/Bond/options.d.ts +24 -0
- package/dist/cjs/script/ui/views/toolbars/LeftToolbar/LeftToolbar.container.d.ts +18 -0
- package/dist/cjs/script/ui/views/toolbars/LeftToolbar/LeftToolbar.d.ts +24 -0
- package/dist/cjs/script/ui/views/toolbars/LeftToolbar/RGroup/RGroup.d.ts +24 -0
- package/dist/cjs/script/ui/views/toolbars/LeftToolbar/RGroup/index.d.ts +16 -0
- package/dist/cjs/script/ui/views/toolbars/LeftToolbar/Shape/Shape.d.ts +24 -0
- package/dist/cjs/script/ui/views/toolbars/LeftToolbar/Shape/index.d.ts +16 -0
- package/dist/cjs/script/ui/views/toolbars/LeftToolbar/index.d.ts +16 -0
- package/dist/cjs/script/ui/views/toolbars/LeftToolbar/leftToolbarOptions.d.ts +8 -0
- package/dist/cjs/script/ui/views/toolbars/ModeControl/ModeControl.d.ts +21 -0
- package/dist/cjs/script/ui/views/toolbars/ModeControl/index.d.ts +1 -0
- package/dist/cjs/script/ui/views/toolbars/RightToolbar/AtomsList/AtomsList.d.ts +33 -0
- package/dist/cjs/script/ui/views/toolbars/RightToolbar/AtomsList/index.d.ts +16 -0
- package/dist/cjs/script/ui/views/toolbars/RightToolbar/RightToolbar.container.d.ts +21 -0
- package/dist/cjs/script/ui/views/toolbars/RightToolbar/RightToolbar.d.ts +29 -0
- package/dist/cjs/script/ui/views/toolbars/RightToolbar/index.d.ts +16 -0
- package/dist/cjs/script/ui/views/toolbars/ToolbarGroupItem/ActionButton/ActionButton.d.ts +37 -0
- package/dist/cjs/script/ui/views/toolbars/ToolbarGroupItem/ActionButton/index.d.ts +16 -0
- package/dist/cjs/script/ui/views/toolbars/ToolbarGroupItem/ToolbarGroupItem.d.ts +34 -0
- package/dist/cjs/script/ui/views/toolbars/ToolbarGroupItem/ToolbarMultiToolItem/ToolbarMultiToolItem.d.ts +41 -0
- package/dist/cjs/script/ui/views/toolbars/ToolbarGroupItem/ToolbarMultiToolItem/index.d.ts +16 -0
- package/dist/cjs/script/ui/views/toolbars/ToolbarGroupItem/ToolbarMultiToolItem/usePortalOpening.d.ts +19 -0
- package/dist/cjs/script/ui/views/toolbars/ToolbarGroupItem/ToolbarMultiToolItem/usePortalStyle.d.ts +19 -0
- package/dist/cjs/script/ui/views/toolbars/ToolbarGroupItem/ToolbarMultiToolItem/variants/DefaultMultiTool/DefaultMultiTool.d.ts +22 -0
- package/dist/cjs/script/ui/views/toolbars/ToolbarGroupItem/ToolbarMultiToolItem/variants/DefaultMultiTool/index.d.ts +18 -0
- package/dist/cjs/script/ui/views/toolbars/ToolbarGroupItem/ToolbarMultiToolItem/variants/GroupedMultiTool/GroupedMultiTool.d.ts +22 -0
- package/dist/cjs/script/ui/views/toolbars/ToolbarGroupItem/ToolbarMultiToolItem/variants/GroupedMultiTool/index.d.ts +16 -0
- package/dist/cjs/script/ui/views/toolbars/ToolbarGroupItem/ToolbarMultiToolItem/variants/chooseMultiTool.d.ts +18 -0
- package/dist/cjs/script/ui/views/toolbars/ToolbarGroupItem/ToolbarMultiToolItem/variants/variants.types.d.ts +35 -0
- package/dist/cjs/script/ui/views/toolbars/ToolbarGroupItem/index.d.ts +16 -0
- package/dist/cjs/script/ui/views/toolbars/ToolbarGroupItem/utils/index.d.ts +16 -0
- package/dist/cjs/script/ui/views/toolbars/ToolbarGroupItem/utils/makeItems.d.ts +18 -0
- package/dist/cjs/script/ui/views/toolbars/TopToolbar/ClipboardControls.d.ts +30 -0
- package/dist/cjs/script/ui/views/toolbars/TopToolbar/CustomButtons.d.ts +8 -0
- package/dist/cjs/script/ui/views/toolbars/TopToolbar/Divider.d.ts +17 -0
- package/dist/cjs/script/ui/views/toolbars/TopToolbar/ElementWithDropdown.d.ts +23 -0
- package/dist/cjs/script/ui/views/toolbars/TopToolbar/ExternalFuncControls.d.ts +35 -0
- package/dist/cjs/script/ui/views/toolbars/TopToolbar/FileControls.d.ts +10 -0
- package/dist/cjs/script/ui/views/toolbars/TopToolbar/ScaleTransformer.d.ts +24 -0
- package/dist/cjs/script/ui/views/toolbars/TopToolbar/SystemControls.d.ts +27 -0
- package/dist/cjs/script/ui/views/toolbars/TopToolbar/TopToolbar.container.d.ts +17 -0
- package/dist/cjs/script/ui/views/toolbars/TopToolbar/TopToolbar.d.ts +59 -0
- package/dist/cjs/script/ui/views/toolbars/TopToolbar/TopToolbarIconButton.d.ts +21 -0
- package/dist/cjs/script/ui/views/toolbars/TopToolbar/UndoRedo.d.ts +26 -0
- package/dist/cjs/script/ui/views/toolbars/TopToolbar/ZoomControls.d.ts +28 -0
- package/dist/cjs/script/ui/views/toolbars/TopToolbar/ZoomInput.d.ts +26 -0
- package/dist/cjs/script/ui/views/toolbars/TopToolbar/ZoomList.d.ts +22 -0
- package/dist/cjs/script/ui/views/toolbars/TopToolbar/ZoomSlider.d.ts +21 -0
- package/dist/cjs/script/ui/views/toolbars/TopToolbar/index.d.ts +16 -0
- package/dist/cjs/script/ui/views/toolbars/index.d.ts +20 -0
- package/dist/cjs/script/ui/views/toolbars/mediaSizes.d.ts +23 -0
- package/dist/cjs/script/ui/views/toolbars/toolbar.types.d.ts +34 -0
- package/dist/cjs/setupTests.d.ts +1 -0
- package/dist/index.css +1 -1
- package/dist/index.css.map +1 -1
- package/dist/index.js +4207 -4163
- package/dist/index.js.map +1 -1
- package/dist/index.modern-b02f5e53.js +15301 -0
- package/dist/index.modern-b02f5e53.js.map +1 -0
- package/dist/script/ui/views/toolbars/ModeControl/ModeControl.d.ts +21 -0
- package/dist/script/ui/views/toolbars/ModeControl/index.d.ts +1 -0
- package/package.json +12 -4
- package/dist/index.modern.js.map +0 -1
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
export default FrozenInput;
|
|
2
|
+
/****************************************************************************
|
|
3
|
+
* Copyright 2021 EPAM Systems
|
|
4
|
+
*
|
|
5
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
6
|
+
* you may not use this file except in compliance with the License.
|
|
7
|
+
* You may obtain a copy of the License at
|
|
8
|
+
*
|
|
9
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
10
|
+
*
|
|
11
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
12
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
13
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
14
|
+
* See the License for the specific language governing permissions and
|
|
15
|
+
* limitations under the License.
|
|
16
|
+
***************************************************************************/
|
|
17
|
+
declare function FrozenInput({ value }: {
|
|
18
|
+
value: any;
|
|
19
|
+
}): import("react/jsx-runtime").JSX.Element;
|
package/dist/cjs/script/ui/views/modal/components/process/Analyse/components/FrozenInput/index.d.ts
ADDED
|
@@ -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 './FrozenInput';
|
|
@@ -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 FormulaInput from './FormulaInput';
|
|
17
|
+
import FrozenInput from './FrozenInput';
|
|
18
|
+
export { FormulaInput, FrozenInput };
|
|
@@ -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 './Analyse';
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
export default ErrorsCheck;
|
|
2
|
+
/****************************************************************************
|
|
3
|
+
* Copyright 2021 EPAM Systems
|
|
4
|
+
*
|
|
5
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
6
|
+
* you may not use this file except in compliance with the License.
|
|
7
|
+
* You may obtain a copy of the License at
|
|
8
|
+
*
|
|
9
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
10
|
+
*
|
|
11
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
12
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
13
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
14
|
+
* See the License for the specific language governing permissions and
|
|
15
|
+
* limitations under the License.
|
|
16
|
+
***************************************************************************/
|
|
17
|
+
declare function ErrorsCheck(props: any): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
/****************************************************************************
|
|
2
|
+
* Copyright 2021 EPAM Systems
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
***************************************************************************/
|
|
16
|
+
export { default } from './ErrorsCheck';
|
|
@@ -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 './Check';
|
|
@@ -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
|
+
import { Struct, StructService } from 'ketcher-core';
|
|
17
|
+
declare type MiewDialogProps = {
|
|
18
|
+
miewOpts: any;
|
|
19
|
+
server: StructService;
|
|
20
|
+
struct: Struct;
|
|
21
|
+
onCancel: () => void;
|
|
22
|
+
onOk: (result: any) => void;
|
|
23
|
+
miewTheme: 'dark' | 'light';
|
|
24
|
+
};
|
|
25
|
+
declare type MiewDialogCallProps = {
|
|
26
|
+
onExportCML: (cmlStruct: string) => void;
|
|
27
|
+
};
|
|
28
|
+
declare type Props = MiewDialogProps & MiewDialogCallProps;
|
|
29
|
+
declare const Miew: import("react-redux").ConnectedComponent<({ miewOpts, server, struct, onExportCML, miewTheme, ...prop }: Props) => import("react/jsx-runtime").JSX.Element, import("react-redux").Omit<MiewDialogProps & MiewDialogCallProps, "miewOpts" | "server" | "struct" | "onExportCML" | "miewTheme">>;
|
|
30
|
+
export default Miew;
|
|
@@ -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 './Miew';
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
export default Recognize;
|
|
2
|
+
declare const Recognize: import("react-redux").ConnectedComponent<typeof RecognizeDialog, import("react-redux").Omit<any, "fragment" | "file" | "onOk" | "structStr" | "version" | "onImage" | "imagoVersions" | "onRecognize" | "isFragment" | "onChangeImago">>;
|
|
3
|
+
declare function RecognizeDialog(prop: any): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
/****************************************************************************
|
|
2
|
+
* Copyright 2021 EPAM Systems
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
***************************************************************************/
|
|
16
|
+
export { default } from './Recognize';
|
|
@@ -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 Check from './Check';
|
|
17
|
+
import Analyse from './Analyse';
|
|
18
|
+
import Recognize from './Recognize';
|
|
19
|
+
import Miew from './Miew';
|
|
20
|
+
export { Check, Analyse, Recognize, Miew };
|
|
@@ -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
|
+
declare const AtomContainer: import("react-redux").ConnectedComponent<import("react").FC<import("./Atom").AtomProps & {
|
|
18
|
+
isMultipleAtoms?: boolean | undefined;
|
|
19
|
+
isRestoredModal: boolean;
|
|
20
|
+
}>, import("react-redux").Omit<import("./Atom").AtomProps & {
|
|
21
|
+
isMultipleAtoms?: boolean | undefined;
|
|
22
|
+
isRestoredModal: boolean;
|
|
23
|
+
}, "formState">>;
|
|
24
|
+
export default AtomContainer;
|
|
@@ -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
|
+
import { BaseCallProps, BaseProps } from '../../../modal.types';
|
|
17
|
+
import { FC } from 'react';
|
|
18
|
+
interface AtomProps extends BaseCallProps, BaseProps {
|
|
19
|
+
alias: string;
|
|
20
|
+
charge: string;
|
|
21
|
+
exactChangeFlag: boolean;
|
|
22
|
+
explicitValence: number;
|
|
23
|
+
hCount: number;
|
|
24
|
+
invRet: number;
|
|
25
|
+
isotope: number;
|
|
26
|
+
label: string;
|
|
27
|
+
radical: number;
|
|
28
|
+
ringBondCount: number;
|
|
29
|
+
stereoParity: number;
|
|
30
|
+
substitutionCount: number;
|
|
31
|
+
unsaturatedAtom: boolean;
|
|
32
|
+
customQuery: string;
|
|
33
|
+
}
|
|
34
|
+
declare type Props = AtomProps & {
|
|
35
|
+
isMultipleAtoms?: boolean;
|
|
36
|
+
isRestoredModal: boolean;
|
|
37
|
+
};
|
|
38
|
+
declare const Atom: FC<Props>;
|
|
39
|
+
export type { AtomProps };
|
|
40
|
+
export default Atom;
|
package/dist/cjs/script/ui/views/modal/components/toolbox/Atom/ElementNumber/ElementNumber.d.ts
ADDED
|
@@ -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
|
+
interface ElementNumberProps {
|
|
17
|
+
label: string;
|
|
18
|
+
}
|
|
19
|
+
declare type Props = ElementNumberProps;
|
|
20
|
+
declare const ElementNumber: (props: Props) => import("react/jsx-runtime").JSX.Element;
|
|
21
|
+
export default ElementNumber;
|
|
@@ -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 './ElementNumber';
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { AtomType } from 'ketcher-core';
|
|
2
|
+
export declare function atomValid(label: string, isMultipleAtoms: boolean, atomType: AtomType, isCustomQuery: boolean): boolean | "";
|
|
3
|
+
export declare function AtomListValid(value: string, atomType: AtomType, isCustomQuery: boolean): boolean;
|
|
4
|
+
export declare function pseudoAtomValid(value: string, atomType: AtomType, isCustomQuery: boolean, disableQueryElements?: string[] | null): boolean | "";
|
|
5
|
+
export declare function chargeValid(charge: any, isMultipleAtoms: boolean, isCustomQuery: boolean): boolean | null;
|
|
6
|
+
export declare function customQueryValid(value: string, isCustomQuery: boolean): boolean;
|
|
@@ -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 './Atom.container';
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/****************************************************************************
|
|
2
|
+
* Copyright 2021 EPAM Systems
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
***************************************************************************/
|
|
16
|
+
declare const AttachPointsContainer: import("react-redux").ConnectedComponent<(props: import("./Attach").AttachPointsProps & import("../../../modal.types").BaseCallProps) => import("react/jsx-runtime").JSX.Element, import("react-redux").Omit<import("./Attach").AttachPointsProps & import("../../../modal.types").BaseCallProps, "formState">>;
|
|
17
|
+
export default AttachPointsContainer;
|
|
@@ -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 { BaseCallProps, BaseProps } from '../../../modal.types';
|
|
17
|
+
interface AttachPointsProps extends BaseProps {
|
|
18
|
+
primary: boolean;
|
|
19
|
+
secondary: boolean;
|
|
20
|
+
}
|
|
21
|
+
declare type Props = AttachPointsProps & BaseCallProps;
|
|
22
|
+
declare const AttachPoints: (props: Props) => import("react/jsx-runtime").JSX.Element;
|
|
23
|
+
export type { AttachPointsProps };
|
|
24
|
+
export default AttachPoints;
|
|
@@ -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 './Attach.container';
|
|
@@ -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 { BaseCallProps, BaseProps } from '../../../modal.types';
|
|
17
|
+
declare const AutomapContainer: import("react-redux").ConnectedComponent<(props: BaseProps & BaseCallProps) => import("react/jsx-runtime").JSX.Element, any>;
|
|
18
|
+
export default AutomapContainer;
|
|
@@ -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
|
+
import { BaseCallProps, BaseProps } from '../../../modal.types';
|
|
17
|
+
declare type Props = BaseProps & BaseCallProps;
|
|
18
|
+
export declare const automapSchema: {
|
|
19
|
+
title: string;
|
|
20
|
+
type: string;
|
|
21
|
+
required: string[];
|
|
22
|
+
properties: {
|
|
23
|
+
mode: {
|
|
24
|
+
title: string;
|
|
25
|
+
enum: string[];
|
|
26
|
+
enumNames: string[];
|
|
27
|
+
default: string;
|
|
28
|
+
};
|
|
29
|
+
};
|
|
30
|
+
};
|
|
31
|
+
declare const Automap: (props: Props) => import("react/jsx-runtime").JSX.Element;
|
|
32
|
+
export default Automap;
|
|
@@ -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 './Automap.container';
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/****************************************************************************
|
|
2
|
+
* Copyright 2021 EPAM Systems
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
***************************************************************************/
|
|
16
|
+
declare const BondContainer: import("react-redux").ConnectedComponent<(props: import("./Bond").BondProps & import("../../../modal.types").BaseCallProps) => import("react/jsx-runtime").JSX.Element, import("react-redux").Omit<import("./Bond").BondProps & import("../../../modal.types").BaseCallProps, "formState">>;
|
|
17
|
+
export default BondContainer;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
/****************************************************************************
|
|
2
|
+
* Copyright 2021 EPAM Systems
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
***************************************************************************/
|
|
16
|
+
import { BaseCallProps, BaseProps } from '../../../modal.types';
|
|
17
|
+
interface BondSettings {
|
|
18
|
+
type: string;
|
|
19
|
+
topology: number | null;
|
|
20
|
+
center: number | null;
|
|
21
|
+
customQuery: string;
|
|
22
|
+
}
|
|
23
|
+
interface BondProps extends BaseProps, BondSettings {
|
|
24
|
+
}
|
|
25
|
+
declare type Props = BondProps & BaseCallProps;
|
|
26
|
+
declare const Bond: (props: Props) => import("react/jsx-runtime").JSX.Element;
|
|
27
|
+
export type { BondProps };
|
|
28
|
+
export default 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 { default } from './Bond.container';
|
|
@@ -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
|
+
import { BaseCallProps, BaseProps } from '../../../modal.types';
|
|
17
|
+
interface RemoveFGProps extends BaseProps {
|
|
18
|
+
fgIds: any;
|
|
19
|
+
}
|
|
20
|
+
declare type Props = RemoveFGProps & BaseCallProps;
|
|
21
|
+
declare const RemoveFG: (props: Props) => import("react/jsx-runtime").JSX.Element;
|
|
22
|
+
export type { RemoveFGProps };
|
|
23
|
+
export { RemoveFG };
|
package/dist/cjs/script/ui/views/modal/components/toolbox/RgroupLogic/RgroupLogic.container.d.ts
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/****************************************************************************
|
|
2
|
+
* Copyright 2021 EPAM Systems
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
***************************************************************************/
|
|
16
|
+
declare const RgroupLogicContainer: import("react-redux").ConnectedComponent<(props: import("./RgroupLogic").RgroupLogicProps & import("../../../modal.types").BaseCallProps) => import("react/jsx-runtime").JSX.Element, import("react-redux").Omit<import("./RgroupLogic").RgroupLogicProps & import("../../../modal.types").BaseCallProps, "formState">>;
|
|
17
|
+
export default RgroupLogicContainer;
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
/****************************************************************************
|
|
2
|
+
* Copyright 2021 EPAM Systems
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
***************************************************************************/
|
|
16
|
+
import { BaseCallProps, BaseProps } from '../../../modal.types';
|
|
17
|
+
interface RgroupLogicProps extends BaseProps {
|
|
18
|
+
frags: Set<number>;
|
|
19
|
+
ifthen: number;
|
|
20
|
+
label: number;
|
|
21
|
+
range: string;
|
|
22
|
+
resth: boolean;
|
|
23
|
+
rgroupLabels: Array<number>;
|
|
24
|
+
name?: string;
|
|
25
|
+
}
|
|
26
|
+
declare type Props = RgroupLogicProps & BaseCallProps;
|
|
27
|
+
declare const RgroupLogic: (props: Props) => import("react/jsx-runtime").JSX.Element;
|
|
28
|
+
export type { RgroupLogicProps };
|
|
29
|
+
export default RgroupLogic;
|