UNPKG

kibana-123

Version:

Kibana is an open source (Apache Licensed), browser based analytics and search dashboard for Elasticsearch. Kibana is a snap to setup and start using. Kibana strives to be easy to get started with, while also being flexible and powerful, just like Elastic

34 lines (28 loc) 1.3 kB
import 'plugins/markdown_vis/markdown_vis.less'; import 'plugins/markdown_vis/markdown_vis_controller'; import TemplateVisTypeTemplateVisTypeProvider from 'ui/template_vis_type/template_vis_type'; import markdownVisTemplate from 'plugins/markdown_vis/markdown_vis.html'; import markdownVisParamsTemplate from 'plugins/markdown_vis/markdown_vis_params.html'; // we need to load the css ourselves // we also need to load the controller and used by the template // register the provider with the visTypes registry so that other know it exists require('ui/registry/vis_types').register(MarkdownVisProvider); function MarkdownVisProvider(Private) { const TemplateVisType = Private(TemplateVisTypeTemplateVisTypeProvider); // return the visType object, which kibana will use to display and configure new // Vis object of this type. return new TemplateVisType({ name: 'markdown', title: 'Markdown widget', icon: 'fa-code', description: 'Useful for displaying explanations or instructions for dashboards.', template: markdownVisTemplate, params: { editor: markdownVisParamsTemplate }, requiresSearch: false, implementsRenderComplete: true, }); } // export the provider so that the visType can be required with Private() export default MarkdownVisProvider;