fabrikantencore 2.7.7 → 2.8.0

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.
Files changed (30) hide show
  1. package/esm2022/public_api.mjs +2 -1
  2. package/esm2022/src/app/modules/fabrikantencore/beheer/components/beheer-translate/beheer-translate.component.mjs +45 -38
  3. package/esm2022/src/app/modules/fabrikantencore/components/fab-actionmenu/fab-actionmenu.component.mjs +22 -18
  4. package/esm2022/src/app/modules/fabrikantencore/components/fab-checkbox/fab-checkbox.component.mjs +6 -4
  5. package/esm2022/src/app/modules/fabrikantencore/components/fab-download-zip/fab-download-zip.component.mjs +81 -0
  6. package/esm2022/src/app/modules/fabrikantencore/components/fab-filter-display-value/fab-filter-display-value.component.mjs +6 -4
  7. package/esm2022/src/app/modules/fabrikantencore/components/fab-filter-label/fab-filter-label.component.mjs +7 -6
  8. package/esm2022/src/app/modules/fabrikantencore/components/fab-filters-input/fab-filters-input.component.mjs +3 -3
  9. package/esm2022/src/app/modules/fabrikantencore/components/fab-form-dialog/fab-form-dialog.component.mjs +102 -0
  10. package/esm2022/src/app/modules/fabrikantencore/components/fab-input-code/fab-input-code.component.mjs +93 -0
  11. package/esm2022/src/app/modules/fabrikantencore/components/fab-range-input/fab-range-input.component.mjs +3 -3
  12. package/esm2022/src/app/modules/fabrikantencore/components/fab-svg-viewer/fab-svg-viewer.component.mjs +1 -4
  13. package/esm2022/src/app/modules/fabrikantencore/components/fab-webgl-viewer/fab-webgl-viewer.component.mjs +1 -4
  14. package/esm2022/src/app/modules/fabrikantencore/fabrikantencore.module.mjs +20 -6
  15. package/esm2022/src/app/modules/fabrikantencore/services/fabrikanten.service.mjs +112 -174
  16. package/esm2022/src/app/modules/fabrikantencore/swagger/SwaggerClient.mjs +908 -198
  17. package/fesm2022/fabrikantencore.mjs +1586 -692
  18. package/fesm2022/fabrikantencore.mjs.map +1 -1
  19. package/package.json +1 -1
  20. package/public_api.d.ts +1 -0
  21. package/src/app/modules/fabrikantencore/beheer/components/beheer-translate/beheer-translate.component.d.ts +1 -1
  22. package/src/app/modules/fabrikantencore/components/fab-actionmenu/fab-actionmenu.component.d.ts +6 -7
  23. package/src/app/modules/fabrikantencore/components/fab-download-zip/fab-download-zip.component.d.ts +20 -0
  24. package/src/app/modules/fabrikantencore/components/fab-form-dialog/fab-form-dialog.component.d.ts +25 -0
  25. package/src/app/modules/fabrikantencore/components/fab-input-code/fab-input-code.component.d.ts +29 -0
  26. package/src/app/modules/fabrikantencore/components/fab-svg-viewer/fab-svg-viewer.component.d.ts +0 -1
  27. package/src/app/modules/fabrikantencore/components/fab-webgl-viewer/fab-webgl-viewer.component.d.ts +0 -1
  28. package/src/app/modules/fabrikantencore/fabrikantencore.module.d.ts +32 -29
  29. package/src/app/modules/fabrikantencore/services/fabrikanten.service.d.ts +9 -21
  30. package/src/app/modules/fabrikantencore/swagger/SwaggerClient.d.ts +310 -68
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fabrikantencore",
3
- "version": "2.7.7",
3
+ "version": "2.8.0",
4
4
  "dependencies": {
5
5
  "tslib": "^2.3.0"
6
6
  },
package/public_api.d.ts CHANGED
@@ -10,6 +10,7 @@ export * from './src/app/modules/fabrikantencore/components/fab-svg-viewer/fab-s
10
10
  export * from './src/app/modules/fabrikantencore/components/fab-product/fab-product-bestek/fab-product-bestek.component';
11
11
  export * from './src/app/modules/fabrikantencore/components/fab-loader/fab-loader.component';
12
12
  export * from './src/app/modules/fabrikantencore/components/fab-select-bcbproduct/fab-select-bcbproduct.component';
13
+ export * from './src/app/modules/fabrikantencore/components/fab-download-zip/fab-download-zip.component';
13
14
  export * from './src/app/modules/fabrikantencore/services/mobile.service';
14
15
  export * from './src/app/modules/fabrikantencore/services/fabrikanten.service';
