Merge branch 'master' of https://github.com/primefaces/primevue
commit
f974c70502
|
@ -6853,7 +6853,7 @@
|
|||
"name": "variant",
|
||||
"optional": true,
|
||||
"readonly": false,
|
||||
"type": "\"outlined\" | \"text\"",
|
||||
"type": "\"outlined\" | \"text\" | \"link\"",
|
||||
"default": "undefined",
|
||||
"description": "Specifies the variant of the component."
|
||||
},
|
||||
|
|
|
@ -176,7 +176,7 @@ export interface ButtonProps extends ButtonHTMLAttributes {
|
|||
* Specifies the variant of the component.
|
||||
* @defaultValue undefined
|
||||
*/
|
||||
variant?: 'outlined' | 'text' | undefined;
|
||||
variant?: 'outlined' | 'text' | 'link' | undefined;
|
||||
/**
|
||||
* Add a plain textual class to the button without a background initially.
|
||||
* @defaultValue false
|
||||
|
|
|
@ -31,7 +31,7 @@ const theme = ({ dt }) => `
|
|||
|
||||
.p-treetable-scrollable .p-treetable-frozen-column {
|
||||
position: sticky;
|
||||
background: inherit;
|
||||
background: ${dt('treetable.header.cell.background')};
|
||||
}
|
||||
|
||||
.p-treetable-scrollable th.p-treetable-frozen-column {
|
||||
|
|
Loading…
Reference in New Issue