@flatbiz/antd 2.5.14 → 2.5.17
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.css +4 -1
- package/cjs/index.js +1 -1
- package/cjs/index.js.map +1 -1
- package/index.d.ts +4 -2
- package/package.json +3 -3
package/index.d.ts
CHANGED
|
@@ -707,9 +707,9 @@ export declare const EditorWrapper: (props: any) => JSX.Element;
|
|
|
707
707
|
export declare type FileImportProps = {
|
|
708
708
|
onImportFinish: (data?: any) => void;
|
|
709
709
|
buttonName?: string | ReactElement;
|
|
710
|
-
children?: (data: {
|
|
710
|
+
children?: React.ReactNode | ((data: {
|
|
711
711
|
loading: boolean;
|
|
712
|
-
}) => React.ReactNode;
|
|
712
|
+
}) => React.ReactNode);
|
|
713
713
|
} & Omit<UploadProps, "fileList" | "showUploadList" | "itemRender" | "listType" | "multiple" | "previewFile" | "progress" | "onChange" | "onDownload" | "onRemove" | "onPreview" | "directory" | "customRequest" | "defaultFileList" | "iconRender">;
|
|
714
714
|
/**
|
|
715
715
|
* 文件导入
|
|
@@ -1095,6 +1095,8 @@ export declare type SimpleLayoutProps = {
|
|
|
1095
1095
|
contentStyle?: CSSProperties;
|
|
1096
1096
|
/** 优先级大于 style padding */
|
|
1097
1097
|
padding?: CSSProperties["padding"];
|
|
1098
|
+
/** 优先级大于 style width */
|
|
1099
|
+
width?: CSSProperties["width"];
|
|
1098
1100
|
};
|
|
1099
1101
|
/**
|
|
1100
1102
|
* 简单布局
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@flatbiz/antd",
|
|
3
|
-
"version": "2.5.
|
|
3
|
+
"version": "2.5.17",
|
|
4
4
|
"description": "flat-biz oss ui components",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"typings": "index.d.ts",
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
"@dimjs/model": "^1.1.7",
|
|
43
43
|
"@dimjs/model-react": "^1.1.7",
|
|
44
44
|
"@dimjs/utils": "^1.2.19",
|
|
45
|
-
"@flatbiz/utils": "^2.5.
|
|
45
|
+
"@flatbiz/utils": "^2.5.17",
|
|
46
46
|
"@wove/react": "^1.2.19",
|
|
47
47
|
"antd": "^4.22.2",
|
|
48
48
|
"moment": "^2.29.4",
|
|
@@ -51,5 +51,5 @@
|
|
|
51
51
|
"react-router": "^6.3.0",
|
|
52
52
|
"react-router-dom": "^6.3.0"
|
|
53
53
|
},
|
|
54
|
-
"gitHead": "
|
|
54
|
+
"gitHead": "77dd1b4aae77cf36421b42f069cb9bb833c694f8"
|
|
55
55
|
}
|