Refactor #3965 - For DataTable & Column & ColumnGroup & Row .d.ts

pull/4016/head
Tuğçe Küçükoğlu 2023-06-02 10:00:36 +03:00
parent 2669fd5925
commit aabf445f91
4 changed files with 22 additions and 1 deletions

View File

@ -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;
}
/**

View File

@ -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;
}
/**

View File

@ -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;
}
/**

View File

@ -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.