ados-rcm 1.0.107 → 1.0.109

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.
@@ -85,11 +85,29 @@ interface IADivideFrameProps extends IABaseProps {
85
85
  */
86
86
  children: React.ReactNode | React.ReactNode[];
87
87
  /**
88
- * childProps? : IABaseProps
88
+ * childStyle? : React.CSSProperties
89
89
  *
90
- * Description : the props for each children
90
+ * Description : the style of the child frame
91
91
  */
92
- childProps?: IABaseProps;
92
+ childStyle?: React.CSSProperties;
93
+ /**
94
+ * childClassName? : string
95
+ *
96
+ * Description : the className of the child frame
97
+ */
98
+ childClassName?: string;
99
+ /**
100
+ * dividerStyle? : React.CSSProperties
101
+ *
102
+ * Description : the style of the divider
103
+ */
104
+ dividerStyle?: React.CSSProperties;
105
+ /**
106
+ * dividerClassName? : string
107
+ *
108
+ * Description : the className of the divider
109
+ */
110
+ dividerClassName?: string;
93
111
  }
94
112
  export declare const ADivideFrame: (props: IADivideFrameProps) => import("react/jsx-runtime").JSX.Element;
95
113
  export {};