Refactor #3965 - For DataTable & Column & ColumnGroup & Row .d.ts
parent
2669fd5925
commit
aabf445f91
|
@ -572,6 +572,11 @@ export interface ColumnProps {
|
|||
* @type {ColumnPassThroughOptions}
|
||||
*/
|
||||
pt?: ColumnPassThroughOptions;
|
||||
/**
|
||||
* When enabled, it removes component related styles in the core.
|
||||
* @defaultValue false
|
||||
*/
|
||||
unstyled?: boolean;
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -49,6 +49,11 @@ export interface ColumnGroupProps {
|
|||
* @type {ColumnGroupPassThroughOptions}
|
||||
*/
|
||||
pt?: ColumnGroupPassThroughOptions;
|
||||
/**
|
||||
* When enabled, it removes component related styles in the core.
|
||||
* @defaultValue false
|
||||
*/
|
||||
unstyled?: boolean;
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -1016,6 +1016,11 @@ export interface DataTableProps {
|
|||
* @type {DataTablePassThroughOptions}
|
||||
*/
|
||||
pt?: DataTablePassThroughOptions;
|
||||
/**
|
||||
* When enabled, it removes component related styles in the core.
|
||||
* @defaultValue false
|
||||
*/
|
||||
unstyled?: boolean;
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -39,7 +39,13 @@ export interface RowPassThroughAttributes {
|
|||
/**
|
||||
* Defines valid properties in Row component.
|
||||
*/
|
||||
export interface RowProps {}
|
||||
export interface RowProps {
|
||||
/**
|
||||
* When enabled, it removes component related styles in the core.
|
||||
* @defaultValue false
|
||||
*/
|
||||
unstyled?: boolean;
|
||||
}
|
||||
|
||||
/**
|
||||
* Defines valid slots in Row component.
|
||||
|
|
Loading…
Reference in New Issue