@stemy/ngx-utils 19.9.17 → 19.9.19

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.
@@ -607,6 +607,7 @@ export interface DynamicModuleInfo {
607
607
  export interface DynamicComponentLocation {
608
608
  moduleId: string;
609
609
  selector: string;
610
+ fallback?: true;
610
611
  }
611
612
  export interface DynamicEntryComponents {
612
613
  components: Type<any>[];
@@ -616,7 +617,9 @@ export declare class IConfiguration {
616
617
  cdnUrl?: string;
617
618
  baseUrl?: string;
618
619
  baseDomain?: string;
620
+ apiUrl?: string;
619
621
  translationUrl?: string;
622
+ translationUrls?: Record<string, any>;
620
623
  translationExt?: string;
621
624
  [key: string]: any;
622
625
  }
@@ -15,6 +15,7 @@ export declare class LanguageService extends StaticLanguageService {
15
15
  protected selectLanguage(lang: string): string;
16
16
  protected useLanguage(lang: string): Promise<ITranslations>;
17
17
  getDictionary(lang: string): Promise<ITranslations>;
18
+ protected getMergedDictionary(lang: string, ext: string): Promise<ITranslations>;
18
19
  protected loadDictionary(): Promise<ITranslations>;
19
20
  protected loadSettings(): Promise<ILanguageSettings>;
20
21
  static ɵfac: i0.ɵɵFactoryDeclaration<LanguageService, never>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stemy/ngx-utils",
3
- "version": "19.9.17",
3
+ "version": "19.9.19",
4
4
  "license": "MIT",
5
5
  "public": true,
6
6
  "repository": "https://github.com/stemyke/ngx-utils.git",