ketcher-react 2.7.0-rc.4 → 2.7.0-rc.6
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.
|
@@ -21,5 +21,5 @@ interface FGState {
|
|
|
21
21
|
}
|
|
22
22
|
declare const functionalGroupsReducer: (state: FGState | undefined, { type, payload }: AnyAction) => any;
|
|
23
23
|
export declare function highlightFG(dispatch: any, group: any): void;
|
|
24
|
-
export declare function initFGTemplates(
|
|
24
|
+
export declare function initFGTemplates(): (dispatch: any) => Promise<void>;
|
|
25
25
|
export default functionalGroupsReducer;
|
|
@@ -19,5 +19,5 @@ interface SaltsAndSolventsState {
|
|
|
19
19
|
mode: string;
|
|
20
20
|
}
|
|
21
21
|
declare const saltsAndSolventsReducer: (state: SaltsAndSolventsState | undefined, { type, payload }: AnyAction) => any;
|
|
22
|
-
export declare function initSaltsAndSolventsTemplates(
|
|
22
|
+
export declare function initSaltsAndSolventsTemplates(): (dispatch: any, getState: any) => Promise<void>;
|
|
23
23
|
export default saltsAndSolventsReducer;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ketcher-react",
|
|
3
|
-
"version": "2.7.0-rc.
|
|
3
|
+
"version": "2.7.0-rc.6",
|
|
4
4
|
"description": "Web-based molecule sketcher",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"homepage": "http://lifescience.opensource.epam.com/ketcher",
|
|
@@ -125,6 +125,7 @@
|
|
|
125
125
|
"rollup-plugin-delete": "^2.0.0",
|
|
126
126
|
"rollup-plugin-peer-deps-external": "^2.2.4",
|
|
127
127
|
"rollup-plugin-postcss": "^4.0.2",
|
|
128
|
+
"rollup-plugin-string": "^3.0.0",
|
|
128
129
|
"rollup-plugin-typescript2": "^0.31.1",
|
|
129
130
|
"rollup-plugin-visualizer": "^5.5.2",
|
|
130
131
|
"stylelint": "13.13.1",
|