@wx-design/components 1.1.19 → 1.1.21
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/configs/table.d.ts +3 -1
- package/es/index.mjs +4714 -4705
- package/es/style.css +1 -1
- package/lib/core/Table/configs/table.d.ts +3 -1
- package/lib/index.js +5 -5
- package/lib/style.css +1 -1
- package/package.json +1 -1
- package/types/table/index.d.ts +1 -0
- package/types/table/table.d.ts +2 -0
package/package.json
CHANGED
package/types/table/index.d.ts
CHANGED
|
@@ -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 }>
|
package/types/table/table.d.ts
CHANGED
|
@@ -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> & {
|