fabrikantencore 2.3.20 → 2.4.3
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/esm2020/src/app/modules/fabrikantencore/beheer/components/beheer-translate/beheer-translate.component.mjs +3 -3
- package/esm2020/src/app/modules/fabrikantencore/components/fab-actionmenu/fab-actionmenu.component.mjs +3 -3
- package/esm2020/src/app/modules/fabrikantencore/components/fab-breadcrumb/fab-breadcrumb.component.mjs +3 -3
- package/esm2020/src/app/modules/fabrikantencore/components/fab-categories/fab-categories.component.mjs +1 -2
- package/esm2020/src/app/modules/fabrikantencore/components/fab-filter-colour/fab-filter-colour-dialog/fab-filter-colour-dialog.component.mjs +5 -5
- package/esm2020/src/app/modules/fabrikantencore/components/fab-filters/fab-filters.component.mjs +1 -2
- package/esm2020/src/app/modules/fabrikantencore/components/fab-header/fab-header.component.mjs +3 -4
- package/esm2020/src/app/modules/fabrikantencore/components/fab-language-select/fab-language-select.component.mjs +1 -2
- package/esm2020/src/app/modules/fabrikantencore/components/fab-product/fab-product.component.mjs +2 -3
- package/esm2020/src/app/modules/fabrikantencore/components/fab-product-select/fab-product-select.component.mjs +1 -2
- package/esm2020/src/app/modules/fabrikantencore/components/fab-product-tile/fab-product-tile.component.mjs +2 -2
- package/esm2020/src/app/modules/fabrikantencore/components/fab-start/fab-start.component.mjs +1 -2
- package/esm2020/src/app/modules/fabrikantencore/services/fabrikanten.service.mjs +69 -26
- package/esm2020/src/app/modules/fabrikantencore/services/navigate.service.mjs +15 -13
- package/esm2020/src/app/modules/fabrikantencore/services/photo.service.mjs +2 -2
- package/esm2020/src/app/modules/fabrikantencore/services/translate.service.mjs +5 -2
- package/esm2020/src/app/modules/fabrikantencore/swagger/SwaggerClient.mjs +567 -21
- package/fesm2015/fabrikantencore.mjs +668 -79
- package/fesm2015/fabrikantencore.mjs.map +1 -1
- package/fesm2020/fabrikantencore.mjs +666 -80
- package/fesm2020/fabrikantencore.mjs.map +1 -1
- package/package.json +1 -1
- package/src/app/modules/fabrikantencore/services/fabrikanten.service.d.ts +7 -3
- package/src/app/modules/fabrikantencore/services/translate.service.d.ts +3 -2
- package/src/app/modules/fabrikantencore/swagger/SwaggerClient.d.ts +150 -20
|
@@ -516,6 +516,56 @@ class FabrikantenApiClient {
|
|
|
516
516
|
}
|
|
517
517
|
return of(null);
|
|
518
518
|
}
|
|
519
|
+
getFabrikantenSettingsViewModel() {
|
|
520
|
+
let url_ = this.baseUrl + "/api/fabrikanten/getfabrikantensettingsviewmodel";
|
|
521
|
+
url_ = url_.replace(/[?&]$/, "");
|
|
522
|
+
let options_ = {
|
|
523
|
+
observe: "response",
|
|
524
|
+
responseType: "blob",
|
|
525
|
+
headers: new HttpHeaders({
|
|
526
|
+
"Accept": "application/json"
|
|
527
|
+
})
|
|
528
|
+
};
|
|
529
|
+
return this.http.request("post", url_, options_).pipe(mergeMap((response_) => {
|
|
530
|
+
return this.processGetFabrikantenSettingsViewModel(response_);
|
|
531
|
+
})).pipe(catchError((response_) => {
|
|
532
|
+
if (response_ instanceof HttpResponseBase) {
|
|
533
|
+
try {
|
|
534
|
+
return this.processGetFabrikantenSettingsViewModel(response_);
|
|
535
|
+
}
|
|
536
|
+
catch (e) {
|
|
537
|
+
return throwError(e);
|
|
538
|
+
}
|
|
539
|
+
}
|
|
540
|
+
else
|
|
541
|
+
return throwError(response_);
|
|
542
|
+
}));
|
|
543
|
+
}
|
|
544
|
+
processGetFabrikantenSettingsViewModel(response) {
|
|
545
|
+
const status = response.status;
|
|
546
|
+
const responseBlob = response instanceof HttpResponse ? response.body :
|
|
547
|
+
response.error instanceof Blob ? response.error : undefined;
|
|
548
|
+
let _headers = {};
|
|
549
|
+
if (response.headers) {
|
|
550
|
+
for (let key of response.headers.keys()) {
|
|
551
|
+
_headers[key] = response.headers.get(key);
|
|
552
|
+
}
|
|
553
|
+
}
|
|
554
|
+
if (status === 200) {
|
|
555
|
+
return blobToText(responseBlob).pipe(mergeMap((_responseText) => {
|
|
556
|
+
let result200 = null;
|
|
557
|
+
let resultData200 = _responseText === "" ? null : JSON.parse(_responseText, this.jsonParseReviver);
|
|
558
|
+
result200 = FabrikantenSettingsViewModel.fromJS(resultData200);
|
|
559
|
+
return of(result200);
|
|
560
|
+
}));
|
|
561
|
+
}
|
|
562
|
+
else if (status !== 200 && status !== 204) {
|
|
563
|
+
return blobToText(responseBlob).pipe(mergeMap((_responseText) => {
|
|
564
|
+
return throwException("An unexpected server error occurred.", status, _responseText, _headers);
|
|
565
|
+
}));
|
|
566
|
+
}
|
|
567
|
+
return of(null);
|
|
568
|
+
}
|
|
519
569
|
getFabrikantenBestekViewModel(pFabrikantenBestekRequestModel) {
|
|
520
570
|
let url_ = this.baseUrl + "/api/fabrikanten/getfabrikantenbestekviewmodel";
|
|
521
571
|
url_ = url_.replace(/[?&]$/, "");
|
|
@@ -3528,6 +3578,240 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImpor
|
|
|
3528
3578
|
args: [API_BASE_URL]
|
|
3529
3579
|
}] }];
|
|
3530
3580
|
} });
|
|
3581
|
+
class RESTApiClient {
|
|
3582
|
+
constructor(http, baseUrl) {
|
|
3583
|
+
this.jsonParseReviver = undefined;
|
|
3584
|
+
this.http = http;
|
|
3585
|
+
this.baseUrl = baseUrl !== undefined && baseUrl !== null ? baseUrl : "";
|
|
3586
|
+
}
|
|
3587
|
+
get3DViewModel(pRESTRequestModel) {
|
|
3588
|
+
let url_ = this.baseUrl + "/api/rest/get3dviewmodel";
|
|
3589
|
+
url_ = url_.replace(/[?&]$/, "");
|
|
3590
|
+
const content_ = JSON.stringify(pRESTRequestModel);
|
|
3591
|
+
let options_ = {
|
|
3592
|
+
body: content_,
|
|
3593
|
+
observe: "response",
|
|
3594
|
+
responseType: "blob",
|
|
3595
|
+
headers: new HttpHeaders({
|
|
3596
|
+
"Content-Type": "application/json",
|
|
3597
|
+
"Accept": "application/json"
|
|
3598
|
+
})
|
|
3599
|
+
};
|
|
3600
|
+
return this.http.request("post", url_, options_).pipe(mergeMap((response_) => {
|
|
3601
|
+
return this.processGet3DViewModel(response_);
|
|
3602
|
+
})).pipe(catchError((response_) => {
|
|
3603
|
+
if (response_ instanceof HttpResponseBase) {
|
|
3604
|
+
try {
|
|
3605
|
+
return this.processGet3DViewModel(response_);
|
|
3606
|
+
}
|
|
3607
|
+
catch (e) {
|
|
3608
|
+
return throwError(e);
|
|
3609
|
+
}
|
|
3610
|
+
}
|
|
3611
|
+
else
|
|
3612
|
+
return throwError(response_);
|
|
3613
|
+
}));
|
|
3614
|
+
}
|
|
3615
|
+
processGet3DViewModel(response) {
|
|
3616
|
+
const status = response.status;
|
|
3617
|
+
const responseBlob = response instanceof HttpResponse ? response.body :
|
|
3618
|
+
response.error instanceof Blob ? response.error : undefined;
|
|
3619
|
+
let _headers = {};
|
|
3620
|
+
if (response.headers) {
|
|
3621
|
+
for (let key of response.headers.keys()) {
|
|
3622
|
+
_headers[key] = response.headers.get(key);
|
|
3623
|
+
}
|
|
3624
|
+
}
|
|
3625
|
+
if (status === 200) {
|
|
3626
|
+
return blobToText(responseBlob).pipe(mergeMap((_responseText) => {
|
|
3627
|
+
let result200 = null;
|
|
3628
|
+
let resultData200 = _responseText === "" ? null : JSON.parse(_responseText, this.jsonParseReviver);
|
|
3629
|
+
result200 = REST3DViewModel.fromJS(resultData200);
|
|
3630
|
+
return of(result200);
|
|
3631
|
+
}));
|
|
3632
|
+
}
|
|
3633
|
+
else if (status !== 200 && status !== 204) {
|
|
3634
|
+
return blobToText(responseBlob).pipe(mergeMap((_responseText) => {
|
|
3635
|
+
return throwException("An unexpected server error occurred.", status, _responseText, _headers);
|
|
3636
|
+
}));
|
|
3637
|
+
}
|
|
3638
|
+
return of(null);
|
|
3639
|
+
}
|
|
3640
|
+
getSVGViewModel(pRESTSVGRequestModel) {
|
|
3641
|
+
let url_ = this.baseUrl + "/api/rest/getsvgviewmodel";
|
|
3642
|
+
url_ = url_.replace(/[?&]$/, "");
|
|
3643
|
+
const content_ = JSON.stringify(pRESTSVGRequestModel);
|
|
3644
|
+
let options_ = {
|
|
3645
|
+
body: content_,
|
|
3646
|
+
observe: "response",
|
|
3647
|
+
responseType: "blob",
|
|
3648
|
+
headers: new HttpHeaders({
|
|
3649
|
+
"Content-Type": "application/json",
|
|
3650
|
+
"Accept": "application/json"
|
|
3651
|
+
})
|
|
3652
|
+
};
|
|
3653
|
+
return this.http.request("post", url_, options_).pipe(mergeMap((response_) => {
|
|
3654
|
+
return this.processGetSVGViewModel(response_);
|
|
3655
|
+
})).pipe(catchError((response_) => {
|
|
3656
|
+
if (response_ instanceof HttpResponseBase) {
|
|
3657
|
+
try {
|
|
3658
|
+
return this.processGetSVGViewModel(response_);
|
|
3659
|
+
}
|
|
3660
|
+
catch (e) {
|
|
3661
|
+
return throwError(e);
|
|
3662
|
+
}
|
|
3663
|
+
}
|
|
3664
|
+
else
|
|
3665
|
+
return throwError(response_);
|
|
3666
|
+
}));
|
|
3667
|
+
}
|
|
3668
|
+
processGetSVGViewModel(response) {
|
|
3669
|
+
const status = response.status;
|
|
3670
|
+
const responseBlob = response instanceof HttpResponse ? response.body :
|
|
3671
|
+
response.error instanceof Blob ? response.error : undefined;
|
|
3672
|
+
let _headers = {};
|
|
3673
|
+
if (response.headers) {
|
|
3674
|
+
for (let key of response.headers.keys()) {
|
|
3675
|
+
_headers[key] = response.headers.get(key);
|
|
3676
|
+
}
|
|
3677
|
+
}
|
|
3678
|
+
if (status === 200) {
|
|
3679
|
+
return blobToText(responseBlob).pipe(mergeMap((_responseText) => {
|
|
3680
|
+
let result200 = null;
|
|
3681
|
+
let resultData200 = _responseText === "" ? null : JSON.parse(_responseText, this.jsonParseReviver);
|
|
3682
|
+
result200 = RESTSVGViewModel.fromJS(resultData200);
|
|
3683
|
+
return of(result200);
|
|
3684
|
+
}));
|
|
3685
|
+
}
|
|
3686
|
+
else if (status !== 200 && status !== 204) {
|
|
3687
|
+
return blobToText(responseBlob).pipe(mergeMap((_responseText) => {
|
|
3688
|
+
return throwException("An unexpected server error occurred.", status, _responseText, _headers);
|
|
3689
|
+
}));
|
|
3690
|
+
}
|
|
3691
|
+
return of(null);
|
|
3692
|
+
}
|
|
3693
|
+
getBestekViewModel(pRESTRequestModel) {
|
|
3694
|
+
let url_ = this.baseUrl + "/api/rest/getbestekviewmodel";
|
|
3695
|
+
url_ = url_.replace(/[?&]$/, "");
|
|
3696
|
+
const content_ = JSON.stringify(pRESTRequestModel);
|
|
3697
|
+
let options_ = {
|
|
3698
|
+
body: content_,
|
|
3699
|
+
observe: "response",
|
|
3700
|
+
responseType: "blob",
|
|
3701
|
+
headers: new HttpHeaders({
|
|
3702
|
+
"Content-Type": "application/json",
|
|
3703
|
+
"Accept": "application/json"
|
|
3704
|
+
})
|
|
3705
|
+
};
|
|
3706
|
+
return this.http.request("post", url_, options_).pipe(mergeMap((response_) => {
|
|
3707
|
+
return this.processGetBestekViewModel(response_);
|
|
3708
|
+
})).pipe(catchError((response_) => {
|
|
3709
|
+
if (response_ instanceof HttpResponseBase) {
|
|
3710
|
+
try {
|
|
3711
|
+
return this.processGetBestekViewModel(response_);
|
|
3712
|
+
}
|
|
3713
|
+
catch (e) {
|
|
3714
|
+
return throwError(e);
|
|
3715
|
+
}
|
|
3716
|
+
}
|
|
3717
|
+
else
|
|
3718
|
+
return throwError(response_);
|
|
3719
|
+
}));
|
|
3720
|
+
}
|
|
3721
|
+
processGetBestekViewModel(response) {
|
|
3722
|
+
const status = response.status;
|
|
3723
|
+
const responseBlob = response instanceof HttpResponse ? response.body :
|
|
3724
|
+
response.error instanceof Blob ? response.error : undefined;
|
|
3725
|
+
let _headers = {};
|
|
3726
|
+
if (response.headers) {
|
|
3727
|
+
for (let key of response.headers.keys()) {
|
|
3728
|
+
_headers[key] = response.headers.get(key);
|
|
3729
|
+
}
|
|
3730
|
+
}
|
|
3731
|
+
if (status === 200) {
|
|
3732
|
+
return blobToText(responseBlob).pipe(mergeMap((_responseText) => {
|
|
3733
|
+
let result200 = null;
|
|
3734
|
+
let resultData200 = _responseText === "" ? null : JSON.parse(_responseText, this.jsonParseReviver);
|
|
3735
|
+
result200 = RESTBestekViewModel.fromJS(resultData200);
|
|
3736
|
+
return of(result200);
|
|
3737
|
+
}));
|
|
3738
|
+
}
|
|
3739
|
+
else if (status !== 200 && status !== 204) {
|
|
3740
|
+
return blobToText(responseBlob).pipe(mergeMap((_responseText) => {
|
|
3741
|
+
return throwException("An unexpected server error occurred.", status, _responseText, _headers);
|
|
3742
|
+
}));
|
|
3743
|
+
}
|
|
3744
|
+
return of(null);
|
|
3745
|
+
}
|
|
3746
|
+
getFileViewModel(pRESTFileRequestModel) {
|
|
3747
|
+
let url_ = this.baseUrl + "/api/rest/getfileviewmodel";
|
|
3748
|
+
url_ = url_.replace(/[?&]$/, "");
|
|
3749
|
+
const content_ = JSON.stringify(pRESTFileRequestModel);
|
|
3750
|
+
let options_ = {
|
|
3751
|
+
body: content_,
|
|
3752
|
+
observe: "response",
|
|
3753
|
+
responseType: "blob",
|
|
3754
|
+
headers: new HttpHeaders({
|
|
3755
|
+
"Content-Type": "application/json",
|
|
3756
|
+
"Accept": "application/json"
|
|
3757
|
+
})
|
|
3758
|
+
};
|
|
3759
|
+
return this.http.request("post", url_, options_).pipe(mergeMap((response_) => {
|
|
3760
|
+
return this.processGetFileViewModel(response_);
|
|
3761
|
+
})).pipe(catchError((response_) => {
|
|
3762
|
+
if (response_ instanceof HttpResponseBase) {
|
|
3763
|
+
try {
|
|
3764
|
+
return this.processGetFileViewModel(response_);
|
|
3765
|
+
}
|
|
3766
|
+
catch (e) {
|
|
3767
|
+
return throwError(e);
|
|
3768
|
+
}
|
|
3769
|
+
}
|
|
3770
|
+
else
|
|
3771
|
+
return throwError(response_);
|
|
3772
|
+
}));
|
|
3773
|
+
}
|
|
3774
|
+
processGetFileViewModel(response) {
|
|
3775
|
+
const status = response.status;
|
|
3776
|
+
const responseBlob = response instanceof HttpResponse ? response.body :
|
|
3777
|
+
response.error instanceof Blob ? response.error : undefined;
|
|
3778
|
+
let _headers = {};
|
|
3779
|
+
if (response.headers) {
|
|
3780
|
+
for (let key of response.headers.keys()) {
|
|
3781
|
+
_headers[key] = response.headers.get(key);
|
|
3782
|
+
}
|
|
3783
|
+
}
|
|
3784
|
+
if (status === 200) {
|
|
3785
|
+
return blobToText(responseBlob).pipe(mergeMap((_responseText) => {
|
|
3786
|
+
let result200 = null;
|
|
3787
|
+
let resultData200 = _responseText === "" ? null : JSON.parse(_responseText, this.jsonParseReviver);
|
|
3788
|
+
result200 = RESTFileViewModel.fromJS(resultData200);
|
|
3789
|
+
return of(result200);
|
|
3790
|
+
}));
|
|
3791
|
+
}
|
|
3792
|
+
else if (status !== 200 && status !== 204) {
|
|
3793
|
+
return blobToText(responseBlob).pipe(mergeMap((_responseText) => {
|
|
3794
|
+
return throwException("An unexpected server error occurred.", status, _responseText, _headers);
|
|
3795
|
+
}));
|
|
3796
|
+
}
|
|
3797
|
+
return of(null);
|
|
3798
|
+
}
|
|
3799
|
+
}
|
|
3800
|
+
RESTApiClient.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: RESTApiClient, deps: [{ token: HttpClient }, { token: API_BASE_URL, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
3801
|
+
RESTApiClient.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: RESTApiClient });
|
|
3802
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: RESTApiClient, decorators: [{
|
|
3803
|
+
type: Injectable
|
|
3804
|
+
}], ctorParameters: function () {
|
|
3805
|
+
return [{ type: i1.HttpClient, decorators: [{
|
|
3806
|
+
type: Inject,
|
|
3807
|
+
args: [HttpClient]
|
|
3808
|
+
}] }, { type: undefined, decorators: [{
|
|
3809
|
+
type: Optional
|
|
3810
|
+
}, {
|
|
3811
|
+
type: Inject,
|
|
3812
|
+
args: [API_BASE_URL]
|
|
3813
|
+
}] }];
|
|
3814
|
+
} });
|
|
3531
3815
|
class SearchProductsApiClient {
|
|
3532
3816
|
constructor(http, baseUrl) {
|
|
3533
3817
|
this.jsonParseReviver = undefined;
|
|
@@ -5440,16 +5724,6 @@ class FabrikantenViewModel {
|
|
|
5440
5724
|
if (_data) {
|
|
5441
5725
|
this.sessionId = _data["sessionId"];
|
|
5442
5726
|
this.checksum = _data["checksum"];
|
|
5443
|
-
this.bcbWebserviceURLBase = _data["bcbWebserviceURLBase"];
|
|
5444
|
-
this.hideBreadcrumbInIframe = _data["hideBreadcrumbInIframe"];
|
|
5445
|
-
this.hideInformationTab = _data["hideInformationTab"];
|
|
5446
|
-
this.startTab = _data["startTab"];
|
|
5447
|
-
this.alwaysShowVariant = _data["alwaysShowVariant"];
|
|
5448
|
-
this.enableToebehoren = _data["enableToebehoren"];
|
|
5449
|
-
this.showBCBButton = _data["showBCBButton"];
|
|
5450
|
-
this.enableNCSOriginalColours = _data["enableNCSOriginalColours"];
|
|
5451
|
-
this.enableCustomTopColours = _data["enableCustomTopColours"];
|
|
5452
|
-
this.enableVrijeBestekTekst = _data["enableVrijeBestekTekst"];
|
|
5453
5727
|
this.productSelectBlockedByFilters = _data["productSelectBlockedByFilters"];
|
|
5454
5728
|
if (Array.isArray(_data["categoryLayers"])) {
|
|
5455
5729
|
this.categoryLayers = [];
|
|
@@ -5484,16 +5758,6 @@ class FabrikantenViewModel {
|
|
|
5484
5758
|
data = typeof data === 'object' ? data : {};
|
|
5485
5759
|
data["sessionId"] = this.sessionId;
|
|
5486
5760
|
data["checksum"] = this.checksum;
|
|
5487
|
-
data["bcbWebserviceURLBase"] = this.bcbWebserviceURLBase;
|
|
5488
|
-
data["hideBreadcrumbInIframe"] = this.hideBreadcrumbInIframe;
|
|
5489
|
-
data["hideInformationTab"] = this.hideInformationTab;
|
|
5490
|
-
data["startTab"] = this.startTab;
|
|
5491
|
-
data["alwaysShowVariant"] = this.alwaysShowVariant;
|
|
5492
|
-
data["enableToebehoren"] = this.enableToebehoren;
|
|
5493
|
-
data["showBCBButton"] = this.showBCBButton;
|
|
5494
|
-
data["enableNCSOriginalColours"] = this.enableNCSOriginalColours;
|
|
5495
|
-
data["enableCustomTopColours"] = this.enableCustomTopColours;
|
|
5496
|
-
data["enableVrijeBestekTekst"] = this.enableVrijeBestekTekst;
|
|
5497
5761
|
data["productSelectBlockedByFilters"] = this.productSelectBlockedByFilters;
|
|
5498
5762
|
if (Array.isArray(this.categoryLayers)) {
|
|
5499
5763
|
data["categoryLayers"] = [];
|
|
@@ -6084,6 +6348,54 @@ class FabrikantenRequestModel {
|
|
|
6084
6348
|
return data;
|
|
6085
6349
|
}
|
|
6086
6350
|
}
|
|
6351
|
+
class FabrikantenSettingsViewModel {
|
|
6352
|
+
constructor(data) {
|
|
6353
|
+
if (data) {
|
|
6354
|
+
for (var property in data) {
|
|
6355
|
+
if (data.hasOwnProperty(property))
|
|
6356
|
+
this[property] = data[property];
|
|
6357
|
+
}
|
|
6358
|
+
}
|
|
6359
|
+
}
|
|
6360
|
+
init(_data) {
|
|
6361
|
+
if (_data) {
|
|
6362
|
+
this.bcbWebserviceURLBase = _data["bcbWebserviceURLBase"];
|
|
6363
|
+
this.hideBreadcrumbInIframe = _data["hideBreadcrumbInIframe"];
|
|
6364
|
+
this.hideInformationTab = _data["hideInformationTab"];
|
|
6365
|
+
this.startTab = _data["startTab"];
|
|
6366
|
+
this.alwaysShowVariant = _data["alwaysShowVariant"];
|
|
6367
|
+
this.enableToebehoren = _data["enableToebehoren"];
|
|
6368
|
+
this.showBCBButton = _data["showBCBButton"];
|
|
6369
|
+
this.enableNCSOriginalColours = _data["enableNCSOriginalColours"];
|
|
6370
|
+
this.enableCustomTopColours = _data["enableCustomTopColours"];
|
|
6371
|
+
this.enableVrijeBestekTekst = _data["enableVrijeBestekTekst"];
|
|
6372
|
+
this.customRedirect = _data["customRedirect"];
|
|
6373
|
+
this.disableCustomFileNames = _data["disableCustomFileNames"];
|
|
6374
|
+
}
|
|
6375
|
+
}
|
|
6376
|
+
static fromJS(data) {
|
|
6377
|
+
data = typeof data === 'object' ? data : {};
|
|
6378
|
+
let result = new FabrikantenSettingsViewModel();
|
|
6379
|
+
result.init(data);
|
|
6380
|
+
return result;
|
|
6381
|
+
}
|
|
6382
|
+
toJSON(data) {
|
|
6383
|
+
data = typeof data === 'object' ? data : {};
|
|
6384
|
+
data["bcbWebserviceURLBase"] = this.bcbWebserviceURLBase;
|
|
6385
|
+
data["hideBreadcrumbInIframe"] = this.hideBreadcrumbInIframe;
|
|
6386
|
+
data["hideInformationTab"] = this.hideInformationTab;
|
|
6387
|
+
data["startTab"] = this.startTab;
|
|
6388
|
+
data["alwaysShowVariant"] = this.alwaysShowVariant;
|
|
6389
|
+
data["enableToebehoren"] = this.enableToebehoren;
|
|
6390
|
+
data["showBCBButton"] = this.showBCBButton;
|
|
6391
|
+
data["enableNCSOriginalColours"] = this.enableNCSOriginalColours;
|
|
6392
|
+
data["enableCustomTopColours"] = this.enableCustomTopColours;
|
|
6393
|
+
data["enableVrijeBestekTekst"] = this.enableVrijeBestekTekst;
|
|
6394
|
+
data["customRedirect"] = this.customRedirect;
|
|
6395
|
+
data["disableCustomFileNames"] = this.disableCustomFileNames;
|
|
6396
|
+
return data;
|
|
6397
|
+
}
|
|
6398
|
+
}
|
|
6087
6399
|
class FabrikantenBestekViewModel {
|
|
6088
6400
|
constructor(data) {
|
|
6089
6401
|
if (data) {
|
|
@@ -8784,6 +9096,242 @@ class SetProjectSettingRequestModel {
|
|
|
8784
9096
|
return data;
|
|
8785
9097
|
}
|
|
8786
9098
|
}
|
|
9099
|
+
class REST3DViewModel {
|
|
9100
|
+
constructor(data) {
|
|
9101
|
+
if (data) {
|
|
9102
|
+
for (var property in data) {
|
|
9103
|
+
if (data.hasOwnProperty(property))
|
|
9104
|
+
this[property] = data[property];
|
|
9105
|
+
}
|
|
9106
|
+
}
|
|
9107
|
+
}
|
|
9108
|
+
init(_data) {
|
|
9109
|
+
if (_data) {
|
|
9110
|
+
this.webGLJSON = _data["webGLJSON"];
|
|
9111
|
+
}
|
|
9112
|
+
}
|
|
9113
|
+
static fromJS(data) {
|
|
9114
|
+
data = typeof data === 'object' ? data : {};
|
|
9115
|
+
let result = new REST3DViewModel();
|
|
9116
|
+
result.init(data);
|
|
9117
|
+
return result;
|
|
9118
|
+
}
|
|
9119
|
+
toJSON(data) {
|
|
9120
|
+
data = typeof data === 'object' ? data : {};
|
|
9121
|
+
data["webGLJSON"] = this.webGLJSON;
|
|
9122
|
+
return data;
|
|
9123
|
+
}
|
|
9124
|
+
}
|
|
9125
|
+
class RESTRequestModel {
|
|
9126
|
+
constructor(data) {
|
|
9127
|
+
if (data) {
|
|
9128
|
+
for (var property in data) {
|
|
9129
|
+
if (data.hasOwnProperty(property))
|
|
9130
|
+
this[property] = data[property];
|
|
9131
|
+
}
|
|
9132
|
+
}
|
|
9133
|
+
}
|
|
9134
|
+
init(_data) {
|
|
9135
|
+
if (_data) {
|
|
9136
|
+
this.productId = _data["productId"];
|
|
9137
|
+
if (Array.isArray(_data["parameters"])) {
|
|
9138
|
+
this.parameters = [];
|
|
9139
|
+
for (let item of _data["parameters"])
|
|
9140
|
+
this.parameters.push(RESTParameter.fromJS(item));
|
|
9141
|
+
}
|
|
9142
|
+
}
|
|
9143
|
+
}
|
|
9144
|
+
static fromJS(data) {
|
|
9145
|
+
data = typeof data === 'object' ? data : {};
|
|
9146
|
+
let result = new RESTRequestModel();
|
|
9147
|
+
result.init(data);
|
|
9148
|
+
return result;
|
|
9149
|
+
}
|
|
9150
|
+
toJSON(data) {
|
|
9151
|
+
data = typeof data === 'object' ? data : {};
|
|
9152
|
+
data["productId"] = this.productId;
|
|
9153
|
+
if (Array.isArray(this.parameters)) {
|
|
9154
|
+
data["parameters"] = [];
|
|
9155
|
+
for (let item of this.parameters)
|
|
9156
|
+
data["parameters"].push(item.toJSON());
|
|
9157
|
+
}
|
|
9158
|
+
return data;
|
|
9159
|
+
}
|
|
9160
|
+
}
|
|
9161
|
+
class RESTParameter {
|
|
9162
|
+
constructor(data) {
|
|
9163
|
+
if (data) {
|
|
9164
|
+
for (var property in data) {
|
|
9165
|
+
if (data.hasOwnProperty(property))
|
|
9166
|
+
this[property] = data[property];
|
|
9167
|
+
}
|
|
9168
|
+
}
|
|
9169
|
+
}
|
|
9170
|
+
init(_data) {
|
|
9171
|
+
if (_data) {
|
|
9172
|
+
this.name = _data["name"];
|
|
9173
|
+
this.value = _data["value"];
|
|
9174
|
+
}
|
|
9175
|
+
}
|
|
9176
|
+
static fromJS(data) {
|
|
9177
|
+
data = typeof data === 'object' ? data : {};
|
|
9178
|
+
let result = new RESTParameter();
|
|
9179
|
+
result.init(data);
|
|
9180
|
+
return result;
|
|
9181
|
+
}
|
|
9182
|
+
toJSON(data) {
|
|
9183
|
+
data = typeof data === 'object' ? data : {};
|
|
9184
|
+
data["name"] = this.name;
|
|
9185
|
+
data["value"] = this.value;
|
|
9186
|
+
return data;
|
|
9187
|
+
}
|
|
9188
|
+
}
|
|
9189
|
+
class RESTSVGViewModel {
|
|
9190
|
+
constructor(data) {
|
|
9191
|
+
if (data) {
|
|
9192
|
+
for (var property in data) {
|
|
9193
|
+
if (data.hasOwnProperty(property))
|
|
9194
|
+
this[property] = data[property];
|
|
9195
|
+
}
|
|
9196
|
+
}
|
|
9197
|
+
}
|
|
9198
|
+
init(_data) {
|
|
9199
|
+
if (_data) {
|
|
9200
|
+
this.svg = _data["svg"];
|
|
9201
|
+
}
|
|
9202
|
+
}
|
|
9203
|
+
static fromJS(data) {
|
|
9204
|
+
data = typeof data === 'object' ? data : {};
|
|
9205
|
+
let result = new RESTSVGViewModel();
|
|
9206
|
+
result.init(data);
|
|
9207
|
+
return result;
|
|
9208
|
+
}
|
|
9209
|
+
toJSON(data) {
|
|
9210
|
+
data = typeof data === 'object' ? data : {};
|
|
9211
|
+
data["svg"] = this.svg;
|
|
9212
|
+
return data;
|
|
9213
|
+
}
|
|
9214
|
+
}
|
|
9215
|
+
class RESTSVGRequestModel {
|
|
9216
|
+
constructor(data) {
|
|
9217
|
+
if (data) {
|
|
9218
|
+
for (var property in data) {
|
|
9219
|
+
if (data.hasOwnProperty(property))
|
|
9220
|
+
this[property] = data[property];
|
|
9221
|
+
}
|
|
9222
|
+
}
|
|
9223
|
+
}
|
|
9224
|
+
init(_data) {
|
|
9225
|
+
if (_data) {
|
|
9226
|
+
this.requestModel = _data["requestModel"] ? RESTRequestModel.fromJS(_data["requestModel"]) : undefined;
|
|
9227
|
+
this.width = _data["width"];
|
|
9228
|
+
this.height = _data["height"];
|
|
9229
|
+
this.snede = _data["snede"];
|
|
9230
|
+
this.schaal = _data["schaal"];
|
|
9231
|
+
}
|
|
9232
|
+
}
|
|
9233
|
+
static fromJS(data) {
|
|
9234
|
+
data = typeof data === 'object' ? data : {};
|
|
9235
|
+
let result = new RESTSVGRequestModel();
|
|
9236
|
+
result.init(data);
|
|
9237
|
+
return result;
|
|
9238
|
+
}
|
|
9239
|
+
toJSON(data) {
|
|
9240
|
+
data = typeof data === 'object' ? data : {};
|
|
9241
|
+
data["requestModel"] = this.requestModel ? this.requestModel.toJSON() : undefined;
|
|
9242
|
+
data["width"] = this.width;
|
|
9243
|
+
data["height"] = this.height;
|
|
9244
|
+
data["snede"] = this.snede;
|
|
9245
|
+
data["schaal"] = this.schaal;
|
|
9246
|
+
return data;
|
|
9247
|
+
}
|
|
9248
|
+
}
|
|
9249
|
+
class RESTBestekViewModel {
|
|
9250
|
+
constructor(data) {
|
|
9251
|
+
if (data) {
|
|
9252
|
+
for (var property in data) {
|
|
9253
|
+
if (data.hasOwnProperty(property))
|
|
9254
|
+
this[property] = data[property];
|
|
9255
|
+
}
|
|
9256
|
+
}
|
|
9257
|
+
}
|
|
9258
|
+
init(_data) {
|
|
9259
|
+
if (_data) {
|
|
9260
|
+
this.stabu = _data["stabu"];
|
|
9261
|
+
this.suf = _data["suf"];
|
|
9262
|
+
this.vrijBestekHTML = _data["vrijBestekHTML"];
|
|
9263
|
+
}
|
|
9264
|
+
}
|
|
9265
|
+
static fromJS(data) {
|
|
9266
|
+
data = typeof data === 'object' ? data : {};
|
|
9267
|
+
let result = new RESTBestekViewModel();
|
|
9268
|
+
result.init(data);
|
|
9269
|
+
return result;
|
|
9270
|
+
}
|
|
9271
|
+
toJSON(data) {
|
|
9272
|
+
data = typeof data === 'object' ? data : {};
|
|
9273
|
+
data["stabu"] = this.stabu;
|
|
9274
|
+
data["suf"] = this.suf;
|
|
9275
|
+
data["vrijBestekHTML"] = this.vrijBestekHTML;
|
|
9276
|
+
return data;
|
|
9277
|
+
}
|
|
9278
|
+
}
|
|
9279
|
+
class RESTFileViewModel {
|
|
9280
|
+
constructor(data) {
|
|
9281
|
+
if (data) {
|
|
9282
|
+
for (var property in data) {
|
|
9283
|
+
if (data.hasOwnProperty(property))
|
|
9284
|
+
this[property] = data[property];
|
|
9285
|
+
}
|
|
9286
|
+
}
|
|
9287
|
+
}
|
|
9288
|
+
init(_data) {
|
|
9289
|
+
if (_data) {
|
|
9290
|
+
this.file = _data["file"];
|
|
9291
|
+
}
|
|
9292
|
+
}
|
|
9293
|
+
static fromJS(data) {
|
|
9294
|
+
data = typeof data === 'object' ? data : {};
|
|
9295
|
+
let result = new RESTFileViewModel();
|
|
9296
|
+
result.init(data);
|
|
9297
|
+
return result;
|
|
9298
|
+
}
|
|
9299
|
+
toJSON(data) {
|
|
9300
|
+
data = typeof data === 'object' ? data : {};
|
|
9301
|
+
data["file"] = this.file;
|
|
9302
|
+
return data;
|
|
9303
|
+
}
|
|
9304
|
+
}
|
|
9305
|
+
class RESTFileRequestModel {
|
|
9306
|
+
constructor(data) {
|
|
9307
|
+
if (data) {
|
|
9308
|
+
for (var property in data) {
|
|
9309
|
+
if (data.hasOwnProperty(property))
|
|
9310
|
+
this[property] = data[property];
|
|
9311
|
+
}
|
|
9312
|
+
}
|
|
9313
|
+
}
|
|
9314
|
+
init(_data) {
|
|
9315
|
+
if (_data) {
|
|
9316
|
+
this.requestModel = _data["requestModel"] ? RESTRequestModel.fromJS(_data["requestModel"]) : undefined;
|
|
9317
|
+
this.fileType = _data["fileType"];
|
|
9318
|
+
this.model3D = _data["model3D"];
|
|
9319
|
+
}
|
|
9320
|
+
}
|
|
9321
|
+
static fromJS(data) {
|
|
9322
|
+
data = typeof data === 'object' ? data : {};
|
|
9323
|
+
let result = new RESTFileRequestModel();
|
|
9324
|
+
result.init(data);
|
|
9325
|
+
return result;
|
|
9326
|
+
}
|
|
9327
|
+
toJSON(data) {
|
|
9328
|
+
data = typeof data === 'object' ? data : {};
|
|
9329
|
+
data["requestModel"] = this.requestModel ? this.requestModel.toJSON() : undefined;
|
|
9330
|
+
data["fileType"] = this.fileType;
|
|
9331
|
+
data["model3D"] = this.model3D;
|
|
9332
|
+
return data;
|
|
9333
|
+
}
|
|
9334
|
+
}
|
|
8787
9335
|
class SearchProductsResponseModel {
|
|
8788
9336
|
constructor(data) {
|
|
8789
9337
|
if (data) {
|
|
@@ -10180,19 +10728,22 @@ class NavigateService {
|
|
|
10180
10728
|
this.TranslateService = null;
|
|
10181
10729
|
}
|
|
10182
10730
|
RefreshPage() {
|
|
10731
|
+
var _a, _b;
|
|
10183
10732
|
if (this.FabrikantenService != null && this.TranslateService != null) {
|
|
10184
|
-
if (this.
|
|
10185
|
-
if (this.FabrikantenService.
|
|
10186
|
-
this.
|
|
10187
|
-
|
|
10188
|
-
|
|
10189
|
-
|
|
10190
|
-
|
|
10191
|
-
|
|
10192
|
-
|
|
10193
|
-
|
|
10194
|
-
|
|
10195
|
-
|
|
10733
|
+
if (((_a = this.FabrikantenService.FabrikantenSettingsViewModel) === null || _a === void 0 ? void 0 : _a.customRedirect) == null || ((_b = this.FabrikantenService.FabrikantenSettingsViewModel) === null || _b === void 0 ? void 0 : _b.customRedirect) == "") {
|
|
10734
|
+
if (this.TranslateService.ActiveLanguage != null && this.FabrikantenService.FabrikantenViewModel != null) {
|
|
10735
|
+
if (this.FabrikantenService.ShowCategories()) {
|
|
10736
|
+
this.Router.navigate(['/', this.TranslateService.ActiveLanguage.countryCode, 'categories']);
|
|
10737
|
+
this.StatisticsService.PageView("categories");
|
|
10738
|
+
}
|
|
10739
|
+
else if (this.FabrikantenService.FabrikantenViewModel.selectedProduct != null) {
|
|
10740
|
+
this.Router.navigate(['/', this.TranslateService.ActiveLanguage.countryCode, 'product', this.FabrikantenService.FabrikantenViewModel.selectedProduct.urlName]);
|
|
10741
|
+
this.StatisticsService.PageView("product");
|
|
10742
|
+
}
|
|
10743
|
+
else {
|
|
10744
|
+
this.Router.navigate(['/', this.TranslateService.ActiveLanguage.countryCode, 'products']);
|
|
10745
|
+
this.StatisticsService.PageView("products");
|
|
10746
|
+
}
|
|
10196
10747
|
}
|
|
10197
10748
|
}
|
|
10198
10749
|
}
|
|
@@ -10227,7 +10778,7 @@ class TranslateService {
|
|
|
10227
10778
|
this.ProcessDesiredCountryCode();
|
|
10228
10779
|
}
|
|
10229
10780
|
}
|
|
10230
|
-
LoadTranslations(ChangeDetectorRef) {
|
|
10781
|
+
LoadTranslations(ChangeDetectorRef, FabrikantenService, ActivatedRoute) {
|
|
10231
10782
|
if (!this.Init) {
|
|
10232
10783
|
this.Init = true;
|
|
10233
10784
|
this.Loading = true;
|
|
@@ -10248,6 +10799,9 @@ class TranslateService {
|
|
|
10248
10799
|
this.ProcessDesiredCountryCode();
|
|
10249
10800
|
this.NavigateService.RefreshPage();
|
|
10250
10801
|
ChangeDetectorRef.detectChanges();
|
|
10802
|
+
if (FabrikantenService != null) {
|
|
10803
|
+
FabrikantenService.LoadFabrikantenViewModel(ChangeDetectorRef, ActivatedRoute);
|
|
10804
|
+
}
|
|
10251
10805
|
}, (error) => {
|
|
10252
10806
|
if (error.status == 400)
|
|
10253
10807
|
alert(error.json());
|
|
@@ -10687,7 +11241,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImpor
|
|
|
10687
11241
|
}], ctorParameters: function () { return [{ type: FabrikantenApiClient }]; } });
|
|
10688
11242
|
|
|
10689
11243
|
class FabrikantenService {
|
|
10690
|
-
constructor(FabrikantenApiClient, BestekService, TranslateService, WebGLService, SVGService, TextureService, NavigateService, StatisticsService) {
|
|
11244
|
+
constructor(FabrikantenApiClient, BestekService, TranslateService, WebGLService, SVGService, TextureService, NavigateService, Router, StatisticsService) {
|
|
10691
11245
|
this.FabrikantenApiClient = FabrikantenApiClient;
|
|
10692
11246
|
this.BestekService = BestekService;
|
|
10693
11247
|
this.TranslateService = TranslateService;
|
|
@@ -10695,6 +11249,7 @@ class FabrikantenService {
|
|
|
10695
11249
|
this.SVGService = SVGService;
|
|
10696
11250
|
this.TextureService = TextureService;
|
|
10697
11251
|
this.NavigateService = NavigateService;
|
|
11252
|
+
this.Router = Router;
|
|
10698
11253
|
this.StatisticsService = StatisticsService;
|
|
10699
11254
|
this.Init = false;
|
|
10700
11255
|
this.Loading = true;
|
|
@@ -10707,6 +11262,7 @@ class FabrikantenService {
|
|
|
10707
11262
|
this.Download2DDxfLoading = false;
|
|
10708
11263
|
this.DownloadRFALoading = false;
|
|
10709
11264
|
this.SelectedTabIndex = 0;
|
|
11265
|
+
this.SettingsLoaded = false;
|
|
10710
11266
|
this.SelectedPhoto = 0;
|
|
10711
11267
|
this.SelectedToebehoren = null;
|
|
10712
11268
|
this.SelectedTabSet = false;
|
|
@@ -11018,15 +11574,15 @@ class FabrikantenService {
|
|
|
11018
11574
|
}
|
|
11019
11575
|
ShowToebehoren() {
|
|
11020
11576
|
var _a;
|
|
11021
|
-
if (((_a = this.
|
|
11577
|
+
if (((_a = this.FabrikantenSettingsViewModel) === null || _a === void 0 ? void 0 : _a.enableToebehoren) == true) {
|
|
11022
11578
|
return true;
|
|
11023
11579
|
}
|
|
11024
11580
|
return false;
|
|
11025
11581
|
}
|
|
11026
11582
|
ShowVariants() {
|
|
11027
11583
|
var _a;
|
|
11028
|
-
if (this.FabrikantenViewModel != null) {
|
|
11029
|
-
if (!this.
|
|
11584
|
+
if (this.FabrikantenViewModel != null && this.FabrikantenSettingsViewModel != null) {
|
|
11585
|
+
if (!this.FabrikantenSettingsViewModel.alwaysShowVariant) {
|
|
11030
11586
|
var bcbproducts = (_a = this.FabrikantenViewModel.selectedProduct) === null || _a === void 0 ? void 0 : _a.fabrikantenBCBProductViewModels;
|
|
11031
11587
|
if (bcbproducts != null && bcbproducts.length > 1) {
|
|
11032
11588
|
return true;
|
|
@@ -11098,25 +11654,62 @@ class FabrikantenService {
|
|
|
11098
11654
|
}
|
|
11099
11655
|
LoadFabrikantenViewModel(ChangeDetectorRef, ActivatedRoute) {
|
|
11100
11656
|
if (!this.Init) {
|
|
11101
|
-
this.Init = true;
|
|
11102
11657
|
this.Loading = true;
|
|
11103
11658
|
ChangeDetectorRef.detectChanges();
|
|
11104
|
-
|
|
11105
|
-
|
|
11106
|
-
request.sessionId = this.FabrikantenViewModel.sessionId;
|
|
11659
|
+
if (!this.SettingsLoaded) {
|
|
11660
|
+
this.LoadFabrikantenSettingsViewModel(ChangeDetectorRef, ActivatedRoute);
|
|
11107
11661
|
}
|
|
11108
11662
|
else {
|
|
11109
|
-
|
|
11663
|
+
if (!this.TranslateService.Init) {
|
|
11664
|
+
this.TranslateService.LoadTranslations(ChangeDetectorRef, this, ActivatedRoute);
|
|
11665
|
+
}
|
|
11666
|
+
else {
|
|
11667
|
+
this.Init = true;
|
|
11668
|
+
var request = new FabrikantenRequestModel();
|
|
11669
|
+
if (this.FabrikantenViewModel != null) {
|
|
11670
|
+
request.sessionId = this.FabrikantenViewModel.sessionId;
|
|
11671
|
+
}
|
|
11672
|
+
else {
|
|
11673
|
+
request.sessionId = "";
|
|
11674
|
+
}
|
|
11675
|
+
this.FabrikantenApiClient.getFabrikantenViewModel(request).subscribe((model) => {
|
|
11676
|
+
this.FabrikantenViewModel = model;
|
|
11677
|
+
this.SelectedPhoto = 0;
|
|
11678
|
+
this.Loading = false;
|
|
11679
|
+
ChangeDetectorRef.detectChanges();
|
|
11680
|
+
this.TriggerReloads(ChangeDetectorRef);
|
|
11681
|
+
if (this.ProcessParameters(ActivatedRoute, ChangeDetectorRef)) {
|
|
11682
|
+
this.NavigateService.RefreshPage();
|
|
11683
|
+
this.Loaded = true;
|
|
11684
|
+
}
|
|
11685
|
+
}, (error) => {
|
|
11686
|
+
if (error.status == 400)
|
|
11687
|
+
console.log(error.json());
|
|
11688
|
+
else {
|
|
11689
|
+
console.log('An unexpected error occured');
|
|
11690
|
+
console.log(error);
|
|
11691
|
+
}
|
|
11692
|
+
this.Loading = false;
|
|
11693
|
+
ChangeDetectorRef.detectChanges();
|
|
11694
|
+
});
|
|
11695
|
+
}
|
|
11110
11696
|
}
|
|
11111
|
-
|
|
11112
|
-
|
|
11113
|
-
|
|
11697
|
+
}
|
|
11698
|
+
}
|
|
11699
|
+
LoadFabrikantenSettingsViewModel(ChangeDetectorRef, ActivatedRoute) {
|
|
11700
|
+
if (!this.SettingsLoaded) {
|
|
11701
|
+
this.Loading = true;
|
|
11702
|
+
ChangeDetectorRef.detectChanges();
|
|
11703
|
+
this.FabrikantenApiClient.getFabrikantenSettingsViewModel().subscribe((model) => {
|
|
11704
|
+
this.FabrikantenSettingsViewModel = model;
|
|
11114
11705
|
this.Loading = false;
|
|
11706
|
+
this.SettingsLoaded = true;
|
|
11115
11707
|
ChangeDetectorRef.detectChanges();
|
|
11116
|
-
this.
|
|
11117
|
-
|
|
11118
|
-
|
|
11119
|
-
|
|
11708
|
+
if (this.FabrikantenSettingsViewModel.customRedirect != null && this.FabrikantenSettingsViewModel.customRedirect != "") {
|
|
11709
|
+
window.location.href = this.FabrikantenSettingsViewModel.customRedirect;
|
|
11710
|
+
}
|
|
11711
|
+
else {
|
|
11712
|
+
this.LoadFabrikantenViewModel(ChangeDetectorRef, ActivatedRoute);
|
|
11120
11713
|
}
|
|
11121
11714
|
}, (error) => {
|
|
11122
11715
|
if (error.status == 400)
|
|
@@ -11150,16 +11743,16 @@ class FabrikantenService {
|
|
|
11150
11743
|
return true;
|
|
11151
11744
|
}
|
|
11152
11745
|
ResetTabs() {
|
|
11153
|
-
if (this.
|
|
11154
|
-
this.SelectedTab = this.
|
|
11746
|
+
if (this.FabrikantenSettingsViewModel.startTab != null) {
|
|
11747
|
+
this.SelectedTab = this.FabrikantenSettingsViewModel.startTab;
|
|
11155
11748
|
}
|
|
11156
|
-
else if (this.
|
|
11749
|
+
else if (this.FabrikantenSettingsViewModel.hideInformationTab) {
|
|
11157
11750
|
this.SelectedTab = "3D";
|
|
11158
11751
|
}
|
|
11159
11752
|
else {
|
|
11160
11753
|
this.SelectedTab = "Informatie";
|
|
11161
11754
|
}
|
|
11162
|
-
if (this.
|
|
11755
|
+
if (this.FabrikantenSettingsViewModel.hideInformationTab) {
|
|
11163
11756
|
if (this.SelectedTab == "3D") {
|
|
11164
11757
|
this.SelectedTabIndex = 0;
|
|
11165
11758
|
}
|
|
@@ -11533,6 +12126,9 @@ class FabrikantenService {
|
|
|
11533
12126
|
}
|
|
11534
12127
|
StartDownload(url, extension) {
|
|
11535
12128
|
var filename = this.CollectFileName();
|
|
12129
|
+
if (this.FabrikantenSettingsViewModel.disableCustomFileNames) {
|
|
12130
|
+
filename = url.substring(url.lastIndexOf('\\') + 1);
|
|
12131
|
+
}
|
|
11536
12132
|
if (filename != "") {
|
|
11537
12133
|
filename = filename + extension;
|
|
11538
12134
|
window.location.href = "/Download/Download?pUrl=" + url + "&pFileName=" + filename;
|
|
@@ -11602,7 +12198,7 @@ class FabrikantenService {
|
|
|
11602
12198
|
var _a, _b, _c, _d;
|
|
11603
12199
|
if (!this.ShowRequired()) {
|
|
11604
12200
|
var array = (_a = this.FabrikantenViewModel.selectedProduct) === null || _a === void 0 ? void 0 : _a.fabrikantenBCBProductViewModels;
|
|
11605
|
-
if (array != null && (array.length == 1 || this.
|
|
12201
|
+
if (array != null && (array.length == 1 || this.FabrikantenSettingsViewModel.alwaysShowVariant)) {
|
|
11606
12202
|
if (this.SelectedTab == "Bestek") {
|
|
11607
12203
|
if (this.FabrikantenViewModel.checksum != ((_b = this.BestekService.FabrikantenBestekViewModel) === null || _b === void 0 ? void 0 : _b.checksum)) {
|
|
11608
12204
|
this.BestekService.LoadFabrikantenBestekViewModel(this.FabrikantenViewModel.sessionId, ChangeDetectorRef);
|
|
@@ -11667,12 +12263,12 @@ class FabrikantenService {
|
|
|
11667
12263
|
return toebehoren;
|
|
11668
12264
|
}
|
|
11669
12265
|
}
|
|
11670
|
-
FabrikantenService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: FabrikantenService, deps: [{ token: FabrikantenApiClient }, { token: BestekService }, { token: TranslateService }, { token: WebGLService }, { token: SVGService }, { token: TextureService }, { token: NavigateService }, { token: StatisticsService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
12266
|
+
FabrikantenService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: FabrikantenService, deps: [{ token: FabrikantenApiClient }, { token: BestekService }, { token: TranslateService }, { token: WebGLService }, { token: SVGService }, { token: TextureService }, { token: NavigateService }, { token: i1$1.Router }, { token: StatisticsService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
11671
12267
|
FabrikantenService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: FabrikantenService, providedIn: 'root' });
|
|
11672
12268
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: FabrikantenService, decorators: [{
|
|
11673
12269
|
type: Injectable,
|
|
11674
12270
|
args: [{ providedIn: 'root' }]
|
|
11675
|
-
}], ctorParameters: function () { return [{ type: FabrikantenApiClient }, { type: BestekService }, { type: TranslateService }, { type: WebGLService }, { type: SVGService }, { type: TextureService }, { type: NavigateService }, { type: StatisticsService }]; } });
|
|
12271
|
+
}], ctorParameters: function () { return [{ type: FabrikantenApiClient }, { type: BestekService }, { type: TranslateService }, { type: WebGLService }, { type: SVGService }, { type: TextureService }, { type: NavigateService }, { type: i1$1.Router }, { type: StatisticsService }]; } });
|
|
11676
12272
|
|
|
11677
12273
|
class FabFiltersComponent {
|
|
11678
12274
|
constructor(MobileService, FabrikantenService, BestekService, TranslateService, ActivatedRoute, ChangeDetectorRef) {
|
|
@@ -11687,7 +12283,6 @@ class FabFiltersComponent {
|
|
|
11687
12283
|
ngOnInit() {
|
|
11688
12284
|
this.MobileService.UpdateScreenSize(window.innerWidth, window.innerHeight, this.ChangeDetectorRef);
|
|
11689
12285
|
this.FabrikantenService.LoadFabrikantenViewModel(this.ChangeDetectorRef, null);
|
|
11690
|
-
this.TranslateService.LoadTranslations(this.ChangeDetectorRef);
|
|
11691
12286
|
}
|
|
11692
12287
|
onResize(event) {
|
|
11693
12288
|
this.MobileService.UpdateScreenSize(window.innerWidth, window.innerHeight, this.ChangeDetectorRef);
|
|
@@ -12170,7 +12765,7 @@ class PhotoService {
|
|
|
12170
12765
|
return "";
|
|
12171
12766
|
}
|
|
12172
12767
|
else {
|
|
12173
|
-
return ((_a = this.FabrikantenService.
|
|
12768
|
+
return ((_a = this.FabrikantenService.FabrikantenSettingsViewModel) === null || _a === void 0 ? void 0 : _a.bcbWebserviceURLBase) + array[this.FabrikantenService.SelectedPhoto].url;
|
|
12174
12769
|
}
|
|
12175
12770
|
}
|
|
12176
12771
|
GetSelectedDescription() {
|
|
@@ -14517,7 +15112,7 @@ class FabActionmenuComponent {
|
|
|
14517
15112
|
}
|
|
14518
15113
|
ShowBCBButton() {
|
|
14519
15114
|
var _a;
|
|
14520
|
-
if (((_a = this.FabrikantenService.
|
|
15115
|
+
if (((_a = this.FabrikantenService.FabrikantenSettingsViewModel) === null || _a === void 0 ? void 0 : _a.showBCBButton) == true) {
|
|
14521
15116
|
return true;
|
|
14522
15117
|
}
|
|
14523
15118
|
return false;
|
|
@@ -14566,7 +15161,7 @@ class FabActionmenuComponent {
|
|
|
14566
15161
|
}
|
|
14567
15162
|
ShowVrij() {
|
|
14568
15163
|
var _a, _b, _c;
|
|
14569
|
-
if (((_a = this.FabrikantenService.
|
|
15164
|
+
if (((_a = this.FabrikantenService.FabrikantenSettingsViewModel) === null || _a === void 0 ? void 0 : _a.enableVrijeBestekTekst) == false) {
|
|
14570
15165
|
return false;
|
|
14571
15166
|
}
|
|
14572
15167
|
return ((_b = this.BestekService.FabrikantenBestekViewModel) === null || _b === void 0 ? void 0 : _b.vrijBestekHTML) != '' && ((_c = this.BestekService.FabrikantenBestekViewModel) === null || _c === void 0 ? void 0 : _c.vrijBestekHTML) != undefined;
|
|
@@ -14750,14 +15345,14 @@ class FabFilterColourDialogComponent {
|
|
|
14750
15345
|
this.AddColours();
|
|
14751
15346
|
}
|
|
14752
15347
|
ShowNCSOriginals() {
|
|
14753
|
-
if (this.FabrikantenService.
|
|
14754
|
-
return this.FabrikantenService.
|
|
15348
|
+
if (this.FabrikantenService.FabrikantenSettingsViewModel != null) {
|
|
15349
|
+
return this.FabrikantenService.FabrikantenSettingsViewModel.enableNCSOriginalColours;
|
|
14755
15350
|
}
|
|
14756
15351
|
return false;
|
|
14757
15352
|
}
|
|
14758
15353
|
ShowCustomTopColours() {
|
|
14759
|
-
if (this.FabrikantenService.
|
|
14760
|
-
return this.FabrikantenService.
|
|
15354
|
+
if (this.FabrikantenService.FabrikantenSettingsViewModel != null) {
|
|
15355
|
+
return this.FabrikantenService.FabrikantenSettingsViewModel.enableCustomTopColours;
|
|
14761
15356
|
}
|
|
14762
15357
|
return false;
|
|
14763
15358
|
}
|
|
@@ -15488,8 +16083,8 @@ class FabBreadcrumbComponent {
|
|
|
15488
16083
|
return false;
|
|
15489
16084
|
}
|
|
15490
16085
|
HideBreadcrumb() {
|
|
15491
|
-
if (this.FabrikantenService.
|
|
15492
|
-
if (this.FabrikantenService.
|
|
16086
|
+
if (this.FabrikantenService.FabrikantenSettingsViewModel != null) {
|
|
16087
|
+
if (this.FabrikantenService.FabrikantenSettingsViewModel.hideBreadcrumbInIframe) {
|
|
15493
16088
|
if (window.self !== window.top) {
|
|
15494
16089
|
return true;
|
|
15495
16090
|
}
|
|
@@ -15527,7 +16122,6 @@ class FabLanguageSelectComponent {
|
|
|
15527
16122
|
this.ChangeDetectorRef = ChangeDetectorRef;
|
|
15528
16123
|
}
|
|
15529
16124
|
ngOnInit() {
|
|
15530
|
-
this.TranslateService.LoadTranslations(this.ChangeDetectorRef);
|
|
15531
16125
|
}
|
|
15532
16126
|
SelectLanguage(language) {
|
|
15533
16127
|
this.TranslateService.SelectLanguage(language, this.ChangeDetectorRef);
|
|
@@ -15548,7 +16142,6 @@ class FabHeaderComponent {
|
|
|
15548
16142
|
this.ChangeDetectorRef = ChangeDetectorRef;
|
|
15549
16143
|
}
|
|
15550
16144
|
ngOnInit() {
|
|
15551
|
-
this.TranslateService.LoadTranslations(this.ChangeDetectorRef);
|
|
15552
16145
|
this.MobileService.UpdateScreenSize(window.innerWidth, window.innerHeight, this.ChangeDetectorRef);
|
|
15553
16146
|
}
|
|
15554
16147
|
onResize(event) {
|
|
@@ -15569,8 +16162,8 @@ class FabHeaderComponent {
|
|
|
15569
16162
|
return true;
|
|
15570
16163
|
}
|
|
15571
16164
|
ShowLanguageSelect() {
|
|
15572
|
-
if (this.FabrikantenService.
|
|
15573
|
-
if (this.FabrikantenService.
|
|
16165
|
+
if (this.FabrikantenService.FabrikantenSettingsViewModel != null) {
|
|
16166
|
+
if (this.FabrikantenService.FabrikantenSettingsViewModel.hideBreadcrumbInIframe) {
|
|
15574
16167
|
if (window.self !== window.top) {
|
|
15575
16168
|
return false;
|
|
15576
16169
|
}
|
|
@@ -15840,7 +16433,6 @@ class FabProductComponent {
|
|
|
15840
16433
|
}
|
|
15841
16434
|
ngOnInit() {
|
|
15842
16435
|
this.FabrikantenService.LoadFabrikantenViewModel(this.ChangeDetectorRef, this.ActivatedRoute);
|
|
15843
|
-
this.TranslateService.LoadTranslations(this.ChangeDetectorRef);
|
|
15844
16436
|
}
|
|
15845
16437
|
ngAfterViewInit() {
|
|
15846
16438
|
this.UpdateHeight();
|
|
@@ -15882,7 +16474,7 @@ class FabProductComponent {
|
|
|
15882
16474
|
}
|
|
15883
16475
|
ShowInformation() {
|
|
15884
16476
|
if (this.FabrikantenService.FabrikantenViewModel != null) {
|
|
15885
|
-
if (this.FabrikantenService.
|
|
16477
|
+
if (this.FabrikantenService.FabrikantenSettingsViewModel.hideInformationTab) {
|
|
15886
16478
|
return false;
|
|
15887
16479
|
}
|
|
15888
16480
|
}
|
|
@@ -15939,7 +16531,7 @@ class FabProductTileComponent {
|
|
|
15939
16531
|
else {
|
|
15940
16532
|
var array = this.PhotoService.GetPhotoArrayProduct(this.product);
|
|
15941
16533
|
if (array.length > 0) {
|
|
15942
|
-
return ((_a = this.FabrikantenService.
|
|
16534
|
+
return ((_a = this.FabrikantenService.FabrikantenSettingsViewModel) === null || _a === void 0 ? void 0 : _a.bcbWebserviceURLBase) + array[0].url;
|
|
15943
16535
|
}
|
|
15944
16536
|
return "";
|
|
15945
16537
|
}
|
|
@@ -15971,7 +16563,6 @@ class FabProductSelectComponent {
|
|
|
15971
16563
|
}
|
|
15972
16564
|
ngOnInit() {
|
|
15973
16565
|
this.FabrikantenService.LoadFabrikantenViewModel(this.ChangeDetectorRef, null);
|
|
15974
|
-
this.TranslateService.LoadTranslations(this.ChangeDetectorRef);
|
|
15975
16566
|
}
|
|
15976
16567
|
ngAfterViewInit() {
|
|
15977
16568
|
this.Height = this.GetHeight();
|
|
@@ -16242,7 +16833,6 @@ class FabStartComponent {
|
|
|
16242
16833
|
}
|
|
16243
16834
|
ngOnInit() {
|
|
16244
16835
|
this.FabrikantenService.LoadFabrikantenViewModel(this.ChangeDetectorRef, null);
|
|
16245
|
-
this.TranslateService.LoadTranslations(this.ChangeDetectorRef);
|
|
16246
16836
|
}
|
|
16247
16837
|
}
|
|
16248
16838
|
FabStartComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: FabStartComponent, deps: [{ token: FabrikantenService }, { token: TranslateService }, { token: i0.ChangeDetectorRef }, { token: i1$1.Router }], target: i0.ɵɵFactoryTarget.Component });
|
|
@@ -16300,7 +16890,6 @@ class FabCategoriesComponent {
|
|
|
16300
16890
|
}
|
|
16301
16891
|
ngOnInit() {
|
|
16302
16892
|
this.FabrikantenService.LoadFabrikantenViewModel(this.ChangeDetectorRef, null);
|
|
16303
|
-
this.TranslateService.LoadTranslations(this.ChangeDetectorRef);
|
|
16304
16893
|
}
|
|
16305
16894
|
}
|
|
16306
16895
|
FabCategoriesComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: FabCategoriesComponent, deps: [{ token: FabrikantenService }, { token: TranslateService }, { token: i1$1.ActivatedRoute }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
@@ -16345,7 +16934,7 @@ class BeheerTranslateComponent {
|
|
|
16345
16934
|
this.ChangeDetectorRef = ChangeDetectorRef;
|
|
16346
16935
|
}
|
|
16347
16936
|
ngOnInit() {
|
|
16348
|
-
this.TranslateService.LoadTranslations(this.ChangeDetectorRef);
|
|
16937
|
+
this.TranslateService.LoadTranslations(this.ChangeDetectorRef, null, null);
|
|
16349
16938
|
}
|
|
16350
16939
|
GetCategoryEntries() {
|
|
16351
16940
|
var _a;
|
|
@@ -16425,7 +17014,7 @@ class BeheerTranslateComponent {
|
|
|
16425
17014
|
this.TranslateService.Loading = true;
|
|
16426
17015
|
this.TranslateApiClient.readExport(request).subscribe(() => {
|
|
16427
17016
|
this.TranslateService.Loading = false;
|
|
16428
|
-
this.TranslateService.LoadTranslations(this.ChangeDetectorRef);
|
|
17017
|
+
this.TranslateService.LoadTranslations(this.ChangeDetectorRef, null, null);
|
|
16429
17018
|
}, (error) => {
|
|
16430
17019
|
if (error.status == 400)
|
|
16431
17020
|
alert(error.json());
|
|
@@ -16922,5 +17511,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImpor
|
|
|
16922
17511
|
* Generated bundle index. Do not edit.
|
|
16923
17512
|
*/
|
|
16924
17513
|
|
|
16925
|
-
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, CategoriesApiClient, CategoriesOverviewCategorieViewModel, CategoriesOverviewViewModel, CategoriesViewModel, CategoryViewModel, ChangeImportSetRequest, CleanUpResponseModel, ClearCategoryRequest, ConnectBCBEBODORequest, ConnectBCBEigenschapRangeInputRequest, ConnectBCBEigenschapRangeInputResponse, ConnectBCBEigenschapRequest, ConnectEBODOCategoryRequest, ConnectEBODOCategoryResponse, ConnectEigenschapOptieRequest, ConnectOpbouwRequest, CreateCategoryRequest, CreateCategoryResponse, CreateExportRequest, CreateExportResponse, CreateFilterOptionRequest, CreateFilterOptionResponse, CreateFilterRequest, CreateFilterResponse, CreateLanguageRequest, DeeplinkProductViewModel, DeeplinkRequest, DeeplinkViewModel, DynamicDisplayValueViewModel, DynamicFilterViewModel, DynamicFiltersViewModel, DynamicRangeInputViewModel, EBOConnectRequestModel, EBOKoppelApiClient, EBOKoppelEBOCategoryViewModel, EBOKoppelEBOFilterOptionViewModel, EBOKoppelEBOViewModel, EBOKoppelNaamViewModel, EBOKoppelTypeViewModel, EBOKoppelViewModel, FabActionmenuComponent, FabCategoryNavigatorComponent, 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, 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, MoveFilterOptionRequest, MoveFilterRequest, NewProductRequestModel, NewProductResponseModel, ProductViewModel, ProductViewModel2, ProductsApiClient, ProductsViewModel, ProductsViewModelRequest, ProjectSettingApiClient, ProjectSettingPipelineStepViewModel, ProjectSettingType, ProjectSettingViewModel, ProjectSettingsCategoryViewModel, ProjectSettingsViewModel, RangeInputFilterOptionRequiredViewModel, RangeInputType, RangeInputViewModel, RangeInputsViewModel, ReadExportRequest, RemoveProductSelectionRequest, ResetAllCategoriesRequest, ResetAllFiltersRequest, ResetCategoryLayerRequest, ResetFilterRequest, ResetImportRequestModel, SVGService, SaveImportSetRequest, SaveProductViewModel, SearchProductsApiClient, SearchProductsRequestModel, SearchProductsResponseModel, SecurityApiClient, SelectBCBProductRequest, SelectCategoryRequest, SelectColourRequest, SelectFilterOptionRequest, SelectProductRequest, SetFilterOptionRequiredRequest, SetFilterRequiredRequest, SetProjectSettingRequestModel, SetProjectSettingResponseModel, SetRangeInputRequest, TranslateApiClient, TranslateEntryAfbeeldingViewModel, TranslateEntryBCBEigenschapToebehorenViewModel, TranslateEntryCategoryViewModel, TranslateEntryDescriptionViewModel, TranslateEntryFilterOptionViewModel, TranslateEntryFilterViewModel, TranslateEntryProductViewModel, TranslateEntryRangeInputViewModel, TranslateEntryViewModel, TranslateKeyCategoryViewModel, TranslateKeyViewModel, TranslateService, WizardEBODOViewModel, WizardEBOViewModel };
|
|
17514
|
+
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, CategoriesApiClient, CategoriesOverviewCategorieViewModel, CategoriesOverviewViewModel, CategoriesViewModel, CategoryViewModel, ChangeImportSetRequest, CleanUpResponseModel, ClearCategoryRequest, ConnectBCBEBODORequest, ConnectBCBEigenschapRangeInputRequest, ConnectBCBEigenschapRangeInputResponse, ConnectBCBEigenschapRequest, ConnectEBODOCategoryRequest, ConnectEBODOCategoryResponse, ConnectEigenschapOptieRequest, ConnectOpbouwRequest, CreateCategoryRequest, CreateCategoryResponse, CreateExportRequest, CreateExportResponse, CreateFilterOptionRequest, CreateFilterOptionResponse, CreateFilterRequest, CreateFilterResponse, CreateLanguageRequest, DeeplinkProductViewModel, DeeplinkRequest, DeeplinkViewModel, DynamicDisplayValueViewModel, DynamicFilterViewModel, DynamicFiltersViewModel, DynamicRangeInputViewModel, EBOConnectRequestModel, EBOKoppelApiClient, EBOKoppelEBOCategoryViewModel, EBOKoppelEBOFilterOptionViewModel, EBOKoppelEBOViewModel, EBOKoppelNaamViewModel, EBOKoppelTypeViewModel, EBOKoppelViewModel, FabActionmenuComponent, FabCategoryNavigatorComponent, 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, MoveFilterOptionRequest, MoveFilterRequest, NewProductRequestModel, NewProductResponseModel, ProductViewModel, ProductViewModel2, ProductsApiClient, ProductsViewModel, ProductsViewModelRequest, ProjectSettingApiClient, ProjectSettingPipelineStepViewModel, ProjectSettingType, ProjectSettingViewModel, ProjectSettingsCategoryViewModel, ProjectSettingsViewModel, REST3DViewModel, RESTApiClient, RESTBestekViewModel, RESTFileRequestModel, RESTFileViewModel, RESTParameter, RESTRequestModel, RESTSVGRequestModel, RESTSVGViewModel, RangeInputFilterOptionRequiredViewModel, RangeInputType, RangeInputViewModel, RangeInputsViewModel, ReadExportRequest, RemoveProductSelectionRequest, ResetAllCategoriesRequest, ResetAllFiltersRequest, ResetCategoryLayerRequest, ResetFilterRequest, ResetImportRequestModel, SVGService, SaveImportSetRequest, SaveProductViewModel, SearchProductsApiClient, SearchProductsRequestModel, SearchProductsResponseModel, SecurityApiClient, SelectBCBProductRequest, SelectCategoryRequest, SelectColourRequest, SelectFilterOptionRequest, SelectProductRequest, SetFilterOptionRequiredRequest, SetFilterRequiredRequest, SetProjectSettingRequestModel, SetProjectSettingResponseModel, SetRangeInputRequest, TranslateApiClient, TranslateEntryAfbeeldingViewModel, TranslateEntryBCBEigenschapToebehorenViewModel, TranslateEntryCategoryViewModel, TranslateEntryDescriptionViewModel, TranslateEntryFilterOptionViewModel, TranslateEntryFilterViewModel, TranslateEntryProductViewModel, TranslateEntryRangeInputViewModel, TranslateEntryViewModel, TranslateKeyCategoryViewModel, TranslateKeyViewModel, TranslateService, WizardEBODOViewModel, WizardEBOViewModel };
|
|
16926
17515
|
//# sourceMappingURL=fabrikantencore.mjs.map
|