@gitlab/ui
Version:
GitLab UI Components
32 lines (29 loc) • 1.03 kB
JavaScript
import TooltipDirectiveBottomExample from './tooltip.directive_bottom.example';
import TooltipDirectiveDefaultExample from './tooltip.directive_default.example';
import TooltipDirectiveLeftExample from './tooltip.directive_left.example';
import TooltipDirectiveRightExample from './tooltip.directive_right.example';
var index = [{
name: 'Directive',
items: [{
id: 'tooltip-directive',
name: 'Top (Default)',
description: 'Top (Default) Tooltip Directive Use Case',
component: TooltipDirectiveDefaultExample
}, {
id: 'tooltip-directive-right',
name: 'Right',
description: 'Directive Tooltip to the right',
component: TooltipDirectiveRightExample
}, {
id: 'tooltip-directive-bottom',
name: 'Bottom',
description: 'Directive Tooltip to the bottom',
component: TooltipDirectiveBottomExample
}, {
id: 'tooltip-directive-left',
name: 'Left',
description: 'Directive Tooltip to the left',
component: TooltipDirectiveLeftExample
}]
}];
export default index;