@regenbio/regenbio-components-react 1.1.18 → 1.1.20

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.
@@ -24,6 +24,10 @@ export type RbActionType = {
24
24
  * 数据表格属性
25
25
  */
26
26
  export type RbDataTableProps<DataSource, U, ValueType = 'text'> = {
27
+ /**
28
+ * 响应式状态
29
+ */
30
+ responsive?: boolean;
27
31
  /**
28
32
  * 行主键,默认:guid
29
33
  */
@@ -35,7 +39,7 @@ export type RbDataTableProps<DataSource, U, ValueType = 'text'> = {
35
39
  /**
36
40
  * 查询参数配置
37
41
  */
38
- params?: U;
42
+ params?: any;
39
43
  /**
40
44
  * 远程数据请求
41
45
  *
@@ -87,7 +91,7 @@ export type RbDataTableProps<DataSource, U, ValueType = 'text'> = {
87
91
  /**
88
92
  * 分页
89
93
  */
90
- pagination?: boolean;
94
+ pagination?: false;
91
95
  /**
92
96
  * 表头
93
97
  */