ketcher-react 2.23.0-rc.1-dev.1 → 2.23.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.
@@ -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
  };
@@ -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 KETCHER_INIT_EVENT_NAME = "ketcher-init";
16
+ export declare const ketcherInitEventName: (ketcherId?: string) => string;
17
17
  export declare const MODES: {
18
18
  FG: string;
19
19
  };
@@ -17,6 +17,7 @@ import { Ketcher } from 'ketcher-core';
17
17
  import React from 'react';
18
18
  export interface IAppContext {
19
19
  getKetcherInstance: () => Ketcher;
20
+ ketcherId: string;
20
21
  }
21
22
  declare const appContext: React.Context<IAppContext>;
22
23
  export default appContext;
package/dist/index.d.ts CHANGED
@@ -17,3 +17,4 @@ export * from './Editor';
17
17
  export * from './script';
18
18
  export * from './constants';
19
19
  export * from './components';
20
+ export { AppContext } from './contexts';