mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-10 17:32:36 +00:00
Fixed #5506 - Add dt
props to all components and directives
This commit is contained in:
parent
1bf6606457
commit
f496c2669f
102 changed files with 507 additions and 101 deletions
6
components/lib/treetable/TreeTable.d.ts
vendored
6
components/lib/treetable/TreeTable.d.ts
vendored
|
@ -13,7 +13,7 @@ import { ColumnPassThroughOptionType } from '../column';
|
|||
import { PaginatorPassThroughOptionType } from '../paginator';
|
||||
import { PassThroughOptions } from '../passthrough';
|
||||
import { TreeNode } from '../treenode';
|
||||
import { ClassComponent, GlobalComponentConstructor, PassThrough, HintedString } from '../ts-helpers';
|
||||
import { ClassComponent, DesignToken, GlobalComponentConstructor, HintedString, PassThrough } from '../ts-helpers';
|
||||
|
||||
export declare type TreeTablePassThroughOptionType = TreeTablePassThroughAttributes | ((options: TreeTablePassThroughMethodOptions) => TreeTablePassThroughAttributes | string) | string | null | undefined;
|
||||
|
||||
|
@ -604,6 +604,10 @@ export interface TreeTableProps {
|
|||
* Props to pass to the table element.
|
||||
*/
|
||||
tableProps?: any | undefined;
|
||||
/**
|
||||
* It generates scoped CSS variables using design tokens for the component.
|
||||
*/
|
||||
dt?: DesignToken<any>;
|
||||
/**
|
||||
* Used to pass attributes to DOM elements inside the component.
|
||||
* @type {TreeTablePassThroughOptions}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue