forked from SuperMap/iClient-JavaScript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.js
More file actions
38 lines (34 loc) · 1.43 KB
/
index.js
File metadata and controls
38 lines (34 loc) · 1.43 KB
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
/* Copyright© 2000 - 2018 SuperMap Software Co.Ltd. All rights reserved.
* This program are made available under the terms of the Apache License, Version 2.0
* which accompanies this distribution and is available at http://www.apache.org/licenses/LICENSE-2.0.html.*/
//数据
import {FileTypes, FileConfig} from './CommonTypes';
//组件
import {FileModel} from './openfile/FileModel';
//提示框微件
import {MessageBox} from './messagebox/MessageBox';
//公用模板:
import {CommonContainer} from './templates/CommonContainer';
import {Select} from './templates/Select';
import {DropDownBox} from './templates/DropDownBox';
import {AttributesPopContainer} from './templates/AttributesPopContainer';
import {PopContainer} from './templates/PopContainer';
import {IndexTabsPageContainer} from './templates/IndexTabsPageContainer';
import {CityTabsPage} from './templates/CityTabsPage';
import {NavTabsPage} from './templates/NavTabsPage';
import {PaginationContainer} from './templates/PaginationContainer';
//工具类
import {widgetsUtil, FileReaderUtil} from './util';
export {FileTypes, FileConfig}
export {FileModel};
export {MessageBox};
export {CommonContainer};
export {Select};
export {DropDownBox};
export {AttributesPopContainer};
export {PopContainer};
export {IndexTabsPageContainer};
export {CityTabsPage};
export {NavTabsPage};
export {PaginationContainer};
export {widgetsUtil, FileReaderUtil};