fabrikantencore 2.7.3 → 2.7.4
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/esm2022/src/app/modules/fabrikantencore/components/fab-filter-custom/fab-filter-custom.component.mjs +23 -28
- package/esm2022/src/app/modules/fabrikantencore/components/fab-filter-custom-base/fab-filter-custom-base.component.mjs +12 -0
- package/esm2022/src/app/modules/fabrikantencore/fabrikantencore.module.mjs +6 -30
- package/esm2022/src/app/modules/fabrikantencore/services/template-component.service.mjs +24 -21
- package/fesm2022/fabrikantencore.mjs +57 -72
- package/fesm2022/fabrikantencore.mjs.map +1 -1
- package/package.json +1 -1
- package/src/app/modules/fabrikantencore/components/fab-filter-custom/fab-filter-custom.component.d.ts +9 -12
- package/src/app/modules/fabrikantencore/components/fab-filter-custom-base/fab-filter-custom-base.component.d.ts +5 -0
- package/src/app/modules/fabrikantencore/fabrikantencore.module.d.ts +30 -30
- package/src/app/modules/fabrikantencore/services/template-component.service.d.ts +6 -4
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { InjectionToken, Injectable, Inject, Optional, Component, ViewEncapsulation, HostListener, Input, EventEmitter, Output, ViewChild, NgModule } from '@angular/core';
|
|
2
|
+
import { InjectionToken, Injectable, Inject, Optional, Component, ViewEncapsulation, HostListener, Input, EventEmitter, Output, ViewChild, ViewContainerRef, NgModule } from '@angular/core';
|
|
3
3
|
import * as i4 from '@angular/common';
|
|
4
4
|
import { CommonModule } from '@angular/common';
|
|
5
5
|
import * as i1$1 from '@angular/router';
|
|
@@ -17362,29 +17362,32 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.1", ngImpor
|
|
|
17362
17362
|
}] } });
|
|
17363
17363
|
|
|
17364
17364
|
class TemplateComponentService {
|
|
17365
|
-
|
|
17366
|
-
|
|
17367
|
-
|
|
17368
|
-
|
|
17369
|
-
|
|
17370
|
-
|
|
17371
|
-
|
|
17365
|
+
componentFactoryResolver;
|
|
17366
|
+
ComponentInstances = new Array();
|
|
17367
|
+
constructor(componentFactoryResolver) {
|
|
17368
|
+
this.componentFactoryResolver = componentFactoryResolver;
|
|
17369
|
+
}
|
|
17370
|
+
GetComponentFilterCustom(key) {
|
|
17371
|
+
for (var i = 0; i < this.ComponentInstances.length; i++) {
|
|
17372
|
+
if (this.ComponentInstances[i].Key == key) {
|
|
17373
|
+
return this.componentFactoryResolver.resolveComponentFactory(this.ComponentInstances[i].Component);
|
|
17372
17374
|
}
|
|
17373
17375
|
}
|
|
17374
|
-
|
|
17375
|
-
htmlinstance.Key = key;
|
|
17376
|
-
htmlinstance.HTML = html;
|
|
17377
|
-
this.HTMLInstances.push(htmlinstance);
|
|
17376
|
+
return null;
|
|
17378
17377
|
}
|
|
17379
|
-
|
|
17380
|
-
for (var i = 0; i < this.
|
|
17381
|
-
if (this.
|
|
17382
|
-
|
|
17378
|
+
SetComponentFilterCustom(key, component) {
|
|
17379
|
+
for (var i = 0; i < this.ComponentInstances.length; i++) {
|
|
17380
|
+
if (this.ComponentInstances[i].Key == key) {
|
|
17381
|
+
this.ComponentInstances[i].Component = component;
|
|
17382
|
+
return;
|
|
17383
17383
|
}
|
|
17384
17384
|
}
|
|
17385
|
-
|
|
17385
|
+
var componentinstance = new ComponentInstance();
|
|
17386
|
+
componentinstance.Key = key;
|
|
17387
|
+
componentinstance.Component = component;
|
|
17388
|
+
this.ComponentInstances.push(componentinstance);
|
|
17386
17389
|
}
|
|
17387
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.1", ngImport: i0, type: TemplateComponentService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
17390
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.1", ngImport: i0, type: TemplateComponentService, deps: [{ token: i0.ComponentFactoryResolver }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
17388
17391
|
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.0.1", ngImport: i0, type: TemplateComponentService, providedIn: 'root' });
|
|
17389
17392
|
}
|
|
17390
17393
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.1", ngImport: i0, type: TemplateComponentService, decorators: [{
|
|
@@ -17392,17 +17395,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.1", ngImpor
|
|
|
17392
17395
|
args: [{
|
|
17393
17396
|
providedIn: 'root'
|
|
17394
17397
|
}]
|
|
17395
|
-
}], ctorParameters: function () { return []; } });
|
|
17396
|
-
class
|
|
17398
|
+
}], ctorParameters: function () { return [{ type: i0.ComponentFactoryResolver }]; } });
|
|
17399
|
+
class ComponentInstance {
|
|
17397
17400
|
Key;
|
|
17398
|
-
|
|
17401
|
+
Component;
|
|
17399
17402
|
}
|
|
17400
17403
|
|
|
17401
17404
|
class FabFilterCustomComponent {
|
|
17402
|
-
FabrikantenService;
|
|
17403
|
-
TranslateService;
|
|
17404
17405
|
TemplateComponentService;
|
|
17405
|
-
ChangeDetectorRef;
|
|
17406
17406
|
_filter;
|
|
17407
17407
|
get filter() {
|
|
17408
17408
|
return this._filter;
|
|
@@ -17410,34 +17410,35 @@ class FabFilterCustomComponent {
|
|
|
17410
17410
|
set filter(value) {
|
|
17411
17411
|
this._filter = value;
|
|
17412
17412
|
}
|
|
17413
|
-
|
|
17414
|
-
|
|
17415
|
-
|
|
17416
|
-
|
|
17417
|
-
|
|
17418
|
-
}
|
|
17419
|
-
constructor(FabrikantenService, TranslateService, TemplateComponentService, ChangeDetectorRef) {
|
|
17420
|
-
this.FabrikantenService = FabrikantenService;
|
|
17421
|
-
this.TranslateService = TranslateService;
|
|
17413
|
+
componentContainer;
|
|
17414
|
+
componentRef;
|
|
17415
|
+
ComponentInjected = false;
|
|
17416
|
+
ComponentName = "";
|
|
17417
|
+
constructor(TemplateComponentService) {
|
|
17422
17418
|
this.TemplateComponentService = TemplateComponentService;
|
|
17423
|
-
this.ChangeDetectorRef = ChangeDetectorRef;
|
|
17424
17419
|
}
|
|
17425
|
-
|
|
17426
|
-
|
|
17427
|
-
|
|
17420
|
+
ngAfterViewInit() {
|
|
17421
|
+
this.ComponentName = "customfilter-" + this.filter.id;
|
|
17422
|
+
var component = this.TemplateComponentService.GetComponentFilterCustom(this.ComponentName);
|
|
17423
|
+
if (component != null) {
|
|
17424
|
+
this.componentContainer.createComponent(component);
|
|
17425
|
+
this.ComponentInjected = true;
|
|
17428
17426
|
}
|
|
17429
17427
|
else {
|
|
17430
|
-
|
|
17428
|
+
console.log("component is null");
|
|
17431
17429
|
}
|
|
17432
17430
|
}
|
|
17433
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.1", ngImport: i0, type: FabFilterCustomComponent, deps: [{ token:
|
|
17434
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.0.1", type: FabFilterCustomComponent, selector: "app-fab-filter-custom", inputs: { filter: "filter" }, ngImport: i0, template: "<
|
|
17431
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.1", ngImport: i0, type: FabFilterCustomComponent, deps: [{ token: TemplateComponentService }], target: i0.ɵɵFactoryTarget.Component });
|
|
17432
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.0.1", type: FabFilterCustomComponent, selector: "app-fab-filter-custom", inputs: { filter: "filter" }, viewQueries: [{ propertyName: "componentContainer", first: true, predicate: ["componentContainer"], descendants: true, read: ViewContainerRef }], ngImport: i0, template: "<p *ngIf=\"!ComponentInjected\">\n no component injected for '{{ ComponentName }}'\n</p>\n<ng-container #componentContainer></ng-container>\n", styles: [""], dependencies: [{ kind: "directive", type: i4.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
|
|
17435
17433
|
}
|
|
17436
17434
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.1", ngImport: i0, type: FabFilterCustomComponent, decorators: [{
|
|
17437
17435
|
type: Component,
|
|
17438
|
-
args: [{ selector: 'app-fab-filter-custom', template: "<
|
|
17439
|
-
}], ctorParameters: function () { return [{ type:
|
|
17436
|
+
args: [{ selector: 'app-fab-filter-custom', template: "<p *ngIf=\"!ComponentInjected\">\n no component injected for '{{ ComponentName }}'\n</p>\n<ng-container #componentContainer></ng-container>\n" }]
|
|
17437
|
+
}], ctorParameters: function () { return [{ type: TemplateComponentService }]; }, propDecorators: { filter: [{
|
|
17440
17438
|
type: Input
|
|
17439
|
+
}], componentContainer: [{
|
|
17440
|
+
type: ViewChild,
|
|
17441
|
+
args: ['componentContainer', { read: ViewContainerRef }]
|
|
17441
17442
|
}] } });
|
|
17442
17443
|
|
|
17443
17444
|
class FabInputComponent {
|
|
@@ -18922,6 +18923,15 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.1", ngImpor
|
|
|
18922
18923
|
args: [{ selector: 'app-fab-category-navigator', template: "<div *ngIf=\"!Loading\">\r\n <div class=\"nav-item\" (click)=\"Home()\" [ngClass]=\"{'active': IsHomeActive()}\">Home</div>\r\n <ng-container *ngFor=\"let category of this.CategoriesViewModel.categories\">\r\n <div class=\"nav-item\" (click)=\"SelectCategory(category)\" [ngClass]=\"{'active': IsCategoryActive(category)}\">{{ TranslateService.GetActiveValue(TranslationCategory.Category, TranslationSubCategory.Name, category.id) }}</div>\r\n </ng-container>\r\n</div>\r\n", styles: [".active{font-weight:700}\n"] }]
|
|
18923
18924
|
}], ctorParameters: function () { return [{ type: CategoriesApiClient }, { type: i0.ChangeDetectorRef }, { type: FabrikantenService }, { type: TranslateService }]; } });
|
|
18924
18925
|
|
|
18926
|
+
class FabFilterCustomBaseComponent {
|
|
18927
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.1", ngImport: i0, type: FabFilterCustomBaseComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
18928
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.0.1", type: FabFilterCustomBaseComponent, selector: "app-fab-filter-custom-base", ngImport: i0, template: "<p>no component injected!</p>\n", styles: [""] });
|
|
18929
|
+
}
|
|
18930
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.1", ngImport: i0, type: FabFilterCustomBaseComponent, decorators: [{
|
|
18931
|
+
type: Component,
|
|
18932
|
+
args: [{ selector: 'app-fab-filter-custom-base', template: "<p>no component injected!</p>\n" }]
|
|
18933
|
+
}] });
|
|
18934
|
+
|
|
18925
18935
|
const routes = [
|
|
18926
18936
|
{
|
|
18927
18937
|
path: 'beheer', children: [
|
|
@@ -19033,7 +19043,8 @@ class FabrikantenCoreModule {
|
|
|
19033
19043
|
BeheerFilterComponent,
|
|
19034
19044
|
BeheerRangeinputComponent,
|
|
19035
19045
|
FabFilterDisplayValueComponent,
|
|
19036
|
-
FabFilterCustomComponent
|
|
19046
|
+
FabFilterCustomComponent,
|
|
19047
|
+
FabFilterCustomBaseComponent], imports: [CommonModule,
|
|
19037
19048
|
HttpClientModule,
|
|
19038
19049
|
AngularEditorModule,
|
|
19039
19050
|
MatLegacyInputModule,
|
|
@@ -19239,7 +19250,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.1", ngImpor
|
|
|
19239
19250
|
BeheerFilterComponent,
|
|
19240
19251
|
BeheerRangeinputComponent,
|
|
19241
19252
|
FabFilterDisplayValueComponent,
|
|
19242
|
-
FabFilterCustomComponent
|
|
19253
|
+
FabFilterCustomComponent,
|
|
19254
|
+
FabFilterCustomBaseComponent
|
|
19243
19255
|
],
|
|
19244
19256
|
providers: [
|
|
19245
19257
|
NavigateService,
|
|
@@ -19283,37 +19295,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.1", ngImpor
|
|
|
19283
19295
|
]
|
|
19284
19296
|
}]
|
|
19285
19297
|
}] });
|
|
19286
|
-
function CustomModule(annotations) {
|
|
19287
|
-
return function (target) {
|
|
19288
|
-
let parentTarget = Object.getPrototypeOf(target.prototype).constructor;
|
|
19289
|
-
let parentAnnotations = Reflect.getMetadata("annotations", parentTarget);
|
|
19290
|
-
let parentAnnotation = parentAnnotations[0];
|
|
19291
|
-
Object.keys(parentAnnotation).forEach(key => {
|
|
19292
|
-
if (parentAnnotation[key] != null) {
|
|
19293
|
-
if (typeof annotations[key] === "function") {
|
|
19294
|
-
annotations[key] = annotations[key].call(this, parentAnnotation[key]);
|
|
19295
|
-
}
|
|
19296
|
-
else if (typeof Array.isArray(annotations[key])) {
|
|
19297
|
-
let mergedArrayItems = [];
|
|
19298
|
-
for (let item of parentAnnotation[key]) {
|
|
19299
|
-
let childItem = annotations[key].find(i => i.name == item.name);
|
|
19300
|
-
mergedArrayItems.push(childItem ? childItem : item);
|
|
19301
|
-
}
|
|
19302
|
-
annotations[key] = mergedArrayItems;
|
|
19303
|
-
}
|
|
19304
|
-
else if (annotations[key] == null) { // force override in annotation base
|
|
19305
|
-
annotations[key] = parentAnnotation[key];
|
|
19306
|
-
}
|
|
19307
|
-
}
|
|
19308
|
-
});
|
|
19309
|
-
let metadata = new NgModule(annotations);
|
|
19310
|
-
Reflect.defineMetadata("annotations", [metadata], target);
|
|
19311
|
-
};
|
|
19312
|
-
}
|
|
19313
19298
|
|
|
19314
19299
|
/**
|
|
19315
19300
|
* Generated bundle index. Do not edit.
|
|
19316
19301
|
*/
|
|
19317
19302
|
|
|
19318
|
-
export { API_BASE_URL, ApiException, BCBEBODOViewModel, BCBEBOFilterOptionViewModel, BCBEBOViewModel, BCBEigenschapBereikViewModel, BCBEigenschapLocation, BCBEigenschapOptieCategoryViewModel, BCBEigenschapOptieFilterOptionViewModel, BCBEigenschapOptieViewModel, BCBEigenschapRangeInputModel, BCBEigenschapToebehorenViewModel, BCBEigenschapViewModel, BCBImportEigenschap, BCBImportOpbouw, BCBImportOpenRequest, BCBImportOpenResponse, BCBImportOpenTempDORequest, BCBImportOpenTempRequest, BCBImportProductRequest, BCBImportProductResponse, BCBImportSetValueViewModel, BCBImportSetViewModel, BCBImportSetsViewModel, BCBLinkRequestModel, BCBLinkResponseModel, BCBOpbouwViewModel, BCBProductViewModel, BeheerLanguageViewModel, BeheerLanguagesCategoryViewModel, BeheerLanguagesEntryViewModel, BeheerLanguagesFilterViewModel, BeheerLanguagesKeyViewModel, BeheerLanguagesSubCategoryViewModel, BeheerLanguagesViewModel, CategoriesApiClient, CategoriesOverviewCategorieViewModel, CategoriesOverviewViewModel, CategoriesViewModel, CategoryViewModel, ChangeImportSetRequest, ChangeOrderInputsRequest, ClearCategoryRequest, ConnectBCBEBODORequest, ConnectBCBEigenschapRangeInputRequest, ConnectBCBEigenschapRangeInputResponse, ConnectBCBEigenschapRequest, ConnectEBODOCategoryRequest, ConnectEBODOCategoryResponse, ConnectEigenschapOptieRequest, ConnectOpbouwRequest, CreateCategoryRequest, CreateCategoryResponse, CreateExportRequest, CreateExportResponse, CreateFilterOptionRequest, CreateFilterOptionResponse, CreateFilterRequest, CreateFilterResponse, CreateLanguageRequest, CreateUserModel,
|
|
19303
|
+
export { API_BASE_URL, ApiException, BCBEBODOViewModel, BCBEBOFilterOptionViewModel, BCBEBOViewModel, BCBEigenschapBereikViewModel, BCBEigenschapLocation, BCBEigenschapOptieCategoryViewModel, BCBEigenschapOptieFilterOptionViewModel, BCBEigenschapOptieViewModel, BCBEigenschapRangeInputModel, BCBEigenschapToebehorenViewModel, BCBEigenschapViewModel, BCBImportEigenschap, BCBImportOpbouw, BCBImportOpenRequest, BCBImportOpenResponse, BCBImportOpenTempDORequest, BCBImportOpenTempRequest, BCBImportProductRequest, BCBImportProductResponse, BCBImportSetValueViewModel, BCBImportSetViewModel, BCBImportSetsViewModel, BCBLinkRequestModel, BCBLinkResponseModel, BCBOpbouwViewModel, BCBProductViewModel, BeheerLanguageViewModel, BeheerLanguagesCategoryViewModel, BeheerLanguagesEntryViewModel, BeheerLanguagesFilterViewModel, BeheerLanguagesKeyViewModel, BeheerLanguagesSubCategoryViewModel, BeheerLanguagesViewModel, CategoriesApiClient, CategoriesOverviewCategorieViewModel, CategoriesOverviewViewModel, CategoriesViewModel, CategoryViewModel, ChangeImportSetRequest, ChangeOrderInputsRequest, ClearCategoryRequest, ConnectBCBEBODORequest, ConnectBCBEigenschapRangeInputRequest, ConnectBCBEigenschapRangeInputResponse, ConnectBCBEigenschapRequest, ConnectEBODOCategoryRequest, ConnectEBODOCategoryResponse, ConnectEigenschapOptieRequest, ConnectOpbouwRequest, CreateCategoryRequest, CreateCategoryResponse, CreateExportRequest, CreateExportResponse, CreateFilterOptionRequest, CreateFilterOptionResponse, CreateFilterRequest, CreateFilterResponse, CreateLanguageRequest, CreateUserModel, DeeplinkFilterViewModel, DeeplinkProductViewModel, DeeplinkRequest, DeeplinkViewModel, DeleteUserModel, DynamicDisplayValueViewModel, DynamicFilterViewModel, DynamicFiltersViewModel, DynamicRangeInputViewModel, EBOConnectRequestModel, EBOKoppelApiClient, EBOKoppelEBOCategoryViewModel, EBOKoppelEBOFilterOptionViewModel, EBOKoppelEBOViewModel, EBOKoppelNaamViewModel, EBOKoppelTypeViewModel, EBOKoppelViewModel, EditUserModel, FabActionmenuComponent, FabCategoryNavigatorComponent, FabFilterCustomComponent, FabFiltersComponent, FabFiltersInputComponent, FabLoaderComponent, FabProductBestekComponent, FabSelectBcbproductComponent, Fabrikanten3DRequestModel, Fabrikanten3DViewModel, FabrikantenApiClient, FabrikantenBCBProductAfbeeldingViewModel, FabrikantenBCBProductToebehorenViewModel, FabrikantenBCBProductViewModel, FabrikantenBestekRequestModel, FabrikantenBestekViewModel, FabrikantenCategoryLayerViewModel, FabrikantenCategoryViewModel, FabrikantenCoreModule, FabrikantenFileRequestModel, FabrikantenFileViewModel, FabrikantenFilterCategoryViewModel, FabrikantenFilterDescriptionViewModel, FabrikantenFilterOptionViewModel, FabrikantenFilterViewModel, FabrikantenInputViewModel, FabrikantenProductViewModel, FabrikantenRangeInputViewModel, FabrikantenRequestModel, FabrikantenSVGRequestModel, FabrikantenSVGViewModel, FabrikantenService, FabrikantenSettingsViewModel, FabrikantenTextureBaseViewModel, FabrikantenTextureRequestModel, FabrikantenTextureViewModel, FabrikantenViewModel, FilterOptionFilterOptionRequiredViewModel, FilterOptionRequiredType, FilterOptionRequiredViewModel, FilterOptionViewModel, FilterRequiredViewModel, FilterType, FilterViewModel, FiltersApiClient, FiltersViewModel, GetProductRequest, GetProductsViewModel, IgnoreBCBEigenschapRequest, IgnoreOpbouwRequest, ImportApiClient, InputViewModel, InputsViewModel, KoppelProductsRequestModel, LanguageViewModel, LanguagesViewModel, LoginIPResponseModel, LoginRequestModel, LoginResponseModel, NewProductRequestModel, NewProductResponseModel, ProductViewModel, ProductViewModel2, ProductsApiClient, ProductsViewModel, ProductsViewModelRequest, ProjectSettingApiClient, ProjectSettingPipelineStepViewModel, ProjectSettingType, ProjectSettingViewModel, ProjectSettingsCategoryViewModel, ProjectSettingsViewModel, REST3DViewModel, RESTApiClient, RESTBestekViewModel, RESTFileRequestModel, RESTFileViewModel, RESTParameterViewModel, RESTRequestModel, RESTSVGRequestModel, RESTSVGViewModel, RangeInputFilterOptionRequiredViewModel, RangeInputType, RangeInputViewModel, RangeInputsViewModel, ReadExportRequest, RemoveFilterOptionRequest, RemoveProductSelectionRequest, ResetAllCategoriesRequest, ResetAllFiltersRequest, ResetCategoryLayerRequest, ResetFilterRequest, ResetImportRequestModel, SVGService, SaveFilterOptionRequest, SaveFilterRequest, SaveImportSetRequest, SaveProductViewModel, SaveRangeInputRequest, SearchProductsApiClient, SearchProductsRequestModel, SearchProductsResponseModel, SecurityApiClient, SelectBCBProductRequest, SelectCategoryRequest, SelectColourRequest, SelectFilterOptionRequest, SelectProductRequest, SetFilterOptionRequiredRequest, SetFilterRequiredRequest, SetProjectSettingRequestModel, SetProjectSettingResponseModel, SetRangeInputRequest, SortFilterRequest, TemplateComponentService, TranslateApiClient, TranslateKeyCategoryViewModel, TranslateKeySubCategoryViewModel, TranslateKeyViewModel, TranslateService, TranslationCategory, TranslationSubCategory, UserResponseModel, UserRole, UserViewModel, UsersViewModel, WizardEBODOViewModel, WizardEBOViewModel };
|
|
19319
19304
|
//# sourceMappingURL=fabrikantencore.mjs.map
|