fabrikantencore 2.2.2 → 2.2.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm2020/src/app/modules/fabrikantencore/beheer/components/beheer-filters/beheer-filters.component.mjs +3 -3
- package/esm2020/src/app/modules/fabrikantencore/components/fab-filter-fold/fab-filter-fold.component.mjs +81 -0
- package/esm2020/src/app/modules/fabrikantencore/components/fab-input/fab-input.component.mjs +6 -3
- package/esm2020/src/app/modules/fabrikantencore/components/fab-multiselect/fab-multiselect.component.mjs +4 -7
- package/esm2020/src/app/modules/fabrikantencore/components/fab-multiselect-fold/fab-multiselect-fold.component.mjs +33 -0
- package/esm2020/src/app/modules/fabrikantencore/components/fab-product-tile/fab-product-tile.component.mjs +5 -4
- package/esm2020/src/app/modules/fabrikantencore/components/fab-range-input/fab-range-input.component.mjs +10 -7
- package/esm2020/src/app/modules/fabrikantencore/components/fab-range-input-fold/fab-range-input-fold.component.mjs +33 -0
- package/esm2020/src/app/modules/fabrikantencore/fabrikantencore.module.mjs +16 -3
- package/esm2020/src/app/modules/fabrikantencore/services/fabrikanten.service.mjs +20 -7
- package/esm2020/src/app/modules/fabrikantencore/services/translate.service.mjs +18 -1
- package/esm2020/src/app/modules/fabrikantencore/swagger/SwaggerClient.mjs +21 -1
- package/fesm2015/fabrikantencore.mjs +281 -95
- package/fesm2015/fabrikantencore.mjs.map +1 -1
- package/fesm2020/fabrikantencore.mjs +281 -95
- package/fesm2020/fabrikantencore.mjs.map +1 -1
- package/package.json +1 -1
- package/src/app/modules/fabrikantencore/components/fab-filter-fold/fab-filter-fold.component.d.ts +26 -0
- package/src/app/modules/fabrikantencore/components/fab-multiselect/fab-multiselect.component.d.ts +2 -3
- package/src/app/modules/fabrikantencore/components/fab-multiselect-fold/fab-multiselect-fold.component.d.ts +18 -0
- package/src/app/modules/fabrikantencore/components/fab-range-input/fab-range-input.component.d.ts +1 -1
- package/src/app/modules/fabrikantencore/components/fab-range-input-fold/fab-range-input-fold.component.d.ts +18 -0
- package/src/app/modules/fabrikantencore/fabrikantencore.module.d.ts +30 -26
- package/src/app/modules/fabrikantencore/services/translate.service.d.ts +2 -0
- package/src/app/modules/fabrikantencore/swagger/SwaggerClient.d.ts +19 -1
package/package.json
CHANGED
package/src/app/modules/fabrikantencore/components/fab-filter-fold/fab-filter-fold.component.d.ts
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { ChangeDetectorRef } from '@angular/core';
|
|
2
|
+
import { FabrikantenService } from '../../services/fabrikanten.service';
|
|
3
|
+
import { TranslateService } from '../../services/translate.service';
|
|
4
|
+
import { FabrikantenFilterOptionViewModel, FabrikantenFilterViewModel } from '../../swagger/SwaggerClient';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class FabFilterFoldComponent {
|
|
7
|
+
private FabrikantenService;
|
|
8
|
+
TranslateService: TranslateService;
|
|
9
|
+
private ChangeDetectorRef;
|
|
10
|
+
SelectedOptionId: number;
|
|
11
|
+
Opened: boolean;
|
|
12
|
+
_filter: FabrikantenFilterViewModel;
|
|
13
|
+
get filter(): FabrikantenFilterViewModel;
|
|
14
|
+
set filter(value: FabrikantenFilterViewModel);
|
|
15
|
+
constructor(FabrikantenService: FabrikantenService, TranslateService: TranslateService, ChangeDetectorRef: ChangeDetectorRef);
|
|
16
|
+
ngOnInit(): void;
|
|
17
|
+
ChangeState(): void;
|
|
18
|
+
IsFilled(): boolean;
|
|
19
|
+
SelectOption(optionid: number): void;
|
|
20
|
+
ResetSelection(): void;
|
|
21
|
+
HasChosen(): boolean;
|
|
22
|
+
HasOptions(): boolean;
|
|
23
|
+
GetSelectedOption(): FabrikantenFilterOptionViewModel | null;
|
|
24
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FabFilterFoldComponent, never>;
|
|
25
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FabFilterFoldComponent, "app-fab-filter-fold", never, { "filter": "filter"; }, {}, never, never, false, never>;
|
|
26
|
+
}
|
package/src/app/modules/fabrikantencore/components/fab-multiselect/fab-multiselect.component.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ChangeDetectorRef
|
|
1
|
+
import { ChangeDetectorRef } from '@angular/core';
|
|
2
2
|
import { FabrikantenService } from '../../services/fabrikanten.service';
|
|
3
3
|
import { TranslateService } from '../../services/translate.service';
|
|
4
4
|
import { FabrikantenFilterViewModel } from '../../swagger/SwaggerClient';
|
|
@@ -10,10 +10,9 @@ export declare class FabMultiselectComponent {
|
|
|
10
10
|
_filter: FabrikantenFilterViewModel;
|
|
11
11
|
get filter(): FabrikantenFilterViewModel;
|
|
12
12
|
set filter(value: FabrikantenFilterViewModel);
|
|
13
|
-
filterchanged: EventEmitter<void>;
|
|
14
13
|
constructor(FabrikantenService: FabrikantenService, TranslateService: TranslateService, ChangeDetectorRef: ChangeDetectorRef);
|
|
15
14
|
SelectOption(id: number): void;
|
|
16
15
|
IsChecked(id: number): boolean;
|
|
17
16
|
static ɵfac: i0.ɵɵFactoryDeclaration<FabMultiselectComponent, never>;
|
|
18
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FabMultiselectComponent, "app-fab-multiselect", never, { "filter": "filter"; }, {
|
|
17
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FabMultiselectComponent, "app-fab-multiselect", never, { "filter": "filter"; }, {}, never, never, false, never>;
|
|
19
18
|
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { ChangeDetectorRef } from '@angular/core';
|
|
2
|
+
import { FabrikantenService } from '../../services/fabrikanten.service';
|
|
3
|
+
import { TranslateService } from '../../services/translate.service';
|
|
4
|
+
import { FabrikantenFilterViewModel } from '../../swagger/SwaggerClient';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class FabMultiselectFoldComponent {
|
|
7
|
+
private FabrikantenService;
|
|
8
|
+
TranslateService: TranslateService;
|
|
9
|
+
private ChangeDetectorRef;
|
|
10
|
+
_filter: FabrikantenFilterViewModel;
|
|
11
|
+
get filter(): FabrikantenFilterViewModel;
|
|
12
|
+
set filter(value: FabrikantenFilterViewModel);
|
|
13
|
+
Opened: boolean;
|
|
14
|
+
constructor(FabrikantenService: FabrikantenService, TranslateService: TranslateService, ChangeDetectorRef: ChangeDetectorRef);
|
|
15
|
+
ChangeState(): void;
|
|
16
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FabMultiselectFoldComponent, never>;
|
|
17
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FabMultiselectFoldComponent, "app-fab-multiselect-fold", never, { "filter": "filter"; }, {}, never, never, false, never>;
|
|
18
|
+
}
|
package/src/app/modules/fabrikantencore/components/fab-range-input/fab-range-input.component.d.ts
CHANGED
|
@@ -11,12 +11,12 @@ export declare class FabRangeInputComponent implements OnInit {
|
|
|
11
11
|
get rangeinput(): FabrikantenRangeInputViewModel;
|
|
12
12
|
set rangeinput(value: FabrikantenRangeInputViewModel);
|
|
13
13
|
value: number;
|
|
14
|
-
tooltip: string;
|
|
15
14
|
constructor(FabrikantenService: FabrikantenService, TranslateService: TranslateService, ChangeDetectorRef: ChangeDetectorRef);
|
|
16
15
|
ngOnInit(): void;
|
|
17
16
|
ProcessChange(): void;
|
|
18
17
|
GetMin(): number;
|
|
19
18
|
GetMax(): number;
|
|
19
|
+
GetToolTip(): string;
|
|
20
20
|
private GetTranslateString;
|
|
21
21
|
static ɵfac: i0.ɵɵFactoryDeclaration<FabRangeInputComponent, never>;
|
|
22
22
|
static ɵcmp: i0.ɵɵComponentDeclaration<FabRangeInputComponent, "app-fab-range-input", never, { "rangeinput": "rangeinput"; }, {}, never, never, false, never>;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { ChangeDetectorRef } from '@angular/core';
|
|
2
|
+
import { FabrikantenService } from '../../services/fabrikanten.service';
|
|
3
|
+
import { TranslateService } from '../../services/translate.service';
|
|
4
|
+
import { FabrikantenRangeInputViewModel } from '../../swagger/SwaggerClient';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class FabRangeInputFoldComponent {
|
|
7
|
+
private FabrikantenService;
|
|
8
|
+
TranslateService: TranslateService;
|
|
9
|
+
private ChangeDetectorRef;
|
|
10
|
+
_rangeinput: FabrikantenRangeInputViewModel;
|
|
11
|
+
get rangeinput(): FabrikantenRangeInputViewModel;
|
|
12
|
+
set rangeinput(value: FabrikantenRangeInputViewModel);
|
|
13
|
+
Opened: boolean;
|
|
14
|
+
constructor(FabrikantenService: FabrikantenService, TranslateService: TranslateService, ChangeDetectorRef: ChangeDetectorRef);
|
|
15
|
+
ChangeState(): void;
|
|
16
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FabRangeInputFoldComponent, never>;
|
|
17
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FabRangeInputFoldComponent, "app-fab-range-input-fold", never, { "rangeinput": "rangeinput"; }, {}, never, never, false, never>;
|
|
18
|
+
}
|
|
@@ -63,33 +63,37 @@ import * as i61 from "./components/fab-select-bcbproduct/fab-select-bcbproduct.c
|
|
|
63
63
|
import * as i62 from "./components/fab-input/fab-input.component";
|
|
64
64
|
import * as i63 from "./beheer/components/beheer-select-filteroption-dialog/beheer-select-filteroption-dialog.component";
|
|
65
65
|
import * as i64 from "./components/fab-multiselect/fab-multiselect.component";
|
|
66
|
-
import * as i65 from "
|
|
67
|
-
import * as i66 from "
|
|
68
|
-
import * as i67 from "
|
|
69
|
-
import * as i68 from "@angular/
|
|
70
|
-
import * as i69 from "@angular/
|
|
71
|
-
import * as i70 from "@angular/material/
|
|
72
|
-
import * as i71 from "@angular/
|
|
73
|
-
import * as i72 from "@angular/
|
|
74
|
-
import * as i73 from "@angular/material/
|
|
75
|
-
import * as i74 from "@angular/material/
|
|
76
|
-
import * as i75 from "@angular/material/
|
|
77
|
-
import * as i76 from "@angular/material/
|
|
78
|
-
import * as i77 from "@angular/material/
|
|
79
|
-
import * as i78 from "@angular/material/
|
|
80
|
-
import * as i79 from "@angular/material/
|
|
81
|
-
import * as i80 from "@angular/material/
|
|
82
|
-
import * as i81 from "@angular/material/
|
|
83
|
-
import * as i82 from "@angular/
|
|
84
|
-
import * as i83 from "@angular/material/
|
|
85
|
-
import * as i84 from "@angular/material/
|
|
86
|
-
import * as i85 from "@angular/material/
|
|
87
|
-
import * as i86 from "@angular/
|
|
88
|
-
import * as i87 from "@angular/material/
|
|
89
|
-
import * as i88 from "@angular/material/
|
|
90
|
-
import * as i89 from "@angular/
|
|
66
|
+
import * as i65 from "./components/fab-filter-fold/fab-filter-fold.component";
|
|
67
|
+
import * as i66 from "./components/fab-multiselect-fold/fab-multiselect-fold.component";
|
|
68
|
+
import * as i67 from "./components/fab-range-input-fold/fab-range-input-fold.component";
|
|
69
|
+
import * as i68 from "@angular/common";
|
|
70
|
+
import * as i69 from "@angular/common/http";
|
|
71
|
+
import * as i70 from "@angular/material/input";
|
|
72
|
+
import * as i71 from "@angular/forms";
|
|
73
|
+
import * as i72 from "@angular/platform-browser/animations";
|
|
74
|
+
import * as i73 from "@angular/material/tooltip";
|
|
75
|
+
import * as i74 from "@angular/material/button";
|
|
76
|
+
import * as i75 from "@angular/material/list";
|
|
77
|
+
import * as i76 from "@angular/material/expansion";
|
|
78
|
+
import * as i77 from "@angular/material/card";
|
|
79
|
+
import * as i78 from "@angular/material/icon";
|
|
80
|
+
import * as i79 from "@angular/material/dialog";
|
|
81
|
+
import * as i80 from "@angular/material/tree";
|
|
82
|
+
import * as i81 from "@angular/material/sidenav";
|
|
83
|
+
import * as i82 from "@angular/material/table";
|
|
84
|
+
import * as i83 from "@angular/material/button-toggle";
|
|
85
|
+
import * as i84 from "@angular/material/stepper";
|
|
86
|
+
import * as i85 from "@angular/material/radio";
|
|
87
|
+
import * as i86 from "@angular/cdk/drag-drop";
|
|
88
|
+
import * as i87 from "@angular/material/checkbox";
|
|
89
|
+
import * as i88 from "@angular/material/divider";
|
|
90
|
+
import * as i89 from "@angular/material/tabs";
|
|
91
|
+
import * as i90 from "@angular/material/progress-spinner";
|
|
92
|
+
import * as i91 from "@angular/material/select";
|
|
93
|
+
import * as i92 from "@angular/material/snack-bar";
|
|
94
|
+
import * as i93 from "@angular/router";
|
|
91
95
|
export declare class FabrikantenCoreModule {
|
|
92
96
|
static ɵfac: i0.ɵɵFactoryDeclaration<FabrikantenCoreModule, never>;
|
|
93
|
-
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
|
|
97
|
+
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.CommonModule, typeof i69.HttpClientModule, typeof i70.MatInputModule, typeof i71.FormsModule, typeof i72.BrowserAnimationsModule, typeof i73.MatTooltipModule, typeof i74.MatButtonModule, typeof i75.MatListModule, typeof i76.MatExpansionModule, typeof i77.MatCardModule, typeof i78.MatIconModule, typeof i79.MatDialogModule, typeof i80.MatTreeModule, typeof i81.MatSidenavModule, typeof i82.MatTableModule, typeof i83.MatButtonToggleModule, typeof i84.MatStepperModule, typeof i85.MatRadioModule, typeof i86.DragDropModule, typeof i87.MatCheckboxModule, typeof i88.MatDividerModule, typeof i89.MatTabsModule, typeof i90.MatProgressSpinnerModule, typeof i91.MatSelectModule, typeof i92.MatSnackBarModule, typeof i93.RouterModule], [typeof i1.FabFiltersComponent, typeof i2.FabCategoryNavigatorComponent]>;
|
|
94
98
|
static ɵinj: i0.ɵɵInjectorDeclaration<FabrikantenCoreModule>;
|
|
95
99
|
}
|
|
@@ -27,6 +27,8 @@ export declare class TranslateService {
|
|
|
27
27
|
GetValueBCBEigenschapToebehoren(language: LanguageViewModel, bcbEigenschapToebehorenId: number): string;
|
|
28
28
|
GetActiveValueProduct(productId: number): string;
|
|
29
29
|
GetValueProduct(language: LanguageViewModel, productId: number): string;
|
|
30
|
+
GetActiveValueProductDescription(productId: number): string;
|
|
31
|
+
GetValueProductDescription(language: LanguageViewModel, productId: number): string;
|
|
30
32
|
GetActiveValueRangeInput(rangeInputId: number): string;
|
|
31
33
|
GetValueRangeInput(language: LanguageViewModel, rangeInputId: number): string;
|
|
32
34
|
GetActiveValueFilter(filterId: number): string;
|
|
@@ -525,6 +525,7 @@ export interface IRangeInputViewModel {
|
|
|
525
525
|
}
|
|
526
526
|
export declare class RangeInputFilterOptionRequiredViewModel implements IRangeInputFilterOptionRequiredViewModel {
|
|
527
527
|
id: number;
|
|
528
|
+
filterOptionRequiredType: FilterOptionRequiredType;
|
|
528
529
|
requiredFilterOptionId: number;
|
|
529
530
|
requiredFilterOptionName?: string | undefined;
|
|
530
531
|
requiredFilterName?: string | undefined;
|
|
@@ -537,12 +538,17 @@ export declare class RangeInputFilterOptionRequiredViewModel implements IRangeIn
|
|
|
537
538
|
}
|
|
538
539
|
export interface IRangeInputFilterOptionRequiredViewModel {
|
|
539
540
|
id: number;
|
|
541
|
+
filterOptionRequiredType: FilterOptionRequiredType;
|
|
540
542
|
requiredFilterOptionId: number;
|
|
541
543
|
requiredFilterOptionName?: string | undefined;
|
|
542
544
|
requiredFilterName?: string | undefined;
|
|
543
545
|
affectedRangeInputId: number;
|
|
544
546
|
affectedRangeInputName?: string | undefined;
|
|
545
547
|
}
|
|
548
|
+
export declare enum FilterOptionRequiredType {
|
|
549
|
+
AND = 0,
|
|
550
|
+
OR = 1
|
|
551
|
+
}
|
|
546
552
|
export declare class BCBEigenschapToebehorenViewModel implements IBCBEigenschapToebehorenViewModel {
|
|
547
553
|
id: number;
|
|
548
554
|
name?: string | undefined;
|
|
@@ -876,7 +882,9 @@ export interface IFabrikantenFilterViewModel {
|
|
|
876
882
|
export declare enum FilterType {
|
|
877
883
|
Dropdown = 1,
|
|
878
884
|
ColourSelector = 2,
|
|
879
|
-
MultiSelect = 3
|
|
885
|
+
MultiSelect = 3,
|
|
886
|
+
DropdownFold = 4,
|
|
887
|
+
MultiSelectFold = 5
|
|
880
888
|
}
|
|
881
889
|
export declare class FabrikantenFilterOptionViewModel implements IFabrikantenFilterOptionViewModel {
|
|
882
890
|
id: number;
|
|
@@ -897,6 +905,7 @@ export interface IFabrikantenFilterOptionViewModel {
|
|
|
897
905
|
export declare class FabrikantenRangeInputViewModel implements IFabrikantenRangeInputViewModel {
|
|
898
906
|
id: number;
|
|
899
907
|
name?: string | undefined;
|
|
908
|
+
rangeInputType: RangeInputType;
|
|
900
909
|
value?: string | undefined;
|
|
901
910
|
required: boolean;
|
|
902
911
|
hidden: boolean;
|
|
@@ -913,6 +922,7 @@ export declare class FabrikantenRangeInputViewModel implements IFabrikantenRange
|
|
|
913
922
|
export interface IFabrikantenRangeInputViewModel {
|
|
914
923
|
id: number;
|
|
915
924
|
name?: string | undefined;
|
|
925
|
+
rangeInputType: RangeInputType;
|
|
916
926
|
value?: string | undefined;
|
|
917
927
|
required: boolean;
|
|
918
928
|
hidden: boolean;
|
|
@@ -922,6 +932,10 @@ export interface IFabrikantenRangeInputViewModel {
|
|
|
922
932
|
inclusiefMinimum: boolean;
|
|
923
933
|
inclusiefMaximum: boolean;
|
|
924
934
|
}
|
|
935
|
+
export declare enum RangeInputType {
|
|
936
|
+
RangeInput = 0,
|
|
937
|
+
RangeInputFold = 1
|
|
938
|
+
}
|
|
925
939
|
export declare class FabrikantenProductViewModel implements IFabrikantenProductViewModel {
|
|
926
940
|
id: number;
|
|
927
941
|
name?: string | undefined;
|
|
@@ -1457,6 +1471,7 @@ export declare class FilterOptionRequiredViewModel implements IFilterOptionRequi
|
|
|
1457
1471
|
requiredFilterOptionId: number;
|
|
1458
1472
|
requiredFilterOptionName?: string | undefined;
|
|
1459
1473
|
requiredFilterName?: string | undefined;
|
|
1474
|
+
filterOptionRequiredType: FilterOptionRequiredType;
|
|
1460
1475
|
affectedFilterId: number;
|
|
1461
1476
|
affectedFilterName?: string | undefined;
|
|
1462
1477
|
constructor(data?: IFilterOptionRequiredViewModel);
|
|
@@ -1469,6 +1484,7 @@ export interface IFilterOptionRequiredViewModel {
|
|
|
1469
1484
|
requiredFilterOptionId: number;
|
|
1470
1485
|
requiredFilterOptionName?: string | undefined;
|
|
1471
1486
|
requiredFilterName?: string | undefined;
|
|
1487
|
+
filterOptionRequiredType: FilterOptionRequiredType;
|
|
1472
1488
|
affectedFilterId: number;
|
|
1473
1489
|
affectedFilterName?: string | undefined;
|
|
1474
1490
|
}
|
|
@@ -2376,6 +2392,7 @@ export declare class TranslateEntryProductViewModel implements ITranslateEntryPr
|
|
|
2376
2392
|
productId: number;
|
|
2377
2393
|
productName?: string | undefined;
|
|
2378
2394
|
value?: string | undefined;
|
|
2395
|
+
description?: string | undefined;
|
|
2379
2396
|
constructor(data?: ITranslateEntryProductViewModel);
|
|
2380
2397
|
init(_data?: any): void;
|
|
2381
2398
|
static fromJS(data: any): TranslateEntryProductViewModel;
|
|
@@ -2386,6 +2403,7 @@ export interface ITranslateEntryProductViewModel {
|
|
|
2386
2403
|
productId: number;
|
|
2387
2404
|
productName?: string | undefined;
|
|
2388
2405
|
value?: string | undefined;
|
|
2406
|
+
description?: string | undefined;
|
|
2389
2407
|
}
|
|
2390
2408
|
export declare class TranslateEntryFilterViewModel implements ITranslateEntryFilterViewModel {
|
|
2391
2409
|
id: number;
|