From 1771b7b750dd3cdc8b0237130cac2de13a657cf4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tu=C4=9F=C3=A7e=20K=C3=BC=C3=A7=C3=BCko=C4=9Flu?= Date: Fri, 2 Jun 2023 14:17:23 +0300 Subject: [PATCH] Refactor #3983 - For DataTable.d.ts --- components/lib/datatable/DataTable.d.ts | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/components/lib/datatable/DataTable.d.ts b/components/lib/datatable/DataTable.d.ts index 278f921d7..34b22a3f2 100755 --- a/components/lib/datatable/DataTable.d.ts +++ b/components/lib/datatable/DataTable.d.ts @@ -8,7 +8,10 @@ * */ import { InputHTMLAttributes, TableHTMLAttributes, VNode } from 'vue'; +import { ColumnPassThroughOptionType } from '../column'; +import { ColumnGroupPassThroughOptionType } from '../columngroup'; import { PaginatorPassThroughOptionType } from '../paginator'; +import { RowPassThroughOptionType } from '../row'; import { ClassComponent, GlobalComponentConstructor, Nullable } from '../ts-helpers'; import { VirtualScrollerPassThroughOptionType, VirtualScrollerProps } from '../virtualscroller'; @@ -635,6 +638,18 @@ export interface DataTablePassThroughOptions { * Uses to pass attributes to the reorder indicator down's DOM element. */ reorderIndicatorDown?: DataTablePassThroughOptionType; + /** + * Uses to pass attributes to the ColumnGroup helper components. + */ + columnGroup?: ColumnGroupPassThroughOptionType; + /** + * Uses to pass attributes to the Row helper components. + */ + row?: RowPassThroughOptionType; + /** + * Uses to pass attributes to the Column helper components. + */ + column?: ColumnPassThroughOptionType; } /**