fabrikantencore 2.10.8 → 2.10.13

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 (20) hide show
  1. package/esm2022/src/app/modules/fabrikantencore/beheer/components/beheer-products/beheer-products-ebo/beheer-products-ebo.component.mjs +3 -3
  2. package/esm2022/src/app/modules/fabrikantencore/beheer/components/beheer-products/beheer-products-eigenschap/beheer-products-eigenschap.component.mjs +3 -3
  3. package/esm2022/src/app/modules/fabrikantencore/components/fab-actionmenu/fab-actionmenu-revit-dialog/fab-actionmenu-revit-dialog.component.mjs +14 -7
  4. package/esm2022/src/app/modules/fabrikantencore/components/fab-actionmenu/fab-actionmenu.component.mjs +6 -3
  5. package/esm2022/src/app/modules/fabrikantencore/components/fab-categories/fab-categories.component.mjs +10 -3
  6. package/esm2022/src/app/modules/fabrikantencore/components/fab-category-listitem/fab-category-listitem.component.mjs +60 -0
  7. package/esm2022/src/app/modules/fabrikantencore/components/fab-filters-input/fab-filters-input.component.mjs +9 -3
  8. package/esm2022/src/app/modules/fabrikantencore/fabrikantencore.module.mjs +6 -3
  9. package/esm2022/src/app/modules/fabrikantencore/services/fabrikanten.service.mjs +7 -2
  10. package/esm2022/src/app/modules/fabrikantencore/swagger/SwaggerClient.mjs +14 -1
  11. package/fesm2022/fabrikantencore.mjs +121 -29
  12. package/fesm2022/fabrikantencore.mjs.map +1 -1
  13. package/package.json +1 -1
  14. package/src/app/modules/fabrikantencore/components/fab-actionmenu/fab-actionmenu-revit-dialog/fab-actionmenu-revit-dialog.component.d.ts +4 -1
  15. package/src/app/modules/fabrikantencore/components/fab-actionmenu/fab-actionmenu.component.d.ts +1 -0
  16. package/src/app/modules/fabrikantencore/components/fab-categories/fab-categories.component.d.ts +1 -0
  17. package/src/app/modules/fabrikantencore/components/fab-category-listitem/fab-category-listitem.component.d.ts +23 -0
  18. package/src/app/modules/fabrikantencore/components/fab-filters-input/fab-filters-input.component.d.ts +1 -0
  19. package/src/app/modules/fabrikantencore/fabrikantencore.module.d.ts +30 -29
  20. package/src/app/modules/fabrikantencore/swagger/SwaggerClient.d.ts +10 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fabrikantencore",
3
- "version": "2.10.8",
3
+ "version": "2.10.13",
4
4
  "dependencies": {
5
5
  "tslib": "^2.3.0"
6
6
  },
@@ -1,13 +1,16 @@
1
1
  import { ChangeDetectorRef } from '@angular/core';
2
2
  import { MatLegacyDialogRef as MatDialogRef } from '@angular/material/legacy-dialog';
3
3
  import { TranslateService } from '../../../services/translate.service';
4
+ import { FabrikantenService } from '../../../services/fabrikanten.service';
4
5
  import * as i0 from "@angular/core";
