ados-rcm 1.1.665 → 1.1.667

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.
@@ -57,18 +57,7 @@ interface IASplitterProps<T extends string | number> {
57
57
  value: T;
58
58
  }
59
59
  export declare const ASwitchFrame: <T extends string | number>(props: IASplitterProps<T>) => import("react/jsx-runtime").JSX.Element | Record<"fallback" | T, React.ReactNode>["fallback"] | undefined;
60
- export interface IADivideFrameShowRemoteRendererProps {
61
- handleToggleExpand: () => void;
62
- isExpanded: boolean;
63
- resources: typeof Resources.ADivideFrame;
64
- }
65
60
  export interface IADivideFrameProps extends DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement> {
66
- /**
67
- * ShowRemoteRenderer? : (props: IADivideFrameShowRemoteRendererProps) => React.ReactNode
68
- *
69
- * Description : decides whether to show remote button for expanding/collapsing divider functionality
70
- */
71
- ShowRemoteRenderer?: (props: IADivideFrameShowRemoteRendererProps) => React.ReactNode;
72
61
  /**
73
62
  * childClassName? : string
74
63
  *
@@ -167,12 +156,6 @@ export interface IADivideFrameProps extends DetailedHTMLProps<React.HTMLAttribut
167
156
  * Description : decides whether to show expand button for expanding/collapsing divider functionality when divider reaches edges
168
157
  */
169
158
  showExpandButton?: boolean;
170
- /**
171
- * showRemote? : boolean
172
- *
173
- * Description : decides whether to show remote button for expanding/collapsing divider functionality
174
- */
175
- showRemote?: boolean;
176
159
  }
177
160
  export declare const ADivideFrame: React.MemoExoticComponent<(props: IADivideFrameProps) => import("react/jsx-runtime").JSX.Element>;
178
161
  export {};