ets-fe-ng-sdk 19.0.27 → 19.0.29
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 +66 -16
- package/fesm2022/ets-fe-ng-sdk.mjs.map +1 -1
- package/lib/Services/translation.service.d.ts +5 -3
- package/lib/Shared/components/index-comp-layout/index-comp-layout.component.d.ts +1 -1
- package/lib/Shared/components/text-case-2/text-case-2.component.d.ts +1 -1
- package/lib/Shared/models/translator.model.d.ts +5 -0
- package/lib/Shared/pipes/translate.pipe.d.ts +14 -1
- package/package.json +1 -1
|
@@ -3493,10 +3493,20 @@ class TranslationService {
|
|
|
3493
3493
|
this.translationResponseMatrix = new BehaviorSubject({});
|
|
3494
3494
|
this.separator = '~~~';
|
|
3495
3495
|
this.name = 'glossary';
|
|
3496
|
+
this.sourceLanguage = signal(null);
|
|
3497
|
+
this.targetLanguage = signal(null);
|
|
3498
|
+
this.transGlossary = signal(null);
|
|
3496
3499
|
this.toastNotificationService = inject(ToastNotificationsService);
|
|
3497
3500
|
this.interval = 600;
|
|
3501
|
+
this.route = computed(() => {
|
|
3502
|
+
const transGlossary = this.transGlossary();
|
|
3503
|
+
return (this.baseURL +
|
|
3504
|
+
(transGlossary?.code
|
|
3505
|
+
? `language?glossaryCode=${transGlossary?.code}&sourceLang=${this.sourceLanguage()}&targetLang=${this.targetLanguage()}`
|
|
3506
|
+
: `language/${this.targetLanguage()}`));
|
|
3507
|
+
});
|
|
3498
3508
|
this.pipeTransformer = (text) => of(text);
|
|
3499
|
-
this.translateHTML = (HTMLString, sourceLanguage = this.sourceLanguage, targetLanguage = this.targetLanguage, config) => {
|
|
3509
|
+
this.translateHTML = (HTMLString, sourceLanguage = this.sourceLanguage(), targetLanguage = this.targetLanguage(), config) => {
|
|
3500
3510
|
return new Observable((res) => {
|
|
3501
3511
|
if (config?.debug)
|
|
3502
3512
|
debugger;
|
|
@@ -3564,15 +3574,12 @@ class TranslationService {
|
|
|
3564
3574
|
async startInterval() {
|
|
3565
3575
|
if (this.intervalSub && !this.intervalSub.closed)
|
|
3566
3576
|
return;
|
|
3567
|
-
const transGlossary = this.transGlossary || (await lastValueFrom(this.getGlossary()));
|
|
3577
|
+
const transGlossary = this.transGlossary() || (await lastValueFrom(this.getGlossary()));
|
|
3568
3578
|
this.intervalSub = interval(this.interval)
|
|
3569
3579
|
.pipe(filter$1(() => this.translationRequestMatrix.length > 0), tap(async () => {
|
|
3570
3580
|
const body = this.translationRequestMatrix.splice(0);
|
|
3571
3581
|
// debugger;
|
|
3572
|
-
lastValueFrom(this.
|
|
3573
|
-
(this.transGlossary?.code
|
|
3574
|
-
? `language?glossaryCode=${this.transGlossary?.code}&sourceLang=${this.sourceLanguage}&targetLang=${this.targetLanguage}`
|
|
3575
|
-
: `language/${this.targetLanguage}`), body.map((x) => this.tagger(x.id, x.text)).join(this.separator)))
|
|
3582
|
+
lastValueFrom(this.translate(body.map((x) => this.tagger(x.id, x.text)).join(this.separator)))
|
|
3576
3583
|
.then((r) => {
|
|
3577
3584
|
this.translationResponseMatrix.next(this.detagger(r));
|
|
3578
3585
|
})
|
|
@@ -3588,20 +3595,26 @@ class TranslationService {
|
|
|
3588
3595
|
tagger(id, str) {
|
|
3589
3596
|
return `<div id="${id}">${str}</div>`;
|
|
3590
3597
|
}
|
|
3591
|
-
|
|
3592
|
-
this.
|
|
3593
|
-
|
|
3598
|
+
translate(body) {
|
|
3599
|
+
return this.apiService.postString(this.route(), body);
|
|
3600
|
+
}
|
|
3601
|
+
getGlossary(sourceLanguage, targetLanguage) {
|
|
3602
|
+
if (sourceLanguage)
|
|
3603
|
+
this.sourceLanguage.set(sourceLanguage || this.sourceLanguage());
|
|
3604
|
+
if (targetLanguage)
|
|
3605
|
+
this.targetLanguage.set(targetLanguage || this.targetLanguage());
|
|
3594
3606
|
return this.apiService.get(`${this.baseURL}glossary/`).pipe(map((r) => {
|
|
3595
3607
|
// debugger;
|
|
3596
|
-
const glossary = r?.find((x) => x.sourceLang == this.sourceLanguage &&
|
|
3597
|
-
x.targetLang == this.targetLanguage &&
|
|
3608
|
+
const glossary = r?.find((x) => x.sourceLang == this.sourceLanguage() &&
|
|
3609
|
+
x.targetLang == this.targetLanguage() &&
|
|
3598
3610
|
x.name == this.name);
|
|
3599
3611
|
return glossary ? glossary : null;
|
|
3600
3612
|
}), map((glossary) => {
|
|
3601
3613
|
if (!glossary)
|
|
3602
3614
|
return null;
|
|
3603
|
-
|
|
3604
|
-
this.
|
|
3615
|
+
environment.transGlossary = glossary;
|
|
3616
|
+
this.transGlossary.set(glossary);
|
|
3617
|
+
this.storageS.saveItem(environment.transGlossaryKey, this.transGlossary());
|
|
3605
3618
|
return glossary;
|
|
3606
3619
|
}));
|
|
3607
3620
|
}
|
|
@@ -3666,11 +3679,48 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.0", ngImpor
|
|
|
3666
3679
|
standalone: true,
|
|
3667
3680
|
}]
|
|
3668
3681
|
}] });
|
|
3669
|
-
|
|
3682
|
+
class SDKTranslateSinglePipe {
|
|
3683
|
+
transform(text, config) {
|
|
3684
|
+
return this.tS.pipeTransformer(text, { ...config, singleHandle: true });
|
|
3685
|
+
}
|
|
3686
|
+
constructor(tS) {
|
|
3687
|
+
this.tS = tS;
|
|
3688
|
+
}
|
|
3689
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.0", ngImport: i0, type: SDKTranslateSinglePipe, deps: [{ token: TranslationService }], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
3690
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.0.0", ngImport: i0, type: SDKTranslateSinglePipe, isStandalone: true, name: "appTranslateSingle" }); }
|
|
3691
|
+
}
|
|
3692
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.0", ngImport: i0, type: SDKTranslateSinglePipe, decorators: [{
|
|
3693
|
+
type: Pipe,
|
|
3694
|
+
args: [{
|
|
3695
|
+
name: 'appTranslateSingle',
|
|
3696
|
+
standalone: true,
|
|
3697
|
+
}]
|
|
3698
|
+
}], ctorParameters: () => [{ type: TranslationService }] });
|
|
3699
|
+
/**Translate without a loader */
|
|
3700
|
+
class SDKTranslateSingleNoLoaderPipe extends SDKTranslatePipe {
|
|
3701
|
+
transform(text, config) {
|
|
3702
|
+
return this.tS.pipeTransformer(text, { ...config, noLoader: true, singleHandle: true });
|
|
3703
|
+
}
|
|
3704
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.0", ngImport: i0, type: SDKTranslateSingleNoLoaderPipe, deps: null, target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
3705
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.0.0", ngImport: i0, type: SDKTranslateSingleNoLoaderPipe, isStandalone: true, name: "appTranslateSingleNL" }); }
|
|
3706
|
+
}
|
|
3707
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.0", ngImport: i0, type: SDKTranslateSingleNoLoaderPipe, decorators: [{
|
|
3708
|
+
type: Pipe,
|
|
3709
|
+
args: [{
|
|
3710
|
+
name: 'appTranslateSingleNL',
|
|
3711
|
+
standalone: true,
|
|
3712
|
+
}]
|
|
3713
|
+
}] });
|
|
3714
|
+
const comps$5 = [
|
|
3715
|
+
SDKTranslatePipe,
|
|
3716
|
+
SDKTranslateNoLoaderPipe,
|
|
3717
|
+
SDKTranslateSinglePipe,
|
|
3718
|
+
SDKTranslateSingleNoLoaderPipe,
|
|
3719
|
+
];
|
|
3670
3720
|
const modules$1 = [];
|
|
3671
3721
|
class TranslatePipeModule {
|
|
3672
3722
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.0", ngImport: i0, type: TranslatePipeModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
3673
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.0.0", ngImport: i0, type: TranslatePipeModule, imports: [CommonModule, SDKTranslatePipe, SDKTranslateNoLoaderPipe], exports: [SDKTranslatePipe, SDKTranslateNoLoaderPipe] }); }
|
|
3723
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.0.0", ngImport: i0, type: TranslatePipeModule, imports: [CommonModule, SDKTranslatePipe, SDKTranslateNoLoaderPipe, SDKTranslateSinglePipe, SDKTranslateSingleNoLoaderPipe], exports: [SDKTranslatePipe, SDKTranslateNoLoaderPipe, SDKTranslateSinglePipe, SDKTranslateSingleNoLoaderPipe] }); }
|
|
3674
3724
|
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.0.0", ngImport: i0, type: TranslatePipeModule, imports: [CommonModule, modules$1] }); }
|
|
3675
3725
|
}
|
|
3676
3726
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.0", ngImport: i0, type: TranslatePipeModule, decorators: [{
|
|
@@ -19405,5 +19455,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.0", ngImpor
|
|
|
19405
19455
|
* Generated bundle index. Do not edit.
|
|
19406
19456
|
*/
|
|
19407
19457
|
|
|
19408
|
-
export { AddItemComponent, ApiService, AppRouteBase, AppRouteService, AppRouteState, AppService, ArraySplitter, AuthenticationInterceptorService, AutocompleteComponent, AutocompleteModule, AutocompleteService, AutocompleteTdRfComponent, BaseNativeEventListenerDirective, BlinkingBlocksComponent, BouncingBallComponent, Btn, BtnComponent, BtnLg, BtnLgComponent, BtnLinkComponent, BtnModule, BtnService, ButtonComponent, CETSInput, CacheService, CacheUpdaterService, CardComponent, CardComponent as CardModule, CodeTitleDescPipe, CommafyNumberDirective, ButtonComponent as ComponentsModule, Config, ConfirmDialogComponent, ConfirmDialogComponent as ConfirmDialogModule, Constant, CustomDatePipe, DEFAULT_TIMEOUT, DateInputComponent, Day, DayHourMinInputComponent, DebouncerService, DesktopClassDirective, DetailsBtnComponent, DetailsBtnComponent as DetailsBtnModule, DirectivesModule, DocumentsNameDisplayComponent, DocumentsNameDisplayComponent as DocumentsNameDisplayModule, DragDropFileUploadDirective, EETSPageBtnID, ELanguage, EMenuLocation, EMenuType, EPageType, ESubSystem, ESystem, ESystemBusLine, ETSCheckForUpdateService, ETSConfirmDialogService, ETSExtraPagesModule, ETSFKVP, ETSForms, ETSHandleUnrecoverableStateService, ETSKVP, ETSLogUpdateService, ETSLoggerModule, ETSMenuItem, ETSMenuItemDivider, ETSPageNotFoundComponent, ETSPromptUpdateService, ETSReactiveFormInputService, ETSResetModule, ETSResponsivenessDirectiveModule, ETSRobotModule, ETSServiceWorkerService, ETSStorageService, ETSThemeService, ETSTimeoutTesterModule, ETSVersionModule, ETSWindowSecurityService, EUA, EVFunctions, EValidationType, EditableTextCaseComponent, EditableTextCaseComponent as EditableTextCaseModule, SDKEnvironment as Environment, EqualChildrenDirective, ErrorMessagePipe, ErrorReporterService, ExportTableComponent, ExportTableComponent as ExportTableModule, FCInput, FadingBarsComponent, FadingCirclesComponent, FieldToLabelPipe, FieldsToDisplayComponent, FileUploadComponent, FilterArrayByStringPipe, FilterArrayPipe, FilterFormArrayControlPipe, FilterFormArrayGroupPipe, FilterOptions, FindItemComponent, FormErrorComponent, FormGeneratedValueComponent, FormGeneratorComponent, FormGeneratorComponent as FormGeneratorModule, FormGeneratorService, FormInvalidClassDirective, FormInvalidClassPipe, FormLinkComponent, FormLinkComponent as FormLinkModule, FormSchemaToTableColumnsPipe, FormTabHeadersComponent, FormTabHeadersComponent as FormTabHeadersModule, FormValuePipe, FunctionCaller, FunctionCaller1, FunctionCaller2, FunctionCaller3, GenderPipe, GetColFormattedEPipe, GetColFormattedPipe, GetHeadersPipe, GetRawFieldsPipe, GetValueLabel, GlobalErrorHandlerService, HasFormValuePipe, HasValuePipe, HideDesktopDirective, HideMobileDirective, HtmlerService, HttpListCaller, HttpListCaller1, HttpListCaller2, IdlerComponent, IdlerService, ImageLoaderDirective, ImageUpload, IndexCompLayoutComponent, InfoDialogComponent, InfoDialogModule, InfoDialogService, InfoIconComponent, InfoIconComponent as InfoIconModule, InputBasicComponent, InputClassPipe, InputComponent, inputs_component as InputComponents, InputControlComponent, InputFormatDirective, InputFormatDirectivesModule, InputFormatService, InputFormattersPipe, InputLabelComponent, InputModule, InputNGModelComponent, InputNGModelComponent as InputNGModelModule, InputPipesModule, InputService, InputTD_RFComponent, InputTableComponent, InputTableService, IntegerOnlyDirective, IsClonePage, IsShowPage, LabelComponent, LabelComponent as LabelModule, Lbl, ListOptionFinderPipe, LoaderComponent, LoaderComponent as LoaderModule, LoaderService, LocalCacheService, Log, LoggerComponent, LoggerInterceptorService, LoggerRoutingModule, LoggerService, MHrefDirective, MobileClassDirective, ModalBodyDirective, ModalComponent, ModalComponents, ModalFooterDirective, ModalFormComponent, ModalFormComponent as ModalFormModule, ModalHeaderComponent, ModalHeaderComponent as ModalHeaderModule, ModalComponent as ModalModule, MouseClickListenerDirective, MouseEnterListenerDirective, MouseLeaveListenerDirective, MrouterLinkirective, NELEventName, NarrationHistoryCompComponent, NativeEventListenerDirectives, NegativeNumberOnlyDirective, NotificationsComponent, NotificationsService, ObjectToArrayPipe, ObjectToLabelsPipe, OnClickDirective, OptionLabeller, OptionerPipe, OptionsFormatter, PSDirective, PageCenterBodyComponent, PageLoader, PageLoaderService, PageModal, PageService, PageTemplateComponent, PageTemplateComponent as PageTemplateModule, PageToComponentComponent, PageToComponentDirective, PageToComponentComponent as PageToComponentModule, PageToComponentService, PaginatorComponent, PaginatorPipe, PhoneNumberComponent, PhoneNumberService, PointerMoveListenerDirective, prototypes as Prototypes, RefresherPipe, RemoveUsedOptionsPipe, RemoveUsedOptionsReactivePipe, ReplaceAllPipe, RequestLoggerInterceptorService, RequestTimeoutInterceptorService, ResizeGridPipe, ResponsiveValPipe, ResponsivenessDirective, RichTextEditorComponent, RichTextEditorRFComponent, RingRipplesComponent, RoundPipe, RouteItem, RowActionsComponent, RowActionsComponent as RowActionsModule, BaseEffect as SDKBaseEffect, BaseFacadeService as SDKBaseFacadeService, BaseService as SDKBaseService, SDKTranslateNoLoaderPipe, SDKTranslatePipe, SaverClass, SaverService, SecondsToTimePipe, SharedModule, SortPipe, SpinnerComponent, StorageClass, StrConcatenatorPipe, SvgIconComponent, SvgIconService, TableBaseComponent, TableCol, TableHttpsComponent, TableInputClassFunctionPipe, TableInputComponent, TableInputRowComponent, TablePipesModule, TablePlainComponent, TableService, TableToStringPipe, TextAreaModalComponent, TextAreaModalService, TextCase1Component, TextCase2Component, TextCase2ForObject, TextCaseInputComponent, TextCaseService, TextComponent, ToAnyArrayPipe, ToAnyPipe, ToggleInputFormComponent, TranslatePipeModule, TranslationService, TranslatorCaseComponent, TranslatorDirective, TrimPipe, TrimTextPipe, TyperPipe, UserActivity, UserActivityService, UtilityPipesModule, UtilityService, ValidationMessageComponent, ValidationMessageNgmodelComponent, ValidationMsg, Validator, ValueFormatterPipe, ValueOrXPipe, VerticalNavComponent, ViewFormButtonsComponent, ViewFormButtonsComponent as ViewFormButtonsModule, WatermarkComponent, WebUserAuthenticationService, WebUserForgotPasswordComponent, WebUserLoginComponent, WebUserResetPasswordComponent, WebcamMediaComponent, XOrYPipe, YearMonthTdRfComponent, _SharedModule, configForms, configPatterns, configValidationMessages, environment, pageErrorRouter, webUserAuthenticationGuard, webUserAuthenticationInterceptor };
|
|
19458
|
+
export { AddItemComponent, ApiService, AppRouteBase, AppRouteService, AppRouteState, AppService, ArraySplitter, AuthenticationInterceptorService, AutocompleteComponent, AutocompleteModule, AutocompleteService, AutocompleteTdRfComponent, BaseNativeEventListenerDirective, BlinkingBlocksComponent, BouncingBallComponent, Btn, BtnComponent, BtnLg, BtnLgComponent, BtnLinkComponent, BtnModule, BtnService, ButtonComponent, CETSInput, CacheService, CacheUpdaterService, CardComponent, CardComponent as CardModule, CodeTitleDescPipe, CommafyNumberDirective, ButtonComponent as ComponentsModule, Config, ConfirmDialogComponent, ConfirmDialogComponent as ConfirmDialogModule, Constant, CustomDatePipe, DEFAULT_TIMEOUT, DateInputComponent, Day, DayHourMinInputComponent, DebouncerService, DesktopClassDirective, DetailsBtnComponent, DetailsBtnComponent as DetailsBtnModule, DirectivesModule, DocumentsNameDisplayComponent, DocumentsNameDisplayComponent as DocumentsNameDisplayModule, DragDropFileUploadDirective, EETSPageBtnID, ELanguage, EMenuLocation, EMenuType, EPageType, ESubSystem, ESystem, ESystemBusLine, ETSCheckForUpdateService, ETSConfirmDialogService, ETSExtraPagesModule, ETSFKVP, ETSForms, ETSHandleUnrecoverableStateService, ETSKVP, ETSLogUpdateService, ETSLoggerModule, ETSMenuItem, ETSMenuItemDivider, ETSPageNotFoundComponent, ETSPromptUpdateService, ETSReactiveFormInputService, ETSResetModule, ETSResponsivenessDirectiveModule, ETSRobotModule, ETSServiceWorkerService, ETSStorageService, ETSThemeService, ETSTimeoutTesterModule, ETSVersionModule, ETSWindowSecurityService, EUA, EVFunctions, EValidationType, EditableTextCaseComponent, EditableTextCaseComponent as EditableTextCaseModule, SDKEnvironment as Environment, EqualChildrenDirective, ErrorMessagePipe, ErrorReporterService, ExportTableComponent, ExportTableComponent as ExportTableModule, FCInput, FadingBarsComponent, FadingCirclesComponent, FieldToLabelPipe, FieldsToDisplayComponent, FileUploadComponent, FilterArrayByStringPipe, FilterArrayPipe, FilterFormArrayControlPipe, FilterFormArrayGroupPipe, FilterOptions, FindItemComponent, FormErrorComponent, FormGeneratedValueComponent, FormGeneratorComponent, FormGeneratorComponent as FormGeneratorModule, FormGeneratorService, FormInvalidClassDirective, FormInvalidClassPipe, FormLinkComponent, FormLinkComponent as FormLinkModule, FormSchemaToTableColumnsPipe, FormTabHeadersComponent, FormTabHeadersComponent as FormTabHeadersModule, FormValuePipe, FunctionCaller, FunctionCaller1, FunctionCaller2, FunctionCaller3, GenderPipe, GetColFormattedEPipe, GetColFormattedPipe, GetHeadersPipe, GetRawFieldsPipe, GetValueLabel, GlobalErrorHandlerService, HasFormValuePipe, HasValuePipe, HideDesktopDirective, HideMobileDirective, HtmlerService, HttpListCaller, HttpListCaller1, HttpListCaller2, IdlerComponent, IdlerService, ImageLoaderDirective, ImageUpload, IndexCompLayoutComponent, InfoDialogComponent, InfoDialogModule, InfoDialogService, InfoIconComponent, InfoIconComponent as InfoIconModule, InputBasicComponent, InputClassPipe, InputComponent, inputs_component as InputComponents, InputControlComponent, InputFormatDirective, InputFormatDirectivesModule, InputFormatService, InputFormattersPipe, InputLabelComponent, InputModule, InputNGModelComponent, InputNGModelComponent as InputNGModelModule, InputPipesModule, InputService, InputTD_RFComponent, InputTableComponent, InputTableService, IntegerOnlyDirective, IsClonePage, IsShowPage, LabelComponent, LabelComponent as LabelModule, Lbl, ListOptionFinderPipe, LoaderComponent, LoaderComponent as LoaderModule, LoaderService, LocalCacheService, Log, LoggerComponent, LoggerInterceptorService, LoggerRoutingModule, LoggerService, MHrefDirective, MobileClassDirective, ModalBodyDirective, ModalComponent, ModalComponents, ModalFooterDirective, ModalFormComponent, ModalFormComponent as ModalFormModule, ModalHeaderComponent, ModalHeaderComponent as ModalHeaderModule, ModalComponent as ModalModule, MouseClickListenerDirective, MouseEnterListenerDirective, MouseLeaveListenerDirective, MrouterLinkirective, NELEventName, NarrationHistoryCompComponent, NativeEventListenerDirectives, NegativeNumberOnlyDirective, NotificationsComponent, NotificationsService, ObjectToArrayPipe, ObjectToLabelsPipe, OnClickDirective, OptionLabeller, OptionerPipe, OptionsFormatter, PSDirective, PageCenterBodyComponent, PageLoader, PageLoaderService, PageModal, PageService, PageTemplateComponent, PageTemplateComponent as PageTemplateModule, PageToComponentComponent, PageToComponentDirective, PageToComponentComponent as PageToComponentModule, PageToComponentService, PaginatorComponent, PaginatorPipe, PhoneNumberComponent, PhoneNumberService, PointerMoveListenerDirective, prototypes as Prototypes, RefresherPipe, RemoveUsedOptionsPipe, RemoveUsedOptionsReactivePipe, ReplaceAllPipe, RequestLoggerInterceptorService, RequestTimeoutInterceptorService, ResizeGridPipe, ResponsiveValPipe, ResponsivenessDirective, RichTextEditorComponent, RichTextEditorRFComponent, RingRipplesComponent, RoundPipe, RouteItem, RowActionsComponent, RowActionsComponent as RowActionsModule, BaseEffect as SDKBaseEffect, BaseFacadeService as SDKBaseFacadeService, BaseService as SDKBaseService, SDKTranslateNoLoaderPipe, SDKTranslatePipe, SDKTranslateSingleNoLoaderPipe, SDKTranslateSinglePipe, SaverClass, SaverService, SecondsToTimePipe, SharedModule, SortPipe, SpinnerComponent, StorageClass, StrConcatenatorPipe, SvgIconComponent, SvgIconService, TableBaseComponent, TableCol, TableHttpsComponent, TableInputClassFunctionPipe, TableInputComponent, TableInputRowComponent, TablePipesModule, TablePlainComponent, TableService, TableToStringPipe, TextAreaModalComponent, TextAreaModalService, TextCase1Component, TextCase2Component, TextCase2ForObject, TextCaseInputComponent, TextCaseService, TextComponent, ToAnyArrayPipe, ToAnyPipe, ToggleInputFormComponent, TranslatePipeModule, TranslationService, TranslatorCaseComponent, TranslatorDirective, TrimPipe, TrimTextPipe, TyperPipe, UserActivity, UserActivityService, UtilityPipesModule, UtilityService, ValidationMessageComponent, ValidationMessageNgmodelComponent, ValidationMsg, Validator, ValueFormatterPipe, ValueOrXPipe, VerticalNavComponent, ViewFormButtonsComponent, ViewFormButtonsComponent as ViewFormButtonsModule, WatermarkComponent, WebUserAuthenticationService, WebUserForgotPasswordComponent, WebUserLoginComponent, WebUserResetPasswordComponent, WebcamMediaComponent, XOrYPipe, YearMonthTdRfComponent, _SharedModule, configForms, configPatterns, configValidationMessages, environment, pageErrorRouter, webUserAuthenticationGuard, webUserAuthenticationInterceptor };
|
|
19409
19459
|
//# sourceMappingURL=ets-fe-ng-sdk.mjs.map
|