fabrikantencore 2.3.2 → 2.3.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/components/fab-filter/fab-filter.component.mjs +3 -3
- package/esm2020/src/app/modules/fabrikantencore/swagger/SwaggerClient.mjs +39 -1
- package/fesm2015/fabrikantencore.mjs +41 -3
- package/fesm2015/fabrikantencore.mjs.map +1 -1
- package/fesm2020/fabrikantencore.mjs +41 -3
- package/fesm2020/fabrikantencore.mjs.map +1 -1
- package/package.json +1 -1
- package/src/app/modules/fabrikantencore/swagger/SwaggerClient.d.ts +14 -0
package/package.json
CHANGED
|
@@ -864,6 +864,7 @@ export declare class FabrikantenFilterViewModel implements IFabrikantenFilterVie
|
|
|
864
864
|
selectedOptions?: number[] | undefined;
|
|
865
865
|
selectedColour?: string | undefined;
|
|
866
866
|
options?: FabrikantenFilterOptionViewModel[] | undefined;
|
|
867
|
+
descriptions?: FabrikantenFilterDescriptionViewModel[] | undefined;
|
|
867
868
|
constructor(data?: IFabrikantenFilterViewModel);
|
|
868
869
|
init(_data?: any): void;
|
|
869
870
|
static fromJS(data: any): FabrikantenFilterViewModel;
|
|
@@ -882,6 +883,7 @@ export interface IFabrikantenFilterViewModel {
|
|
|
882
883
|
selectedOptions?: number[] | undefined;
|
|
883
884
|
selectedColour?: string | undefined;
|
|
884
885
|
options?: FabrikantenFilterOptionViewModel[] | undefined;
|
|
886
|
+
descriptions?: FabrikantenFilterDescriptionViewModel[] | undefined;
|
|
885
887
|
}
|
|
886
888
|
export declare enum FilterType {
|
|
887
889
|
Dropdown = 1,
|
|
@@ -908,6 +910,18 @@ export interface IFabrikantenFilterOptionViewModel {
|
|
|
908
910
|
imagePath?: string | undefined;
|
|
909
911
|
hidden: boolean;
|
|
910
912
|
}
|
|
913
|
+
export declare class FabrikantenFilterDescriptionViewModel implements IFabrikantenFilterDescriptionViewModel {
|
|
914
|
+
id: number;
|
|
915
|
+
description?: string | undefined;
|
|
916
|
+
constructor(data?: IFabrikantenFilterDescriptionViewModel);
|
|
917
|
+
init(_data?: any): void;
|
|
918
|
+
static fromJS(data: any): FabrikantenFilterDescriptionViewModel;
|
|
919
|
+
toJSON(data?: any): any;
|
|
920
|
+
}
|
|
921
|
+
export interface IFabrikantenFilterDescriptionViewModel {
|
|
922
|
+
id: number;
|
|
923
|
+
description?: string | undefined;
|
|
924
|
+
}
|
|
911
925
|
export declare class FabrikantenRangeInputViewModel implements IFabrikantenRangeInputViewModel {
|
|
912
926
|
id: number;
|
|
913
927
|
name?: string | undefined;
|