ketcher-react 3.8.0-dev.1 → 3.8.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.
Files changed (39) hide show
  1. package/dist/cjs/components/Icon/utils/iconNameToIcon.d.ts +1 -0
  2. package/dist/cjs/index.css +1 -1
  3. package/dist/cjs/index.css.map +1 -1
  4. package/dist/cjs/index.js +1429 -1223
  5. package/dist/cjs/index.js.map +1 -1
  6. package/dist/cjs/{index.modern-5d5e11f2.js → index.modern-e42372a4.js} +67 -12
  7. package/dist/cjs/index.modern-e42372a4.js.map +1 -0
  8. package/dist/cjs/script/editor/Editor.d.ts +11 -9
  9. package/dist/cjs/script/editor/tool/create-monomer.d.ts +0 -1
  10. package/dist/cjs/script/ui/state/editor/selectors/index.d.ts +1 -1
  11. package/dist/cjs/script/ui/views/components/AttachmentPointEditPopup/AttachmentPointEditPopup.d.ts +9 -0
  12. package/dist/cjs/script/ui/views/components/ContextMenu/hooks/useMakeLeavingGroupAtomMenuItem.d.ts +9 -0
  13. package/dist/cjs/script/ui/views/components/MonomerCreationWizard/MonomerCreationWizard.types.d.ts +1 -1
  14. package/dist/cjs/script/ui/views/components/MonomerCreationWizard/components/AttachmentPoint/AttachmentPoint.d.ts +7 -0
  15. package/dist/components/Icon/utils/iconNameToIcon.d.ts +1 -0
  16. package/dist/index.css +1 -1
  17. package/dist/index.css.map +1 -1
  18. package/dist/index.js +1430 -1224
  19. package/dist/index.js.map +1 -1
  20. package/dist/{index.modern-7ce21378.js → index.modern-1aebb8e6.js} +67 -12
  21. package/dist/index.modern-1aebb8e6.js.map +1 -0
  22. package/dist/script/editor/Editor.d.ts +11 -9
  23. package/dist/script/editor/tool/create-monomer.d.ts +0 -1
  24. package/dist/script/ui/state/editor/selectors/index.d.ts +1 -1
  25. package/dist/script/ui/views/components/AttachmentPointEditPopup/AttachmentPointEditPopup.d.ts +9 -0
  26. package/dist/script/ui/views/components/ContextMenu/hooks/useMakeLeavingGroupAtomMenuItem.d.ts +9 -0
  27. package/dist/script/ui/views/components/MonomerCreationWizard/MonomerCreationWizard.types.d.ts +1 -1
  28. package/dist/script/ui/views/components/MonomerCreationWizard/components/AttachmentPoint/AttachmentPoint.d.ts +7 -0
  29. package/package.json +1 -1
  30. package/dist/cjs/index.modern-5d5e11f2.js.map +0 -1
  31. package/dist/cjs/script/ui/state/editor/actions/monomerCreation.d.ts +0 -15
  32. package/dist/cjs/script/ui/state/editor/middlewares/monomerCreation.d.ts +0 -2
  33. package/dist/cjs/script/ui/views/components/ContextMenu/hooks/useAddAttachmentPoint.d.ts +0 -4
  34. package/dist/cjs/script/ui/views/components/ContextMenu/hooks/useRemoveAttachmentPoint.d.ts +0 -4
  35. package/dist/index.modern-7ce21378.js.map +0 -1
  36. package/dist/script/ui/state/editor/actions/monomerCreation.d.ts +0 -15
  37. package/dist/script/ui/state/editor/middlewares/monomerCreation.d.ts +0 -2
  38. package/dist/script/ui/views/components/ContextMenu/hooks/useAddAttachmentPoint.d.ts +0 -4
  39. package/dist/script/ui/views/components/ContextMenu/hooks/useRemoveAttachmentPoint.d.ts +0 -4
@@ -1,15 +0,0 @@
1
- export declare const MonomerCreationActions: {
2
- readonly OpenWizard: "MonomerCreation/OpenWizard";
3
- readonly CloseWizard: "MonomerCreation/CloseWizard";
4
- readonly SubmitMonomer: "MonomerCreation/SubmitMonomer";
5
- };
6
- export declare const openMonomerCreationWizard: () => {
7
- type: "MonomerCreation/OpenWizard";
8
- };
9
- export declare const closeMonomerCreationWizard: () => {
10
- type: "MonomerCreation/CloseWizard";
11
- };
12
- export declare const submitMonomerCreation: (payload: any) => {
13
- type: "MonomerCreation/SubmitMonomer";
14
- payload: any;
15
- };
@@ -1,2 +0,0 @@
1
- declare const monomerCreationMiddleware: (store: any) => (next: any) => (action: any) => any;
2
- export default monomerCreationMiddleware;
@@ -1,4 +0,0 @@
1
- import { AtomContextMenuProps, ItemEventParams } from '../contextMenu.types';
2
- declare type Params = ItemEventParams<AtomContextMenuProps>;
3
- declare const useAddAttachmentPoint: () => (({ props }: Params) => Promise<void>)[];
4
- export default useAddAttachmentPoint;
@@ -1,4 +0,0 @@
1
- import { AtomContextMenuProps, ItemEventParams } from '../contextMenu.types';
2
- declare type Params = ItemEventParams<AtomContextMenuProps>;
3
- declare const useRemoveAttachmentPoint: () => (({ props }: Params) => Promise<void>)[];
4
- export default useRemoveAttachmentPoint;