ets-fe-ng-sdk 19.0.74 → 19.0.75
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/ets-fe-ng-sdk.mjs +3 -1
- package/fesm2022/ets-fe-ng-sdk.mjs.map +1 -1
- package/lib/Services/translation.service.d.ts +1 -1
- package/lib/Services/utility.service.d.ts +1 -1
- package/lib/Shared/components/btn/btn.component.d.ts +3 -3
- package/lib/Shared/components/index-comp-layout/index-comp-layout.component.d.ts +1 -1
- package/lib/Shared/components/info-dialog/info-dialog.component.d.ts +1 -1
- package/lib/Shared/components/phone-number/phone-number.component.d.ts +4 -4
- package/lib/Shared/components/table/table-https/table-https.component.d.ts +3 -3
- package/lib/Shared/components/table/table.pipe.d.ts +2 -2
- package/lib/Shared/components/text-case-2/text-case-2.component.d.ts +1 -1
- package/package.json +1 -1
|
@@ -3483,6 +3483,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.1", ngImpor
|
|
|
3483
3483
|
}], ctorParameters: () => [] });
|
|
3484
3484
|
|
|
3485
3485
|
class TranslationService {
|
|
3486
|
+
get name() {
|
|
3487
|
+
return 'glossary';
|
|
3488
|
+
}
|
|
3486
3489
|
constructor(apiService, storageS,
|
|
3487
3490
|
// public lCacheS: LocalCacheService,
|
|
3488
3491
|
cacheS) {
|
|
@@ -3493,7 +3496,6 @@ class TranslationService {
|
|
|
3493
3496
|
this.translationRequestMatrix = [];
|
|
3494
3497
|
this.translationResponseMatrix = new BehaviorSubject({});
|
|
3495
3498
|
this.separator = '~~~';
|
|
3496
|
-
this.name = 'glossary';
|
|
3497
3499
|
this.sourceLanguage = signal(null);
|
|
3498
3500
|
this.targetLanguage = signal(null);
|
|
3499
3501
|
this.transGlossary = signal(null);
|