ketcher-react 2.18.0-rc.3 → 2.18.0-rc.4
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/components/Accordion/styles.d.ts +3 -3
- package/dist/components/Buttons/Button/styles.d.ts +1 -1
- package/dist/components/Buttons/IconButton/styles.d.ts +1 -1
- package/dist/components/Input/styles.d.ts +1 -1
- package/dist/components/StructRender/styles.d.ts +1 -1
- package/dist/index.js +200 -107
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +210 -117
- package/dist/index.modern.js.map +1 -1
- package/dist/script/ui/state/shared.d.ts +1 -0
- package/dist/script/ui/views/modal/components/document/Save/Save.d.ts +1 -1
- package/package.json +1 -1
|
@@ -21,6 +21,7 @@ export declare function removeStructAction(): {
|
|
|
21
21
|
type: string;
|
|
22
22
|
action?: Record<string, unknown>;
|
|
23
23
|
};
|
|
24
|
+
export declare const getSelectionFromStruct: (struct: any) => {};
|
|
24
25
|
export declare function load(struct: Struct, options?: any): (dispatch: any, getState: any) => Promise<void>;
|
|
25
26
|
export declare function openInfoModal(command: 'Paste' | 'Copy' | 'Cut'): {
|
|
26
27
|
type: 'MODAL_OPEN';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export default Save;
|
|
2
|
-
declare const Save: import("react-redux").ConnectedComponent<typeof SaveDialog, import("react-redux").Omit<any, "server" | "options" | "bondThickness" | "formState" | "struct" | "checkState" | "onCheck" | "moleculeErrors" | "ignoreChiralFlag" | "onTmplSave" | "onResetForm">>;
|
|
2
|
+
declare const Save: import("react-redux").ConnectedComponent<typeof SaveDialog, import("react-redux").Omit<any, "server" | "options" | "bondThickness" | "formState" | "struct" | "editor" | "checkState" | "onCheck" | "moleculeErrors" | "ignoreChiralFlag" | "onTmplSave" | "onResetForm">>;
|
|
3
3
|
declare class SaveDialog extends Component<any, any, any> {
|
|
4
4
|
static contextType: import("react").Context<import("../../../../../../../contexts").IErrorsContext>;
|
|
5
5
|
constructor(props: any);
|