@aimerthyr/virtual-table 1.3.0 → 1.3.2
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/CHANGELOG.md +13 -0
- package/dist/index.cjs +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/dist/virtual-table.css +1 -1
- package/package.json +3 -2
package/dist/index.d.ts
CHANGED
|
@@ -440,7 +440,7 @@ export declare interface VTableSlots<TData = any> {
|
|
|
440
440
|
customFooter?: () => VNode_2[];
|
|
441
441
|
/** 自定义展开图标 */
|
|
442
442
|
customExpandIcon?: (props: VTableExpandIconProps) => VNode_2[];
|
|
443
|
-
/**
|
|
443
|
+
/** 自定义排序图标 */
|
|
444
444
|
customSorterIcon?: (props: VTableSorterIconProps) => VNode_2[];
|
|
445
445
|
[key: string]: ((...args: any[]) => VNode_2[]) | undefined;
|
|
446
446
|
}
|