@wx-design/components 1.2.2 → 1.3.0-alpha.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wx-design/components",
3
- "version": "1.2.2",
3
+ "version": "1.3.0-alpha.1",
4
4
  "description": "",
5
5
  "type": "module",
6
6
  "main": "./lib/index.js",
@@ -29,6 +29,12 @@ export type SabHeaderFilterProps<D = VxeTableDataRow> = {
29
29
  enableAllAutoCollect?: boolean
30
30
  // 使用原生 input 组件
31
31
  useNativeInput?: boolean
32
+ // 是否显示筛选标签区域,默认 true
33
+ showFilterTags?: boolean;
34
+ // 筛选标签类型
35
+ tagType?: 'success' | 'info' | 'warning' | 'danger';
36
+ // 筛选标签效果
37
+ tagEffect?: 'light' | 'dark' | 'plain';
32
38
  };
33
39
 
34
40
  export type SabTableProps<D = VxeTableDataRow> = VxeTableProps<D> & {