xframelib 0.5.9 → 0.6.0
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/README.md +1 -0
- package/dist/index.cjs +6 -6
- package/dist/index.css +31 -31
- package/dist/index.js +6 -6
- package/dist/model/Config.d.ts +19 -11
- package/package.json +2 -2
package/dist/model/Config.d.ts
CHANGED
|
@@ -42,9 +42,13 @@ export interface IUIObject {
|
|
|
42
42
|
*/
|
|
43
43
|
export interface IServiceURL {
|
|
44
44
|
/**
|
|
45
|
-
*
|
|
45
|
+
* 用户登录验证服务(统一用户登录:后台)
|
|
46
46
|
*/
|
|
47
47
|
LoginAuthURL?: string;
|
|
48
|
+
/**
|
|
49
|
+
* 用户登录界面(统一用户登录界面:前台)
|
|
50
|
+
*/
|
|
51
|
+
UILoginURL?: string;
|
|
48
52
|
/**
|
|
49
53
|
* 文件管理服务地址(统一文件管理:后台)
|
|
50
54
|
*/
|
|
@@ -52,11 +56,15 @@ export interface IServiceURL {
|
|
|
52
56
|
/**
|
|
53
57
|
* 文件管理(统一文件管理:前台)
|
|
54
58
|
*/
|
|
55
|
-
|
|
59
|
+
UIFileURL?: string;
|
|
56
60
|
/**
|
|
57
|
-
*
|
|
61
|
+
* 在线日志服务(统一日志记录)
|
|
58
62
|
*/
|
|
59
63
|
LogServiceURL?: string;
|
|
64
|
+
/**
|
|
65
|
+
* 图标在线服务地址
|
|
66
|
+
*/
|
|
67
|
+
IconServiceURL?: string;
|
|
60
68
|
/**
|
|
61
69
|
* Axios普通WebAPI的BaseURL
|
|
62
70
|
* 全局默认的http请求地址(一般与主hprose相同或不同);文件上传地址
|
|
@@ -76,21 +84,21 @@ export interface IServiceURL {
|
|
|
76
84
|
*/
|
|
77
85
|
export interface IMapKeys {
|
|
78
86
|
/**
|
|
79
|
-
* 天地图Key
|
|
87
|
+
* 天地图Key ,单个或数组
|
|
80
88
|
*/
|
|
81
|
-
TDTKey?: string;
|
|
89
|
+
TDTKey?: string | string[];
|
|
82
90
|
/**
|
|
83
|
-
* MapboxKey
|
|
91
|
+
* MapboxKey ,单个或数组
|
|
84
92
|
*/
|
|
85
|
-
MapboxKey?: string;
|
|
93
|
+
MapboxKey?: string | string[];
|
|
86
94
|
/**
|
|
87
|
-
* Cesium Key
|
|
95
|
+
* Cesium Key ,单个或数组
|
|
88
96
|
*/
|
|
89
|
-
CesiumKey?: string;
|
|
97
|
+
CesiumKey?: string | string[];
|
|
90
98
|
/**
|
|
91
|
-
* Google地图Key
|
|
99
|
+
* Google地图Key ,单个或数组
|
|
92
100
|
*/
|
|
93
|
-
GoogleKey?: string;
|
|
101
|
+
GoogleKey?: string | string[];
|
|
94
102
|
/**
|
|
95
103
|
* 其他扩展的Key属性
|
|
96
104
|
*/
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "xframelib",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.6.0",
|
|
4
4
|
"description": "积累的前端开发基础库",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"common": "dist/index.cjs",
|
|
7
7
|
"typings": "dist/index.d.ts",
|
|
8
8
|
"scripts": {
|
|
9
|
-
"dev": "vite --port
|
|
9
|
+
"dev": "vite --port 8099",
|
|
10
10
|
"build": "vite build",
|
|
11
11
|
"lib": "rollup -c ",
|
|
12
12
|
"serve": "vite preview",
|