@gitlab/ui
Version:
GitLab UI Components
41 lines (38 loc) • 1.31 kB
JavaScript
import TooltipDirectiveDefaultExample from './tooltip.directive_default.example';
import TooltipDirectiveRightExample from './tooltip.directive_right.example';
import TooltipDirectiveBottomExample from './tooltip.directive_bottom.example';
import TooltipDirectiveLeftExample from './tooltip.directive_left.example';
import TooltipComponentDefaultExample from './tooltip.component_default.example';
var index = [{
name: 'Directive',
items: [{
id: 'tooltip-directive',
name: 'Default',
description: 'Default Tooltip Directive Use Case',
component: TooltipDirectiveDefaultExample
}, {
id: 'tooltip-directive-right',
name: 'To the right',
description: 'Directive Tooltip to the right',
component: TooltipDirectiveRightExample
}, {
id: 'tooltip-directive-bottom',
name: 'To the bottom',
description: 'Directive Tooltip to the bottom',
component: TooltipDirectiveBottomExample
}, {
id: 'tooltip-directive-left',
name: 'To the left',
description: 'Directive Tooltip to the left',
component: TooltipDirectiveLeftExample
}]
}, {
name: 'Component',
items: [{
id: 'tooltip-default',
name: 'HTML',
description: 'Default Tooltip Component Use Case',
component: TooltipComponentDefaultExample
}]
}];
export default index;