-
Notifications
You must be signed in to change notification settings - Fork 16
/
main.js
51 lines (49 loc) · 1.68 KB
/
main.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
'use strict';
// Panorama components.
import AreaChart from './AreaChart/AreaChart';
import CartoDBLoader from './CartoDBLoader/CartoDBLoader';
import CartoDBTileLayer from './CartoDBTileLayer/CartoDBTileLayer';
import ChartSlider from './ChartSlider/ChartSlider';
import DiscreteBarChart from './DiscreteBarChart/DiscreteBarChart';
import Donut from './Leaflet/Donut/Donut';
import HashManager from './HashManager/HashManager';
import HorizontalDiscreteBarChart from './HorizontalDiscreteBarChart/HorizontalDiscreteBarChart';
import IntroManager from './IntroManager/IntroManager';
import ItemSelector from './ItemSelector/ItemSelector';
import LeafletChoropleth from './Leaflet/Choropleth/Choropleth';
import Legend from './Legend/Legend';
import LineChart from './LineChart/LineChart';
import MapChoropleth from './MapChoropleth/MapChoropleth';
import Navigation from './Navigation/Navigation';
import OffsetAreaChart from './OffsetAreaChart/OffsetAreaChart';
import { PanoramaDispatcher, PanoramaEventTypes } from './PanoramaDispatcher.js';
import Punchcard from './Punchcard/Punchcard';
import TimeBasedMarkers from './TimeBasedMarkers/TimeBasedMarkers';
import ScatterPlot from './ScatterPlot/ScatterPlot';
import Tooltip from './Leaflet/Tooltip/Tooltip';
import TexturalList from './TexturalList/TexturalList';
export default {
AreaChart,
CartoDBLoader,
CartoDBTileLayer,
ChartSlider,
DiscreteBarChart,
Donut,
HashManager,
HorizontalDiscreteBarChart,
IntroManager,
ItemSelector,
LeafletChoropleth,
Legend,
LineChart,
MapChoropleth,
Navigation,
OffsetAreaChart,
PanoramaDispatcher,
PanoramaEventTypes,
Punchcard,
TimeBasedMarkers,
Tooltip,
ScatterPlot,
TexturalList
};