1
0
Fork 0
mirror of https://github.com/primefaces/primevue.git synced 2025-05-08 16:37:15 +00:00
primevue-mirror/api-generator/components/tooltip.js
Bahadir Sofuoglu 4d3a071e66 Lint changes
2022-09-14 17:26:41 +03:00

34 lines
874 B
JavaScript

const TooltipModifiers = [
{
name: 'right',
description: 'Positions the tooltip on the right of the trigger element (default)'
},
{
name: 'top',
description: 'Positions the tooltip on the top of the trigger element'
},
{
name: 'bottom',
description: 'Positions the tooltip on the bottom of the trigger element'
},
{
name: 'left',
description: 'Positions the tooltip on the left of the trigger element'
},
{
name: 'focus',
description: 'Focus on the trigger element'
},
{
name: 'blur',
description: 'Blur the trigger element'
}
];
module.exports = {
tooltip: {
name: 'Tooltip',
description: 'Tooltip directive provides advisory information for a component.',
'vue-modifiers': TooltipModifiers
}
};