ados-rcm 1.1.50 → 1.1.52
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/AModule/AComponents/AFrame/AFrame.d.ts +12 -0
- package/dist/index.cjs.js +19 -19
- package/dist/index.es.js +1998 -1994
- package/package.json +1 -1
@@ -119,6 +119,18 @@ interface IADivideFrameProps extends DetailedHTMLProps<React.HTMLAttributes<HTML
|
|
119
119
|
* Description : the padding of the divider
|
120
120
|
*/
|
121
121
|
dividerPadding?: number;
|
122
|
+
/**
|
123
|
+
* deviderInnerStyle? : React.CSSProperties
|
124
|
+
*
|
125
|
+
* Description : the style of the divider inner
|
126
|
+
*/
|
127
|
+
dividerInnerStyle?: React.CSSProperties;
|
128
|
+
/**
|
129
|
+
* dividerInnerClassName? : string
|
130
|
+
*
|
131
|
+
* Description : the className of the divider inner
|
132
|
+
*/
|
133
|
+
dividerInnerClassName?: string;
|
122
134
|
}
|
123
135
|
export declare const ADivideFrame: (props: IADivideFrameProps) => import("react/jsx-runtime").JSX.Element;
|
124
136
|
export {};
|