ados-rcm 1.1.579 → 1.1.580
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 +19 -0
- package/dist/index.cjs.js +96 -96
- package/dist/index.es.js +6743 -6688
- package/package.json +1 -1
@@ -62,6 +62,13 @@ 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
|
+
}
|
65
72
|
export interface IADivideFrameProps extends DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement> {
|
66
73
|
/**
|
67
74
|
* ShowRemoteRenderer? : (props: IADivideFrameShowRemoteRendererProps) => React.ReactNode
|
@@ -141,6 +148,12 @@ export interface IADivideFrameProps extends DetailedHTMLProps<React.HTMLAttribut
|
|
141
148
|
* Description : decides whether to enable drag or not
|
142
149
|
*/
|
143
150
|
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;
|
144
157
|
/**
|
145
158
|
* pk? : string | number
|
146
159
|
*
|
@@ -167,6 +180,12 @@ export interface IADivideFrameProps extends DetailedHTMLProps<React.HTMLAttribut
|
|
167
180
|
* Description : decides whether to show remote button for expanding/collapsing divider functionality
|
168
181
|
*/
|
169
182
|
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>;
|
170
189
|
}
|
171
190
|
export declare const ADivideFrame: React.MemoExoticComponent<(props: IADivideFrameProps) => import("react/jsx-runtime").JSX.Element>;
|
172
191
|
export {};
|