@bizy/core 20.10.0 → 20.10.2
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/bizy-core.mjs +10 -3
- package/fesm2022/bizy-core.mjs.map +1 -1
- package/index.d.ts +2 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -7,7 +7,7 @@ import { AbstractControl, ValidatorFn } from '@angular/forms';
|
|
|
7
7
|
import { Portal, TemplatePortal, ComponentType } from '@angular/cdk/portal';
|
|
8
8
|
import { DialogRef } from '@angular/cdk/dialog';
|
|
9
9
|
import { CdkVirtualScrollViewport } from '@angular/cdk/scrolling';
|
|
10
|
-
import { TranslateModule } from '@ngx-translate/core';
|
|
10
|
+
import { LangChangeEvent, TranslateModule } from '@ngx-translate/core';
|
|
11
11
|
import { ActivatedRouteSnapshot, Router, ActivatedRoute } from '@angular/router';
|
|
12
12
|
import { DomSanitizer, SafeHtml, SafeStyle, SafeScript, SafeUrl, SafeResourceUrl } from '@angular/platform-browser';
|
|
13
13
|
import Fuse, { FuseGetFunction } from 'fuse.js';
|
|
@@ -1838,6 +1838,7 @@ interface ILocale {
|
|
|
1838
1838
|
}
|
|
1839
1839
|
declare class BizyTranslateService {
|
|
1840
1840
|
#private;
|
|
1841
|
+
get language$(): EventEmitter<LangChangeEvent>;
|
|
1841
1842
|
loadTranslations(...args: ILocale[]): void;
|
|
1842
1843
|
addLangs(langs: Array<LANGUAGE>): void;
|
|
1843
1844
|
getLangs(): Array<LANGUAGE>;
|