f5145ba1f8a4c0a793cd760a09cfbbfa2925f99fcd7efd231082013f6c3dd462b0eaa27c8192ded87c6f8df1538f7442c8891a15d11a0aeb3187923d784a79 807 B

1234567891011
  1. import type { ComponentInternalInstance, FunctionalComponent, UnwrapNestedRefs } from 'vue';
  2. import type { UseNamespaceReturn } from 'element-plus/es/hooks';
  3. import type { UseTableReturn } from '../use-table';
  4. import type { TableV2Props } from '../table';
  5. import type { TableGridRowSlotParams } from '../table-grid';
  6. type RowRendererProps = TableGridRowSlotParams & Pick<TableV2Props, 'expandColumnKey' | 'estimatedRowHeight' | 'rowProps' | 'rowClass' | 'rowKey' | 'rowEventHandlers'> & UnwrapNestedRefs<Pick<UseTableReturn, 'depthMap' | 'expandedRowKeys' | 'hasFixedColumns' | 'onRowHovered' | 'onRowExpanded' | 'columnsStyles'>> & {
  7. ns: UseNamespaceReturn;
  8. tableInstance?: ComponentInternalInstance;
  9. };
  10. declare const RowRenderer: FunctionalComponent<RowRendererProps>;
  11. export default RowRenderer;