ados-rcm 1.1.585 → 1.1.587
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.
- package/dist/AModule/AComponents/AFrame/AFrame.d.ts +0 -19
- package/dist/index.cjs.js +97 -97
- package/dist/index.es.js +7559 -7633
- package/package.json +1 -1
@@ -62,13 +62,6 @@ export interface IADivideFrameShowRemoteRendererProps {
|
|
62
62
|
isExpanded: boolean;
|
63
63
|
resources: typeof Resources.ADivideFrame;
|
64
64
|
}
|
65
|
-
export interface IADivideFrameToggleRef {
|
66
|
-
canCollapse: boolean;
|
67
|
-
collapse: () => void;
|
68
|
-
expand: () => void;
|
69
|
-
isExpanded: boolean;
|
70
|
-
toggle: () => void;
|
71
|
-
}
|
72
65
|
export interface IADivideFrameProps extends DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement> {
|
73
66
|
/**
|
74
67
|
* ShowRemoteRenderer? : (props: IADivideFrameShowRemoteRendererProps) => React.ReactNode
|
@@ -148,12 +141,6 @@ export interface IADivideFrameProps extends DetailedHTMLProps<React.HTMLAttribut
|
|
148
141
|
* Description : decides whether to enable drag or not
|
149
142
|
*/
|
150
143
|
noDividerDraggable?: boolean;
|
151
|
-
/**
|
152
|
-
* onToggleChange? : (isExpanded: boolean, canCollapse: boolean) => void
|
153
|
-
*
|
154
|
-
* Description : callback function called when toggle state changes
|
155
|
-
*/
|
156
|
-
onToggleChange?: (isExpanded: boolean, canCollapse: boolean) => void;
|
157
144
|
/**
|
158
145
|
* pk? : string | number
|
159
146
|
*
|
@@ -180,12 +167,6 @@ export interface IADivideFrameProps extends DetailedHTMLProps<React.HTMLAttribut
|
|
180
167
|
* Description : decides whether to show remote button for expanding/collapsing divider functionality
|
181
168
|
*/
|
182
169
|
showRemote?: boolean;
|
183
|
-
/**
|
184
|
-
* toggleRef? : React.MutableRefObject<IADivideFrameToggleRef | null>
|
185
|
-
*
|
186
|
-
* Description : ref object to access toggle functions from external components
|
187
|
-
*/
|
188
|
-
toggleRef?: React.MutableRefObject<IADivideFrameToggleRef | null>;
|
189
170
|
}
|
190
171
|
export declare const ADivideFrame: React.MemoExoticComponent<(props: IADivideFrameProps) => import("react/jsx-runtime").JSX.Element>;
|
191
172
|
export {};
|