ketcher-react 2.9.0-rc.1 → 2.9.0-rc.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.
@@ -56,6 +56,7 @@ declare class Editor implements KetcherEditor {
56
56
  enhancedStereoEdit: PipelineSubscription;
57
57
  confirm: PipelineSubscription;
58
58
  showInfo: PipelineSubscription;
59
+ apiSettings: PipelineSubscription;
59
60
  cursor: Subscription;
60
61
  };
61
62
  lastEvent: any;
@@ -20,4 +20,5 @@ export default function initEditor(dispatch: any, getState: any): {
20
20
  onMouseDown: () => void;
21
21
  onConfirm: () => Promise<any>;
22
22
  onShowInfo: (payload: any) => void;
23
+ onApiSettings: (payload: any) => any;
23
24
  };
@@ -20,5 +20,5 @@ declare const OpenContainer: import("react-redux").ConnectedComponent<import("re
20
20
  onImageUpload: (file: File) => void;
21
21
  }>, import("react-redux").Omit<OpenProps & Pick<import("../../../modal.types").BaseProps, "className"> & BaseCallProps & {
22
22
  onImageUpload: (file: File) => void;
23
- }, "onOk" | "server" | "errorHandler" | "isRecognizeDisabled" | "isAnalyzingFile" | "onImageUpload">>;
23
+ }, "onOk" | "server" | "errorHandler" | "isRecognizeDisabled" | "isAnalyzingFile" | "ignoreChiralFlag" | "onImageUpload">>;
24
24
  export default OpenContainer;
@@ -20,6 +20,7 @@ interface OpenProps {
20
20
  errorHandler: (err: string) => void;
21
21
  isRecognizeDisabled: boolean;
22
22
  isAnalyzingFile: boolean;
23
+ ignoreChiralFlag: boolean;
23
24
  }
24
25
  declare type Props = OpenProps & Pick<BaseProps, 'className'> & BaseCallProps & {
25
26
  onImageUpload: (file: File) => void;
@@ -1,5 +1,5 @@
1
1
  export default Save;
2
- declare const Save: import("react-redux").ConnectedComponent<typeof SaveDialog, import("react-redux").Omit<any, "options" | "server" | "formState" | "struct" | "checkState" | "onCheck" | "moleculeErrors" | "onTmplSave" | "onResetForm">>;
2
+ declare const Save: import("react-redux").ConnectedComponent<typeof SaveDialog, import("react-redux").Omit<any, "options" | "server" | "formState" | "struct" | "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);
@@ -18,6 +18,7 @@ declare const fieldGroups: {
18
18
  andFlagLabel: string;
19
19
  orFlagLabel: string;
20
20
  mixedFlagLabel: string;
21
+ ignoreChiralFlag: string;
21
22
  carbonExplicitly: string;
22
23
  showCharge: string;
23
24
  showValence: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ketcher-react",
3
- "version": "2.9.0-rc.1",
3
+ "version": "2.9.0-rc.3",
4
4
  "description": "Web-based molecule sketcher",
5
5
  "license": "Apache-2.0",
6
6
  "homepage": "http://lifescience.opensource.epam.com/ketcher",