You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
867 B
15 lines
867 B
3 months ago
|
import TableV2 from './src/table-v2';
|
||
|
import AutoResizer from './src/components/auto-resizer';
|
||
|
import type { SFCWithInstall } from 'element-plus/es/utils';
|
||
|
export { Alignment as TableV2Alignment, FixedDir as TableV2FixedDir, SortOrder as TableV2SortOrder, } from './src/constants';
|
||
|
export { default as TableV2 } from './src/table-v2';
|
||
|
export * from './src/auto-resizer';
|
||
|
export { placeholderSign as TableV2Placeholder } from './src/private';
|
||
|
export declare const ElTableV2: SFCWithInstall<typeof TableV2>;
|
||
|
export declare const ElAutoResizer: SFCWithInstall<typeof AutoResizer>;
|
||
|
export type { Column, Columns, SortBy, SortState, TableV2CustomizedHeaderSlotParam, } from './src/types';
|
||
|
export type { TableV2Instance } from './src/table-v2';
|
||
|
export * from './src/table';
|
||
|
export * from './src/row';
|
||
|
export type { HeaderCellSlotProps } from './src/renderers/header-cell';
|