5
6
  export declare class FabActionmenuRevitDialogComponent {
6
7
  dialogRef: MatDialogRef<FabActionmenuRevitDialogComponent>;
7
8
  data: any;
8
9
  TranslateService: TranslateService;
10
+ FabrikantenService: FabrikantenService;
9
11
  private ChangeDetectorRef;
10
- constructor(dialogRef: MatDialogRef<FabActionmenuRevitDialogComponent>, data: any, TranslateService: TranslateService, ChangeDetectorRef: ChangeDetectorRef);
12
+ constructor(dialogRef: MatDialogRef<FabActionmenuRevitDialogComponent>, data: any, TranslateService: TranslateService, FabrikantenService: FabrikantenService, ChangeDetectorRef: ChangeDetectorRef);
13
+ IsRevitPluginDownload(): boolean;
11
14
  StartDownload(): void;
12
15
  static ɵfac: i0.ɵɵFactoryDeclaration<FabActionmenuRevitDialogComponent, never>;
13
16
  static ɵcmp: i0.ɵɵComponentDeclaration<FabActionmenuRevitDialogComponent, "app-fab-actionmenu-revit-dialog", never, {}, {}, never, never, false, never>;
@@ -47,6 +47,7 @@ export declare class FabActionmenuComponent {
47
47
  OpenBCBLink(): void;
48
48
  DownloadPDFTemplate(template: FabrikantenPDFTemplateViewModel): void;
49
49
  DownloadCustom(customdownload: FabrikantenCustomDownloadViewModel): void;
50
+ OpenPDF(customdownload: FabrikantenCustomDownloadViewModel): void;
50
51
  Download(downloaditem: FabrikantenSettingsDownloadItemViewModel, custombcbeboid: number | undefined): void;
51
52
  RefreshSnede(): void;
52
53
  RefreshSchaal(): void;
@@ -10,6 +10,7 @@ export declare class FabCategoriesComponent implements OnInit {
10
10
  private ChangeDetectorRef;
11
11
  constructor(FabrikantenService: FabrikantenService, TranslateService: TranslateService, ActivatedRoute: ActivatedRoute, ChangeDetectorRef: ChangeDetectorRef);
12
12
  ngOnInit(): void;
13
+ ShowListView(): boolean;
13
14
  static ɵfac: i0.ɵɵFactoryDeclaration<FabCategoriesComponent, never>;
14
15
  static ɵcmp: i0.ɵɵComponentDeclaration<FabCategoriesComponent, "fab-categories", never, {}, {}, never, never, false, never>;
15
16
  }
@@ -0,0 +1,23 @@
1
+ import { ChangeDetectorRef, OnInit } from '@angular/core';
2
+ import { DomSanitizer } from '@angular/platform-browser';
3
+ import { FabrikantenService } from '../../services/fabrikanten.service';
4
+ import { TranslateService } from '../../services/translate.service';
5
+ import { FabrikantenCategoryViewModel, TranslationCategory, TranslationSubCategory } from '../../swagger/SwaggerClient';
6
+ import * as i0 from "@angular/core";
7
+ export declare class FabCategoryListitemComponent implements OnInit {
8
+ FabrikantenService: FabrikantenService;
9
+ private sanitization;
10
+ private ChangeDetectorRef;
11
+ TranslateService: TranslateService;
12
+ get TranslationCategory(): typeof TranslationCategory;
13
+ get TranslationSubCategory(): typeof TranslationSubCategory;
14
+ category: FabrikantenCategoryViewModel;
15
+ constructor(FabrikantenService: FabrikantenService, sanitization: DomSanitizer, ChangeDetectorRef: ChangeDetectorRef, TranslateService: TranslateService);
16
+ ngOnInit(): void;
17
+ Select(): void;
18
+ DisplayNoPhoto(): boolean;
19
+ getSafeUrl(): import("@angular/platform-browser").SafeStyle;
20
+ ShowListView(): boolean;
21
+ static ɵfac: i0.ɵɵFactoryDeclaration<FabCategoryListitemComponent, never>;
22
+ static ɵcmp: i0.ɵɵComponentDeclaration<FabCategoryListitemComponent, "fab-category-listitem", never, { "category": { "alias": "category"; "required": false; }; }, {}, never, never, false, never>;
23
+ }
@@ -15,6 +15,7 @@ export declare class FabFiltersInputComponent implements OnInit {
15
15
  ShowCategories(): boolean;
16
16
  ShowAffectsOnlyBestek(): boolean;
17
17
  ShowInputCode(): boolean;
18
+ ShowTwoColumns(): boolean;
18
19
  GetHeaderName(): string;
19
20
  GetHeaderAriaLabel(cat: FabrikantenFilterCategoryViewModel): string;
20
21
  static ɵfac: i0.ɵɵFactoryDeclaration<FabFiltersInputComponent, never>;
@@ -84,36 +84,37 @@ import * as i82 from "./components/inputs/fab-filter-autocomplete-fold/fab-filte
84
84
  import * as i83 from "./components/fab-actionmenu/fab-actionmenu-revit-dialog/fab-actionmenu-revit-dialog.component";
85
85
  import * as i84 from "./components/fab-product/fab-product-auto-specification/fab-product-auto-specification.component";
86
86
  import * as i85 from "./components/fab-cookies-dialog/fab-cookies-dialog.component";
87
- import * as i86 from "@angular/common";
88
- import * as i87 from "@angular/common/http";
89
- import * as i88 from "@kolkov/angular-editor";
90
- import * as i89 from "@angular/material/legacy-input";
91
- import * as i90 from "@angular/forms";
92
- import * as i91 from "@angular/platform-browser/animations";
93
- import * as i92 from "@angular/material/legacy-tooltip";
94
- import * as i93 from "@angular/material/legacy-button";
95
- import * as i94 from "@angular/material/legacy-list";
96
- import * as i95 from "@angular/material/expansion";
97
- import * as i96 from "@angular/material/legacy-card";
98
- import * as i97 from "@angular/material/icon";
99
- import * as i98 from "@angular/material/legacy-dialog";
100
- import * as i99 from "@angular/material/tree";
101
- import * as i100 from "@angular/material/sidenav";
102
- import * as i101 from "@angular/material/legacy-table";
103
- import * as i102 from "@angular/material/button-toggle";
104
- import * as i103 from "@angular/material/stepper";
105
- import * as i104 from "@angular/material/legacy-radio";
106
- import * as i105 from "@angular/material/legacy-paginator";
107
- import * as i106 from "@angular/cdk/drag-drop";
108
- import * as i107 from "@angular/material/legacy-checkbox";
109
- import * as i108 from "@angular/material/divider";
110
- import * as i109 from "@angular/material/legacy-tabs";
111
- import * as i110 from "@angular/material/legacy-progress-spinner";
112
- import * as i111 from "@angular/material/legacy-select";
113
- import * as i112 from "@angular/material/legacy-snack-bar";
114
- import * as i113 from "@angular/router";
87
+ import * as i86 from "./components/fab-category-listitem/fab-category-listitem.component";
88
+ import * as i87 from "@angular/common";
89
+ import * as i88 from "@angular/common/http";
90
+ import * as i89 from "@kolkov/angular-editor";
91
+ import * as i90 from "@angular/material/legacy-input";
92
+ import * as i91 from "@angular/forms";
93
+ import * as i92 from "@angular/platform-browser/animations";
94
+ import * as i93 from "@angular/material/legacy-tooltip";
95
+ import * as i94 from "@angular/material/legacy-button";
96
+ import * as i95 from "@angular/material/legacy-list";
97
+ import * as i96 from "@angular/material/expansion";
98
+ import * as i97 from "@angular/material/legacy-card";
99
+ import * as i98 from "@angular/material/icon";
100
+ import * as i99 from "@angular/material/legacy-dialog";
101
+ import * as i100 from "@angular/material/tree";
102
+ import * as i101 from "@angular/material/sidenav";
103
+ import * as i102 from "@angular/material/legacy-table";
104
+ import * as i103 from "@angular/material/button-toggle";
105
+ import * as i104 from "@angular/material/stepper";
106
+ import * as i105 from "@angular/material/legacy-radio";
107
+ import * as i106 from "@angular/material/legacy-paginator";
108
+ import * as i107 from "@angular/cdk/drag-drop";
109
+ import * as i108 from "@angular/material/legacy-checkbox";
110
+ import * as i109 from "@angular/material/divider";
111
+ import * as i110 from "@angular/material/legacy-tabs";
112
+ import * as i111 from "@angular/material/legacy-progress-spinner";
113
+ import * as i112 from "@angular/material/legacy-select";
114
+ import * as i113 from "@angular/material/legacy-snack-bar";
115
+ import * as i114 from "@angular/router";
115
116
  export declare class FabrikantenCoreModule {
116
117
  static ɵfac: i0.ɵɵFactoryDeclaration<FabrikantenCoreModule, never>;
117
- 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.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.FabFilterColourComponent, typeof i57.FabFilterColourDialogComponent, typeof i58.FabToebehorenComponent, typeof i59.FabActionmenuComponent, typeof i60.FabSelectBcbproductComponent, typeof i61.FabInputComponent, typeof i62.BeheerSelectFilteroptionDialogComponent, typeof i63.FabMultiselectComponent, typeof i64.FabFilterFoldComponent, typeof i65.FabMultiselectFoldComponent, typeof i66.FabRangeInputFoldComponent, typeof i67.FabFilterLabelComponent, typeof i68.FabFilterColourLabelComponent, typeof i69.BeheerFilterComponent, typeof i70.BeheerRangeinputComponent, typeof i71.FabFilterDisplayValueComponent, typeof i72.FabFilterCustomComponent, typeof i73.FabFilterCustomBaseComponent, typeof i74.FabCheckboxComponent, typeof i75.FabInputCodeComponent, typeof i76.FabFormDialogComponent, typeof i77.FabDownloadZipComponent, typeof i78.FabFormComponent, typeof i79.FabFilterPictureSelectComponent, typeof i80.FabDisplayPhotoDialogComponent, typeof i81.FabFilterAutocompleteComponent, typeof i82.FabFilterAutocompleteFoldComponent, typeof i83.FabActionmenuRevitDialogComponent, typeof i84.FabProductAutoSpecificationComponent, typeof i85.FabCookiesDialogComponent], [typeof i86.CommonModule, typeof i87.HttpClientModule, typeof i88.AngularEditorModule, typeof i89.MatLegacyInputModule, typeof i90.FormsModule, typeof i91.BrowserAnimationsModule, typeof i92.MatLegacyTooltipModule, typeof i93.MatLegacyButtonModule, typeof i94.MatLegacyListModule, typeof i95.MatExpansionModule, typeof i96.MatLegacyCardModule, typeof i97.MatIconModule, typeof i98.MatLegacyDialogModule, typeof i99.MatTreeModule, typeof i100.MatSidenavModule, typeof i101.MatLegacyTableModule, typeof i102.MatButtonToggleModule, typeof i103.MatStepperModule, typeof i104.MatLegacyRadioModule, typeof i105.MatLegacyPaginatorModule, typeof i106.DragDropModule, typeof i107.MatLegacyCheckboxModule, typeof i108.MatDividerModule, typeof i109.MatLegacyTabsModule, typeof i110.MatLegacyProgressSpinnerModule, typeof i111.MatLegacySelectModule, typeof i112.MatLegacySnackBarModule, typeof i90.ReactiveFormsModule, typeof i113.RouterModule], [typeof i59.FabActionmenuComponent, typeof i2.FabCategoryNavigatorComponent, typeof i19.FabFilterComponent, typeof i72.FabFilterCustomComponent, typeof i67.FabFilterLabelComponent, typeof i1.FabFiltersComponent, typeof i38.FabFiltersInputComponent, typeof i10.FabLoaderComponent, typeof i44.FabWebglViewerComponent, typeof i45.FabSvgViewerComponent, typeof i25.FabProductBestekComponent, typeof i60.FabSelectBcbproductComponent, typeof i77.FabDownloadZipComponent, typeof i78.FabFormComponent]>;
118
+ 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.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.FabFilterColourComponent, typeof i57.FabFilterColourDialogComponent, typeof i58.FabToebehorenComponent, typeof i59.FabActionmenuComponent, typeof i60.FabSelectBcbproductComponent, typeof i61.FabInputComponent, typeof i62.BeheerSelectFilteroptionDialogComponent, typeof i63.FabMultiselectComponent, typeof i64.FabFilterFoldComponent, typeof i65.FabMultiselectFoldComponent, typeof i66.FabRangeInputFoldComponent, typeof i67.FabFilterLabelComponent, typeof i68.FabFilterColourLabelComponent, typeof i69.BeheerFilterComponent, typeof i70.BeheerRangeinputComponent, typeof i71.FabFilterDisplayValueComponent, typeof i72.FabFilterCustomComponent, typeof i73.FabFilterCustomBaseComponent, typeof i74.FabCheckboxComponent, typeof i75.FabInputCodeComponent, typeof i76.FabFormDialogComponent, typeof i77.FabDownloadZipComponent, typeof i78.FabFormComponent, typeof i79.FabFilterPictureSelectComponent, typeof i80.FabDisplayPhotoDialogComponent, typeof i81.FabFilterAutocompleteComponent, typeof i82.FabFilterAutocompleteFoldComponent, typeof i83.FabActionmenuRevitDialogComponent, typeof i84.FabProductAutoSpecificationComponent, typeof i85.FabCookiesDialogComponent, typeof i86.FabCategoryListitemComponent], [typeof i87.CommonModule, typeof i88.HttpClientModule, typeof i89.AngularEditorModule, typeof i90.MatLegacyInputModule, typeof i91.FormsModule, typeof i92.BrowserAnimationsModule, typeof i93.MatLegacyTooltipModule, typeof i94.MatLegacyButtonModule, typeof i95.MatLegacyListModule, typeof i96.MatExpansionModule, typeof i97.MatLegacyCardModule, typeof i98.MatIconModule, typeof i99.MatLegacyDialogModule, typeof i100.MatTreeModule, typeof i101.MatSidenavModule, typeof i102.MatLegacyTableModule, typeof i103.MatButtonToggleModule, typeof i104.MatStepperModule, typeof i105.MatLegacyRadioModule, typeof i106.MatLegacyPaginatorModule, typeof i107.DragDropModule, typeof i108.MatLegacyCheckboxModule, typeof i109.MatDividerModule, typeof i110.MatLegacyTabsModule, typeof i111.MatLegacyProgressSpinnerModule, typeof i112.MatLegacySelectModule, typeof i113.MatLegacySnackBarModule, typeof i91.ReactiveFormsModule, typeof i114.RouterModule], [typeof i59.FabActionmenuComponent, typeof i2.FabCategoryNavigatorComponent, typeof i19.FabFilterComponent, typeof i72.FabFilterCustomComponent, typeof i67.FabFilterLabelComponent, typeof i1.FabFiltersComponent, typeof i38.FabFiltersInputComponent, typeof i10.FabLoaderComponent, typeof i44.FabWebglViewerComponent, typeof i45.FabSvgViewerComponent, typeof i25.FabProductBestekComponent, typeof i60.FabSelectBcbproductComponent, typeof i77.FabDownloadZipComponent, typeof i78.FabFormComponent]>;
118
119
  static ɵinj: i0.ɵɵInjectorDeclaration<FabrikantenCoreModule>;
119
120
  }
@@ -1187,6 +1187,7 @@ export declare class FabrikantenCustomDownloadViewModel implements IFabrikantenC
1187
1187
  id: number;
1188
1188
  name?: string | undefined;
1189
1189
  downloadType: DownloadType;
1190
+ fileName?: string | undefined;
1190
1191
  loading: boolean;
1191
1192
  constructor(data?: IFabrikantenCustomDownloadViewModel);
1192
1193
  init(_data?: any): void;
@@ -1197,10 +1198,12 @@ export interface IFabrikantenCustomDownloadViewModel {
1197
1198
  id: number;
1198
1199
  name?: string | undefined;
1199
1200
  downloadType: DownloadType;
1201
+ fileName?: string | undefined;
1200
1202
  loading: boolean;
1201
1203
  }
1202
1204
  export declare enum DownloadType {
1203
- RevitTypeCatalog = 1
1205
+ RevitTypeCatalog = 1,
1206
+ PDFLink = 2
1204
1207
  }
1205
1208
  export declare class FabrikantenRequestModel implements IFabrikantenRequestModel {
1206
1209
  sessionId?: string | undefined;
@@ -1223,12 +1226,15 @@ export declare class FabrikantenSettingsViewModel implements IFabrikantenSetting
1223
1226
  startTab?: string | undefined;
1224
1227
  alwaysShowVariant: boolean;
1225
1228
  enableToebehoren: boolean;
1229
+ addEnableTwoColumnFilters: boolean;
1226
1230
  showBCBButton: boolean;
1227
1231
  enableNCSOriginalColours: boolean;
1228
1232
  enableCustomTopColours: boolean;
1229
1233
  enableVrijeBestekTekst: boolean;
1230
1234
  customRedirect?: string | undefined;
1231
1235
  disableCustomFileNames: boolean;
1236
+ enableCategoryList: boolean;
1237
+ enableRevitPlugin: boolean;
1232
1238
  inputCodeEnabled: boolean;
1233
1239
  downloadFormEnabled: boolean;
1234
1240
  googleAnalyticsEnabled: boolean;
@@ -1252,12 +1258,15 @@ export interface IFabrikantenSettingsViewModel {
1252
1258
  startTab?: string | undefined;
1253
1259
  alwaysShowVariant: boolean;
1254
1260
  enableToebehoren: boolean;
1261
+ addEnableTwoColumnFilters: boolean;
1255
1262
  showBCBButton: boolean;
1256
1263
  enableNCSOriginalColours: boolean;
1257
1264
  enableCustomTopColours: boolean;
1258
1265
  enableVrijeBestekTekst: boolean;
1259
1266
  customRedirect?: string | undefined;
1260
1267
  disableCustomFileNames: boolean;
1268
+ enableCategoryList: boolean;
1269
+ enableRevitPlugin: boolean;
1261
1270
  inputCodeEnabled: boolean;
1262
1271
  downloadFormEnabled: boolean;
1263
1272
  googleAnalyticsEnabled: boolean;