fabrikantencore 2.0.13 → 2.0.15
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-connect-category-dialog/beheer-connect-category-dialog.component.mjs +6 -6
- package/esm2020/src/app/modules/fabrikantencore/beheer/components/beheer-deeplink/beheer-deeplink.component.mjs +43 -0
- package/esm2020/src/app/modules/fabrikantencore/beheer/components/beheer-ebo-koppel/beheer-ebo-koppel/beheer-ebo-koppel.component.mjs +55 -41
- package/esm2020/src/app/modules/fabrikantencore/beheer/components/beheer-filters/beheer-filters.component.mjs +21 -3
- package/esm2020/src/app/modules/fabrikantencore/beheer/components/beheer-nav/beheer-nav.component.mjs +3 -3
- package/esm2020/src/app/modules/fabrikantencore/beheer/components/beheer-products/beheer-products-koppel-filteroption-dailog/beheer-products-koppel-filteroption-dailog.component.mjs +3 -3
- package/esm2020/src/app/modules/fabrikantencore/beheer/components/beheer-products/beheer-products.component.mjs +3 -3
- package/esm2020/src/app/modules/fabrikantencore/components/fab-categories/fab-categories.component.mjs +2 -2
- package/esm2020/src/app/modules/fabrikantencore/components/fab-category-tile/fab-category-tile.component.mjs +2 -2
- package/esm2020/src/app/modules/fabrikantencore/components/fab-filters/fab-filters.component.mjs +2 -2
- package/esm2020/src/app/modules/fabrikantencore/components/fab-iframe/fab-iframe.component.mjs +29 -0
- package/esm2020/src/app/modules/fabrikantencore/components/fab-product/fab-product.component.mjs +23 -6
- package/esm2020/src/app/modules/fabrikantencore/components/fab-product-select/fab-product-select.component.mjs +2 -2
- package/esm2020/src/app/modules/fabrikantencore/components/fab-start/fab-start.component.mjs +2 -2
- package/esm2020/src/app/modules/fabrikantencore/components/fab-texture/fab-texture.component.mjs +38 -0
- package/esm2020/src/app/modules/fabrikantencore/components/fab-webgl-viewer/fab-webgl-viewer.component.mjs +3 -3
- package/esm2020/src/app/modules/fabrikantencore/fabrikantencore.module.mjs +18 -7
- package/esm2020/src/app/modules/fabrikantencore/services/fabrikanten.service.mjs +40 -8
- package/esm2020/src/app/modules/fabrikantencore/services/navigate.service.mjs +2 -2
- package/esm2020/src/app/modules/fabrikantencore/services/projectsetting.service.mjs +2 -1
- package/esm2020/src/app/modules/fabrikantencore/services/texture.service.mjs +33 -0
- package/esm2020/src/app/modules/fabrikantencore/swagger/SwaggerClient.mjs +490 -25
- package/fesm2015/fabrikantencore.mjs +791 -128
- package/fesm2015/fabrikantencore.mjs.map +1 -1
- package/fesm2020/fabrikantencore.mjs +790 -128
- package/fesm2020/fabrikantencore.mjs.map +1 -1
- package/package.json +1 -1
- package/src/app/modules/fabrikantencore/beheer/components/beheer-deeplink/beheer-deeplink.component.d.ts +16 -0
- package/src/app/modules/fabrikantencore/beheer/components/beheer-ebo-koppel/beheer-ebo-koppel/beheer-ebo-koppel.component.d.ts +1 -1
- package/src/app/modules/fabrikantencore/beheer/components/beheer-filters/beheer-filters.component.d.ts +1 -0
- package/src/app/modules/fabrikantencore/components/fab-iframe/fab-iframe.component.d.ts +12 -0
- package/src/app/modules/fabrikantencore/components/fab-product/fab-product.component.d.ts +5 -2
- package/src/app/modules/fabrikantencore/components/fab-texture/fab-texture.component.d.ts +18 -0
- package/src/app/modules/fabrikantencore/fabrikantencore.module.d.ts +27 -24
- package/src/app/modules/fabrikantencore/services/fabrikanten.service.d.ts +7 -2
- package/src/app/modules/fabrikantencore/services/texture.service.d.ts +12 -0
- package/src/app/modules/fabrikantencore/swagger/SwaggerClient.d.ts +154 -20
package/package.json
CHANGED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { ChangeDetectorRef, OnInit } from '@angular/core';
|
|
2
|
+
import { DeeplinkViewModel, DeeplinkProductViewModel, ProductsApiClient } from '../../../swagger/SwaggerClient';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class BeheerDeeplinkComponent implements OnInit {
|
|
5
|
+
private ProductsApiClient;
|
|
6
|
+
private ChangeDetectorRef;
|
|
7
|
+
Loading: boolean;
|
|
8
|
+
DeeplinkViewModel: DeeplinkViewModel;
|
|
9
|
+
URL: string;
|
|
10
|
+
constructor(ProductsApiClient: ProductsApiClient, ChangeDetectorRef: ChangeDetectorRef);
|
|
11
|
+
ngOnInit(): void;
|
|
12
|
+
GetLink(language: string, product: DeeplinkProductViewModel): string;
|
|
13
|
+
private LoadModel;
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BeheerDeeplinkComponent, never>;
|
|
15
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BeheerDeeplinkComponent, "app-beheer-deeplink", never, {}, {}, never, never, false, never>;
|
|
16
|
+
}
|
|
@@ -15,7 +15,7 @@ export declare class BeheerEboKoppelComponent implements OnInit {
|
|
|
15
15
|
Loading(): boolean;
|
|
16
16
|
Connect(id: number): void;
|
|
17
17
|
ConnectMany(id: number): void;
|
|
18
|
-
ConnectCategory(id: number
|
|
18
|
+
ConnectCategory(id: number): void;
|
|
19
19
|
LoadModel(): void;
|
|
20
20
|
static ɵfac: i0.ɵɵFactoryDeclaration<BeheerEboKoppelComponent, never>;
|
|
21
21
|
static ɵcmp: i0.ɵɵComponentDeclaration<BeheerEboKoppelComponent, "app-beheer-ebo-koppel", never, {}, {}, never, never, false, never>;
|
|
@@ -15,6 +15,7 @@ export declare class BeheerFiltersComponent implements OnInit {
|
|
|
15
15
|
MoveUpOption(option: FilterOptionViewModel): void;
|
|
16
16
|
MoveDownOption(option: FilterOptionViewModel): void;
|
|
17
17
|
Open(filter: FilterViewModel): void;
|
|
18
|
+
Sort(): void;
|
|
18
19
|
private LoadFilters;
|
|
19
20
|
static ɵfac: i0.ɵɵFactoryDeclaration<BeheerFiltersComponent, never>;
|
|
20
21
|
static ɵcmp: i0.ɵɵComponentDeclaration<BeheerFiltersComponent, "app-beheer-filters", never, {}, {}, never, never, false, never>;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { DomSanitizer, SafeResourceUrl } from '@angular/platform-browser';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class FabIframeComponent {
|
|
4
|
+
private sanitization;
|
|
5
|
+
URL: string;
|
|
6
|
+
ActiveURL: string;
|
|
7
|
+
constructor(sanitization: DomSanitizer);
|
|
8
|
+
Open(): void;
|
|
9
|
+
GetSafeURL(): SafeResourceUrl;
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FabIframeComponent, never>;
|
|
11
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FabIframeComponent, "app-fab-iframe", never, {}, {}, never, never, false, never>;
|
|
12
|
+
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { AfterViewInit, ChangeDetectorRef, ElementRef, OnInit } from '@angular/core';
|
|
1
|
+
import { AfterViewInit, ChangeDetectorRef, DoCheck, ElementRef, OnInit } from '@angular/core';
|
|
2
2
|
import { MatTabChangeEvent } from '@angular/material/tabs';
|
|
3
3
|
import { ActivatedRoute } from '@angular/router';
|
|
4
4
|
import { BestekService } from '../../services/bestek.service';
|
|
@@ -7,7 +7,7 @@ import { MobileService } from '../../services/mobile.service';
|
|
|
7
7
|
import { TranslateService } from '../../services/translate.service';
|
|
8
8
|
import { WebGLService } from '../../services/webgl.service';
|
|
9
9
|
import * as i0 from "@angular/core";
|
|
10
|
-
export declare class FabProductComponent implements OnInit, AfterViewInit {
|
|
10
|
+
export declare class FabProductComponent implements OnInit, AfterViewInit, DoCheck {
|
|
11
11
|
MobileService: MobileService;
|
|
12
12
|
FabrikantenService: FabrikantenService;
|
|
13
13
|
BestekService: BestekService;
|
|
@@ -20,10 +20,13 @@ export declare class FabProductComponent implements OnInit, AfterViewInit {
|
|
|
20
20
|
constructor(MobileService: MobileService, FabrikantenService: FabrikantenService, BestekService: BestekService, TranslateService: TranslateService, WebGLService: WebGLService, ActivatedRoute: ActivatedRoute, ChangeDetectorRef: ChangeDetectorRef);
|
|
21
21
|
ngOnInit(): void;
|
|
22
22
|
ngAfterViewInit(): void;
|
|
23
|
+
ngDoCheck(): void;
|
|
23
24
|
Back(): void;
|
|
25
|
+
UpdateHeight(): void;
|
|
24
26
|
SelectedTabChange(event: MatTabChangeEvent): void;
|
|
25
27
|
Show3D(): boolean;
|
|
26
28
|
Show2D(): boolean;
|
|
29
|
+
ShowBreadcrumb(): boolean;
|
|
27
30
|
private GetHeight;
|
|
28
31
|
static ɵfac: i0.ɵɵFactoryDeclaration<FabProductComponent, never>;
|
|
29
32
|
static ɵcmp: i0.ɵɵComponentDeclaration<FabProductComponent, "app-fab-product", never, {}, {}, never, never, false, never>;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { ChangeDetectorRef } from '@angular/core';
|
|
2
|
+
import { FabrikantenService } from '../../services/fabrikanten.service';
|
|
3
|
+
import { MobileService } from '../../services/mobile.service';
|
|
4
|
+
import { TextureService } from '../../services/texture.service';
|
|
5
|
+
import { TranslateService } from '../../services/translate.service';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
export declare class FabTextureComponent {
|
|
8
|
+
FabrikantenService: FabrikantenService;
|
|
9
|
+
TextureService: TextureService;
|
|
10
|
+
TranslateService: TranslateService;
|
|
11
|
+
MobileService: MobileService;
|
|
12
|
+
private ChangeDetectorRef;
|
|
13
|
+
constructor(FabrikantenService: FabrikantenService, TextureService: TextureService, TranslateService: TranslateService, MobileService: MobileService, ChangeDetectorRef: ChangeDetectorRef);
|
|
14
|
+
ShowTexture(): boolean;
|
|
15
|
+
OpenBCBLink(): void;
|
|
16
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FabTextureComponent, never>;
|
|
17
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FabTextureComponent, "app-fab-texture", never, {}, {}, never, never, false, never>;
|
|
18
|
+
}
|
|
@@ -51,31 +51,34 @@ import * as i49 from "./beheer/components/beheer-products/beheer-products-connec
|
|
|
51
51
|
import * as i50 from "./components/fab-range-input/fab-range-input.component";
|
|
52
52
|
import * as i51 from "./beheer/components/beheer-settings/beheer-settings-boolean/beheer-settings-boolean.component";
|
|
53
53
|
import * as i52 from "./beheer/components/beheer-select-filter-dialog/beheer-select-filter-dialog.component";
|
|
54
|
-
import * as i53 from "
|
|
55
|
-
import * as i54 from "
|
|
56
|
-
import * as i55 from "
|
|
57
|
-
import * as i56 from "@angular/
|
|
58
|
-
import * as i57 from "@angular/
|
|
59
|
-
import * as i58 from "@angular/material/
|
|
60
|
-
import * as i59 from "@angular/
|
|
61
|
-
import * as i60 from "@angular/
|
|
62
|
-
import * as i61 from "@angular/material/
|
|
63
|
-
import * as i62 from "@angular/material/
|
|
64
|
-
import * as i63 from "@angular/material/
|
|
65
|
-
import * as i64 from "@angular/material/
|
|
66
|
-
import * as i65 from "@angular/material/
|
|
67
|
-
import * as i66 from "@angular/material/
|
|
68
|
-
import * as i67 from "@angular/material/
|
|
69
|
-
import * as i68 from "@angular/material/
|
|
70
|
-
import * as i69 from "@angular/material/
|
|
71
|
-
import * as i70 from "@angular/material/
|
|
72
|
-
import * as i71 from "@angular/material/
|
|
73
|
-
import * as i72 from "@angular/material/
|
|
74
|
-
import * as i73 from "@angular/material/
|
|
75
|
-
import * as i74 from "@angular/material/
|
|
76
|
-
import * as i75 from "@angular/
|
|
54
|
+
import * as i53 from "./components/fab-texture/fab-texture.component";
|
|
55
|
+
import * as i54 from "./components/fab-iframe/fab-iframe.component";
|
|
56
|
+
import * as i55 from "./beheer/components/beheer-deeplink/beheer-deeplink.component";
|
|
57
|
+
import * as i56 from "@angular/common";
|
|
58
|
+
import * as i57 from "@angular/common/http";
|
|
59
|
+
import * as i58 from "@angular/material/input";
|
|
60
|
+
import * as i59 from "@angular/forms";
|
|
61
|
+
import * as i60 from "@angular/platform-browser/animations";
|
|
62
|
+
import * as i61 from "@angular/material/tooltip";
|
|
63
|
+
import * as i62 from "@angular/material/button";
|
|
64
|
+
import * as i63 from "@angular/material/list";
|
|
65
|
+
import * as i64 from "@angular/material/expansion";
|
|
66
|
+
import * as i65 from "@angular/material/card";
|
|
67
|
+
import * as i66 from "@angular/material/icon";
|
|
68
|
+
import * as i67 from "@angular/material/dialog";
|
|
69
|
+
import * as i68 from "@angular/material/tree";
|
|
70
|
+
import * as i69 from "@angular/material/sidenav";
|
|
71
|
+
import * as i70 from "@angular/material/table";
|
|
72
|
+
import * as i71 from "@angular/material/button-toggle";
|
|
73
|
+
import * as i72 from "@angular/material/checkbox";
|
|
74
|
+
import * as i73 from "@angular/material/divider";
|
|
75
|
+
import * as i74 from "@angular/material/tabs";
|
|
76
|
+
import * as i75 from "@angular/material/progress-spinner";
|
|
77
|
+
import * as i76 from "@angular/material/select";
|
|
78
|
+
import * as i77 from "@angular/material/snack-bar";
|
|
79
|
+
import * as i78 from "@angular/router";
|
|
77
80
|
export declare class FabrikantenCoreModule {
|
|
78
81
|
static ɵfac: i0.ɵɵFactoryDeclaration<FabrikantenCoreModule, never>;
|
|
79
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<FabrikantenCoreModule, [typeof i1.FabFiltersComponent, typeof i2.BeheerMainComponent, typeof i3.BeheerInlogComponent, typeof i4.BeheerNavComponent, typeof i5.BeheerUsersComponent, typeof i6.BeheerProductsComponent, typeof i7.BeheerFiltersComponent, typeof i8.BeheerSettingsComponent, typeof i9.FabLoaderComponent, typeof i10.BeheerSearchProductsComponent, typeof i11.BeheerSearchproductsKoppelDialogComponent, typeof i12.BeheerProductsProductComponent, typeof i13.BeheerProductsBcbproductComponent, typeof i14.BeheerImportSetsComponent, typeof i15.BeheerImportSetsOpbouwComponent, typeof i16.BeheerImportSetsEigenschapComponent, typeof i15.BeheerImportSetsEboComponent, typeof i17.BeheerProductsEigenschapComponent, typeof i18.BeheerProductsKoppelFilteroptionDailogComponent, typeof i19.FabFilterComponent, typeof i20.FabProductComponent, typeof i21.FabBcbProductComponent, typeof i22.FabProductSelectComponent, typeof i23.FabProductTileComponent, typeof i24.FabProductInfoComponent, typeof i25.FabProductBestekComponent, typeof i26.FabProductInfoPhotoComponent, typeof i27.FabProductInfoPhotoDialogComponent, typeof i28.BeheerEboKoppelComponent, typeof i29.BeheerSettingsOptionsComponent, typeof i30.BeheerSettingsStringComponent, typeof i31.BeheerImportSetsDialogComponent, typeof i32.BeheerCategoriesComponent, typeof i33.BeheerConnectCategoryDialogComponent, typeof i34.FabStartComponent, typeof i35.FabCategoriesComponent, typeof i36.FabCategoryTileComponent, typeof i37.FabBreadcrumbComponent, typeof i38.FabFiltersInputComponent, typeof i39.FabFiltersOverviewComponent, typeof i40.FabFlagComponent, typeof i41.BeheerTranslateComponent, typeof i42.FabLanguageSelectComponent, typeof i43.FabHeaderComponent, typeof i44.FabWebglViewerComponent, typeof i45.FabSvgViewerComponent, typeof i46.BeheerProductsOpbouwComponent, typeof i46.BeheerProductsEboComponent, typeof i47.BeheerProductsEigenschapBereikComponent, typeof i48.BeheerDisplayEboComponent, typeof i49.BeheerProductsConnectRangeinputComponent, typeof i50.FabRangeInputComponent, typeof i51.BeheerSettingsBooleanComponent, typeof i52.BeheerSelectFilterDialogComponent], [typeof
|
|
82
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<FabrikantenCoreModule, [typeof i1.FabFiltersComponent, typeof i2.BeheerMainComponent, typeof i3.BeheerInlogComponent, typeof i4.BeheerNavComponent, typeof i5.BeheerUsersComponent, typeof i6.BeheerProductsComponent, typeof i7.BeheerFiltersComponent, typeof i8.BeheerSettingsComponent, typeof i9.FabLoaderComponent, typeof i10.BeheerSearchProductsComponent, typeof i11.BeheerSearchproductsKoppelDialogComponent, typeof i12.BeheerProductsProductComponent, typeof i13.BeheerProductsBcbproductComponent, typeof i14.BeheerImportSetsComponent, typeof i15.BeheerImportSetsOpbouwComponent, typeof i16.BeheerImportSetsEigenschapComponent, typeof i15.BeheerImportSetsEboComponent, typeof i17.BeheerProductsEigenschapComponent, typeof i18.BeheerProductsKoppelFilteroptionDailogComponent, typeof i19.FabFilterComponent, typeof i20.FabProductComponent, typeof i21.FabBcbProductComponent, typeof i22.FabProductSelectComponent, typeof i23.FabProductTileComponent, typeof i24.FabProductInfoComponent, typeof i25.FabProductBestekComponent, typeof i26.FabProductInfoPhotoComponent, typeof i27.FabProductInfoPhotoDialogComponent, typeof i28.BeheerEboKoppelComponent, typeof i29.BeheerSettingsOptionsComponent, typeof i30.BeheerSettingsStringComponent, typeof i31.BeheerImportSetsDialogComponent, typeof i32.BeheerCategoriesComponent, typeof i33.BeheerConnectCategoryDialogComponent, typeof i34.FabStartComponent, typeof i35.FabCategoriesComponent, typeof i36.FabCategoryTileComponent, typeof i37.FabBreadcrumbComponent, typeof i38.FabFiltersInputComponent, typeof i39.FabFiltersOverviewComponent, typeof i40.FabFlagComponent, typeof i41.BeheerTranslateComponent, typeof i42.FabLanguageSelectComponent, typeof i43.FabHeaderComponent, typeof i44.FabWebglViewerComponent, typeof i45.FabSvgViewerComponent, typeof i46.BeheerProductsOpbouwComponent, typeof i46.BeheerProductsEboComponent, typeof i47.BeheerProductsEigenschapBereikComponent, typeof i48.BeheerDisplayEboComponent, typeof i49.BeheerProductsConnectRangeinputComponent, typeof i50.FabRangeInputComponent, typeof i51.BeheerSettingsBooleanComponent, typeof i52.BeheerSelectFilterDialogComponent, typeof i53.FabTextureComponent, typeof i54.FabIframeComponent, typeof i55.BeheerDeeplinkComponent], [typeof i56.CommonModule, typeof i57.HttpClientModule, typeof i58.MatInputModule, typeof i59.FormsModule, typeof i60.BrowserAnimationsModule, typeof i61.MatTooltipModule, typeof i62.MatButtonModule, typeof i63.MatListModule, typeof i64.MatExpansionModule, typeof i65.MatCardModule, typeof i66.MatIconModule, typeof i67.MatDialogModule, typeof i68.MatTreeModule, typeof i69.MatSidenavModule, typeof i70.MatTableModule, typeof i71.MatButtonToggleModule, typeof i72.MatCheckboxModule, typeof i73.MatDividerModule, typeof i74.MatTabsModule, typeof i75.MatProgressSpinnerModule, typeof i76.MatSelectModule, typeof i77.MatSnackBarModule, typeof i78.RouterModule], [typeof i1.FabFiltersComponent]>;
|
|
80
83
|
static ɵinj: i0.ɵɵInjectorDeclaration<FabrikantenCoreModule>;
|
|
81
84
|
}
|
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
import { ChangeDetectorRef } from '@angular/core';
|
|
2
|
+
import { ActivatedRoute } from '@angular/router';
|
|
2
3
|
import { FabrikantenApiClient, FabrikantenFilterViewModel, FabrikantenViewModel, FabrikantenProductViewModel, FabrikantenCategoryLayerViewModel, FabrikantenCategoryViewModel } from '../swagger/SwaggerClient';
|
|
3
4
|
import { BestekService } from './bestek.service';
|
|
4
5
|
import { NavigateService } from './navigate.service';
|
|
5
6
|
import { SVGService } from './svg.service';
|
|
7
|
+
import { TextureService } from './texture.service';
|
|
6
8
|
import { TranslateService } from './translate.service';
|
|
7
9
|
import { WebGLService } from './webgl.service';
|
|
8
10
|
import * as i0 from "@angular/core";
|
|
@@ -12,6 +14,7 @@ export declare class FabrikantenService {
|
|
|
12
14
|
private TranslateService;
|
|
13
15
|
private WebGLService;
|
|
14
16
|
private SVGService;
|
|
17
|
+
private TextureService;
|
|
15
18
|
private NavigateService;
|
|
16
19
|
private Init;
|
|
17
20
|
Loading: boolean;
|
|
@@ -26,7 +29,7 @@ export declare class FabrikantenService {
|
|
|
26
29
|
FabrikantenViewModel: FabrikantenViewModel;
|
|
27
30
|
SelectedPhoto: number;
|
|
28
31
|
private SelectedTab;
|
|
29
|
-
constructor(FabrikantenApiClient: FabrikantenApiClient, BestekService: BestekService, TranslateService: TranslateService, WebGLService: WebGLService, SVGService: SVGService, NavigateService: NavigateService);
|
|
32
|
+
constructor(FabrikantenApiClient: FabrikantenApiClient, BestekService: BestekService, TranslateService: TranslateService, WebGLService: WebGLService, SVGService: SVGService, TextureService: TextureService, NavigateService: NavigateService);
|
|
30
33
|
ResetAllFilters(ChangeDetectorRef: ChangeDetectorRef): void;
|
|
31
34
|
SelectOption(filterid: number, filteroptionid: number, ChangeDetectorRef: ChangeDetectorRef): void;
|
|
32
35
|
SetRangeInput(rangeinputid: number, value: number, ChangeDetectorRef: ChangeDetectorRef): void;
|
|
@@ -39,10 +42,12 @@ export declare class FabrikantenService {
|
|
|
39
42
|
TabSelectionChanged(tab: string, ChangeDetectorRef: ChangeDetectorRef): void;
|
|
40
43
|
GetFirstOpenCategoryLayer(): FabrikantenCategoryLayerViewModel | null;
|
|
41
44
|
ShowCategories(): boolean;
|
|
45
|
+
ShowTexture(): boolean;
|
|
42
46
|
ShowVariants(): boolean;
|
|
43
47
|
OpenBCBLink(wuid: string): void;
|
|
44
48
|
ReloadModel(ChangeDetectorRef: ChangeDetectorRef): void;
|
|
45
|
-
LoadFabrikantenViewModel(ChangeDetectorRef: ChangeDetectorRef): void;
|
|
49
|
+
LoadFabrikantenViewModel(ChangeDetectorRef: ChangeDetectorRef, ActivatedRoute: ActivatedRoute | null): void;
|
|
50
|
+
ProcessParameters(ActivatedRoute: ActivatedRoute | null, ChangeDetectorRef: ChangeDetectorRef): boolean;
|
|
46
51
|
DownloadARKEYAdomi(): void;
|
|
47
52
|
DownloadIFC(): void;
|
|
48
53
|
DownloadRevitPlugin(): void;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { ChangeDetectorRef } from '@angular/core';
|
|
2
|
+
import { FabrikantenApiClient, FabrikantenTextureViewModel } from '../swagger/SwaggerClient';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class TextureService {
|
|
5
|
+
private FabrikantenApiClient;
|
|
6
|
+
Loading: boolean;
|
|
7
|
+
FabrikantenTextureViewModel: FabrikantenTextureViewModel;
|
|
8
|
+
constructor(FabrikantenApiClient: FabrikantenApiClient);
|
|
9
|
+
LoadFabrikantenTextureViewModel(sessionid: string, ChangeDetectorRef: ChangeDetectorRef): void;
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TextureService, never>;
|
|
11
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<TextureService>;
|
|
12
|
+
}
|
|
@@ -24,8 +24,8 @@ export declare class EBOKoppelApiClient {
|
|
|
24
24
|
constructor(http: HttpClient, baseUrl?: string);
|
|
25
25
|
getEBOKoppelViewModel(pEBOConnectRequestModel: EBOConnectRequestModel): Observable<EBOKoppelViewModel>;
|
|
26
26
|
protected processGetEBOKoppelViewModel(response: HttpResponseBase): Observable<EBOKoppelViewModel>;
|
|
27
|
-
|
|
28
|
-
protected
|
|
27
|
+
connectBCBEBODOFilter(pConnectBCBEBODORequest: ConnectBCBEBODORequest): Observable<void>;
|
|
28
|
+
protected processConnectBCBEBODOFilter(response: HttpResponseBase): Observable<void>;
|
|
29
29
|
connectEBODOCategory(pConnectEBOCategoryRequest: ConnectEBODOCategoryRequest): Observable<ConnectEBODOCategoryResponse>;
|
|
30
30
|
protected processConnectEBODOCategory(response: HttpResponseBase): Observable<ConnectEBODOCategoryResponse>;
|
|
31
31
|
static ɵfac: i0.ɵɵFactoryDeclaration<EBOKoppelApiClient, [null, { optional: true; }]>;
|
|
@@ -44,6 +44,8 @@ export declare class FabrikantenApiClient {
|
|
|
44
44
|
protected processGetFabrikanten3DViewModel(response: HttpResponseBase): Observable<Fabrikanten3DViewModel>;
|
|
45
45
|
getFabrikantenSVGViewModel(pFabrikantenSVGRequestModel: FabrikantenSVGRequestModel): Observable<FabrikantenSVGViewModel>;
|
|
46
46
|
protected processGetFabrikantenSVGViewModel(response: HttpResponseBase): Observable<FabrikantenSVGViewModel>;
|
|
47
|
+
getFabrikantenTextureViewModel(pFabrikantenTextureRequestModel: FabrikantenTextureRequestModel): Observable<FabrikantenTextureViewModel>;
|
|
48
|
+
protected processGetFabrikantenTextureViewModel(response: HttpResponseBase): Observable<FabrikantenTextureViewModel>;
|
|
47
49
|
getFabrikantenFileViewModel(pFabrikantenFileRequestModel: FabrikantenFileRequestModel): Observable<FabrikantenFileViewModel>;
|
|
48
50
|
protected processGetFabrikantenFileViewModel(response: HttpResponseBase): Observable<FabrikantenFileViewModel>;
|
|
49
51
|
getBCBLink(pBCBLinkRequestModel: BCBLinkRequestModel): Observable<BCBLinkResponseModel>;
|
|
@@ -86,6 +88,8 @@ export declare class FiltersApiClient {
|
|
|
86
88
|
protected processCreateFilterOption(response: HttpResponseBase): Observable<CreateFilterOptionResponse>;
|
|
87
89
|
moveFilter(pMoveFilterRequest: MoveFilterRequest): Observable<void>;
|
|
88
90
|
protected processMoveFilter(response: HttpResponseBase): Observable<void>;
|
|
91
|
+
sortFilter(pMoveFilterRequest: MoveFilterRequest): Observable<void>;
|
|
92
|
+
protected processSortFilter(response: HttpResponseBase): Observable<void>;
|
|
89
93
|
moveFilterOption(pMoveFilterOptionRequest: MoveFilterOptionRequest): Observable<void>;
|
|
90
94
|
protected processMoveFilterOption(response: HttpResponseBase): Observable<void>;
|
|
91
95
|
static ɵfac: i0.ɵɵFactoryDeclaration<FiltersApiClient, [null, { optional: true; }]>;
|
|
@@ -118,6 +122,8 @@ export declare class ProductsApiClient {
|
|
|
118
122
|
constructor(http: HttpClient, baseUrl?: string);
|
|
119
123
|
getProductsViewModel(pProductsViewModelRequest: ProductsViewModelRequest): Observable<ProductsViewModel>;
|
|
120
124
|
protected processGetProductsViewModel(response: HttpResponseBase): Observable<ProductsViewModel>;
|
|
125
|
+
getDeeplinkViewModel(pDeeplinkRequest: DeeplinkRequest): Observable<DeeplinkViewModel>;
|
|
126
|
+
protected processGetDeeplinkViewModel(response: HttpResponseBase): Observable<DeeplinkViewModel>;
|
|
121
127
|
getProductViewModel(pGetProductRequest: GetProductRequest): Observable<ProductViewModel>;
|
|
122
128
|
protected processGetProductViewModel(response: HttpResponseBase): Observable<ProductViewModel>;
|
|
123
129
|
saveProduct(pSaveProductViewModel: SaveProductViewModel): Observable<void>;
|
|
@@ -555,7 +561,8 @@ export interface IEBOKoppelViewModel {
|
|
|
555
561
|
}
|
|
556
562
|
export declare class EBOKoppelTypeViewModel implements IEBOKoppelTypeViewModel {
|
|
557
563
|
type?: string | undefined;
|
|
558
|
-
|
|
564
|
+
count: number;
|
|
565
|
+
namen?: EBOKoppelNaamViewModel[] | undefined;
|
|
559
566
|
constructor(data?: IEBOKoppelTypeViewModel);
|
|
560
567
|
init(_data?: any): void;
|
|
561
568
|
static fromJS(data: any): EBOKoppelTypeViewModel;
|
|
@@ -563,7 +570,58 @@ export declare class EBOKoppelTypeViewModel implements IEBOKoppelTypeViewModel {
|
|
|
563
570
|
}
|
|
564
571
|
export interface IEBOKoppelTypeViewModel {
|
|
565
572
|
type?: string | undefined;
|
|
566
|
-
|
|
573
|
+
count: number;
|
|
574
|
+
namen?: EBOKoppelNaamViewModel[] | undefined;
|
|
575
|
+
}
|
|
576
|
+
export declare class EBOKoppelNaamViewModel implements IEBOKoppelNaamViewModel {
|
|
577
|
+
doNaam?: string | undefined;
|
|
578
|
+
ebOs?: EBOKoppelEBOViewModel[] | undefined;
|
|
579
|
+
constructor(data?: IEBOKoppelNaamViewModel);
|
|
580
|
+
init(_data?: any): void;
|
|
581
|
+
static fromJS(data: any): EBOKoppelNaamViewModel;
|
|
582
|
+
toJSON(data?: any): any;
|
|
583
|
+
}
|
|
584
|
+
export interface IEBOKoppelNaamViewModel {
|
|
585
|
+
doNaam?: string | undefined;
|
|
586
|
+
ebOs?: EBOKoppelEBOViewModel[] | undefined;
|
|
587
|
+
}
|
|
588
|
+
export declare class EBOKoppelEBOViewModel implements IEBOKoppelEBOViewModel {
|
|
589
|
+
id: number;
|
|
590
|
+
eboNaam?: string | undefined;
|
|
591
|
+
filterOptions?: EBOKoppelEBOFilterOptionViewModel[] | undefined;
|
|
592
|
+
categories?: EBOKoppelEBOCategoryViewModel[] | undefined;
|
|
593
|
+
constructor(data?: IEBOKoppelEBOViewModel);
|
|
594
|
+
init(_data?: any): void;
|
|
595
|
+
static fromJS(data: any): EBOKoppelEBOViewModel;
|
|
596
|
+
toJSON(data?: any): any;
|
|
597
|
+
}
|
|
598
|
+
export interface IEBOKoppelEBOViewModel {
|
|
599
|
+
id: number;
|
|
600
|
+
eboNaam?: string | undefined;
|
|
601
|
+
filterOptions?: EBOKoppelEBOFilterOptionViewModel[] | undefined;
|
|
602
|
+
categories?: EBOKoppelEBOCategoryViewModel[] | undefined;
|
|
603
|
+
}
|
|
604
|
+
export declare class EBOKoppelEBOFilterOptionViewModel implements IEBOKoppelEBOFilterOptionViewModel {
|
|
605
|
+
filterName?: string | undefined;
|
|
606
|
+
filterOptionName?: string | undefined;
|
|
607
|
+
constructor(data?: IEBOKoppelEBOFilterOptionViewModel);
|
|
608
|
+
init(_data?: any): void;
|
|
609
|
+
static fromJS(data: any): EBOKoppelEBOFilterOptionViewModel;
|
|
610
|
+
toJSON(data?: any): any;
|
|
611
|
+
}
|
|
612
|
+
export interface IEBOKoppelEBOFilterOptionViewModel {
|
|
613
|
+
filterName?: string | undefined;
|
|
614
|
+
filterOptionName?: string | undefined;
|
|
615
|
+
}
|
|
616
|
+
export declare class EBOKoppelEBOCategoryViewModel implements IEBOKoppelEBOCategoryViewModel {
|
|
617
|
+
categoryName?: string | undefined;
|
|
618
|
+
constructor(data?: IEBOKoppelEBOCategoryViewModel);
|
|
619
|
+
init(_data?: any): void;
|
|
620
|
+
static fromJS(data: any): EBOKoppelEBOCategoryViewModel;
|
|
621
|
+
toJSON(data?: any): any;
|
|
622
|
+
}
|
|
623
|
+
export interface IEBOKoppelEBOCategoryViewModel {
|
|
624
|
+
categoryName?: string | undefined;
|
|
567
625
|
}
|
|
568
626
|
export declare class EBOConnectRequestModel implements IEBOConnectRequestModel {
|
|
569
627
|
importSetId: number;
|
|
@@ -575,27 +633,21 @@ export declare class EBOConnectRequestModel implements IEBOConnectRequestModel {
|
|
|
575
633
|
export interface IEBOConnectRequestModel {
|
|
576
634
|
importSetId: number;
|
|
577
635
|
}
|
|
578
|
-
export declare class
|
|
579
|
-
|
|
580
|
-
init(_data?: any): void;
|
|
581
|
-
static fromJS(data: any): KoppelEBOOptieResponse;
|
|
582
|
-
toJSON(data?: any): any;
|
|
583
|
-
}
|
|
584
|
-
export interface IKoppelEBOOptieResponse {
|
|
585
|
-
}
|
|
586
|
-
export declare class KoppelEBOOptieRequest implements IKoppelEBOOptieRequest {
|
|
587
|
-
bcbImportSetId: number;
|
|
636
|
+
export declare class ConnectBCBEBODORequest implements IConnectBCBEBODORequest {
|
|
637
|
+
filterId: number;
|
|
588
638
|
bcbebodoId: number;
|
|
589
|
-
|
|
590
|
-
|
|
639
|
+
bcbImportSetId: number;
|
|
640
|
+
all: boolean;
|
|
641
|
+
constructor(data?: IConnectBCBEBODORequest);
|
|
591
642
|
init(_data?: any): void;
|
|
592
|
-
static fromJS(data: any):
|
|
643
|
+
static fromJS(data: any): ConnectBCBEBODORequest;
|
|
593
644
|
toJSON(data?: any): any;
|
|
594
645
|
}
|
|
595
|
-
export interface
|
|
596
|
-
|
|
646
|
+
export interface IConnectBCBEBODORequest {
|
|
647
|
+
filterId: number;
|
|
597
648
|
bcbebodoId: number;
|
|
598
|
-
|
|
649
|
+
bcbImportSetId: number;
|
|
650
|
+
all: boolean;
|
|
599
651
|
}
|
|
600
652
|
export declare class ConnectEBODOCategoryResponse implements IConnectEBODOCategoryResponse {
|
|
601
653
|
constructor(data?: IConnectEBODOCategoryResponse);
|
|
@@ -622,6 +674,7 @@ export interface IConnectEBODOCategoryRequest {
|
|
|
622
674
|
export declare class FabrikantenViewModel implements IFabrikantenViewModel {
|
|
623
675
|
sessionId?: string | undefined;
|
|
624
676
|
bcbWebserviceURLBase?: string | undefined;
|
|
677
|
+
hideBreadcrumbInIframe: boolean;
|
|
625
678
|
productSelectBlockedByFilters: boolean;
|
|
626
679
|
categoryLayers?: FabrikantenCategoryLayerViewModel[] | undefined;
|
|
627
680
|
filters?: FabrikantenFilterViewModel[] | undefined;
|
|
@@ -636,6 +689,7 @@ export declare class FabrikantenViewModel implements IFabrikantenViewModel {
|
|
|
636
689
|
export interface IFabrikantenViewModel {
|
|
637
690
|
sessionId?: string | undefined;
|
|
638
691
|
bcbWebserviceURLBase?: string | undefined;
|
|
692
|
+
hideBreadcrumbInIframe: boolean;
|
|
639
693
|
productSelectBlockedByFilters: boolean;
|
|
640
694
|
categoryLayers?: FabrikantenCategoryLayerViewModel[] | undefined;
|
|
641
695
|
filters?: FabrikantenFilterViewModel[] | undefined;
|
|
@@ -734,6 +788,8 @@ export interface IFabrikantenRangeInputViewModel {
|
|
|
734
788
|
export declare class FabrikantenProductViewModel implements IFabrikantenProductViewModel {
|
|
735
789
|
id: number;
|
|
736
790
|
name?: string | undefined;
|
|
791
|
+
urlName?: string | undefined;
|
|
792
|
+
textureBaseViewModel?: FabrikantenTextureBaseViewModel | undefined;
|
|
737
793
|
fabrikantenBCBProductViewModels?: FabrikantenBCBProductViewModel[] | undefined;
|
|
738
794
|
constructor(data?: IFabrikantenProductViewModel);
|
|
739
795
|
init(_data?: any): void;
|
|
@@ -743,8 +799,24 @@ export declare class FabrikantenProductViewModel implements IFabrikantenProductV
|
|
|
743
799
|
export interface IFabrikantenProductViewModel {
|
|
744
800
|
id: number;
|
|
745
801
|
name?: string | undefined;
|
|
802
|
+
urlName?: string | undefined;
|
|
803
|
+
textureBaseViewModel?: FabrikantenTextureBaseViewModel | undefined;
|
|
746
804
|
fabrikantenBCBProductViewModels?: FabrikantenBCBProductViewModel[] | undefined;
|
|
747
805
|
}
|
|
806
|
+
export declare class FabrikantenTextureBaseViewModel implements IFabrikantenTextureBaseViewModel {
|
|
807
|
+
id: number;
|
|
808
|
+
name?: string | undefined;
|
|
809
|
+
bcbeboViewModel?: BCBEBOViewModel | undefined;
|
|
810
|
+
constructor(data?: IFabrikantenTextureBaseViewModel);
|
|
811
|
+
init(_data?: any): void;
|
|
812
|
+
static fromJS(data: any): FabrikantenTextureBaseViewModel;
|
|
813
|
+
toJSON(data?: any): any;
|
|
814
|
+
}
|
|
815
|
+
export interface IFabrikantenTextureBaseViewModel {
|
|
816
|
+
id: number;
|
|
817
|
+
name?: string | undefined;
|
|
818
|
+
bcbeboViewModel?: BCBEBOViewModel | undefined;
|
|
819
|
+
}
|
|
748
820
|
export declare class FabrikantenBCBProductViewModel implements IFabrikantenBCBProductViewModel {
|
|
749
821
|
id: number;
|
|
750
822
|
name?: string | undefined;
|
|
@@ -887,6 +959,30 @@ export interface IFabrikantenSVGRequestModel {
|
|
|
887
959
|
schaal?: string | undefined;
|
|
888
960
|
sessionId?: string | undefined;
|
|
889
961
|
}
|
|
962
|
+
export declare class FabrikantenTextureViewModel implements IFabrikantenTextureViewModel {
|
|
963
|
+
wuid?: string | undefined;
|
|
964
|
+
patroonURL?: string | undefined;
|
|
965
|
+
bumpURL?: string | undefined;
|
|
966
|
+
constructor(data?: IFabrikantenTextureViewModel);
|
|
967
|
+
init(_data?: any): void;
|
|
968
|
+
static fromJS(data: any): FabrikantenTextureViewModel;
|
|
969
|
+
toJSON(data?: any): any;
|
|
970
|
+
}
|
|
971
|
+
export interface IFabrikantenTextureViewModel {
|
|
972
|
+
wuid?: string | undefined;
|
|
973
|
+
patroonURL?: string | undefined;
|
|
974
|
+
bumpURL?: string | undefined;
|
|
975
|
+
}
|
|
976
|
+
export declare class FabrikantenTextureRequestModel implements IFabrikantenTextureRequestModel {
|
|
977
|
+
sessionId?: string | undefined;
|
|
978
|
+
constructor(data?: IFabrikantenTextureRequestModel);
|
|
979
|
+
init(_data?: any): void;
|
|
980
|
+
static fromJS(data: any): FabrikantenTextureRequestModel;
|
|
981
|
+
toJSON(data?: any): any;
|
|
982
|
+
}
|
|
983
|
+
export interface IFabrikantenTextureRequestModel {
|
|
984
|
+
sessionId?: string | undefined;
|
|
985
|
+
}
|
|
890
986
|
export declare class FabrikantenFileViewModel implements IFabrikantenFileViewModel {
|
|
891
987
|
file?: string | undefined;
|
|
892
988
|
constructor(data?: IFabrikantenFileViewModel);
|
|
@@ -1369,6 +1465,40 @@ export declare class ProductsViewModelRequest implements IProductsViewModelReque
|
|
|
1369
1465
|
export interface IProductsViewModelRequest {
|
|
1370
1466
|
importSetId: number;
|
|
1371
1467
|
}
|
|
1468
|
+
export declare class DeeplinkViewModel implements IDeeplinkViewModel {
|
|
1469
|
+
languages?: string[] | undefined;
|
|
1470
|
+
products?: DeeplinkProductViewModel[] | undefined;
|
|
1471
|
+
constructor(data?: IDeeplinkViewModel);
|
|
1472
|
+
init(_data?: any): void;
|
|
1473
|
+
static fromJS(data: any): DeeplinkViewModel;
|
|
1474
|
+
toJSON(data?: any): any;
|
|
1475
|
+
}
|
|
1476
|
+
export interface IDeeplinkViewModel {
|
|
1477
|
+
languages?: string[] | undefined;
|
|
1478
|
+
products?: DeeplinkProductViewModel[] | undefined;
|
|
1479
|
+
}
|
|
1480
|
+
export declare class DeeplinkProductViewModel implements IDeeplinkProductViewModel {
|
|
1481
|
+
productName?: string | undefined;
|
|
1482
|
+
productURLName?: string | undefined;
|
|
1483
|
+
constructor(data?: IDeeplinkProductViewModel);
|
|
1484
|
+
init(_data?: any): void;
|
|
1485
|
+
static fromJS(data: any): DeeplinkProductViewModel;
|
|
1486
|
+
toJSON(data?: any): any;
|
|
1487
|
+
}
|
|
1488
|
+
export interface IDeeplinkProductViewModel {
|
|
1489
|
+
productName?: string | undefined;
|
|
1490
|
+
productURLName?: string | undefined;
|
|
1491
|
+
}
|
|
1492
|
+
export declare class DeeplinkRequest implements IDeeplinkRequest {
|
|
1493
|
+
temp?: string | undefined;
|
|
1494
|
+
constructor(data?: IDeeplinkRequest);
|
|
1495
|
+
init(_data?: any): void;
|
|
1496
|
+
static fromJS(data: any): DeeplinkRequest;
|
|
1497
|
+
toJSON(data?: any): any;
|
|
1498
|
+
}
|
|
1499
|
+
export interface IDeeplinkRequest {
|
|
1500
|
+
temp?: string | undefined;
|
|
1501
|
+
}
|
|
1372
1502
|
export declare class GetProductRequest implements IGetProductRequest {
|
|
1373
1503
|
id: number;
|
|
1374
1504
|
constructor(data?: IGetProductRequest);
|
|
@@ -1553,6 +1683,7 @@ export interface IProjectSettingsCategoryViewModel {
|
|
|
1553
1683
|
}
|
|
1554
1684
|
export declare class ProjectSettingViewModel implements IProjectSettingViewModel {
|
|
1555
1685
|
name?: string | undefined;
|
|
1686
|
+
category: number;
|
|
1556
1687
|
activeValue?: string | undefined;
|
|
1557
1688
|
defaultValue?: string | undefined;
|
|
1558
1689
|
default: boolean;
|
|
@@ -1567,6 +1698,7 @@ export declare class ProjectSettingViewModel implements IProjectSettingViewModel
|
|
|
1567
1698
|
}
|
|
1568
1699
|
export interface IProjectSettingViewModel {
|
|
1569
1700
|
name?: string | undefined;
|
|
1701
|
+
category: number;
|
|
1570
1702
|
activeValue?: string | undefined;
|
|
1571
1703
|
defaultValue?: string | undefined;
|
|
1572
1704
|
default: boolean;
|
|
@@ -1604,6 +1736,7 @@ export interface ISetProjectSettingResponseModel {
|
|
|
1604
1736
|
}
|
|
1605
1737
|
export declare class SetProjectSettingRequestModel implements ISetProjectSettingRequestModel {
|
|
1606
1738
|
name?: string | undefined;
|
|
1739
|
+
category: number;
|
|
1607
1740
|
value?: string | undefined;
|
|
1608
1741
|
pipelineStep?: string | undefined;
|
|
1609
1742
|
constructor(data?: ISetProjectSettingRequestModel);
|
|
@@ -1613,6 +1746,7 @@ export declare class SetProjectSettingRequestModel implements ISetProjectSetting
|
|
|
1613
1746
|
}
|
|
1614
1747
|
export interface ISetProjectSettingRequestModel {
|
|
1615
1748
|
name?: string | undefined;
|
|
1749
|
+
category: number;
|
|
1616
1750
|
value?: string | undefined;
|
|
1617
1751
|
pipelineStep?: string | undefined;
|
|
1618
1752
|
}
|