ados-rcm 1.0.116 → 1.0.117
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 +6 -0
- package/dist/index.cjs.js +14 -14
- package/dist/index.es.js +1594 -1590
- package/package.json +1 -1
|
@@ -108,6 +108,12 @@ interface IADivideFrameProps extends IABaseProps {
|
|
|
108
108
|
* Description : the className of the divider
|
|
109
109
|
*/
|
|
110
110
|
dividerClassName?: string;
|
|
111
|
+
/**
|
|
112
|
+
* dividerPadding? : number
|
|
113
|
+
*
|
|
114
|
+
* Description : the padding of the divider
|
|
115
|
+
*/
|
|
116
|
+
dividerPadding?: number;
|
|
111
117
|
}
|
|
112
118
|
export declare const ADivideFrame: (props: IADivideFrameProps) => import("react/jsx-runtime").JSX.Element;
|
|
113
119
|
export {};
|