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
|
@@ -512,6 +512,56 @@ class FabrikantenApiClient {
|
|
|
512
512
|
}
|
|
513
513
|
return of(null);
|
|
514
514
|
}
|
|
515
|
+
getFabrikantenSettingsViewModel() {
|
|
516
|
+
let url_ = this.baseUrl + "/api/fabrikanten/getfabrikantensettingsviewmodel";
|
|
517
|
+
url_ = url_.replace(/[?&]$/, "");
|
|
518
|
+
let options_ = {
|
|
519
|
+
observe: "response",
|
|
520
|
+
responseType: "blob",
|
|
521
|
+
headers: new HttpHeaders({
|
|
522
|
+
"Accept": "application/json"
|
|
523
|
+
})
|
|
524
|
+
};
|
|
525
|
+
return this.http.request("post", url_, options_).pipe(mergeMap((response_) => {
|
|
526
|
+
return this.processGetFabrikantenSettingsViewModel(response_);
|
|
527
|
+
})).pipe(catchError((response_) => {
|
|
528
|
+
if (response_ instanceof HttpResponseBase) {
|
|
529
|
+
try {
|
|
530
|
+
return this.processGetFabrikantenSettingsViewModel(response_);
|
|
531
|
+
}
|
|
532
|
+
catch (e) {
|
|
533
|
+
return throwError(e);
|
|
534
|
+
}
|
|
535
|
+
}
|
|
536
|
+
else
|
|
537
|
+
return throwError(response_);
|
|
538
|
+
}));
|
|
539
|
+
}
|
|
540
|
+
processGetFabrikantenSettingsViewModel(response) {
|
|
541
|
+
const status = response.status;
|
|
542
|
+
const responseBlob = response instanceof HttpResponse ? response.body :
|
|
543
|
+
response.error instanceof Blob ? response.error : undefined;
|
|
544
|
+
let _headers = {};
|
|
545
|
+
if (response.headers) {
|
|
546
|
+
for (let key of response.headers.keys()) {
|
|
547
|
+
_headers[key] = response.headers.get(key);
|
|
548
|
+
}
|
|
549
|
+
}
|
|
550
|
+
if (status === 200) {
|
|
551
|
+
return blobToText(responseBlob).pipe(mergeMap((_responseText) => {
|
|
552
|
+
let result200 = null;
|
|
553
|
+
let resultData200 = _responseText === "" ? null : JSON.parse(_responseText, this.jsonParseReviver);
|
|
554
|
+
result200 = FabrikantenSettingsViewModel.fromJS(resultData200);
|
|
555
|
+
return of(result200);
|
|
556
|
+
}));
|
|
557
|
+
}
|
|
558
|
+
else if (status !== 200 && status !== 204) {
|
|
559
|
+
return blobToText(responseBlob).pipe(mergeMap((_responseText) => {
|
|
560
|
+
return throwException("An unexpected server error occurred.", status, _responseText, _headers);
|
|
561
|
+
}));
|
|
562
|
+
}
|
|
563
|
+
return of(null);
|
|
564
|
+
}
|
|
515
565
|
getFabrikantenBestekViewModel(pFabrikantenBestekRequestModel) {
|
|
516
566
|
let url_ = this.baseUrl + "/api/fabrikanten/getfabrikantenbestekviewmodel";
|
|
517
567
|
url_ = url_.replace(/[?&]$/, "");
|
|
@@ -3514,6 +3564,238 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImpor
|
|
|
3514
3564
|
type: Inject,
|
|
3515
3565
|
args: [API_BASE_URL]
|
|
3516
3566
|
}] }]; } });
|
|
3567
|
+
class RESTApiClient {
|
|
3568
|
+
constructor(http, baseUrl) {
|
|
3569
|
+
this.jsonParseReviver = undefined;
|
|
3570
|
+
this.http = http;
|
|
3571
|
+
this.baseUrl = baseUrl !== undefined && baseUrl !== null ? baseUrl : "";
|
|
3572
|
+
}
|
|
3573
|
+
get3DViewModel(pRESTRequestModel) {
|
|
3574
|
+
let url_ = this.baseUrl + "/api/rest/get3dviewmodel";
|
|
3575
|
+
url_ = url_.replace(/[?&]$/, "");
|
|
3576
|
+
const content_ = JSON.stringify(pRESTRequestModel);
|
|
3577
|
+
let options_ = {
|
|
3578
|
+
body: content_,
|
|
3579
|
+
observe: "response",
|
|
3580
|
+
responseType: "blob",
|
|
3581
|
+
headers: new HttpHeaders({
|
|
3582
|
+
"Content-Type": "application/json",
|
|
3583
|
+
"Accept": "application/json"
|
|
3584
|
+
})
|
|
3585
|
+
};
|
|
3586
|
+
return this.http.request("post", url_, options_).pipe(mergeMap((response_) => {
|
|
3587
|
+
return this.processGet3DViewModel(response_);
|
|
3588
|
+
})).pipe(catchError((response_) => {
|
|
3589
|
+
if (response_ instanceof HttpResponseBase) {
|
|
3590
|
+
try {
|
|
3591
|
+
return this.processGet3DViewModel(response_);
|
|
3592
|
+
}
|
|
3593
|
+
catch (e) {
|
|
3594
|
+
return throwError(e);
|
|
3595
|
+
}
|
|
3596
|
+
}
|
|
3597
|
+
else
|
|
3598
|
+
return throwError(response_);
|
|
3599
|
+
}));
|
|
3600
|
+
}
|
|
3601
|
+
processGet3DViewModel(response) {
|
|
3602
|
+
const status = response.status;
|
|
3603
|
+
const responseBlob = response instanceof HttpResponse ? response.body :
|
|
3604
|
+
response.error instanceof Blob ? response.error : undefined;
|
|
3605
|
+
let _headers = {};
|
|
3606
|
+
if (response.headers) {
|
|
3607
|
+
for (let key of response.headers.keys()) {
|
|
3608
|
+
_headers[key] = response.headers.get(key);
|
|
3609
|
+
}
|
|
3610
|
+
}
|
|
3611
|
+
if (status === 200) {
|
|
3612
|
+
return blobToText(responseBlob).pipe(mergeMap((_responseText) => {
|
|
3613
|
+
let result200 = null;
|
|
3614
|
+
let resultData200 = _responseText === "" ? null : JSON.parse(_responseText, this.jsonParseReviver);
|
|
3615
|
+
result200 = REST3DViewModel.fromJS(resultData200);
|
|
3616
|
+
return of(result200);
|
|
3617
|
+
}));
|
|
3618
|
+
}
|
|
3619
|
+
else if (status !== 200 && status !== 204) {
|
|
3620
|
+
return blobToText(responseBlob).pipe(mergeMap((_responseText) => {
|
|
3621
|
+
return throwException("An unexpected server error occurred.", status, _responseText, _headers);
|
|
3622
|
+
}));
|
|
3623
|
+
}
|
|
3624
|
+
return of(null);
|
|
3625
|
+
}
|
|
3626
|
+
getSVGViewModel(pRESTSVGRequestModel) {
|
|
3627
|
+
let url_ = this.baseUrl + "/api/rest/getsvgviewmodel";
|
|
3628
|
+
url_ = url_.replace(/[?&]$/, "");
|
|
3629
|
+
const content_ = JSON.stringify(pRESTSVGRequestModel);
|
|
3630
|
+
let options_ = {
|
|
3631
|
+
body: content_,
|
|
3632
|
+
observe: "response",
|
|
3633
|
+
responseType: "blob",
|
|
3634
|
+
headers: new HttpHeaders({
|
|
3635
|
+
"Content-Type": "application/json",
|
|
3636
|
+
"Accept": "application/json"
|
|
3637
|
+
})
|
|
3638
|
+
};
|
|
3639
|
+
return this.http.request("post", url_, options_).pipe(mergeMap((response_) => {
|
|
3640
|
+
return this.processGetSVGViewModel(response_);
|
|
3641
|
+
})).pipe(catchError((response_) => {
|
|
3642
|
+
if (response_ instanceof HttpResponseBase) {
|
|
3643
|
+
try {
|
|
3644
|
+
return this.processGetSVGViewModel(response_);
|
|
3645
|
+
}
|
|
3646
|
+
catch (e) {
|
|
3647
|
+
return throwError(e);
|
|
3648
|
+
}
|
|
3649
|
+
}
|
|
3650
|
+
else
|
|
3651
|
+
return throwError(response_);
|
|
3652
|
+
}));
|
|
3653
|
+
}
|
|
3654
|
+
processGetSVGViewModel(response) {
|
|
3655
|
+
const status = response.status;
|
|
3656
|
+
const responseBlob = response instanceof HttpResponse ? response.body :
|
|
3657
|
+
response.error instanceof Blob ? response.error : undefined;
|
|
3658
|
+
let _headers = {};
|
|
3659
|
+
if (response.headers) {
|
|
3660
|
+
for (let key of response.headers.keys()) {
|
|
3661
|
+
_headers[key] = response.headers.get(key);
|
|
3662
|
+
}
|
|
3663
|
+
}
|
|
3664
|
+
if (status === 200) {
|
|
3665
|
+
return blobToText(responseBlob).pipe(mergeMap((_responseText) => {
|
|
3666
|
+
let result200 = null;
|
|
3667
|
+
let resultData200 = _responseText === "" ? null : JSON.parse(_responseText, this.jsonParseReviver);
|
|
3668
|
+
result200 = RESTSVGViewModel.fromJS(resultData200);
|
|
3669
|
+
return of(result200);
|
|
3670
|
+
}));
|
|
3671
|
+
}
|
|
3672
|
+
else if (status !== 200 && status !== 204) {
|
|
3673
|
+
return blobToText(responseBlob).pipe(mergeMap((_responseText) => {
|
|
3674
|
+
return throwException("An unexpected server error occurred.", status, _responseText, _headers);
|
|
3675
|
+
}));
|
|
3676
|
+
}
|
|
3677
|
+
return of(null);
|
|
3678
|
+
}
|
|
3679
|
+
getBestekViewModel(pRESTRequestModel) {
|
|
3680
|
+
let url_ = this.baseUrl + "/api/rest/getbestekviewmodel";
|
|
3681
|
+
url_ = url_.replace(/[?&]$/, "");
|
|
3682
|
+
const content_ = JSON.stringify(pRESTRequestModel);
|
|
3683
|
+
let options_ = {
|
|
3684
|
+
body: content_,
|
|
3685
|
+
observe: "response",
|
|
3686
|
+
responseType: "blob",
|
|
3687
|
+
headers: new HttpHeaders({
|
|
3688
|
+
"Content-Type": "application/json",
|
|
3689
|
+
"Accept": "application/json"
|
|
3690
|
+
})
|
|
3691
|
+
};
|
|
3692
|
+
return this.http.request("post", url_, options_).pipe(mergeMap((response_) => {
|
|
3693
|
+
return this.processGetBestekViewModel(response_);
|
|
3694
|
+
})).pipe(catchError((response_) => {
|
|
3695
|
+
if (response_ instanceof HttpResponseBase) {
|
|
3696
|
+
try {
|
|
3697
|
+
return this.processGetBestekViewModel(response_);
|
|
3698
|
+
}
|
|
3699
|
+
catch (e) {
|
|
3700
|
+
return throwError(e);
|
|
3701
|
+
}
|
|
3702
|
+
}
|
|
3703
|
+
else
|
|
3704
|
+
return throwError(response_);
|
|
3705
|
+
}));
|
|
3706
|
+
}
|
|
3707
|
+
processGetBestekViewModel(response) {
|
|
3708
|
+
const status = response.status;
|
|
3709
|
+
const responseBlob = response instanceof HttpResponse ? response.body :
|
|
3710
|
+
response.error instanceof Blob ? response.error : undefined;
|
|
3711
|
+
let _headers = {};
|
|
3712
|
+
if (response.headers) {
|
|
3713
|
+
for (let key of response.headers.keys()) {
|
|
3714
|
+
_headers[key] = response.headers.get(key);
|
|
3715
|
+
}
|
|
3716
|
+
}
|
|
3717
|
+
if (status === 200) {
|
|
3718
|
+
return blobToText(responseBlob).pipe(mergeMap((_responseText) => {
|
|
3719
|
+
let result200 = null;
|
|
3720
|
+
let resultData200 = _responseText === "" ? null : JSON.parse(_responseText, this.jsonParseReviver);
|
|
3721
|
+
result200 = RESTBestekViewModel.fromJS(resultData200);
|
|
3722
|
+
return of(result200);
|
|
3723
|
+
}));
|
|
3724
|
+
}
|
|
3725
|
+
else if (status !== 200 && status !== 204) {
|
|
3726
|
+
return blobToText(responseBlob).pipe(mergeMap((_responseText) => {
|
|
3727
|
+
return throwException("An unexpected server error occurred.", status, _responseText, _headers);
|
|
3728
|
+
}));
|
|
3729
|
+
}
|
|
3730
|
+
return of(null);
|
|
3731
|
+
}
|
|
3732
|
+
getFileViewModel(pRESTFileRequestModel) {
|
|
3733
|
+
let url_ = this.baseUrl + "/api/rest/getfileviewmodel";
|
|
3734
|
+
url_ = url_.replace(/[?&]$/, "");
|
|
3735
|
+
const content_ = JSON.stringify(pRESTFileRequestModel);
|
|
3736
|
+
let options_ = {
|
|
3737
|
+
body: content_,
|
|
3738
|
+
observe: "response",
|
|
3739
|
+
responseType: "blob",
|
|
3740
|
+
headers: new HttpHeaders({
|
|
3741
|
+
"Content-Type": "application/json",
|
|
3742
|
+
"Accept": "application/json"
|
|
3743
|
+
})
|
|
3744
|
+
};
|
|
3745
|
+
return this.http.request("post", url_, options_).pipe(mergeMap((response_) => {
|
|
3746
|
+
return this.processGetFileViewModel(response_);
|
|
3747
|
+
})).pipe(catchError((response_) => {
|
|
3748
|
+
if (response_ instanceof HttpResponseBase) {
|
|
3749
|
+
try {
|
|
3750
|
+
return this.processGetFileViewModel(response_);
|
|
3751
|
+
}
|
|
3752
|
+
catch (e) {
|
|
3753
|
+
return throwError(e);
|
|
3754
|
+
}
|
|
3755
|
+
}
|
|
3756
|
+
else
|
|
3757
|
+
return throwError(response_);
|
|
3758
|
+
}));
|
|
3759
|
+
}
|
|
3760
|
+
processGetFileViewModel(response) {
|
|
3761
|
+
const status = response.status;
|
|
3762
|
+
const responseBlob = response instanceof HttpResponse ? response.body :
|
|
3763
|
+
response.error instanceof Blob ? response.error : undefined;
|
|
3764
|
+
let _headers = {};
|
|
3765
|
+
if (response.headers) {
|
|
3766
|
+
for (let key of response.headers.keys()) {
|
|
3767
|
+
_headers[key] = response.headers.get(key);
|
|
3768
|
+
}
|
|
3769
|
+
}
|
|
3770
|
+
if (status === 200) {
|
|
3771
|
+
return blobToText(responseBlob).pipe(mergeMap((_responseText) => {
|
|
3772
|
+
let result200 = null;
|
|
3773
|
+
let resultData200 = _responseText === "" ? null : JSON.parse(_responseText, this.jsonParseReviver);
|
|
3774
|
+
result200 = RESTFileViewModel.fromJS(resultData200);
|
|
3775
|
+
return of(result200);
|
|
3776
|
+
}));
|
|
3777
|
+
}
|
|
3778
|
+
else if (status !== 200 && status !== 204) {
|
|
3779
|
+
return blobToText(responseBlob).pipe(mergeMap((_responseText) => {
|
|
3780
|
+
return throwException("An unexpected server error occurred.", status, _responseText, _headers);
|
|
3781
|
+
}));
|
|
3782
|
+
}
|
|
3783
|
+
return of(null);
|
|
3784
|
+
}
|
|
3785
|
+
}
|
|
3786
|
+
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 });
|
|
3787
|
+
RESTApiClient.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: RESTApiClient });
|
|
3788
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: RESTApiClient, decorators: [{
|
|
3789
|
+
type: Injectable
|
|
3790
|
+
}], ctorParameters: function () { return [{ type: i1.HttpClient, decorators: [{
|
|
3791
|
+
type: Inject,
|
|
3792
|
+
args: [HttpClient]
|
|
3793
|
+
}] }, { type: undefined, decorators: [{
|
|
3794
|
+
type: Optional
|
|
3795
|
+
}, {
|
|
3796
|
+
type: Inject,
|
|
3797
|
+
args: [API_BASE_URL]
|
|
3798
|
+
}] }]; } });
|
|
3517
3799
|
class SearchProductsApiClient {
|
|
3518
3800
|
constructor(http, baseUrl) {
|
|
3519
3801
|
this.jsonParseReviver = undefined;
|
|
@@ -5420,16 +5702,6 @@ class FabrikantenViewModel {
|
|
|
5420
5702
|
if (_data) {
|
|
5421
5703
|
this.sessionId = _data["sessionId"];
|
|
5422
5704
|
this.checksum = _data["checksum"];
|
|
5423
|
-
this.bcbWebserviceURLBase = _data["bcbWebserviceURLBase"];
|
|
5424
|
-
this.hideBreadcrumbInIframe = _data["hideBreadcrumbInIframe"];
|
|
5425
|
-
this.hideInformationTab = _data["hideInformationTab"];
|
|
5426
|
-
this.startTab = _data["startTab"];
|
|
5427
|
-
this.alwaysShowVariant = _data["alwaysShowVariant"];
|
|
5428
|
-
this.enableToebehoren = _data["enableToebehoren"];
|
|
5429
|
-
this.showBCBButton = _data["showBCBButton"];
|
|
5430
|
-
this.enableNCSOriginalColours = _data["enableNCSOriginalColours"];
|
|
5431
|
-
this.enableCustomTopColours = _data["enableCustomTopColours"];
|
|
5432
|
-
this.enableVrijeBestekTekst = _data["enableVrijeBestekTekst"];
|
|
5433
5705
|
this.productSelectBlockedByFilters = _data["productSelectBlockedByFilters"];
|
|
5434
5706
|
if (Array.isArray(_data["categoryLayers"])) {
|
|
5435
5707
|
this.categoryLayers = [];
|
|
@@ -5464,16 +5736,6 @@ class FabrikantenViewModel {
|
|
|
5464
5736
|
data = typeof data === 'object' ? data : {};
|
|
5465
5737
|
data["sessionId"] = this.sessionId;
|
|
5466
5738
|
data["checksum"] = this.checksum;
|
|
5467
|
-
data["bcbWebserviceURLBase"] = this.bcbWebserviceURLBase;
|
|
5468
|
-
data["hideBreadcrumbInIframe"] = this.hideBreadcrumbInIframe;
|
|
5469
|
-
data["hideInformationTab"] = this.hideInformationTab;
|
|
5470
|
-
data["startTab"] = this.startTab;
|
|
5471
|
-
data["alwaysShowVariant"] = this.alwaysShowVariant;
|
|
5472
|
-
data["enableToebehoren"] = this.enableToebehoren;
|
|
5473
|
-
data["showBCBButton"] = this.showBCBButton;
|
|
5474
|
-
data["enableNCSOriginalColours"] = this.enableNCSOriginalColours;
|
|
5475
|
-
data["enableCustomTopColours"] = this.enableCustomTopColours;
|
|
5476
|
-
data["enableVrijeBestekTekst"] = this.enableVrijeBestekTekst;
|
|
5477
5739
|
data["productSelectBlockedByFilters"] = this.productSelectBlockedByFilters;
|
|
5478
5740
|
if (Array.isArray(this.categoryLayers)) {
|
|
5479
5741
|
data["categoryLayers"] = [];
|
|
@@ -6060,7 +6322,55 @@ class FabrikantenRequestModel {
|
|
|
6060
6322
|
}
|
|
6061
6323
|
toJSON(data) {
|
|
6062
6324
|
data = typeof data === 'object' ? data : {};
|
|
6063
|
-
data["sessionId"] = this.sessionId;
|
|
6325
|
+
data["sessionId"] = this.sessionId;
|
|
6326
|
+
return data;
|
|
6327
|
+
}
|
|
6328
|
+
}
|
|
6329
|
+
class FabrikantenSettingsViewModel {
|
|
6330
|
+
constructor(data) {
|
|
6331
|
+
if (data) {
|
|
6332
|
+
for (var property in data) {
|
|
6333
|
+
if (data.hasOwnProperty(property))
|
|
6334
|
+
this[property] = data[property];
|
|
6335
|
+
}
|
|
6336
|
+
}
|
|
6337
|
+
}
|
|
6338
|
+
init(_data) {
|
|
6339
|
+
if (_data) {
|
|
6340
|
+
this.bcbWebserviceURLBase = _data["bcbWebserviceURLBase"];
|
|
6341
|
+
this.hideBreadcrumbInIframe = _data["hideBreadcrumbInIframe"];
|
|
6342
|
+
this.hideInformationTab = _data["hideInformationTab"];
|
|
6343
|
+
this.startTab = _data["startTab"];
|
|
6344
|
+
this.alwaysShowVariant = _data["alwaysShowVariant"];
|
|
6345
|
+
this.enableToebehoren = _data["enableToebehoren"];
|
|
6346
|
+
this.showBCBButton = _data["showBCBButton"];
|
|
6347
|
+
this.enableNCSOriginalColours = _data["enableNCSOriginalColours"];
|
|
6348
|
+
this.enableCustomTopColours = _data["enableCustomTopColours"];
|
|
6349
|
+
this.enableVrijeBestekTekst = _data["enableVrijeBestekTekst"];
|
|
6350
|
+
this.customRedirect = _data["customRedirect"];
|
|
6351
|
+
this.disableCustomFileNames = _data["disableCustomFileNames"];
|
|
6352
|
+
}
|
|
6353
|
+
}
|
|
6354
|
+
static fromJS(data) {
|
|
6355
|
+
data = typeof data === 'object' ? data : {};
|
|
6356
|
+
let result = new FabrikantenSettingsViewModel();
|
|
6357
|
+
result.init(data);
|
|
6358
|
+
return result;
|
|
6359
|
+
}
|
|
6360
|
+
toJSON(data) {
|
|
6361
|
+
data = typeof data === 'object' ? data : {};
|
|
6362
|
+
data["bcbWebserviceURLBase"] = this.bcbWebserviceURLBase;
|
|
6363
|
+
data["hideBreadcrumbInIframe"] = this.hideBreadcrumbInIframe;
|
|
6364
|
+
data["hideInformationTab"] = this.hideInformationTab;
|
|
6365
|
+
data["startTab"] = this.startTab;
|
|
6366
|
+
data["alwaysShowVariant"] = this.alwaysShowVariant;
|
|
6367
|
+
data["enableToebehoren"] = this.enableToebehoren;
|
|
6368
|
+
data["showBCBButton"] = this.showBCBButton;
|
|
6369
|
+
data["enableNCSOriginalColours"] = this.enableNCSOriginalColours;
|
|
6370
|
+
data["enableCustomTopColours"] = this.enableCustomTopColours;
|
|
6371
|
+
data["enableVrijeBestekTekst"] = this.enableVrijeBestekTekst;
|
|
6372
|
+
data["customRedirect"] = this.customRedirect;
|
|
6373
|
+
data["disableCustomFileNames"] = this.disableCustomFileNames;
|
|
6064
6374
|
return data;
|
|
6065
6375
|
}
|
|
6066
6376
|
}
|
|
@@ -8764,6 +9074,242 @@ class SetProjectSettingRequestModel {
|
|
|
8764
9074
|
return data;
|
|
8765
9075
|
}
|
|
8766
9076
|
}
|
|
9077
|
+
class REST3DViewModel {
|
|
9078
|
+
constructor(data) {
|
|
9079
|
+
if (data) {
|
|
9080
|
+
for (var property in data) {
|
|
9081
|
+
if (data.hasOwnProperty(property))
|
|
9082
|
+
this[property] = data[property];
|
|
9083
|
+
}
|
|
9084
|
+
}
|
|
9085
|
+
}
|
|
9086
|
+
init(_data) {
|
|
9087
|
+
if (_data) {
|
|
9088
|
+
this.webGLJSON = _data["webGLJSON"];
|
|
9089
|
+
}
|
|
9090
|
+
}
|
|
9091
|
+
static fromJS(data) {
|
|
9092
|
+
data = typeof data === 'object' ? data : {};
|
|
9093
|
+
let result = new REST3DViewModel();
|
|
9094
|
+
result.init(data);
|
|
9095
|
+
return result;
|
|
9096
|
+
}
|
|
9097
|
+
toJSON(data) {
|
|
9098
|
+
data = typeof data === 'object' ? data : {};
|
|
9099
|
+
data["webGLJSON"] = this.webGLJSON;
|
|
9100
|
+
return data;
|
|
9101
|
+
}
|
|
9102
|
+
}
|
|
9103
|
+
class RESTRequestModel {
|
|
9104
|
+
constructor(data) {
|
|
9105
|
+
if (data) {
|
|
9106
|
+
for (var property in data) {
|
|
9107
|
+
if (data.hasOwnProperty(property))
|
|
9108
|
+
this[property] = data[property];
|
|
9109
|
+
}
|
|
9110
|
+
}
|
|
9111
|
+
}
|
|
9112
|
+
init(_data) {
|
|
9113
|
+
if (_data) {
|
|
9114
|
+
this.productId = _data["productId"];
|
|
9115
|
+
if (Array.isArray(_data["parameters"])) {
|
|
9116
|
+
this.parameters = [];
|
|
9117
|
+
for (let item of _data["parameters"])
|
|
9118
|
+
this.parameters.push(RESTParameter.fromJS(item));
|
|
9119
|
+
}
|
|
9120
|
+
}
|
|
9121
|
+
}
|
|
9122
|
+
static fromJS(data) {
|
|
9123
|
+
data = typeof data === 'object' ? data : {};
|
|
9124
|
+
let result = new RESTRequestModel();
|
|
9125
|
+
result.init(data);
|
|
9126
|
+
return result;
|
|
9127
|
+
}
|
|
9128
|
+
toJSON(data) {
|
|
9129
|
+
data = typeof data === 'object' ? data : {};
|
|
9130
|
+
data["productId"] = this.productId;
|
|
9131
|
+
if (Array.isArray(this.parameters)) {
|
|
9132
|
+
data["parameters"] = [];
|
|
9133
|
+
for (let item of this.parameters)
|
|
9134
|
+
data["parameters"].push(item.toJSON());
|
|
9135
|
+
}
|
|
9136
|
+
return data;
|
|
9137
|
+
}
|
|
9138
|
+
}
|
|
9139
|
+
class RESTParameter {
|
|
9140
|
+
constructor(data) {
|
|
9141
|
+
if (data) {
|
|
9142
|
+
for (var property in data) {
|
|
9143
|
+
if (data.hasOwnProperty(property))
|
|
9144
|
+
this[property] = data[property];
|
|
9145
|
+
}
|
|
9146
|
+
}
|
|
9147
|
+
}
|
|
9148
|
+
init(_data) {
|
|
9149
|
+
if (_data) {
|
|
9150
|
+
this.name = _data["name"];
|
|
9151
|
+
this.value = _data["value"];
|
|
9152
|
+
}
|
|
9153
|
+
}
|
|
9154
|
+
static fromJS(data) {
|
|
9155
|
+
data = typeof data === 'object' ? data : {};
|
|
9156
|
+
let result = new RESTParameter();
|
|
9157
|
+
result.init(data);
|
|
9158
|
+
return result;
|
|
9159
|
+
}
|
|
9160
|
+
toJSON(data) {
|
|
9161
|
+
data = typeof data === 'object' ? data : {};
|
|
9162
|
+
data["name"] = this.name;
|
|
9163
|
+
data["value"] = this.value;
|
|
9164
|
+
return data;
|
|
9165
|
+
}
|
|
9166
|
+
}
|
|
9167
|
+
class RESTSVGViewModel {
|
|
9168
|
+
constructor(data) {
|
|
9169
|
+
if (data) {
|
|
9170
|
+
for (var property in data) {
|
|
9171
|
+
if (data.hasOwnProperty(property))
|
|
9172
|
+
this[property] = data[property];
|
|
9173
|
+
}
|
|
9174
|
+
}
|
|
9175
|
+
}
|
|
9176
|
+
init(_data) {
|
|
9177
|
+
if (_data) {
|
|
9178
|
+
this.svg = _data["svg"];
|
|
9179
|
+
}
|
|
9180
|
+
}
|
|
9181
|
+
static fromJS(data) {
|
|
9182
|
+
data = typeof data === 'object' ? data : {};
|
|
9183
|
+
let result = new RESTSVGViewModel();
|
|
9184
|
+
result.init(data);
|
|
9185
|
+
return result;
|
|
9186
|
+
}
|
|
9187
|
+
toJSON(data) {
|
|
9188
|
+
data = typeof data === 'object' ? data : {};
|
|
9189
|
+
data["svg"] = this.svg;
|
|
9190
|
+
return data;
|
|
9191
|
+
}
|
|
9192
|
+
}
|
|
9193
|
+
class RESTSVGRequestModel {
|
|
9194
|
+
constructor(data) {
|
|
9195
|
+
if (data) {
|
|
9196
|
+
for (var property in data) {
|
|
9197
|
+
if (data.hasOwnProperty(property))
|
|
9198
|
+
this[property] = data[property];
|
|
9199
|
+
}
|
|
9200
|
+
}
|
|
9201
|
+
}
|
|
9202
|
+
init(_data) {
|
|
9203
|
+
if (_data) {
|
|
9204
|
+
this.requestModel = _data["requestModel"] ? RESTRequestModel.fromJS(_data["requestModel"]) : undefined;
|
|
9205
|
+
this.width = _data["width"];
|
|
9206
|
+
this.height = _data["height"];
|
|
9207
|
+
this.snede = _data["snede"];
|
|
9208
|
+
this.schaal = _data["schaal"];
|
|
9209
|
+
}
|
|
9210
|
+
}
|
|
9211
|
+
static fromJS(data) {
|
|
9212
|
+
data = typeof data === 'object' ? data : {};
|
|
9213
|
+
let result = new RESTSVGRequestModel();
|
|
9214
|
+
result.init(data);
|
|
9215
|
+
return result;
|
|
9216
|
+
}
|
|
9217
|
+
toJSON(data) {
|
|
9218
|
+
data = typeof data === 'object' ? data : {};
|
|
9219
|
+
data["requestModel"] = this.requestModel ? this.requestModel.toJSON() : undefined;
|
|
9220
|
+
data["width"] = this.width;
|
|
9221
|
+
data["height"] = this.height;
|
|
9222
|
+
data["snede"] = this.snede;
|
|
9223
|
+
data["schaal"] = this.schaal;
|
|
9224
|
+
return data;
|
|
9225
|
+
}
|
|
9226
|
+
}
|
|
9227
|
+
class RESTBestekViewModel {
|
|
9228
|
+
constructor(data) {
|
|
9229
|
+
if (data) {
|
|
9230
|
+
for (var property in data) {
|
|
9231
|
+
if (data.hasOwnProperty(property))
|
|
9232
|
+
this[property] = data[property];
|
|
9233
|
+
}
|
|
9234
|
+
}
|
|
9235
|
+
}
|
|
9236
|
+
init(_data) {
|
|
9237
|
+
if (_data) {
|
|
9238
|
+
this.stabu = _data["stabu"];
|
|
9239
|
+
this.suf = _data["suf"];
|
|
9240
|
+
this.vrijBestekHTML = _data["vrijBestekHTML"];
|
|
9241
|
+
}
|
|
9242
|
+
}
|
|
9243
|
+
static fromJS(data) {
|
|
9244
|
+
data = typeof data === 'object' ? data : {};
|
|
9245
|
+
let result = new RESTBestekViewModel();
|
|
9246
|
+
result.init(data);
|
|
9247
|
+
return result;
|
|
9248
|
+
}
|
|
9249
|
+
toJSON(data) {
|
|
9250
|
+
data = typeof data === 'object' ? data : {};
|
|
9251
|
+
data["stabu"] = this.stabu;
|
|
9252
|
+
data["suf"] = this.suf;
|
|
9253
|
+
data["vrijBestekHTML"] = this.vrijBestekHTML;
|
|
9254
|
+
return data;
|
|
9255
|
+
}
|
|
9256
|
+
}
|
|
9257
|
+
class RESTFileViewModel {
|
|
9258
|
+
constructor(data) {
|
|
9259
|
+
if (data) {
|
|
9260
|
+
for (var property in data) {
|
|
9261
|
+
if (data.hasOwnProperty(property))
|
|
9262
|
+
this[property] = data[property];
|
|
9263
|
+
}
|
|
9264
|
+
}
|
|
9265
|
+
}
|
|
9266
|
+
init(_data) {
|
|
9267
|
+
if (_data) {
|
|
9268
|
+
this.file = _data["file"];
|
|
9269
|
+
}
|
|
9270
|
+
}
|
|
9271
|
+
static fromJS(data) {
|
|
9272
|
+
data = typeof data === 'object' ? data : {};
|
|
9273
|
+
let result = new RESTFileViewModel();
|
|
9274
|
+
result.init(data);
|
|
9275
|
+
return result;
|
|
9276
|
+
}
|
|
9277
|
+
toJSON(data) {
|
|
9278
|
+
data = typeof data === 'object' ? data : {};
|
|
9279
|
+
data["file"] = this.file;
|
|
9280
|
+
return data;
|
|
9281
|
+
}
|
|
9282
|
+
}
|
|
9283
|
+
class RESTFileRequestModel {
|
|
9284
|
+
constructor(data) {
|
|
9285
|
+
if (data) {
|
|
9286
|
+
for (var property in data) {
|
|
9287
|
+
if (data.hasOwnProperty(property))
|
|
9288
|
+
this[property] = data[property];
|
|
9289
|
+
}
|
|
9290
|
+
}
|
|
9291
|
+
}
|
|
9292
|
+
init(_data) {
|
|
9293
|
+
if (_data) {
|
|
9294
|
+
this.requestModel = _data["requestModel"] ? RESTRequestModel.fromJS(_data["requestModel"]) : undefined;
|
|
9295
|
+
this.fileType = _data["fileType"];
|
|
9296
|
+
this.model3D = _data["model3D"];
|
|
9297
|
+
}
|
|
9298
|
+
}
|
|
9299
|
+
static fromJS(data) {
|
|
9300
|
+
data = typeof data === 'object' ? data : {};
|
|
9301
|
+
let result = new RESTFileRequestModel();
|
|
9302
|
+
result.init(data);
|
|
9303
|
+
return result;
|
|
9304
|
+
}
|
|
9305
|
+
toJSON(data) {
|
|
9306
|
+
data = typeof data === 'object' ? data : {};
|
|
9307
|
+
data["requestModel"] = this.requestModel ? this.requestModel.toJSON() : undefined;
|
|
9308
|
+
data["fileType"] = this.fileType;
|
|
9309
|
+
data["model3D"] = this.model3D;
|
|
9310
|
+
return data;
|
|
9311
|
+
}
|
|
9312
|
+
}
|
|
8767
9313
|
class SearchProductsResponseModel {
|
|
8768
9314
|
constructor(data) {
|
|
8769
9315
|
if (data) {
|
|
@@ -10161,18 +10707,20 @@ class NavigateService {
|
|
|
10161
10707
|
}
|
|
10162
10708
|
RefreshPage() {
|
|
10163
10709
|
if (this.FabrikantenService != null && this.TranslateService != null) {
|
|
10164
|
-
if (this.
|
|
10165
|
-
if (this.FabrikantenService.
|
|
10166
|
-
this.
|
|
10167
|
-
|
|
10168
|
-
|
|
10169
|
-
|
|
10170
|
-
|
|
10171
|
-
|
|
10172
|
-
|
|
10173
|
-
|
|
10174
|
-
|
|
10175
|
-
|
|
10710
|
+
if (this.FabrikantenService.FabrikantenSettingsViewModel?.customRedirect == null || this.FabrikantenService.FabrikantenSettingsViewModel?.customRedirect == "") {
|
|
10711
|
+
if (this.TranslateService.ActiveLanguage != null && this.FabrikantenService.FabrikantenViewModel != null) {
|
|
10712
|
+
if (this.FabrikantenService.ShowCategories()) {
|
|
10713
|
+
this.Router.navigate(['/', this.TranslateService.ActiveLanguage.countryCode, 'categories']);
|
|
10714
|
+
this.StatisticsService.PageView("categories");
|
|
10715
|
+
}
|
|
10716
|
+
else if (this.FabrikantenService.FabrikantenViewModel.selectedProduct != null) {
|
|
10717
|
+
this.Router.navigate(['/', this.TranslateService.ActiveLanguage.countryCode, 'product', this.FabrikantenService.FabrikantenViewModel.selectedProduct.urlName]);
|
|
10718
|
+
this.StatisticsService.PageView("product");
|
|
10719
|
+
}
|
|
10720
|
+
else {
|
|
10721
|
+
this.Router.navigate(['/', this.TranslateService.ActiveLanguage.countryCode, 'products']);
|
|
10722
|
+
this.StatisticsService.PageView("products");
|
|
10723
|
+
}
|
|
10176
10724
|
}
|
|
10177
10725
|
}
|
|
10178
10726
|
}
|
|
@@ -10207,7 +10755,7 @@ class TranslateService {
|
|
|
10207
10755
|
this.ProcessDesiredCountryCode();
|
|
10208
10756
|
}
|
|
10209
10757
|
}
|
|
10210
|
-
LoadTranslations(ChangeDetectorRef) {
|
|
10758
|
+
LoadTranslations(ChangeDetectorRef, FabrikantenService, ActivatedRoute) {
|
|
10211
10759
|
if (!this.Init) {
|
|
10212
10760
|
this.Init = true;
|
|
10213
10761
|
this.Loading = true;
|
|
@@ -10228,6 +10776,9 @@ class TranslateService {
|
|
|
10228
10776
|
this.ProcessDesiredCountryCode();
|
|
10229
10777
|
this.NavigateService.RefreshPage();
|
|
10230
10778
|
ChangeDetectorRef.detectChanges();
|
|
10779
|
+
if (FabrikantenService != null) {
|
|
10780
|
+
FabrikantenService.LoadFabrikantenViewModel(ChangeDetectorRef, ActivatedRoute);
|
|
10781
|
+
}
|
|
10231
10782
|
}, (error) => {
|
|
10232
10783
|
if (error.status == 400)
|
|
10233
10784
|
alert(error.json());
|
|
@@ -10661,7 +11212,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImpor
|
|
|
10661
11212
|
}], ctorParameters: function () { return [{ type: FabrikantenApiClient }]; } });
|
|
10662
11213
|
|
|
10663
11214
|
class FabrikantenService {
|
|
10664
|
-
constructor(FabrikantenApiClient, BestekService, TranslateService, WebGLService, SVGService, TextureService, NavigateService, StatisticsService) {
|
|
11215
|
+
constructor(FabrikantenApiClient, BestekService, TranslateService, WebGLService, SVGService, TextureService, NavigateService, Router, StatisticsService) {
|
|
10665
11216
|
this.FabrikantenApiClient = FabrikantenApiClient;
|
|
10666
11217
|
this.BestekService = BestekService;
|
|
10667
11218
|
this.TranslateService = TranslateService;
|
|
@@ -10669,6 +11220,7 @@ class FabrikantenService {
|
|
|
10669
11220
|
this.SVGService = SVGService;
|
|
10670
11221
|
this.TextureService = TextureService;
|
|
10671
11222
|
this.NavigateService = NavigateService;
|
|
11223
|
+
this.Router = Router;
|
|
10672
11224
|
this.StatisticsService = StatisticsService;
|
|
10673
11225
|
this.Init = false;
|
|
10674
11226
|
this.Loading = true;
|
|
@@ -10681,6 +11233,7 @@ class FabrikantenService {
|
|
|
10681
11233
|
this.Download2DDxfLoading = false;
|
|
10682
11234
|
this.DownloadRFALoading = false;
|
|
10683
11235
|
this.SelectedTabIndex = 0;
|
|
11236
|
+
this.SettingsLoaded = false;
|
|
10684
11237
|
this.SelectedPhoto = 0;
|
|
10685
11238
|
this.SelectedToebehoren = null;
|
|
10686
11239
|
this.SelectedTabSet = false;
|
|
@@ -10989,14 +11542,14 @@ class FabrikantenService {
|
|
|
10989
11542
|
return false;
|
|
10990
11543
|
}
|
|
10991
11544
|
ShowToebehoren() {
|
|
10992
|
-
if (this.
|
|
11545
|
+
if (this.FabrikantenSettingsViewModel?.enableToebehoren == true) {
|
|
10993
11546
|
return true;
|
|
10994
11547
|
}
|
|
10995
11548
|
return false;
|
|
10996
11549
|
}
|
|
10997
11550
|
ShowVariants() {
|
|
10998
|
-
if (this.FabrikantenViewModel != null) {
|
|
10999
|
-
if (!this.
|
|
11551
|
+
if (this.FabrikantenViewModel != null && this.FabrikantenSettingsViewModel != null) {
|
|
11552
|
+
if (!this.FabrikantenSettingsViewModel.alwaysShowVariant) {
|
|
11000
11553
|
var bcbproducts = this.FabrikantenViewModel.selectedProduct?.fabrikantenBCBProductViewModels;
|
|
11001
11554
|
if (bcbproducts != null && bcbproducts.length > 1) {
|
|
11002
11555
|
return true;
|
|
@@ -11066,25 +11619,62 @@ class FabrikantenService {
|
|
|
11066
11619
|
}
|
|
11067
11620
|
LoadFabrikantenViewModel(ChangeDetectorRef, ActivatedRoute) {
|
|
11068
11621
|
if (!this.Init) {
|
|
11069
|
-
this.Init = true;
|
|
11070
11622
|
this.Loading = true;
|
|
11071
11623
|
ChangeDetectorRef.detectChanges();
|
|
11072
|
-
|
|
11073
|
-
|
|
11074
|
-
request.sessionId = this.FabrikantenViewModel.sessionId;
|
|
11624
|
+
if (!this.SettingsLoaded) {
|
|
11625
|
+
this.LoadFabrikantenSettingsViewModel(ChangeDetectorRef, ActivatedRoute);
|
|
11075
11626
|
}
|
|
11076
11627
|
else {
|
|
11077
|
-
|
|
11628
|
+
if (!this.TranslateService.Init) {
|
|
11629
|
+
this.TranslateService.LoadTranslations(ChangeDetectorRef, this, ActivatedRoute);
|
|
11630
|
+
}
|
|
11631
|
+
else {
|
|
11632
|
+
this.Init = true;
|
|
11633
|
+
var request = new FabrikantenRequestModel();
|
|
11634
|
+
if (this.FabrikantenViewModel != null) {
|
|
11635
|
+
request.sessionId = this.FabrikantenViewModel.sessionId;
|
|
11636
|
+
}
|
|
11637
|
+
else {
|
|
11638
|
+
request.sessionId = "";
|
|
11639
|
+
}
|
|
11640
|
+
this.FabrikantenApiClient.getFabrikantenViewModel(request).subscribe((model) => {
|
|
11641
|
+
this.FabrikantenViewModel = model;
|
|
11642
|
+
this.SelectedPhoto = 0;
|
|
11643
|
+
this.Loading = false;
|
|
11644
|
+
ChangeDetectorRef.detectChanges();
|
|
11645
|
+
this.TriggerReloads(ChangeDetectorRef);
|
|
11646
|
+
if (this.ProcessParameters(ActivatedRoute, ChangeDetectorRef)) {
|
|
11647
|
+
this.NavigateService.RefreshPage();
|
|
11648
|
+
this.Loaded = true;
|
|
11649
|
+
}
|
|
11650
|
+
}, (error) => {
|
|
11651
|
+
if (error.status == 400)
|
|
11652
|
+
console.log(error.json());
|
|
11653
|
+
else {
|
|
11654
|
+
console.log('An unexpected error occured');
|
|
11655
|
+
console.log(error);
|
|
11656
|
+
}
|
|
11657
|
+
this.Loading = false;
|
|
11658
|
+
ChangeDetectorRef.detectChanges();
|
|
11659
|
+
});
|
|
11660
|
+
}
|
|
11078
11661
|
}
|
|
11079
|
-
|
|
11080
|
-
|
|
11081
|
-
|
|
11662
|
+
}
|
|
11663
|
+
}
|
|
11664
|
+
LoadFabrikantenSettingsViewModel(ChangeDetectorRef, ActivatedRoute) {
|
|
11665
|
+
if (!this.SettingsLoaded) {
|
|
11666
|
+
this.Loading = true;
|
|
11667
|
+
ChangeDetectorRef.detectChanges();
|
|
11668
|
+
this.FabrikantenApiClient.getFabrikantenSettingsViewModel().subscribe((model) => {
|
|
11669
|
+
this.FabrikantenSettingsViewModel = model;
|
|
11082
11670
|
this.Loading = false;
|
|
11671
|
+
this.SettingsLoaded = true;
|
|
11083
11672
|
ChangeDetectorRef.detectChanges();
|
|
11084
|
-
this.
|
|
11085
|
-
|
|
11086
|
-
|
|
11087
|
-
|
|
11673
|
+
if (this.FabrikantenSettingsViewModel.customRedirect != null && this.FabrikantenSettingsViewModel.customRedirect != "") {
|
|
11674
|
+
window.location.href = this.FabrikantenSettingsViewModel.customRedirect;
|
|
11675
|
+
}
|
|
11676
|
+
else {
|
|
11677
|
+
this.LoadFabrikantenViewModel(ChangeDetectorRef, ActivatedRoute);
|
|
11088
11678
|
}
|
|
11089
11679
|
}, (error) => {
|
|
11090
11680
|
if (error.status == 400)
|
|
@@ -11118,16 +11708,16 @@ class FabrikantenService {
|
|
|
11118
11708
|
return true;
|
|
11119
11709
|
}
|
|
11120
11710
|
ResetTabs() {
|
|
11121
|
-
if (this.
|
|
11122
|
-
this.SelectedTab = this.
|
|
11711
|
+
if (this.FabrikantenSettingsViewModel.startTab != null) {
|
|
11712
|
+
this.SelectedTab = this.FabrikantenSettingsViewModel.startTab;
|
|
11123
11713
|
}
|
|
11124
|
-
else if (this.
|
|
11714
|
+
else if (this.FabrikantenSettingsViewModel.hideInformationTab) {
|
|
11125
11715
|
this.SelectedTab = "3D";
|
|
11126
11716
|
}
|
|
11127
11717
|
else {
|
|
11128
11718
|
this.SelectedTab = "Informatie";
|
|
11129
11719
|
}
|
|
11130
|
-
if (this.
|
|
11720
|
+
if (this.FabrikantenSettingsViewModel.hideInformationTab) {
|
|
11131
11721
|
if (this.SelectedTab == "3D") {
|
|
11132
11722
|
this.SelectedTabIndex = 0;
|
|
11133
11723
|
}
|
|
@@ -11491,6 +12081,9 @@ class FabrikantenService {
|
|
|
11491
12081
|
}
|
|
11492
12082
|
StartDownload(url, extension) {
|
|
11493
12083
|
var filename = this.CollectFileName();
|
|
12084
|
+
if (this.FabrikantenSettingsViewModel.disableCustomFileNames) {
|
|
12085
|
+
filename = url.substring(url.lastIndexOf('\\') + 1);
|
|
12086
|
+
}
|
|
11494
12087
|
if (filename != "") {
|
|
11495
12088
|
filename = filename + extension;
|
|
11496
12089
|
window.location.href = "/Download/Download?pUrl=" + url + "&pFileName=" + filename;
|
|
@@ -11557,7 +12150,7 @@ class FabrikantenService {
|
|
|
11557
12150
|
TriggerReloads(ChangeDetectorRef) {
|
|
11558
12151
|
if (!this.ShowRequired()) {
|
|
11559
12152
|
var array = this.FabrikantenViewModel.selectedProduct?.fabrikantenBCBProductViewModels;
|
|
11560
|
-
if (array != null && (array.length == 1 || this.
|
|
12153
|
+
if (array != null && (array.length == 1 || this.FabrikantenSettingsViewModel.alwaysShowVariant)) {
|
|
11561
12154
|
if (this.SelectedTab == "Bestek") {
|
|
11562
12155
|
if (this.FabrikantenViewModel.checksum != this.BestekService.FabrikantenBestekViewModel?.checksum) {
|
|
11563
12156
|
this.BestekService.LoadFabrikantenBestekViewModel(this.FabrikantenViewModel.sessionId, ChangeDetectorRef);
|
|
@@ -11620,12 +12213,12 @@ class FabrikantenService {
|
|
|
11620
12213
|
return toebehoren;
|
|
11621
12214
|
}
|
|
11622
12215
|
}
|
|
11623
|
-
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 });
|
|
12216
|
+
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 });
|
|
11624
12217
|
FabrikantenService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: FabrikantenService, providedIn: 'root' });
|
|
11625
12218
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: FabrikantenService, decorators: [{
|
|
11626
12219
|
type: Injectable,
|
|
11627
12220
|
args: [{ providedIn: 'root' }]
|
|
11628
|
-
}], ctorParameters: function () { return [{ type: FabrikantenApiClient }, { type: BestekService }, { type: TranslateService }, { type: WebGLService }, { type: SVGService }, { type: TextureService }, { type: NavigateService }, { type: StatisticsService }]; } });
|
|
12221
|
+
}], ctorParameters: function () { return [{ type: FabrikantenApiClient }, { type: BestekService }, { type: TranslateService }, { type: WebGLService }, { type: SVGService }, { type: TextureService }, { type: NavigateService }, { type: i1$1.Router }, { type: StatisticsService }]; } });
|
|
11629
12222
|
|
|
11630
12223
|
class FabFiltersComponent {
|
|
11631
12224
|
constructor(MobileService, FabrikantenService, BestekService, TranslateService, ActivatedRoute, ChangeDetectorRef) {
|
|
@@ -11640,7 +12233,6 @@ class FabFiltersComponent {
|
|
|
11640
12233
|
ngOnInit() {
|
|
11641
12234
|
this.MobileService.UpdateScreenSize(window.innerWidth, window.innerHeight, this.ChangeDetectorRef);
|
|
11642
12235
|
this.FabrikantenService.LoadFabrikantenViewModel(this.ChangeDetectorRef, null);
|
|
11643
|
-
this.TranslateService.LoadTranslations(this.ChangeDetectorRef);
|
|
11644
12236
|
}
|
|
11645
12237
|
onResize(event) {
|
|
11646
12238
|
this.MobileService.UpdateScreenSize(window.innerWidth, window.innerHeight, this.ChangeDetectorRef);
|
|
@@ -12117,7 +12709,7 @@ class PhotoService {
|
|
|
12117
12709
|
return "";
|
|
12118
12710
|
}
|
|
12119
12711
|
else {
|
|
12120
|
-
return this.FabrikantenService.
|
|
12712
|
+
return this.FabrikantenService.FabrikantenSettingsViewModel?.bcbWebserviceURLBase + array[this.FabrikantenService.SelectedPhoto].url;
|
|
12121
12713
|
}
|
|
12122
12714
|
}
|
|
12123
12715
|
GetSelectedDescription() {
|
|
@@ -14432,7 +15024,7 @@ class FabActionmenuComponent {
|
|
|
14432
15024
|
return this.display == "Toebehoren";
|
|
14433
15025
|
}
|
|
14434
15026
|
ShowBCBButton() {
|
|
14435
|
-
if (this.FabrikantenService.
|
|
15027
|
+
if (this.FabrikantenService.FabrikantenSettingsViewModel?.showBCBButton == true) {
|
|
14436
15028
|
return true;
|
|
14437
15029
|
}
|
|
14438
15030
|
return false;
|
|
@@ -14477,7 +15069,7 @@ class FabActionmenuComponent {
|
|
|
14477
15069
|
return this.BestekService.FabrikantenBestekViewModel?.osfhtml != '' && this.BestekService.FabrikantenBestekViewModel?.osfhtml != undefined;
|
|
14478
15070
|
}
|
|
14479
15071
|
ShowVrij() {
|
|
14480
|
-
if (this.FabrikantenService.
|
|
15072
|
+
if (this.FabrikantenService.FabrikantenSettingsViewModel?.enableVrijeBestekTekst == false) {
|
|
14481
15073
|
return false;
|
|
14482
15074
|
}
|
|
14483
15075
|
return this.BestekService.FabrikantenBestekViewModel?.vrijBestekHTML != '' && this.BestekService.FabrikantenBestekViewModel?.vrijBestekHTML != undefined;
|
|
@@ -14659,14 +15251,14 @@ class FabFilterColourDialogComponent {
|
|
|
14659
15251
|
this.AddColours();
|
|
14660
15252
|
}
|
|
14661
15253
|
ShowNCSOriginals() {
|
|
14662
|
-
if (this.FabrikantenService.
|
|
14663
|
-
return this.FabrikantenService.
|
|
15254
|
+
if (this.FabrikantenService.FabrikantenSettingsViewModel != null) {
|
|
15255
|
+
return this.FabrikantenService.FabrikantenSettingsViewModel.enableNCSOriginalColours;
|
|
14664
15256
|
}
|
|
14665
15257
|
return false;
|
|
14666
15258
|
}
|
|
14667
15259
|
ShowCustomTopColours() {
|
|
14668
|
-
if (this.FabrikantenService.
|
|
14669
|
-
return this.FabrikantenService.
|
|
15260
|
+
if (this.FabrikantenService.FabrikantenSettingsViewModel != null) {
|
|
15261
|
+
return this.FabrikantenService.FabrikantenSettingsViewModel.enableCustomTopColours;
|
|
14670
15262
|
}
|
|
14671
15263
|
return false;
|
|
14672
15264
|
}
|
|
@@ -15390,8 +15982,8 @@ class FabBreadcrumbComponent {
|
|
|
15390
15982
|
return false;
|
|
15391
15983
|
}
|
|
15392
15984
|
HideBreadcrumb() {
|
|
15393
|
-
if (this.FabrikantenService.
|
|
15394
|
-
if (this.FabrikantenService.
|
|
15985
|
+
if (this.FabrikantenService.FabrikantenSettingsViewModel != null) {
|
|
15986
|
+
if (this.FabrikantenService.FabrikantenSettingsViewModel.hideBreadcrumbInIframe) {
|
|
15395
15987
|
if (window.self !== window.top) {
|
|
15396
15988
|
return true;
|
|
15397
15989
|
}
|
|
@@ -15429,7 +16021,6 @@ class FabLanguageSelectComponent {
|
|
|
15429
16021
|
this.ChangeDetectorRef = ChangeDetectorRef;
|
|
15430
16022
|
}
|
|
15431
16023
|
ngOnInit() {
|
|
15432
|
-
this.TranslateService.LoadTranslations(this.ChangeDetectorRef);
|
|
15433
16024
|
}
|
|
15434
16025
|
SelectLanguage(language) {
|
|
15435
16026
|
this.TranslateService.SelectLanguage(language, this.ChangeDetectorRef);
|
|
@@ -15450,7 +16041,6 @@ class FabHeaderComponent {
|
|
|
15450
16041
|
this.ChangeDetectorRef = ChangeDetectorRef;
|
|
15451
16042
|
}
|
|
15452
16043
|
ngOnInit() {
|
|
15453
|
-
this.TranslateService.LoadTranslations(this.ChangeDetectorRef);
|
|
15454
16044
|
this.MobileService.UpdateScreenSize(window.innerWidth, window.innerHeight, this.ChangeDetectorRef);
|
|
15455
16045
|
}
|
|
15456
16046
|
onResize(event) {
|
|
@@ -15470,8 +16060,8 @@ class FabHeaderComponent {
|
|
|
15470
16060
|
return true;
|
|
15471
16061
|
}
|
|
15472
16062
|
ShowLanguageSelect() {
|
|
15473
|
-
if (this.FabrikantenService.
|
|
15474
|
-
if (this.FabrikantenService.
|
|
16063
|
+
if (this.FabrikantenService.FabrikantenSettingsViewModel != null) {
|
|
16064
|
+
if (this.FabrikantenService.FabrikantenSettingsViewModel.hideBreadcrumbInIframe) {
|
|
15475
16065
|
if (window.self !== window.top) {
|
|
15476
16066
|
return false;
|
|
15477
16067
|
}
|
|
@@ -15740,7 +16330,6 @@ class FabProductComponent {
|
|
|
15740
16330
|
}
|
|
15741
16331
|
ngOnInit() {
|
|
15742
16332
|
this.FabrikantenService.LoadFabrikantenViewModel(this.ChangeDetectorRef, this.ActivatedRoute);
|
|
15743
|
-
this.TranslateService.LoadTranslations(this.ChangeDetectorRef);
|
|
15744
16333
|
}
|
|
15745
16334
|
ngAfterViewInit() {
|
|
15746
16335
|
this.UpdateHeight();
|
|
@@ -15780,7 +16369,7 @@ class FabProductComponent {
|
|
|
15780
16369
|
}
|
|
15781
16370
|
ShowInformation() {
|
|
15782
16371
|
if (this.FabrikantenService.FabrikantenViewModel != null) {
|
|
15783
|
-
if (this.FabrikantenService.
|
|
16372
|
+
if (this.FabrikantenService.FabrikantenSettingsViewModel.hideInformationTab) {
|
|
15784
16373
|
return false;
|
|
15785
16374
|
}
|
|
15786
16375
|
}
|
|
@@ -15836,7 +16425,7 @@ class FabProductTileComponent {
|
|
|
15836
16425
|
else {
|
|
15837
16426
|
var array = this.PhotoService.GetPhotoArrayProduct(this.product);
|
|
15838
16427
|
if (array.length > 0) {
|
|
15839
|
-
return this.FabrikantenService.
|
|
16428
|
+
return this.FabrikantenService.FabrikantenSettingsViewModel?.bcbWebserviceURLBase + array[0].url;
|
|
15840
16429
|
}
|
|
15841
16430
|
return "";
|
|
15842
16431
|
}
|
|
@@ -15868,7 +16457,6 @@ class FabProductSelectComponent {
|
|
|
15868
16457
|
}
|
|
15869
16458
|
ngOnInit() {
|
|
15870
16459
|
this.FabrikantenService.LoadFabrikantenViewModel(this.ChangeDetectorRef, null);
|
|
15871
|
-
this.TranslateService.LoadTranslations(this.ChangeDetectorRef);
|
|
15872
16460
|
}
|
|
15873
16461
|
ngAfterViewInit() {
|
|
15874
16462
|
this.Height = this.GetHeight();
|
|
@@ -16137,7 +16725,6 @@ class FabStartComponent {
|
|
|
16137
16725
|
}
|
|
16138
16726
|
ngOnInit() {
|
|
16139
16727
|
this.FabrikantenService.LoadFabrikantenViewModel(this.ChangeDetectorRef, null);
|
|
16140
|
-
this.TranslateService.LoadTranslations(this.ChangeDetectorRef);
|
|
16141
16728
|
}
|
|
16142
16729
|
}
|
|
16143
16730
|
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 });
|
|
@@ -16195,7 +16782,6 @@ class FabCategoriesComponent {
|
|
|
16195
16782
|
}
|
|
16196
16783
|
ngOnInit() {
|
|
16197
16784
|
this.FabrikantenService.LoadFabrikantenViewModel(this.ChangeDetectorRef, null);
|
|
16198
|
-
this.TranslateService.LoadTranslations(this.ChangeDetectorRef);
|
|
16199
16785
|
}
|
|
16200
16786
|
}
|
|
16201
16787
|
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 });
|
|
@@ -16238,7 +16824,7 @@ class BeheerTranslateComponent {
|
|
|
16238
16824
|
this.ChangeDetectorRef = ChangeDetectorRef;
|
|
16239
16825
|
}
|
|
16240
16826
|
ngOnInit() {
|
|
16241
|
-
this.TranslateService.LoadTranslations(this.ChangeDetectorRef);
|
|
16827
|
+
this.TranslateService.LoadTranslations(this.ChangeDetectorRef, null, null);
|
|
16242
16828
|
}
|
|
16243
16829
|
GetCategoryEntries() {
|
|
16244
16830
|
if (this.TranslateService.LanguagesViewModel?.languages != null && this.TranslateService.LanguagesViewModel.languages.length > 0 && this.TranslateService.LanguagesViewModel.languages[0].categoryEntries != null) {
|
|
@@ -16312,7 +16898,7 @@ class BeheerTranslateComponent {
|
|
|
16312
16898
|
this.TranslateService.Loading = true;
|
|
16313
16899
|
this.TranslateApiClient.readExport(request).subscribe(() => {
|
|
16314
16900
|
this.TranslateService.Loading = false;
|
|
16315
|
-
this.TranslateService.LoadTranslations(this.ChangeDetectorRef);
|
|
16901
|
+
this.TranslateService.LoadTranslations(this.ChangeDetectorRef, null, null);
|
|
16316
16902
|
}, (error) => {
|
|
16317
16903
|
if (error.status == 400)
|
|
16318
16904
|
alert(error.json());
|
|
@@ -16807,5 +17393,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImpor
|
|
|
16807
17393
|
* Generated bundle index. Do not edit.
|
|
16808
17394
|
*/
|
|
16809
17395
|
|
|
16810
|
-
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 };
|
|
17396
|
+
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 };
|
|
16811
17397
|
//# sourceMappingURL=fabrikantencore.mjs.map
|