primevue-mirror/api-generator/components/tooltip.js

35 lines
874 B
JavaScript
Raw Normal View History

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