@flatbiz/antd 3.2.14 → 3.2.15
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 +3 -2
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -40,7 +40,8 @@ export interface ButtonOperateProps {
|
|
|
40
40
|
*/
|
|
41
41
|
operateList: Array<ButtonOperateItem | null | ReactElement>;
|
|
42
42
|
wrap?: boolean;
|
|
43
|
-
|
|
43
|
+
/** 间距,默认:10 */
|
|
44
|
+
gap?: number;
|
|
44
45
|
foldIcon?: ReactElement;
|
|
45
46
|
className?: string;
|
|
46
47
|
split?: boolean;
|
|
@@ -580,7 +581,7 @@ export type EasyTableProps = {
|
|
|
580
581
|
*/
|
|
581
582
|
initialValues?: TPlainObject;
|
|
582
583
|
/**
|
|
583
|
-
* 分页初始化参数,默认值:
|
|
584
|
+
* 分页初始化参数,默认值: pageSize = 10
|
|
584
585
|
* @deprecated 使用 pageSize 赋值
|
|
585
586
|
*/
|
|
586
587
|
initialPaginationParams?: {
|