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.
17 lines
773 B
17 lines
773 B
import '../../utils/index.mjs';
|
|
import TableV2 from './src/table-v2.mjs';
|
|
export { default as TableV2 } from './src/table-v2.mjs';
|
|
import AutoResizer from './src/components/auto-resizer.mjs';
|
|
export { Alignment as TableV2Alignment, FixedDir as TableV2FixedDir, SortOrder as TableV2SortOrder } from './src/constants.mjs';
|
|
export { autoResizerProps } from './src/auto-resizer.mjs';
|
|
export { placeholderSign as TableV2Placeholder } from './src/private.mjs';
|
|
export { tableV2Props } from './src/table.mjs';
|
|
export { tableV2RowProps } from './src/row.mjs';
|
|
import { withInstall } from '../../utils/vue/install.mjs';
|
|
|
|
const ElTableV2 = withInstall(TableV2);
|
|
const ElAutoResizer = withInstall(AutoResizer);
|
|
|
|
export { ElAutoResizer, ElTableV2 };
|
|
//# sourceMappingURL=index.mjs.map
|