ketcher-react 3.6.0-rc.1 → 3.7.0-rc.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/components/Icon/Icon.d.ts +1 -1
- package/dist/cjs/components/Icon/types.d.ts +3 -0
- package/dist/cjs/components/Icon/utils/iconNameToIcon.d.ts +6 -0
- package/dist/cjs/components/StructRender/StructRender.d.ts +1 -1
- package/dist/cjs/components/StructRender/types.d.ts +1 -0
- package/dist/cjs/index.css +1 -1
- package/dist/cjs/index.css.map +1 -1
- package/dist/cjs/index.js +2808 -1599
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/{index.modern-4c4698fb.js → index.modern-5eda67eb.js} +891 -169
- package/dist/cjs/index.modern-5eda67eb.js.map +1 -0
- package/dist/cjs/script/editor/Editor.d.ts +16 -0
- package/dist/cjs/script/editor/tool/create-monomer.d.ts +8 -0
- package/dist/cjs/script/ui/action/atoms.d.ts +23 -22
- package/dist/cjs/script/ui/action/tools.d.ts +8 -0
- package/dist/cjs/script/ui/component/form/Select/Select.d.ts +4 -1
- package/dist/cjs/script/ui/component/form/buttonlist.d.ts +2 -1
- package/dist/cjs/script/ui/state/editor/actions/monomerCreation.d.ts +15 -0
- package/dist/cjs/script/ui/state/editor/middlewares/monomerCreation.d.ts +3 -0
- package/dist/cjs/script/ui/state/editor/selectors/index.d.ts +2 -0
- package/dist/cjs/script/ui/views/components/MonomerCreationWizard/MonomerCreationWizard.d.ts +2 -0
- package/dist/cjs/script/ui/views/components/MonomerCreationWizard/MonomerCreationWizard.types.d.ts +50 -0
- package/dist/cjs/script/ui/views/components/MonomerCreationWizard/components/AttributeField/AttributeField.d.ts +9 -0
- package/dist/cjs/script/ui/views/components/MonomerCreationWizard/components/NaturalAnalogueChip/NaturalAnalogueChip.d.ts +7 -0
- package/dist/cjs/script/ui/views/components/MonomerCreationWizard/components/NaturalAnaloguePicker/NaturalAnaloguePicker.d.ts +11 -0
- package/dist/cjs/script/ui/views/components/MonomerCreationWizard/components/Notification/Notification.d.ts +10 -0
- package/dist/cjs/script/ui/views/modal/components/process/Analyse/components/FrozenInput/FrozenInput.d.ts +2 -1
- package/dist/cjs/script/ui/views/toolbars/toolbar.types.d.ts +1 -1
- package/dist/components/Icon/Icon.d.ts +1 -1
- package/dist/components/Icon/types.d.ts +3 -0
- package/dist/components/Icon/utils/iconNameToIcon.d.ts +6 -0
- package/dist/components/StructRender/StructRender.d.ts +1 -1
- package/dist/components/StructRender/types.d.ts +1 -0
- package/dist/index.css +1 -1
- package/dist/index.css.map +1 -1
- package/dist/index.js +2810 -1601
- package/dist/index.js.map +1 -1
- package/dist/{index.modern-b7795f49.js → index.modern-eab54238.js} +874 -170
- package/dist/index.modern-eab54238.js.map +1 -0
- package/dist/script/editor/Editor.d.ts +16 -0
- package/dist/script/editor/tool/create-monomer.d.ts +8 -0
- package/dist/script/ui/action/atoms.d.ts +23 -22
- package/dist/script/ui/action/tools.d.ts +8 -0
- package/dist/script/ui/component/form/Select/Select.d.ts +4 -1
- package/dist/script/ui/component/form/buttonlist.d.ts +2 -1
- package/dist/script/ui/state/editor/actions/monomerCreation.d.ts +15 -0
- package/dist/script/ui/state/editor/middlewares/monomerCreation.d.ts +3 -0
- package/dist/script/ui/state/editor/selectors/index.d.ts +2 -0
- package/dist/script/ui/views/components/MonomerCreationWizard/MonomerCreationWizard.d.ts +2 -0
- package/dist/script/ui/views/components/MonomerCreationWizard/MonomerCreationWizard.types.d.ts +50 -0
- package/dist/script/ui/views/components/MonomerCreationWizard/components/AttributeField/AttributeField.d.ts +9 -0
- package/dist/script/ui/views/components/MonomerCreationWizard/components/NaturalAnalogueChip/NaturalAnalogueChip.d.ts +7 -0
- package/dist/script/ui/views/components/MonomerCreationWizard/components/NaturalAnaloguePicker/NaturalAnaloguePicker.d.ts +11 -0
- package/dist/script/ui/views/components/MonomerCreationWizard/components/Notification/Notification.d.ts +10 -0
- package/dist/script/ui/views/modal/components/process/Analyse/components/FrozenInput/FrozenInput.d.ts +2 -1
- package/dist/script/ui/views/toolbars/toolbar.types.d.ts +1 -1
- package/package.json +1 -1
- package/dist/cjs/index.modern-4c4698fb.js.map +0 -1
- package/dist/index.modern-b7795f49.js.map +0 -1
|
@@ -14,5 +14,5 @@
|
|
|
14
14
|
* limitations under the License.
|
|
15
15
|
***************************************************************************/
|
|
16
16
|
import { IIconProps } from './types';
|
|
17
|
-
declare const Icon: ({ name, className, title, onClick, dataTestId }: IIconProps) => import("react/jsx-runtime").JSX.Element;
|
|
17
|
+
declare const Icon: ({ name, className, title, onClick, onMouseOver, onMouseOut, onDoubleClick, dataTestId, }: IIconProps) => import("react/jsx-runtime").JSX.Element;
|
|
18
18
|
export default Icon;
|
|
@@ -24,5 +24,8 @@ export interface IIconProps {
|
|
|
24
24
|
className?: string;
|
|
25
25
|
title?: string;
|
|
26
26
|
onClick?: (e: MouseEvent) => void;
|
|
27
|
+
onMouseOver?: (e: MouseEvent) => void;
|
|
28
|
+
onMouseOut?: (e: MouseEvent) => void;
|
|
29
|
+
onDoubleClick?: (e: MouseEvent) => void;
|
|
27
30
|
dataTestId?: string;
|
|
28
31
|
}
|
|
@@ -228,6 +228,8 @@ export declare const iconNameToIcon: {
|
|
|
228
228
|
readonly phosphate: ReactComponent;
|
|
229
229
|
readonly preset: ReactComponent;
|
|
230
230
|
readonly nucleotide: ReactComponent;
|
|
231
|
+
readonly peptide: ReactComponent;
|
|
232
|
+
readonly chem: ReactComponent;
|
|
231
233
|
readonly 'edit-filled': ReactComponent;
|
|
232
234
|
readonly 'vertical-dots': ReactComponent;
|
|
233
235
|
readonly expand: ReactComponent;
|
|
@@ -243,4 +245,8 @@ export declare const iconNameToIcon: {
|
|
|
243
245
|
readonly antisenseStrand: ReactComponent;
|
|
244
246
|
readonly antisenseRnaStrand: ReactComponent;
|
|
245
247
|
readonly antisenseDnaStrand: ReactComponent;
|
|
248
|
+
readonly 'monomer-autochain': ReactComponent;
|
|
249
|
+
readonly "create-monomer": ReactComponent;
|
|
250
|
+
readonly checkFilled: ReactComponent;
|
|
251
|
+
readonly warningFilled: ReactComponent;
|
|
246
252
|
};
|
|
@@ -14,5 +14,5 @@
|
|
|
14
14
|
* limitations under the License.
|
|
15
15
|
***************************************************************************/
|
|
16
16
|
import { IStructRenderProps } from './types';
|
|
17
|
-
declare const StructRender: ({ struct, options, className, fullsize, update, }: IStructRenderProps) => import("react/jsx-runtime").JSX.Element;
|
|
17
|
+
declare const StructRender: ({ struct, options, className, fullsize, update, testId, }: IStructRenderProps) => import("react/jsx-runtime").JSX.Element;
|
|
18
18
|
export default StructRender;
|