mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-09 00:42:36 +00:00
Refactor #3983 - For DataTable.d.ts
This commit is contained in:
parent
5db0f05c87
commit
1771b7b750
1 changed files with 15 additions and 0 deletions
15
components/lib/datatable/DataTable.d.ts
vendored
15
components/lib/datatable/DataTable.d.ts
vendored
|
@ -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;
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue