@regenbio/regenbio-components-react 1.3.76 → 1.4.0

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.
@@ -8,6 +8,7 @@ import type { TableProps as RcTableProps } from "rc-table/lib/Table";
8
8
  import type { SearchConfig } from "@ant-design/pro-table/es/components/Form/FormRender";
9
9
  import type { ExpandableConfig, TableSticky } from "rc-table/lib/interface";
10
10
  import { ProTableProps } from "@ant-design/pro-table";
11
+ import type { ListToolBarProps } from "@ant-design/pro-table/es/components/ListToolBar";
11
12
  /**
12
13
  * 扩展操作类型
13
14
  */
@@ -93,6 +94,10 @@ export type RbDataTableProps<DataSource, U, ValueType = 'text'> = {
93
94
  * 分页
94
95
  */
95
96
  pagination?: false;
97
+ /**
98
+ * 工具栏渲染
99
+ */
100
+ toolbar?: ListToolBarProps;
96
101
  /**
97
102
  * 表头
98
103
  */
@@ -10,11 +10,19 @@ export type RbSingleImageUploaderExtraProps = {
10
10
  * @param value 数据
11
11
  */
12
12
  onChange?: (value: any) => void;
13
+ /**
14
+ * 值
15
+ */
16
+ value: any;
13
17
  };
14
18
  /**
15
19
  * 单图片上传器属性
16
20
  */
17
21
  export type RbSingleImageUploaderProps = {
22
+ /**
23
+ * 纯净模式
24
+ */
25
+ purity?: boolean;
18
26
  /**
19
27
  * 字段名称
20
28
  */