15
16
  export * from './src/app/modules/fabrikantencore/services/bestek.service';
@@ -10,7 +10,6 @@ export declare class BeheerTranslateComponent implements OnInit, DoCheck {
10
10
  private authenticationService;
11
11
  private snackBar;
12
12
  private ChangeDetectorRef;
13
- HTML: string;
14
13
  Loading: boolean;
15
14
  OpenChanges: boolean;
16
15
  BeheerLanguagesViewModel: BeheerLanguagesViewModel;
@@ -21,6 +20,7 @@ export declare class BeheerTranslateComponent implements OnInit, DoCheck {
21
20
  get TranslationCategory(): typeof TranslationCategory;
22
21
  get TranslationSubCategory(): typeof TranslationSubCategory;
23
22
  SelectedBeheerLanguagesCategoryViewModel: BeheerLanguagesCategoryViewModel | null;
23
+ SelectedBeheerLanguageViewModel: BeheerLanguageViewModel | null;
24
24
  tablediv: ElementRef;
25
25
  editorConfig: AngularEditorConfig;
26
26
  constructor(TranslateApiClient: TranslateApiClient, authenticationService: AuthenticationService, snackBar: MatSnackBar, ChangeDetectorRef: ChangeDetectorRef);
@@ -7,7 +7,7 @@ import { TextureService } from '../../services/texture.service';
7
7
  import { ToebehorenService } from '../../services/toebehoren.service';
8
8
  import { TranslateService } from '../../services/translate.service';
9
9
  import { WebGLService } from '../../services/webgl.service';
10
- import { TranslationCategory, TranslationSubCategory } from '../../swagger/SwaggerClient';
10
+ import { FabrikantenPDFTemplateViewModel, FabrikantenSettingsDownloadItemViewModel, TranslationCategory, TranslationSubCategory } from '../../swagger/SwaggerClient';
11
11
  import * as i0 from "@angular/core";
12
12
  export declare class FabActionmenuComponent {
13
13
  MobileService: MobileService;
@@ -24,12 +24,14 @@ export declare class FabActionmenuComponent {
24
24
  display: string;
25
25
  constructor(MobileService: MobileService, FabrikantenService: FabrikantenService, TranslateService: TranslateService, BestekService: BestekService, TextureService: TextureService, SVGService: SVGService, WebGLService: WebGLService, ToebehorenService: ToebehorenService, ChangeDetectorRef: ChangeDetectorRef);
26
26
  OpenLink(url: string): void;
27
+ ShowDownloadCategory(name: string): boolean;
27
28
  Show3DButtons(): boolean;
28
29
  Show2DButtons(): boolean;
29
30
  ShowBestekButtons(): boolean;
30
31
  ShowTextureButtons(): boolean;
31
32
  ShowToebehorenButtons(): boolean;
32
33
  ShowBCBButton(): boolean;
34
+ ShowInputCode(): boolean;
33
35
  DownloadBestek(): void;
34
36
  CopyToClipBoard(): void;
35
37
  CopyToClipBoardSUF(): void;
@@ -38,12 +40,9 @@ export declare class FabActionmenuComponent {
38
40
  ShowSUF(): boolean;
39
41
  ShowOSF(): boolean;
40
42
  ShowVrij(): boolean;
41
- OpenBCBLink3D(): void;
42
- OpenBCBLink2D(): void;
43
- OpenBCBLinkBestek(): void;
44
- OpenBCBLinkTexture(): void;
45
- OpenBCBLinkToebehoren(): void;
46
- DownloadRevit(): void;
43
+ OpenBCBLink(): void;
44
+ DownloadPDFTemplate(template: FabrikantenPDFTemplateViewModel): void;
45
+ Download(downloaditem: FabrikantenSettingsDownloadItemViewModel, custombcbeboid: number | undefined): void;
47
46
  RefreshSnede(): void;
48
47
  RefreshSchaal(): void;
49
48
  static ɵfac: i0.ɵɵFactoryDeclaration<FabActionmenuComponent, never>;
@@ -0,0 +1,20 @@
1
+ import { ChangeDetectorRef } from '@angular/core';
2
+ import { TranslationCategory, TranslationSubCategory } from '../../swagger/SwaggerClient';
3
+ import { FabrikantenService } from '../../services/fabrikanten.service';
4
+ import { TranslateService } from '../../services/translate.service';
5
+ import { WebGLService } from '../../services/webgl.service';
6
+ import * as i0 from "@angular/core";
7
+ export declare class FabDownloadZipComponent {
8
+ FabrikantenService: FabrikantenService;
9
+ TranslateService: TranslateService;
10
+ WebGLService: WebGLService;
11
+ ChangeDetectorRef: ChangeDetectorRef;
12
+ get TranslationCategory(): typeof TranslationCategory;
13
+ get TranslationSubCategory(): typeof TranslationSubCategory;
14
+ constructor(FabrikantenService: FabrikantenService, TranslateService: TranslateService, WebGLService: WebGLService, ChangeDetectorRef: ChangeDetectorRef);
15
+ Download(): void;
16
+ IsLoading(): boolean;
17
+ ShowComponent(): boolean;
18
+ static ɵfac: i0.ɵɵFactoryDeclaration<FabDownloadZipComponent, never>;
19
+ static ɵcmp: i0.ɵɵComponentDeclaration<FabDownloadZipComponent, "app-fab-download-zip", never, {}, {}, never, never, false, never>;
20
+ }
@@ -0,0 +1,25 @@
1
+ import { ChangeDetectorRef } from '@angular/core';
2
+ import { MatLegacyDialogRef as MatDialogRef } from '@angular/material/legacy-dialog';
3
+ import { FabrikantenFormViewModel, FabrikantenApiClient, TranslationCategory, TranslationSubCategory } from '../../swagger/SwaggerClient';
4
+ import { FormBuilder } from '@angular/forms';
5
+ import { FabrikantenService } from '../../services/fabrikanten.service';
6
+ import { TranslateService } from '../../services/translate.service';
7
+ import * as i0 from "@angular/core";
8
+ export declare class FabFormDialogComponent {
9
+ private formBuilder;
10
+ dialogRef: MatDialogRef<FabFormDialogComponent>;
11
+ data: any;
12
+ private FabrikantenApiClient;
13
+ private FabrikantenService;
14
+ TranslateService: TranslateService;
15
+ private ChangeDetectorRef;
16
+ Form: FabrikantenFormViewModel;
17
+ FormGroup: import("@angular/forms").FormGroup<{}>;
18
+ get TranslationCategory(): typeof TranslationCategory;
19
+ get TranslationSubCategory(): typeof TranslationSubCategory;
20
+ constructor(formBuilder: FormBuilder, dialogRef: MatDialogRef<FabFormDialogComponent>, data: any, FabrikantenApiClient: FabrikantenApiClient, FabrikantenService: FabrikantenService, TranslateService: TranslateService, ChangeDetectorRef: ChangeDetectorRef);
21
+ OnSubmit(): void;
22
+ Close(): void;
23
+ static ɵfac: i0.ɵɵFactoryDeclaration<FabFormDialogComponent, never>;
24
+ static ɵcmp: i0.ɵɵComponentDeclaration<FabFormDialogComponent, "app-fab-form-dialog", never, {}, {}, never, never, false, never>;
25
+ }
@@ -0,0 +1,29 @@
1
+ import { ChangeDetectorRef } from '@angular/core';
2
+ import { FormControl, FormGroupDirective, NgForm } from '@angular/forms';
3
+ import { ErrorStateMatcher } from '@angular/material/core';
4
+ import { FabrikantenService } from '../../services/fabrikanten.service';
5
+ import { TranslateService } from '../../services/translate.service';
6
+ import { TranslationCategory, TranslationSubCategory, FabrikantenApiClient, FabrikantenInstanceViewModel } from '../../swagger/SwaggerClient';
7
+ import * as i0 from "@angular/core";
8
+ export declare class FabInputCodeComponent {
9
+ FabrikantenService: FabrikantenService;
10
+ TranslateService: TranslateService;
11
+ private FabrikantenApiClient;
12
+ ChangeDetectorRef: ChangeDetectorRef;
13
+ InputCode: string;
14
+ LoadingGenerate: boolean;
15
+ InputCodeErrorStateMatcher: InputCodeErrorStateMatcher;
16
+ FabrikantenInstanceViewModel: FabrikantenInstanceViewModel | null;
17
+ get TranslationCategory(): typeof TranslationCategory;
18
+ get TranslationSubCategory(): typeof TranslationSubCategory;
19
+ constructor(FabrikantenService: FabrikantenService, TranslateService: TranslateService, FabrikantenApiClient: FabrikantenApiClient, ChangeDetectorRef: ChangeDetectorRef);
20
+ Open(): void;
21
+ Generate(): void;
22
+ ShowGenerateCode(): boolean;
23
+ static ɵfac: i0.ɵɵFactoryDeclaration<FabInputCodeComponent, never>;
24
+ static ɵcmp: i0.ɵɵComponentDeclaration<FabInputCodeComponent, "app-fab-input-code", never, {}, {}, never, never, false, never>;
25
+ }
26
+ export declare class InputCodeErrorStateMatcher implements ErrorStateMatcher {
27
+ CodeError: boolean;
28
+ isErrorState(control: FormControl | null, form: FormGroupDirective | NgForm | null): boolean;
29
+ }
@@ -19,7 +19,6 @@ export declare class FabSvgViewerComponent implements OnInit, AfterViewInit, DoC
19
19
  ngAfterViewInit(): void;
20
20
  ngDoCheck(): void;
21
21
  ShowSVG(): boolean;
22
- OpenBCBLink(): void;
23
22
  UpdateSize(): void;
24
23
  static ɵfac: i0.ɵɵFactoryDeclaration<FabSvgViewerComponent, never>;
25
24
  static ɵcmp: i0.ɵɵComponentDeclaration<FabSvgViewerComponent, "app-fab-svg-viewer", never, {}, {}, never, never, false, never>;
@@ -16,7 +16,6 @@ export declare class FabWebglViewerComponent implements OnInit, AfterViewInit, D
16
16
  ngOnInit(): void;
17
17
  ngAfterViewInit(): void;
18
18
  ngDoCheck(): void;
19
- OpenBCBLink(): void;
20
19
  ShowWebGL(): boolean;
21
20
  RefreshViewer(): void;
22
21
  private RefreshViewerSize;
@@ -74,36 +74,39 @@ import * as i72 from "./components/fab-filter-display-value/fab-filter-display-v
74
74
  import * as i73 from "./components/fab-filter-custom/fab-filter-custom.component";
75
75
  import * as i74 from "./components/fab-filter-custom-base/fab-filter-custom-base.component";
76
76
  import * as i75 from "./components/fab-checkbox/fab-checkbox.component";
77
- import * as i76 from "@angular/common";
78
- import * as i77 from "@angular/common/http";
79
- import * as i78 from "@kolkov/angular-editor";
80
- import * as i79 from "@angular/material/legacy-input";
81
- import * as i80 from "@angular/forms";
82
- import * as i81 from "@angular/platform-browser/animations";
83
- import * as i82 from "@angular/material/legacy-tooltip";
84
- import * as i83 from "@angular/material/legacy-button";
85
- import * as i84 from "@angular/material/legacy-list";
86
- import * as i85 from "@angular/material/expansion";
87
- import * as i86 from "@angular/material/legacy-card";
88
- import * as i87 from "@angular/material/icon";
89
- import * as i88 from "@angular/material/legacy-dialog";
90
- import * as i89 from "@angular/material/tree";
91
- import * as i90 from "@angular/material/sidenav";
92
- import * as i91 from "@angular/material/legacy-table";
93
- import * as i92 from "@angular/material/button-toggle";
94
- import * as i93 from "@angular/material/stepper";
95
- import * as i94 from "@angular/material/legacy-radio";
96
- import * as i95 from "@angular/material/legacy-paginator";
97
- import * as i96 from "@angular/cdk/drag-drop";
98
- import * as i97 from "@angular/material/legacy-checkbox";
99
- import * as i98 from "@angular/material/divider";
100
- import * as i99 from "@angular/material/legacy-tabs";
101
- import * as i100 from "@angular/material/legacy-progress-spinner";
102
- import * as i101 from "@angular/material/legacy-select";
103
- import * as i102 from "@angular/material/legacy-snack-bar";
104
- import * as i103 from "@angular/router";
77
+ import * as i76 from "./components/fab-input-code/fab-input-code.component";
78
+ import * as i77 from "./components/fab-form-dialog/fab-form-dialog.component";
79
+ import * as i78 from "./components/fab-download-zip/fab-download-zip.component";
80
+ import * as i79 from "@angular/common";
81
+ import * as i80 from "@angular/common/http";
82
+ import * as i81 from "@kolkov/angular-editor";
83
+ import * as i82 from "@angular/material/legacy-input";
84
+ import * as i83 from "@angular/forms";
85
+ import * as i84 from "@angular/platform-browser/animations";
86
+ import * as i85 from "@angular/material/legacy-tooltip";
87
+ import * as i86 from "@angular/material/legacy-button";
88
+ import * as i87 from "@angular/material/legacy-list";
89
+ import * as i88 from "@angular/material/expansion";
90
+ import * as i89 from "@angular/material/legacy-card";
91
+ import * as i90 from "@angular/material/icon";
92
+ import * as i91 from "@angular/material/legacy-dialog";
93
+ import * as i92 from "@angular/material/tree";
94
+ import * as i93 from "@angular/material/sidenav";
95
+ import * as i94 from "@angular/material/legacy-table";
96
+ import * as i95 from "@angular/material/button-toggle";
97
+ import * as i96 from "@angular/material/stepper";
98
+ import * as i97 from "@angular/material/legacy-radio";
99
+ import * as i98 from "@angular/material/legacy-paginator";
100
+ import * as i99 from "@angular/cdk/drag-drop";
101
+ import * as i100 from "@angular/material/legacy-checkbox";
102
+ import * as i101 from "@angular/material/divider";
103
+ import * as i102 from "@angular/material/legacy-tabs";
104
+ import * as i103 from "@angular/material/legacy-progress-spinner";
105
+ import * as i104 from "@angular/material/legacy-select";
106
+ import * as i105 from "@angular/material/legacy-snack-bar";
107
+ import * as i106 from "@angular/router";
105
108
  export declare class FabrikantenCoreModule {
106
109
  static ɵfac: i0.ɵɵFactoryDeclaration<FabrikantenCoreModule, never>;
107
- static ɵmod: i0.ɵɵNgModuleDeclaration<FabrikantenCoreModule, [typeof i1.FabFiltersComponent, typeof i2.FabCategoryNavigatorComponent, typeof i3.BeheerMainComponent, typeof i4.BeheerInlogComponent, typeof i5.BeheerNavComponent, typeof i6.BeheerUsersComponent, typeof i7.BeheerProductsComponent, typeof i8.BeheerFiltersComponent, typeof i9.BeheerSettingsComponent, typeof i10.FabLoaderComponent, typeof i11.BeheerSearchProductsComponent, typeof i12.BeheerSearchproductsKoppelDialogComponent, typeof i13.BeheerProductsProductComponent, typeof i14.BeheerProductsBcbproductComponent, typeof i15.BeheerImportSetsComponent, typeof i16.BeheerImportSetsOpbouwComponent, typeof i17.BeheerImportSetsEigenschapComponent, typeof i16.BeheerImportSetsEboComponent, typeof i18.BeheerProductsEigenschapComponent, typeof i19.BeheerProductsKoppelFilteroptionDailogComponent, typeof i20.FabFilterComponent, typeof i21.FabProductComponent, typeof i22.FabBcbProductComponent, typeof i23.FabProductSelectComponent, typeof i24.FabProductTileComponent, typeof i25.FabProductInfoComponent, typeof i26.FabProductBestekComponent, typeof i27.FabProductInfoPhotoComponent, typeof i28.FabProductInfoPhotoDialogComponent, typeof i29.BeheerEboKoppelComponent, typeof i30.BeheerSettingsOptionsComponent, typeof i31.BeheerSettingsStringComponent, typeof i32.BeheerImportSetsDialogComponent, typeof i33.BeheerCategoriesComponent, typeof i34.BeheerConnectCategoryDialogComponent, typeof i35.FabStartComponent, typeof i36.FabCategoriesComponent, typeof i37.FabCategoryTileComponent, typeof i38.FabBreadcrumbComponent, typeof i39.FabFiltersInputComponent, typeof i40.FabFiltersOverviewComponent, typeof i41.FabFlagComponent, typeof i42.BeheerTranslateComponent, typeof i43.FabLanguageSelectComponent, typeof i44.FabHeaderComponent, typeof i45.FabWebglViewerComponent, typeof i46.FabSvgViewerComponent, typeof i47.BeheerProductsOpbouwComponent, typeof i47.BeheerProductsEboComponent, typeof i48.BeheerProductsEigenschapBereikComponent, typeof i49.BeheerDisplayEboComponent, typeof i50.BeheerProductsConnectRangeinputComponent, typeof i51.FabRangeInputComponent, typeof i52.BeheerSettingsBooleanComponent, typeof i53.BeheerSelectFilterDialogComponent, typeof i54.FabTextureComponent, typeof i55.FabIframeComponent, typeof i56.BeheerDeeplinkComponent, typeof i57.FabFilterColourComponent, typeof i58.FabFilterColourDialogComponent, typeof i59.FabToebehorenComponent, typeof i60.FabActionmenuComponent, typeof i61.FabSelectBcbproductComponent, typeof i62.FabInputComponent, typeof i63.BeheerSelectFilteroptionDialogComponent, typeof i64.FabMultiselectComponent, typeof i65.FabFilterFoldComponent, typeof i66.FabMultiselectFoldComponent, typeof i67.FabRangeInputFoldComponent, typeof i68.FabFilterLabelComponent, typeof i69.FabFilterColourLabelComponent, typeof i70.BeheerFilterComponent, typeof i71.BeheerRangeinputComponent, typeof i72.FabFilterDisplayValueComponent, typeof i73.FabFilterCustomComponent, typeof i74.FabFilterCustomBaseComponent, typeof i75.FabCheckboxComponent], [typeof i76.CommonModule, typeof i77.HttpClientModule, typeof i78.AngularEditorModule, typeof i79.MatLegacyInputModule, typeof i80.FormsModule, typeof i81.BrowserAnimationsModule, typeof i82.MatLegacyTooltipModule, typeof i83.MatLegacyButtonModule, typeof i84.MatLegacyListModule, typeof i85.MatExpansionModule, typeof i86.MatLegacyCardModule, typeof i87.MatIconModule, typeof i88.MatLegacyDialogModule, typeof i89.MatTreeModule, typeof i90.MatSidenavModule, typeof i91.MatLegacyTableModule, typeof i92.MatButtonToggleModule, typeof i93.MatStepperModule, typeof i94.MatLegacyRadioModule, typeof i95.MatLegacyPaginatorModule, typeof i96.DragDropModule, typeof i97.MatLegacyCheckboxModule, typeof i98.MatDividerModule, typeof i99.MatLegacyTabsModule, typeof i100.MatLegacyProgressSpinnerModule, typeof i101.MatLegacySelectModule, typeof i102.MatLegacySnackBarModule, typeof i103.RouterModule], [typeof i60.FabActionmenuComponent, typeof i2.FabCategoryNavigatorComponent, typeof i73.FabFilterCustomComponent, typeof i1.FabFiltersComponent, typeof i39.FabFiltersInputComponent, typeof i10.FabLoaderComponent, typeof i45.FabWebglViewerComponent, typeof i46.FabSvgViewerComponent, typeof i26.FabProductBestekComponent, typeof i61.FabSelectBcbproductComponent]>;
110
+ static ɵmod: i0.ɵɵNgModuleDeclaration<FabrikantenCoreModule, [typeof i1.FabFiltersComponent, typeof i2.FabCategoryNavigatorComponent, typeof i3.BeheerMainComponent, typeof i4.BeheerInlogComponent, typeof i5.BeheerNavComponent, typeof i6.BeheerUsersComponent, typeof i7.BeheerProductsComponent, typeof i8.BeheerFiltersComponent, typeof i9.BeheerSettingsComponent, typeof i10.FabLoaderComponent, typeof i11.BeheerSearchProductsComponent, typeof i12.BeheerSearchproductsKoppelDialogComponent, typeof i13.BeheerProductsProductComponent, typeof i14.BeheerProductsBcbproductComponent, typeof i15.BeheerImportSetsComponent, typeof i16.BeheerImportSetsOpbouwComponent, typeof i17.BeheerImportSetsEigenschapComponent, typeof i16.BeheerImportSetsEboComponent, typeof i18.BeheerProductsEigenschapComponent, typeof i19.BeheerProductsKoppelFilteroptionDailogComponent, typeof i20.FabFilterComponent, typeof i21.FabProductComponent, typeof i22.FabBcbProductComponent, typeof i23.FabProductSelectComponent, typeof i24.FabProductTileComponent, typeof i25.FabProductInfoComponent, typeof i26.FabProductBestekComponent, typeof i27.FabProductInfoPhotoComponent, typeof i28.FabProductInfoPhotoDialogComponent, typeof i29.BeheerEboKoppelComponent, typeof i30.BeheerSettingsOptionsComponent, typeof i31.BeheerSettingsStringComponent, typeof i32.BeheerImportSetsDialogComponent, typeof i33.BeheerCategoriesComponent, typeof i34.BeheerConnectCategoryDialogComponent, typeof i35.FabStartComponent, typeof i36.FabCategoriesComponent, typeof i37.FabCategoryTileComponent, typeof i38.FabBreadcrumbComponent, typeof i39.FabFiltersInputComponent, typeof i40.FabFiltersOverviewComponent, typeof i41.FabFlagComponent, typeof i42.BeheerTranslateComponent, typeof i43.FabLanguageSelectComponent, typeof i44.FabHeaderComponent, typeof i45.FabWebglViewerComponent, typeof i46.FabSvgViewerComponent, typeof i47.BeheerProductsOpbouwComponent, typeof i47.BeheerProductsEboComponent, typeof i48.BeheerProductsEigenschapBereikComponent, typeof i49.BeheerDisplayEboComponent, typeof i50.BeheerProductsConnectRangeinputComponent, typeof i51.FabRangeInputComponent, typeof i52.BeheerSettingsBooleanComponent, typeof i53.BeheerSelectFilterDialogComponent, typeof i54.FabTextureComponent, typeof i55.FabIframeComponent, typeof i56.BeheerDeeplinkComponent, typeof i57.FabFilterColourComponent, typeof i58.FabFilterColourDialogComponent, typeof i59.FabToebehorenComponent, typeof i60.FabActionmenuComponent, typeof i61.FabSelectBcbproductComponent, typeof i62.FabInputComponent, typeof i63.BeheerSelectFilteroptionDialogComponent, typeof i64.FabMultiselectComponent, typeof i65.FabFilterFoldComponent, typeof i66.FabMultiselectFoldComponent, typeof i67.FabRangeInputFoldComponent, typeof i68.FabFilterLabelComponent, typeof i69.FabFilterColourLabelComponent, typeof i70.BeheerFilterComponent, typeof i71.BeheerRangeinputComponent, typeof i72.FabFilterDisplayValueComponent, typeof i73.FabFilterCustomComponent, typeof i74.FabFilterCustomBaseComponent, typeof i75.FabCheckboxComponent, typeof i76.FabInputCodeComponent, typeof i77.FabFormDialogComponent, typeof i78.FabDownloadZipComponent], [typeof i79.CommonModule, typeof i80.HttpClientModule, typeof i81.AngularEditorModule, typeof i82.MatLegacyInputModule, typeof i83.FormsModule, typeof i84.BrowserAnimationsModule, typeof i85.MatLegacyTooltipModule, typeof i86.MatLegacyButtonModule, typeof i87.MatLegacyListModule, typeof i88.MatExpansionModule, typeof i89.MatLegacyCardModule, typeof i90.MatIconModule, typeof i91.MatLegacyDialogModule, typeof i92.MatTreeModule, typeof i93.MatSidenavModule, typeof i94.MatLegacyTableModule, typeof i95.MatButtonToggleModule, typeof i96.MatStepperModule, typeof i97.MatLegacyRadioModule, typeof i98.MatLegacyPaginatorModule, typeof i99.DragDropModule, typeof i100.MatLegacyCheckboxModule, typeof i101.MatDividerModule, typeof i102.MatLegacyTabsModule, typeof i103.MatLegacyProgressSpinnerModule, typeof i104.MatLegacySelectModule, typeof i105.MatLegacySnackBarModule, typeof i83.ReactiveFormsModule, typeof i106.RouterModule], [typeof i60.FabActionmenuComponent, typeof i2.FabCategoryNavigatorComponent, typeof i73.FabFilterCustomComponent, typeof i1.FabFiltersComponent, typeof i39.FabFiltersInputComponent, typeof i10.FabLoaderComponent, typeof i45.FabWebglViewerComponent, typeof i46.FabSvgViewerComponent, typeof i26.FabProductBestekComponent, typeof i61.FabSelectBcbproductComponent, typeof i78.FabDownloadZipComponent]>;
108
111
  static ɵinj: i0.ɵɵInjectorDeclaration<FabrikantenCoreModule>;
109
112
  }
@@ -1,6 +1,7 @@
1
1
  import { ChangeDetectorRef } from '@angular/core';
2
+ import { MatLegacyDialog as MatDialog } from '@angular/material/legacy-dialog';
2
3
  import { ActivatedRoute, Router } from '@angular/router';
3
- import { FabrikantenApiClient, FabrikantenFilterViewModel, FabrikantenViewModel, FabrikantenSettingsViewModel, FabrikantenProductViewModel, FabrikantenBCBProductViewModel, FabrikantenCategoryLayerViewModel, FabrikantenBCBProductToebehorenViewModel, FabrikantenCategoryViewModel, DynamicDisplayValueViewModel } from '../swagger/SwaggerClient';
4
+ import { FabrikantenApiClient, FabrikantenFilterViewModel, FabrikantenViewModel, FabrikantenSettingsViewModel, FabrikantenProductViewModel, FabrikantenBCBProductViewModel, FabrikantenCategoryLayerViewModel, FabrikantenBCBProductToebehorenViewModel, FabrikantenCategoryViewModel, DynamicDisplayValueViewModel, FabrikantenSettingsDownloadItemViewModel, FabrikantenPDFTemplateViewModel } from '../swagger/SwaggerClient';
4
5
  import { BestekService } from './bestek.service';
5
6
  import { NavigateService } from './navigate.service';
6
7
  import { StatisticsService } from './statistics.service';
@@ -23,17 +24,10 @@ export declare class FabrikantenService {
23
24
  private TextureService;
24
25
  private NavigateService;
25
26
  private Router;
27
+ dialog: MatDialog;
26
28
  private StatisticsService;
27
29
  private Init;
28
30
  Loading: boolean;
29
- DownloadARKEYAdomiLoading: boolean;
30
- DownloadIFCLoading: boolean;
31
- DownloadRevitPluginLoading: boolean;
32
- Download3DAutoCADDwgLoading: boolean;
33
- Download3DDxfLoading: boolean;
34
- Download2DAutoCADDwgLoading: boolean;
35
- Download2DDxfLoading: boolean;
36
- DownloadRFALoading: boolean;
37
31
  SelectedTabIndex: number;
38
32
  FabrikantenViewModel: FabrikantenViewModel;
39
33
  SettingsLoaded: boolean;
@@ -46,7 +40,7 @@ export declare class FabrikantenService {
46
40
  ForceUpdate2D: boolean;
47
41
  ForceUpdateTexture: boolean;
48
42
  Loaded: boolean;
49
- constructor(FabrikantenApiClient: FabrikantenApiClient, BestekService: BestekService, TranslateService: TranslateService, WebGLService: WebGLService, SVGService: SVGService, TextureService: TextureService, NavigateService: NavigateService, Router: Router, StatisticsService: StatisticsService);
43
+ constructor(FabrikantenApiClient: FabrikantenApiClient, BestekService: BestekService, TranslateService: TranslateService, WebGLService: WebGLService, SVGService: SVGService, TextureService: TextureService, NavigateService: NavigateService, Router: Router, dialog: MatDialog, StatisticsService: StatisticsService);
50
44
  ResetAllFilters(ChangeDetectorRef: ChangeDetectorRef): void;
51
45
  SelectOption(filterid: number, filteroptionid: number, ChangeDetectorRef: ChangeDetectorRef, ActivatedRoute?: ActivatedRoute): void;
52
46
  SelectColour(filterid: number, colour: string, colourvalue: string, ChangeDetectorRef: ChangeDetectorRef): void;
@@ -69,9 +63,9 @@ export declare class FabrikantenService {
69
63
  ShowVariants(): boolean;
70
64
  ShowActionMenu(): boolean;
71
65
  HasToebehoren(): boolean;
72
- OpenBCBLink(wuid: string): void;
73
- ReloadModel(ChangeDetectorRef: ChangeDetectorRef, ActivatedRoute?: ActivatedRoute): void;
74
- LoadFabrikantenViewModel(ChangeDetectorRef: ChangeDetectorRef, ActivatedRoute?: ActivatedRoute): void;
66
+ OpenBCBLink(): void;
67
+ ReloadModel(ChangeDetectorRef: ChangeDetectorRef, ActivatedRoute?: ActivatedRoute, CallBack?: any): void;
68
+ LoadFabrikantenViewModel(ChangeDetectorRef: ChangeDetectorRef, ActivatedRoute?: ActivatedRoute, CallBack?: any): void;
75
69
  LoadFabrikantenSettingsViewModel(ChangeDetectorRef: ChangeDetectorRef, ActivatedRoute?: ActivatedRoute): void;
76
70
  ProcessParameters(ChangeDetectorRef: ChangeDetectorRef, ActivatedRoute: ActivatedRoute): boolean;
77
71
  private ProcessParameterFilter;
@@ -82,14 +76,8 @@ export declare class FabrikantenService {
82
76
  private ProcessDynamicDisplayValueInputs;
83
77
  private ProcessDynamicFilters;
84
78
  private ProcessDynamicRangeInputs;
85
- DownloadARKEYAdomi(custombcbeboid: number | undefined): void;
86
- DownloadIFC(custombcbeboid: number | undefined): void;
87
- DownloadRevitPlugin(custombcbeboid: number | undefined): void;
88
- Download3DAutoCADDwg(custombcbeboid: number | undefined): void;
89
- Download3DDxf(custombcbeboid: number | undefined): void;
90
- Download2DAutoCADDwg(custombcbeboid: number | undefined): void;
91
- Download2DDxf(custombcbeboid: number | undefined): void;
92
- DownloadRFA(custombcbeboid: number | undefined): void;
79
+ Download(downloaditem: FabrikantenSettingsDownloadItemViewModel, custombcbeboid: number | undefined): void;
80
+ DownloadItems(downloaditems: FabrikantenSettingsDownloadItemViewModel[], custombcbeboid: number | undefined, pdftemplates?: FabrikantenPDFTemplateViewModel[] | undefined): void;
93
81
  StartDownload(url: string, extension: string): void;
94
82
  DownloadBestek(data: string): void;
95
83
  private DownloadBestekInner;