Cagatay Civici 2024-11-14 12:57:51 +03:00
commit f974c70502
3 changed files with 3 additions and 3 deletions

View File

@ -6853,7 +6853,7 @@
"name": "variant", "name": "variant",
"optional": true, "optional": true,
"readonly": false, "readonly": false,
"type": "\"outlined\" | \"text\"", "type": "\"outlined\" | \"text\" | \"link\"",
"default": "undefined", "default": "undefined",
"description": "Specifies the variant of the component." "description": "Specifies the variant of the component."
}, },

View File

@ -176,7 +176,7 @@ export interface ButtonProps extends ButtonHTMLAttributes {
* Specifies the variant of the component. * Specifies the variant of the component.
* @defaultValue undefined * @defaultValue undefined
*/ */
variant?: 'outlined' | 'text' | undefined; variant?: 'outlined' | 'text' | 'link' | undefined;
/** /**
* Add a plain textual class to the button without a background initially. * Add a plain textual class to the button without a background initially.
* @defaultValue false * @defaultValue false

View File

@ -31,7 +31,7 @@ const theme = ({ dt }) => `
.p-treetable-scrollable .p-treetable-frozen-column { .p-treetable-scrollable .p-treetable-frozen-column {
position: sticky; position: sticky;
background: inherit; background: ${dt('treetable.header.cell.background')};
} }
.p-treetable-scrollable th.p-treetable-frozen-column { .p-treetable-scrollable th.p-treetable-frozen-column {