ados-rcm 1.1.586 → 1.1.588
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.
@@ -110,6 +110,12 @@ export interface IADialogProps {
|
|
110
110
|
* Description : if truthy, cancel button is loading
|
111
111
|
*/
|
112
112
|
isCancelLoading?: any;
|
113
|
+
/**
|
114
|
+
* isChanged? : boolean
|
115
|
+
*
|
116
|
+
* Description : if true, cancel will be disabled
|
117
|
+
*/
|
118
|
+
isChanged?: boolean;
|
113
119
|
/**
|
114
120
|
* isLoading? : any
|
115
121
|
*
|
@@ -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 {};
|