yxuse 2.0.2 → 2.0.3
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 +118 -76
- package/lib/index.cjs2.js +4 -4
- package/lib/index.cjs2.js.gz +0 -0
- package/lib/index.cjs6.js +3 -3
- package/lib/index.cjs6.js.gz +0 -0
- package/lib/index.es2.js +302 -299
- package/lib/index.es2.js.gz +0 -0
- package/lib/index.es6.js +454 -454
- package/lib/index.es6.js.gz +0 -0
- package/package.json +1 -1
- package/types/theme/config.d.ts +3 -0
- package/types/theme/type.d.ts +6 -0
package/lib/index.es6.js.gz
CHANGED
|
Binary file
|
package/package.json
CHANGED
package/types/theme/config.d.ts
CHANGED
package/types/theme/type.d.ts
CHANGED
|
@@ -13,6 +13,12 @@ export interface YxuseOptions {
|
|
|
13
13
|
isRenderLang?: boolean;
|
|
14
14
|
/** 登录页地址*/
|
|
15
15
|
loginUrl?: string;
|
|
16
|
+
/** 自定义登录api,非运管系统项目使用*/
|
|
17
|
+
loginApiUrl?: string;
|
|
18
|
+
/** 翻译Api地址,非运管系统项目使用*/
|
|
19
|
+
translateApiUrl?: string;
|
|
20
|
+
/** 主题列表接口,非运管系统项目使用*/
|
|
21
|
+
themeApiUrl: string;
|
|
16
22
|
/** 首页地址*/
|
|
17
23
|
homeUrl?: string;
|
|
18
24
|
/** 系统语言*/
|