@wx-design/components 0.7.4 → 0.7.5
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/CellEditors/DynamicCell.d.ts +0 -3
- package/es/core/Table/components/HeaderFilterRender.d.ts +12 -0
- package/es/core/Table/index.vue.d.ts +1 -1
- package/es/index.mjs +917 -896
- package/es/style.css +1 -1
- package/lib/core/Table/components/CellEditors/DynamicCell.d.ts +0 -3
- package/lib/core/Table/components/HeaderFilterRender.d.ts +12 -0
- package/lib/core/Table/index.vue.d.ts +1 -1
- package/lib/index.js +1 -1
- package/lib/style.css +1 -1
- package/package.json +1 -1
- package/types/index.d.ts +1 -1
- package/types/table/column.d.ts +2 -2
- package/types/table/index.d.ts +1 -1
- package/types/table/table.d.ts +1 -1
package/package.json
CHANGED
package/types/index.d.ts
CHANGED
package/types/table/column.d.ts
CHANGED
|
@@ -168,9 +168,9 @@ export type SabColumnProps<D = VxeTableDataRow> = VxeColumnProps<D> & {
|
|
|
168
168
|
// TODO: 是否自动收集筛选条件
|
|
169
169
|
autoCollectFilterOptions?: boolean;
|
|
170
170
|
};
|
|
171
|
-
// 启用弹出层
|
|
171
|
+
// TODO: 启用弹出层
|
|
172
172
|
enablePopover?: boolean;
|
|
173
|
-
// 弹出层配置
|
|
173
|
+
// TODO: 弹出层配置
|
|
174
174
|
popoverConfig?: SabPopoverParams;
|
|
175
175
|
// 字段名
|
|
176
176
|
field?: keyof D;
|
package/types/table/index.d.ts
CHANGED
|
@@ -5,7 +5,7 @@ import type { TableSetProps } from './table-set'
|
|
|
5
5
|
import type { SabColumnSlots } from './column'
|
|
6
6
|
|
|
7
7
|
export const SabTable: VXEComponent<SabTableProps<any>, VxeTableEventProps<any>, SabColumnSlots<any> & TableSlots>
|
|
8
|
-
export const SabTableSet: VXEComponent<TableSetProps
|
|
8
|
+
export const SabTableSet: VXEComponent<TableSetProps>
|
|
9
9
|
|
|
10
10
|
export * from './column'
|
|
11
11
|
export * from './table'
|
package/types/table/table.d.ts
CHANGED