mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-09 00:42:36 +00:00
Refactor #4149 - For DataTable & Column & ColumnGroup
This commit is contained in:
parent
dcd76d09cc
commit
97d112a2e0
13 changed files with 195 additions and 37 deletions
33
components/lib/column/Column.d.ts
vendored
33
components/lib/column/Column.d.ts
vendored
|
@ -141,6 +141,10 @@ export interface ColumnPassThroughOptions {
|
|||
* Uses to pass attributes to the filter menu button's DOM element.
|
||||
*/
|
||||
filterMenuButton?: ColumnPassThroughOptionType;
|
||||
/**
|
||||
* Uses to pass attributes to the filter menu icon's DOM element.
|
||||
*/
|
||||
filterMenuIcon?: ColumnPassThroughOptionType;
|
||||
/**
|
||||
* Uses to pass attributes to the header filter clear button's DOM element.
|
||||
*/
|
||||
|
@ -609,6 +613,35 @@ export interface ColumnContext {
|
|||
* @defaultValue false
|
||||
*/
|
||||
resizable: boolean;
|
||||
/**
|
||||
* Current size state of the table.
|
||||
*/
|
||||
size: string;
|
||||
/**
|
||||
* Current gridlines state of the table as a boolean.
|
||||
* @defaultValue false
|
||||
*/
|
||||
showGridlines: boolean;
|
||||
/**
|
||||
* Current highlighted state of the filter row item as a boolean.
|
||||
* @defaultValue false
|
||||
*/
|
||||
highlighted: boolean;
|
||||
/**
|
||||
* Current hidden state of the filter clear button of a column as a boolean.
|
||||
* @defaultValue false
|
||||
*/
|
||||
hidden: boolean;
|
||||
/**
|
||||
* Current visible state of the filter menu of a column as a boolean.
|
||||
* @defaultValue false
|
||||
*/
|
||||
overlayVisible: boolean;
|
||||
/**
|
||||
* Current active state of the filter menu of a column as a boolean.
|
||||
* @defaultValue false
|
||||
*/
|
||||
active: boolean;
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue