-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathindex.dev.js
More file actions
33 lines (21 loc) · 984 Bytes
/
index.dev.js
File metadata and controls
33 lines (21 loc) · 984 Bytes
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
/*
* Dboxjs
*
* You can import other modules here, including external packages. When
* bundling using rollup you can mark those modules as external and have them
* excluded or, if they have a jsnext:main entry in their package.json (like
* this package does), let rollup bundle them into your dist file.
*/
/* Core */
export { default as chart } from './lib/chart';
/* Chart modules */
export { default as bars } from '../bars/bars.js';
export { default as distro } from '../distro/distro.js';
export { default as heatmap } from '../heatmap/heatmap.js';
export { default as leaflet } from '../leaflet/leaflet.js';
export { default as map } from '../map/map.js';
export { default as radar } from '../radar/radar.js';
export { default as scatter } from '../scatter/scatter.js';
export { default as spineplot } from '../spineplot/spineplot.js';
export { default as timeline } from '../timeline/timeline.js';
export { default as treemap } from '../treemap/treemap.js';