fabrikantencore 2.2.3 → 2.2.5
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-category-tile/fab-category-tile.component.mjs +3 -3
- package/esm2020/src/app/modules/fabrikantencore/components/fab-filter-fold/fab-filter-fold.component.mjs +3 -3
- package/esm2020/src/app/modules/fabrikantencore/components/fab-multiselect-fold/fab-multiselect-fold.component.mjs +3 -3
- package/esm2020/src/app/modules/fabrikantencore/components/fab-product-tile/fab-product-tile.component.mjs +3 -3
- package/esm2020/src/app/modules/fabrikantencore/components/fab-range-input-fold/fab-range-input-fold.component.mjs +3 -3
- package/esm2020/src/app/modules/fabrikantencore/services/translate.service.mjs +18 -1
- package/esm2020/src/app/modules/fabrikantencore/swagger/SwaggerClient.mjs +3 -1
- package/fesm2015/fabrikantencore.mjs +29 -10
- package/fesm2015/fabrikantencore.mjs.map +1 -1
- package/fesm2020/fabrikantencore.mjs +29 -10
- package/fesm2020/fabrikantencore.mjs.map +1 -1
- package/package.json +1 -1
- package/src/app/modules/fabrikantencore/services/translate.service.d.ts +2 -0
- package/src/app/modules/fabrikantencore/swagger/SwaggerClient.d.ts +2 -0
package/package.json
CHANGED
|
@@ -22,7 +22,9 @@ export declare class TranslateService {
|
|
|
22
22
|
GetActiveValue(category: string, key: string): string;
|
|
23
23
|
GetValue(language: LanguageViewModel, category: string, key: string): string;
|
|
24
24
|
GetActiveValueCategory(catId: number): string;
|
|
25
|
+
GetActiveValueCategoryDescription(catId: number): string;
|
|
25
26
|
GetValueCategory(language: LanguageViewModel, catId: number): string;
|
|
27
|
+
GetValueCategoryDescription(language: LanguageViewModel, catId: number): string;
|
|
26
28
|
GetActiveValueBCBEigenschapToebehoren(bcbEigenschapToebehorenId: number): string;
|
|
27
29
|
GetValueBCBEigenschapToebehoren(language: LanguageViewModel, bcbEigenschapToebehorenId: number): string;
|
|
28
30
|
GetActiveValueProduct(productId: number): string;
|
|
@@ -2360,6 +2360,7 @@ export declare class TranslateEntryCategoryViewModel implements ITranslateEntryC
|
|
|
2360
2360
|
categoryId: number;
|
|
2361
2361
|
categoryName?: string | undefined;
|
|
2362
2362
|
value?: string | undefined;
|
|
2363
|
+
description?: string | undefined;
|
|
2363
2364
|
constructor(data?: ITranslateEntryCategoryViewModel);
|
|
2364
2365
|
init(_data?: any): void;
|
|
2365
2366
|
static fromJS(data: any): TranslateEntryCategoryViewModel;
|
|
@@ -2370,6 +2371,7 @@ export interface ITranslateEntryCategoryViewModel {
|
|
|
2370
2371
|
categoryId: number;
|
|
2371
2372
|
categoryName?: string | undefined;
|
|
2372
2373
|
value?: string | undefined;
|
|
2374
|
+
description?: string | undefined;
|
|
2373
2375
|
}
|
|
2374
2376
|
export declare class TranslateEntryBCBEigenschapToebehorenViewModel implements ITranslateEntryBCBEigenschapToebehorenViewModel {
|
|
2375
2377
|
id: number;
|