ketcher-react 2.18.0 → 2.19.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.
@@ -1,2 +1,2 @@
1
1
  import { IAccordionProps } from './types';
2
- export declare const Accordion: ({ summary, details, expanded, className, onSummaryClick, }: IAccordionProps) => import("react/jsx-runtime").JSX.Element;
2
+ export declare const Accordion: ({ summary, details, expanded, className, onSummaryClick, dataTestIdDetails, }: IAccordionProps) => import("react/jsx-runtime").JSX.Element;
@@ -20,6 +20,7 @@ export interface IAccordionProps {
20
20
  expanded: boolean;
21
21
  onSummaryClick: React.MouseEventHandler<HTMLDivElement>;
22
22
  className?: string;
23
+ dataTestIdDetails?: string;
23
24
  }
24
25
  export interface IDetailsContainerProps {
25
26
  expanded: boolean;
@@ -220,4 +220,7 @@ export declare const iconNameToIcon: {
220
220
  readonly expand: ReactComponent;
221
221
  readonly 'minimize-expansion': ReactComponent;
222
222
  readonly 'explicit-hydrogens': ReactComponent;
223
+ readonly 'flex-layout-mode': ReactComponent;
224
+ readonly 'snake-layout-mode': ReactComponent;
225
+ readonly 'sequence-layout-mode': ReactComponent;
223
226
  };