@wx-design/components 1.1.20 → 1.1.22

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.1.20",
3
+ "version": "1.1.22",
4
4
  "description": "",
5
5
  "type": "module",
6
6
  "main": "./lib/index.js",
@@ -6,6 +6,7 @@ import type { SabColumnSlots } from './column'
6
6
 
7
7
  export const SabTable: VXEComponent<SabTableProps<any>, SabTableEventProps<any>, SabColumnSlots<any> & TableSlots> & {
8
8
  use: VxeGlobalUse
9
+ setTableConfig: (config: Partial<SabTableProps>) => void
9
10
  }
10
11
  export const SabTableSet: VXEComponent<TableSetProps>
11
12
  export const SabDesignConfigProvider: VXEComponent<{ lang: string }>
@@ -27,6 +27,8 @@ export type SabHeaderFilterProps<D = VxeTableDataRow> = {
27
27
  autoCollect?: boolean;
28
28
  // 对所有的列都启用 autoCollect
29
29
  enableAllAutoCollect?: boolean
30
+ // 使用原生 input 组件
31
+ useNativeInput?: boolean
30
32
  };
31
33
 
32
34
  export type SabTableProps<D = VxeTableDataRow> = VxeTableProps<D> & {