web-component-gallery 2.2.44 → 2.2.45
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/extensions/index.js +2 -0
- package/lib/index.js +18 -12
- package/package.json +1 -1
package/extensions/index.js
CHANGED
package/lib/index.js
CHANGED
|
@@ -1,33 +1,39 @@
|
|
|
1
1
|
// lib/index.js
|
|
2
|
+
// SVG
|
|
2
3
|
import SvgIcon from './svg-icon'
|
|
3
|
-
//
|
|
4
|
+
// 新增表单
|
|
4
5
|
import Model from './model'
|
|
6
|
+
// 搜索表单
|
|
5
7
|
import Search from './search'
|
|
8
|
+
// 表单组件
|
|
6
9
|
import FormComp from './form-comp'
|
|
7
|
-
//
|
|
10
|
+
// 树
|
|
8
11
|
import Tree from './tree'
|
|
12
|
+
// 目录树
|
|
9
13
|
import Directory from './directory'
|
|
10
|
-
//
|
|
14
|
+
// 弹窗
|
|
11
15
|
import Modal from './modal'
|
|
12
|
-
//
|
|
16
|
+
// 表格
|
|
13
17
|
import Table from './table'
|
|
18
|
+
// 表格穿梭框
|
|
14
19
|
import TransferTable from './transfer-table'
|
|
15
|
-
//
|
|
20
|
+
// 实时时间
|
|
16
21
|
import DateTime from './date-time'
|
|
17
|
-
//
|
|
22
|
+
// 天气
|
|
18
23
|
import Weather from './weather'
|
|
19
|
-
//
|
|
24
|
+
// 预览
|
|
20
25
|
import Browse from './browse'
|
|
21
|
-
//
|
|
26
|
+
// 地图绘制
|
|
22
27
|
import AmapDraw from './amap-draw'
|
|
28
|
+
// 地图控件
|
|
23
29
|
import AmapComp from './amap-comp'
|
|
24
|
-
//
|
|
30
|
+
// 按钮
|
|
25
31
|
import Button from './button'
|
|
26
|
-
//
|
|
32
|
+
// 详情描述列表
|
|
27
33
|
import DescriptionsList from './descriptions-list'
|
|
28
|
-
//
|
|
34
|
+
// 暂无数据
|
|
29
35
|
import { NoData, NoDataDirective } from './no-data'
|
|
30
|
-
//
|
|
36
|
+
// IconFont
|
|
31
37
|
import IconFont from './icon-font'
|
|
32
38
|
|
|
33
39
|
// 新增指令导入 / 导出
|