@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/index.d.ts CHANGED
@@ -1105,7 +1105,11 @@ declare class SessionService {
1105
1105
  private _http;
1106
1106
  private _cookies;
1107
1107
  private _hub;
1108
- prepare(): Promise<void> | Promise<any[]>;
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(culture: string, files: string[]): Promise<unknown>;
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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bizdoc/core",
3
- "version": "3.6.5",
3
+ "version": "3.6.7",
4
4
  "author": "Moding Ltd.",
5
5
  "homepage": "https://github.com/moding-il/bizdoc.core",
6
6
  "license": "https://github.com/moding-il/bizdoc.core/blob/master/License.md",