ketcher-react 2.17.0-rc.2 → 2.18.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.
@@ -217,4 +217,6 @@ export declare const iconNameToIcon: {
217
217
  readonly preset: ReactComponent;
218
218
  readonly 'edit-filled': ReactComponent;
219
219
  readonly 'vertical-dots': ReactComponent;
220
+ readonly expand: ReactComponent;
221
+ readonly 'minimize-expansion': ReactComponent;
220
222
  };
@@ -14,5 +14,5 @@
14
14
  * limitations under the License.
15
15
  ***************************************************************************/
16
16
  import { IStructRenderProps } from './types';
17
- declare const StructRender: ({ struct, options, className }: IStructRenderProps) => import("react/jsx-runtime").JSX.Element;
17
+ declare const StructRender: ({ struct, options, className, update, }: IStructRenderProps) => import("react/jsx-runtime").JSX.Element;
18
18
  export default StructRender;
@@ -22,4 +22,5 @@ export interface IStructRenderProps {
22
22
  needCache?: boolean;
23
23
  };
24
24
  className?: string;
25
+ update?: boolean;
25
26
  }