mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-09 00:42: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/column/Column.d.ts
vendored
6
components/lib/column/Column.d.ts
vendored
|
@ -17,7 +17,7 @@ import { DataTablePassThroughOptions } from '../datatable';
|
|||
import { DropdownPassThroughOptionType } from '../dropdown';
|
||||
import { PassThroughOptions } from '../passthrough';
|
||||
import { RadioButtonPassThroughOptionType } from '../radiobutton';
|
||||
import { ClassComponent, GlobalComponentConstructor, PassThrough } from '../ts-helpers';
|
||||
import { ClassComponent, DesignToken, GlobalComponentConstructor, PassThrough } from '../ts-helpers';
|
||||
import { VirtualScrollerLoaderOptions } from '../virtualscroller';
|
||||
|
||||
export declare type ColumnPassThroughOptionType = ColumnPassThroughAttributes | ((options: ColumnPassThroughMethodOptions) => ColumnPassThroughAttributes | string) | string | null | undefined;
|
||||
|
@ -564,6 +564,10 @@ export interface ColumnProps {
|
|||
* @defaultValue false
|
||||
*/
|
||||
hidden?: boolean | 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 {ColumnPassThroughOptions}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue