-
Notifications
You must be signed in to change notification settings - Fork 19.7k
/
Copy pathcomponents.ts
105 lines (72 loc) · 3.76 KB
/
components.ts
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
export {install as GridSimpleComponent} from '../component/grid/installSimple';
export {install as GridComponent} from '../component/grid/install';
export {install as PolarComponent} from '../component/polar/install';
export {install as RadarComponent} from '../component/radar/install';
export {install as GeoComponent} from '../component/geo/install';
export {install as SingleAxisComponent} from '../component/singleAxis/install';
export {install as ParallelComponent} from '../component/parallel/install';
export {install as CalendarComponent} from '../component/calendar/install';
export {install as GraphicComponent} from '../component/graphic/install';
export {install as ToolboxComponent} from '../component/toolbox/install';
export {install as TooltipComponent} from '../component/tooltip/install';
export {install as AxisPointerComponent} from '../component/axisPointer/install';
export {install as BrushComponent} from '../component/brush/install';
export {install as TitleComponent} from '../component/title/install';
export {install as TimelineComponent} from '../component/timeline/install';
export {install as MarkPointComponent} from '../component/marker/installMarkPoint';
export {install as MarkLineComponent} from '../component/marker/installMarkLine';
export {install as MarkAreaComponent} from '../component/marker/installMarkArea';
export {install as LegendComponent} from '../component/legend/install';
export {install as LegendScrollComponent} from '../component/legend/installLegendScroll';
export {install as LegendPlainComponent} from '../component/legend/installLegendPlain';
export {install as DataZoomComponent} from '../component/dataZoom/install';
export {install as DataZoomInsideComponent} from '../component/dataZoom/installDataZoomInside';
export {install as DataZoomSliderComponent} from '../component/dataZoom/installDataZoomSlider';
export {install as VisualMapComponent} from '../component/visualMap/install';
export {install as VisualMapContinuousComponent} from '../component/visualMap/installVisualMapContinuous';
export {install as VisualMapPiecewiseComponent} from '../component/visualMap/installVisualMapPiecewise';
export {install as AriaComponent} from '../component/aria/install';
export {install as TransformComponent} from '../component/transform/install';
export {install as DatasetComponent} from '../component/dataset/install';
export {
GridComponentOption,
PolarComponentOption,
RadarComponentOption,
GeoComponentOption,
SingleAxisComponentOption,
ParallelComponentOption,
CalendarComponentOption,
GraphicComponentOption,
ToolboxComponentOption,
TooltipComponentOption,
AxisPointerComponentOption,
BrushComponentOption,
TitleComponentOption,
TimelineComponentOption,
MarkPointComponentOption,
MarkLineComponentOption,
MarkAreaComponentOption,
LegendComponentOption,
DataZoomComponentOption,
VisualMapComponentOption,
AriaComponentOption,
DatasetComponentOption
} from './option';