@bizdoc/core 3.6.5 → 3.6.7
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/fesm2022/bizdoc-core.mjs +1284 -1282
- package/fesm2022/bizdoc-core.mjs.map +1 -1
- package/index.d.ts +6 -2
- package/package.json +1 -1
package/index.d.ts
CHANGED
@@ -1105,7 +1105,11 @@ declare class SessionService {
|
|
1105
1105
|
private _http;
|
1106
1106
|
private _cookies;
|
1107
1107
|
private _hub;
|
1108
|
-
|
1108
|
+
/**
|
1109
|
+
*
|
1110
|
+
* @returns
|
1111
|
+
*/
|
1112
|
+
prepare(): Promise<any[]>;
|
1109
1113
|
readonly Themes: Theme[];
|
1110
1114
|
constructor(_config: BizDocConfig, _http: HttpClient, _cookies: CookieService, _hub: HubService, iconRegistry: MatIconRegistry, sanitizer: DomSanitizer);
|
1111
1115
|
private readonly _loaded;
|
@@ -1236,7 +1240,7 @@ declare class TranslateService {
|
|
1236
1240
|
private _gender?;
|
1237
1241
|
get culture(): string;
|
1238
1242
|
constructor(_session: SessionService, _http: HttpClient);
|
1239
|
-
cldr(
|
1243
|
+
cldr(): Promise<void> | Promise<any[]>;
|
1240
1244
|
get(key: string, ...args: (string | number)[]): string;
|
1241
1245
|
personalize(key: string, gender?: Gender, ...args: any[]): string;
|
1242
1246
|
i18n(key: string): string;
|