@flatbiz/antd 4.1.1 → 4.1.2
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/cjs/index.js +1 -1
- package/cjs/index.js.map +1 -1
- package/index.d.ts +2 -2
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -606,8 +606,8 @@ export declare const FormCol: {
|
|
|
606
606
|
};
|
|
607
607
|
export type FormOperateColProps = {
|
|
608
608
|
className?: string;
|
|
609
|
-
leftList?: ReactElement
|
|
610
|
-
rightList?: ReactElement
|
|
609
|
+
leftList?: Array<ReactElement | null>;
|
|
610
|
+
rightList?: Array<ReactElement | null>;
|
|
611
611
|
justify?: RowProps["justify"];
|
|
612
612
|
/** 强制单独一行 */
|
|
613
613
|
forceAloneRow?: boolean;
|