ados-rcm 1.1.440 → 1.1.442
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/index.cjs.js +100 -100
- package/dist/index.es.js +6027 -5927
- package/dist/src/AModule/AComponents/AFrame/AFrame.d.ts +6 -0
- package/package.json +1 -1
@@ -131,6 +131,12 @@ export interface IADivideFrameProps extends DetailedHTMLProps<React.HTMLAttribut
|
|
131
131
|
* Description : the className of the divider inner
|
132
132
|
*/
|
133
133
|
dividerInnerClassName?: string;
|
134
|
+
/**
|
135
|
+
* noDraggable? : boolean
|
136
|
+
*
|
137
|
+
* Description : decides whether to enable drag or not
|
138
|
+
*/
|
139
|
+
noDraggable?: boolean;
|
134
140
|
}
|
135
141
|
export declare const ADivideFrame: React.MemoExoticComponent<(props: IADivideFrameProps) => import("react/jsx-runtime").JSX.Element>;
|
136
142
|
export {};
|