mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-11 01:42:34 +00:00
Refactor #5612 - OverlayPanel / Popover
This commit is contained in:
parent
f240b953b4
commit
def5d060c0
16 changed files with 649 additions and 510 deletions
16
components/lib/popover/style/PopoverStyle.js
Normal file
16
components/lib/popover/style/PopoverStyle.js
Normal file
|
@ -0,0 +1,16 @@
|
|||
import BaseStyle from 'primevue/base/style';
|
||||
|
||||
const classes = {
|
||||
root: ({ instance }) => [
|
||||
'p-popover p-component',
|
||||
{
|
||||
'p-ripple-disabled': instance.$primevue.config.ripple === false
|
||||
}
|
||||
],
|
||||
content: 'p-popover-content'
|
||||
};
|
||||
|
||||
export default BaseStyle.extend({
|
||||
name: 'popover',
|
||||
classes
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue