@yelon/bis 16.3.3 → 16.3.5
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/esm2022/layout/analysis.addon.mjs +19 -0
- package/esm2022/layout/public_api.mjs +2 -1
- package/esm2022/layout/yunzai-default.interceptor.mjs +2 -1
- package/esm2022/layout/yunzai-i18n.service.mjs +18 -11
- package/fesm2022/layout.mjs +37 -11
- package/fesm2022/layout.mjs.map +1 -1
- package/layout/analysis.addon.d.ts +3 -0
- package/layout/public_api.d.ts +1 -0
- package/layout/yunzai-i18n.service.d.ts +3 -1
- package/package.json +11 -11
package/layout/public_api.d.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { Platform } from '@angular/cdk/platform';
|
|
2
2
|
import { OnDestroy } from '@angular/core';
|
|
3
3
|
import { Observable } from 'rxjs';
|
|
4
|
+
import { ITokenService } from "@yelon/auth";
|
|
4
5
|
import { YelonLocaleService, SettingsService, _HttpClient, YunzaiI18nBaseService, YunzaiI18NType } from '@yelon/theme';
|
|
5
6
|
import { YunzaiConfigService } from '@yelon/util/config';
|
|
6
7
|
import { NzSafeAny } from 'ng-zorro-antd/core/types';
|
|
@@ -12,9 +13,10 @@ export declare class YunzaiI18NService extends YunzaiI18nBaseService implements
|
|
|
12
13
|
private nzI18nService;
|
|
13
14
|
private yelonLocaleService;
|
|
14
15
|
private platform;
|
|
16
|
+
private tokenService;
|
|
15
17
|
protected _defaultLang: string;
|
|
16
18
|
private $destroy;
|
|
17
|
-
constructor(http: _HttpClient, settings: SettingsService, nzI18nService: NzI18nService, yelonLocaleService: YelonLocaleService, platform: Platform, cogSrv: YunzaiConfigService);
|
|
19
|
+
constructor(http: _HttpClient, settings: SettingsService, nzI18nService: NzI18nService, yelonLocaleService: YelonLocaleService, platform: Platform, tokenService: ITokenService, cogSrv: YunzaiConfigService);
|
|
18
20
|
private getDefaultLang;
|
|
19
21
|
loadLangData(lang: string): Observable<NzSafeAny>;
|
|
20
22
|
use(lang: string, data: Record<string, unknown>): void;
|
package/package.json
CHANGED
|
@@ -1,20 +1,20 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yelon/bis",
|
|
3
|
-
"version": "16.3.
|
|
3
|
+
"version": "16.3.5",
|
|
4
4
|
"author": "devcui<devcui@outlook.com>",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"dependencies": {
|
|
7
7
|
"ng-zorro-antd": "^16.1.0",
|
|
8
|
-
"@yelon/acl": "^16.3.
|
|
9
|
-
"@yelon/auth": "^16.3.
|
|
10
|
-
"@yelon/theme": "^16.3.
|
|
11
|
-
"@yelon/mock": "^16.3.
|
|
12
|
-
"@yelon/cache": "^16.3.
|
|
13
|
-
"@yelon/chart": "^16.3.
|
|
14
|
-
"@yelon/form": "^16.3.
|
|
15
|
-
"@yelon/testing": "^16.3.
|
|
16
|
-
"@yelon/util": "^16.3.
|
|
17
|
-
"@yelon/bcs": "^16.3.
|
|
8
|
+
"@yelon/acl": "^16.3.5",
|
|
9
|
+
"@yelon/auth": "^16.3.5",
|
|
10
|
+
"@yelon/theme": "^16.3.5",
|
|
11
|
+
"@yelon/mock": "^16.3.5",
|
|
12
|
+
"@yelon/cache": "^16.3.5",
|
|
13
|
+
"@yelon/chart": "^16.3.5",
|
|
14
|
+
"@yelon/form": "^16.3.5",
|
|
15
|
+
"@yelon/testing": "^16.3.5",
|
|
16
|
+
"@yelon/util": "^16.3.5",
|
|
17
|
+
"@yelon/bcs": "^16.3.5",
|
|
18
18
|
"tslib": "^2.3.0"
|
|
19
19
|
},
|
|
20
20
|
"module": "fesm2022/bis.mjs",
|