ados-rcm 1.0.572 → 1.0.574

Sign up to get free protection for your applications and to get access to all the features.
@@ -56,7 +56,7 @@ interface IASplitterProps<T extends string | number> {
56
56
  map: Record<T, JSX.Element>;
57
57
  }
58
58
  export declare const ASwitchFrame: <T extends string | number>(props: IASplitterProps<T>) => import("react/jsx-runtime").JSX.Element;
59
- interface IADivideFrameProps extends DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement> {
59
+ interface IADivideFrameProps extends Omit<DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, 'onResize'> {
60
60
  /**
61
61
  * pk? : string | number
62
62
  *
@@ -119,6 +119,12 @@ interface IADivideFrameProps extends DetailedHTMLProps<React.HTMLAttributes<HTML
119
119
  * Description : the padding of the divider
120
120
  */
121
121
  dividerPadding?: number;
122
+ /**
123
+ * onResize? : (lefts: number[] | undefined) => void
124
+ *
125
+ * Description : the callback function when the frame is resized
126
+ */
127
+ onResize?: (lefts: number[] | undefined) => void;
122
128
  }
123
129
  export declare const ADivideFrame: (props: IADivideFrameProps) => import("react/jsx-runtime").JSX.Element;
124
130
  export {};