Merge branch 'master' of https://github.com/primefaces/primevue
commit
f974c70502
|
@ -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."
|
||||||
},
|
},
|
||||||
|
|
|
@ -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
|
||||||
|
|
|
@ -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 {
|
||||||
|
|
Loading…
Reference in New Issue