ketcher-react 2.23.0-rc.1-dev.1 → 2.23.0-rc.2
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/Icon/utils/iconNameToIcon.d.ts +2 -0
- package/dist/constants.d.ts +1 -1
- package/dist/contexts/appContext.d.ts +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +929 -803
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +930 -805
- package/dist/index.modern.js.map +1 -1
- package/dist/script/builders/ketcher/KetcherBuilder.d.ts +4 -1
- package/dist/script/index.d.ts +4 -1
- package/dist/script/ui/App/initApp.d.ts +6 -2
- package/package.json +1 -1
|
@@ -215,6 +215,7 @@ export declare const iconNameToIcon: {
|
|
|
215
215
|
readonly base: ReactComponent;
|
|
216
216
|
readonly phosphate: ReactComponent;
|
|
217
217
|
readonly preset: ReactComponent;
|
|
218
|
+
readonly nucleotide: ReactComponent;
|
|
218
219
|
readonly 'edit-filled': ReactComponent;
|
|
219
220
|
readonly 'vertical-dots': ReactComponent;
|
|
220
221
|
readonly expand: ReactComponent;
|
|
@@ -223,4 +224,5 @@ export declare const iconNameToIcon: {
|
|
|
223
224
|
readonly 'flex-layout-mode': ReactComponent;
|
|
224
225
|
readonly 'snake-layout-mode': ReactComponent;
|
|
225
226
|
readonly 'sequence-layout-mode': ReactComponent;
|
|
227
|
+
readonly questionMark: ReactComponent;
|
|
226
228
|
};
|
package/dist/constants.d.ts
CHANGED
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
* See the License for the specific language governing permissions and
|
|
14
14
|
* limitations under the License.
|
|
15
15
|
***************************************************************************/
|
|
16
|
-
export declare const
|
|
16
|
+
export declare const ketcherInitEventName: (ketcherId?: string) => string;
|
|
17
17
|
export declare const MODES: {
|
|
18
18
|
FG: string;
|
|
19
19
|
};
|
package/dist/index.d.ts
CHANGED