diff --git a/components/lib/column/Column.d.ts b/components/lib/column/Column.d.ts index a317a521f..7cbe89a5b 100755 --- a/components/lib/column/Column.d.ts +++ b/components/lib/column/Column.d.ts @@ -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; } /** diff --git a/components/lib/columngroup/ColumnGroup.d.ts b/components/lib/columngroup/ColumnGroup.d.ts index b74ba60f3..443c3c055 100755 --- a/components/lib/columngroup/ColumnGroup.d.ts +++ b/components/lib/columngroup/ColumnGroup.d.ts @@ -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; } /** diff --git a/components/lib/datatable/DataTable.d.ts b/components/lib/datatable/DataTable.d.ts index e81542fdc..486cec708 100755 --- a/components/lib/datatable/DataTable.d.ts +++ b/components/lib/datatable/DataTable.d.ts @@ -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; } /** diff --git a/components/lib/row/Row.d.ts b/components/lib/row/Row.d.ts index 6c15b16d8..54f830268 100755 --- a/components/lib/row/Row.d.ts +++ b/components/lib/row/Row.d.ts @@ -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.