UNPKG

1.32 kBJavaScriptView Raw
1// Add config files
2import setConfigs from './config';
3
4setConfigs();
5
6export { default as GlChart } from './src/components/charts/chart/chart.vue';
7export { default as GlAreaChart } from './src/components/charts/area/area.vue';
8export { default as GlBarChart } from './src/components/charts/bar/bar.vue';
9export { default as GlGaugeChart } from './src/components/charts/gauge/gauge.vue';
10export { default as GlLineChart } from './src/components/charts/line/line.vue';
11export { default as GlChartLegend } from './src/components/charts/legend/legend.vue';
12export { default as GlChartSeriesLabel } from './src/components/charts/series_label/series_label.vue';
13export { default as GlChartTooltip } from './src/components/charts/tooltip/tooltip.vue';
14export { default as GlHeatmap } from './src/components/charts/heatmap';
15export { default as GlColumnChart } from './src/components/charts/column/column.vue';
16export { default as GlStackedColumnChart } from './src/components/charts/stacked_column/stacked_column.vue';
17export { default as GlDiscreteScatterChart } from './src/components/charts/discrete_scatter/discrete_scatter.vue';
18export { default as GlSingleStat } from './src/components/charts/single_stat/single_stat.vue';
19export { default as GlSparklineChart } from './src/components/charts/sparkline/sparkline.vue';