fabrikantencore 2.7.7 → 2.7.8
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/esm2022/src/app/modules/fabrikantencore/beheer/components/beheer-translate/beheer-translate.component.mjs +40 -37
- package/esm2022/src/app/modules/fabrikantencore/components/fab-checkbox/fab-checkbox.component.mjs +6 -4
- package/esm2022/src/app/modules/fabrikantencore/components/fab-filter-display-value/fab-filter-display-value.component.mjs +6 -4
- package/esm2022/src/app/modules/fabrikantencore/components/fab-filter-label/fab-filter-label.component.mjs +7 -6
- package/esm2022/src/app/modules/fabrikantencore/components/fab-filters-input/fab-filters-input.component.mjs +3 -3
- package/esm2022/src/app/modules/fabrikantencore/swagger/SwaggerClient.mjs +10 -53
- package/fesm2022/fabrikantencore.mjs +112 -152
- package/fesm2022/fabrikantencore.mjs.map +1 -1
- package/package.json +1 -1
- package/src/app/modules/fabrikantencore/swagger/SwaggerClient.d.ts +9 -18
package/package.json
CHANGED
|
@@ -866,6 +866,7 @@ export interface IFabrikantenCategoryViewModel {
|
|
|
866
866
|
export declare class FabrikantenFilterCategoryViewModel implements IFabrikantenFilterCategoryViewModel {
|
|
867
867
|
id: number;
|
|
868
868
|
name?: string | undefined;
|
|
869
|
+
icon?: string | undefined;
|
|
869
870
|
position: number;
|
|
870
871
|
completed: boolean;
|
|
871
872
|
inputs?: FabrikantenInputViewModel[] | undefined;
|
|
@@ -877,6 +878,7 @@ export declare class FabrikantenFilterCategoryViewModel implements IFabrikantenF
|
|
|
877
878
|
export interface IFabrikantenFilterCategoryViewModel {
|
|
878
879
|
id: number;
|
|
879
880
|
name?: string | undefined;
|
|
881
|
+
icon?: string | undefined;
|
|
880
882
|
position: number;
|
|
881
883
|
completed: boolean;
|
|
882
884
|
inputs?: FabrikantenInputViewModel[] | undefined;
|
|
@@ -908,6 +910,7 @@ export declare class FabrikantenFilterViewModel implements IFabrikantenFilterVie
|
|
|
908
910
|
description?: string | undefined;
|
|
909
911
|
unit?: string | undefined;
|
|
910
912
|
standard?: string | undefined;
|
|
913
|
+
icon?: string | undefined;
|
|
911
914
|
filterType: FilterType;
|
|
912
915
|
hidden: boolean;
|
|
913
916
|
blocksProductSelect: boolean;
|
|
@@ -932,6 +935,7 @@ export interface IFabrikantenFilterViewModel {
|
|
|
932
935
|
description?: string | undefined;
|
|
933
936
|
unit?: string | undefined;
|
|
934
937
|
standard?: string | undefined;
|
|
938
|
+
icon?: string | undefined;
|
|
935
939
|
filterType: FilterType;
|
|
936
940
|
hidden: boolean;
|
|
937
941
|
blocksProductSelect: boolean;
|
|
@@ -2756,7 +2760,8 @@ export declare enum TranslationCategory {
|
|
|
2756
2760
|
FilterOption = 5,
|
|
2757
2761
|
BCBProduct = 6,
|
|
2758
2762
|
BCBProductPhoto = 7,
|
|
2759
|
-
Toebehoren = 8
|
|
2763
|
+
Toebehoren = 8,
|
|
2764
|
+
FilterCategory = 9
|
|
2760
2765
|
}
|
|
2761
2766
|
export declare class TranslateKeySubCategoryViewModel implements ITranslateKeySubCategoryViewModel {
|
|
2762
2767
|
translationSubCategory: TranslationSubCategory;
|
|
@@ -2817,7 +2822,9 @@ export declare enum TranslationSubCategory {
|
|
|
2817
2822
|
InclusiveMax = 52,
|
|
2818
2823
|
InclusiveMin = 53,
|
|
2819
2824
|
InclusiveMinMax = 54,
|
|
2820
|
-
SnedeItem = 55
|
|
2825
|
+
SnedeItem = 55,
|
|
2826
|
+
Tooltip = 56,
|
|
2827
|
+
CustomItem = 57
|
|
2821
2828
|
}
|
|
2822
2829
|
export declare class TranslateKeyViewModel implements ITranslateKeyViewModel {
|
|
2823
2830
|
id: number;
|
|
@@ -2869,7 +2876,6 @@ export declare class BeheerLanguagesSubCategoryViewModel implements IBeheerLangu
|
|
|
2869
2876
|
translationSubCategory: TranslationSubCategory;
|
|
2870
2877
|
html: boolean;
|
|
2871
2878
|
keys?: BeheerLanguagesKeyViewModel[] | undefined;
|
|
2872
|
-
filters?: BeheerLanguagesFilterViewModel[] | undefined;
|
|
2873
2879
|
constructor(data?: IBeheerLanguagesSubCategoryViewModel);
|
|
2874
2880
|
init(_data?: any): void;
|
|
2875
2881
|
static fromJS(data: any): BeheerLanguagesSubCategoryViewModel;
|
|
@@ -2879,7 +2885,6 @@ export interface IBeheerLanguagesSubCategoryViewModel {
|
|
|
2879
2885
|
translationSubCategory: TranslationSubCategory;
|
|
2880
2886
|
html: boolean;
|
|
2881
2887
|
keys?: BeheerLanguagesKeyViewModel[] | undefined;
|
|
2882
|
-
filters?: BeheerLanguagesFilterViewModel[] | undefined;
|
|
2883
2888
|
}
|
|
2884
2889
|
export declare class BeheerLanguagesKeyViewModel implements IBeheerLanguagesKeyViewModel {
|
|
2885
2890
|
text?: string | undefined;
|
|
@@ -2909,20 +2914,6 @@ export interface IBeheerLanguagesEntryViewModel {
|
|
|
2909
2914
|
languageId: number;
|
|
2910
2915
|
changed: boolean;
|
|
2911
2916
|
}
|
|
2912
|
-
export declare class BeheerLanguagesFilterViewModel implements IBeheerLanguagesFilterViewModel {
|
|
2913
|
-
filterId: number;
|
|
2914
|
-
filter?: BeheerLanguagesKeyViewModel | undefined;
|
|
2915
|
-
options?: BeheerLanguagesKeyViewModel[] | undefined;
|
|
2916
|
-
constructor(data?: IBeheerLanguagesFilterViewModel);
|
|
2917
|
-
init(_data?: any): void;
|
|
2918
|
-
static fromJS(data: any): BeheerLanguagesFilterViewModel;
|
|
2919
|
-
toJSON(data?: any): any;
|
|
2920
|
-
}
|
|
2921
|
-
export interface IBeheerLanguagesFilterViewModel {
|
|
2922
|
-
filterId: number;
|
|
2923
|
-
filter?: BeheerLanguagesKeyViewModel | undefined;
|
|
2924
|
-
options?: BeheerLanguagesKeyViewModel[] | undefined;
|
|
2925
|
-
}
|
|
2926
2917
|
export declare class BeheerLanguageViewModel implements IBeheerLanguageViewModel {
|
|
2927
2918
|
id: number;
|
|
2928
2919
|
name?: string | undefined;
|