@wx-design/components 0.10.1 → 0.10.3
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/es/core/Table/components/CellRender.d.ts +0 -3
- package/es/core/Table/components/HeaderRender/index.d.ts +3 -3
- package/es/index.mjs +806 -806
- package/es/style.css +1 -1
- package/lib/core/Table/components/CellRender.d.ts +0 -3
- package/lib/core/Table/components/HeaderRender/index.d.ts +3 -3
- package/lib/index.js +2 -2
- package/lib/style.css +1 -1
- package/package.json +1 -1
- package/types/table/column.d.ts +0 -5
- package/types/table/table.d.ts +2 -2
package/package.json
CHANGED
package/types/table/column.d.ts
CHANGED
|
@@ -235,11 +235,6 @@ export type SabColumnProps<D = VxeTableDataRow> = VxeColumnProps<D> & {
|
|
|
235
235
|
slots?: Partial<SabColumnSlots<D>>;
|
|
236
236
|
// 是否可见列,默认true
|
|
237
237
|
visible?: boolean;
|
|
238
|
-
// 筛选控制
|
|
239
|
-
sabFilter?: {
|
|
240
|
-
// TODO: 是否自动收集筛选条件
|
|
241
|
-
autoCollectFilterOptions?: boolean;
|
|
242
|
-
};
|
|
243
238
|
// 自定义头部的筛选
|
|
244
239
|
headerFilterConfig?: SabColumnFilterParams;
|
|
245
240
|
// vxe-table 实例
|
package/types/table/table.d.ts
CHANGED
|
@@ -16,14 +16,14 @@ import {
|
|
|
16
16
|
|
|
17
17
|
// 头部筛选条,默认不展示
|
|
18
18
|
export type SabHeaderFilterProps<D = VxeTableDataRow> = {
|
|
19
|
-
// 是否启用筛选条,默认
|
|
19
|
+
// 是否启用筛选条,默认 false
|
|
20
20
|
enable?: boolean;
|
|
21
21
|
// 触发方式
|
|
22
22
|
// change - 当筛选项发生变动后立即触发
|
|
23
23
|
trigger?: "change";
|
|
24
24
|
// 筛选方法调用
|
|
25
25
|
filterMethod?: VxeColumnPropTypes.FilterMethod<D>;
|
|
26
|
-
// 是否启用收集, 走表格自带的筛选 filters
|
|
26
|
+
// 是否启用收集, 与项目内置筛选冲突, 走表格自带的筛选 filters
|
|
27
27
|
autoCollect?: boolean;
|
|
28
28
|
};
|
|
29
29
|
|