@wx-design/components 1.1.0 → 1.1.1
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/HeaderRender/index.d.ts +1 -1
- package/es/core/Table/renderer/FilterRender/index.vue.d.ts +2 -0
- package/es/index.mjs +8149 -8103
- package/es/style.css +1 -1
- package/lib/core/Table/components/HeaderRender/index.d.ts +1 -1
- package/lib/core/Table/renderer/FilterRender/index.vue.d.ts +2 -0
- package/lib/index.js +7 -7
- package/lib/style.css +1 -1
- package/package.json +1 -1
- package/types/table/table.d.ts +1 -1
package/package.json
CHANGED
package/types/table/table.d.ts
CHANGED
|
@@ -23,7 +23,7 @@ export type SabHeaderFilterProps<D = VxeTableDataRow> = {
|
|
|
23
23
|
trigger?: "change";
|
|
24
24
|
// 筛选方法调用
|
|
25
25
|
filterMethod?: VxeColumnPropTypes.FilterMethod<D>;
|
|
26
|
-
//
|
|
26
|
+
// 是否启用自动收集, 与 column.filters 冲突,不要一起用
|
|
27
27
|
autoCollect?: boolean;
|
|
28
28
|
};
|
|
29
29
|
|