ados-rcm 1.0.574 → 1.0.576

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 Omit<DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, 'onResize'> {
59
+ interface IADivideFrameProps extends DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement> {
60
60
  /**
61
61
  * pk? : string | number
62
62
  *
@@ -119,12 +119,6 @@ interface IADivideFrameProps extends Omit<DetailedHTMLProps<React.HTMLAttributes
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;
128
122
  }
129
123
  export declare const ADivideFrame: (props: IADivideFrameProps) => import("react/jsx-runtime").JSX.Element;
130
124
  export {};