fabrikantencore 2.0.4 → 2.0.6
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-inlog/beheer-inlog.component.mjs +6 -5
- package/esm2020/src/app/modules/fabrikantencore/components/fab-product-select/fab-product-select.component.mjs +3 -3
- package/esm2020/src/app/modules/fabrikantencore/components/fab-product-tile/fab-product-tile.component.mjs +12 -19
- package/esm2020/src/app/modules/fabrikantencore/services/photo.service.mjs +24 -4
- package/esm2020/src/app/modules/fabrikantencore/swagger/SwaggerClient.mjs +7 -1
- package/fesm2015/fabrikantencore.mjs +62 -44
- package/fesm2015/fabrikantencore.mjs.map +1 -1
- package/fesm2020/fabrikantencore.mjs +60 -42
- package/fesm2020/fabrikantencore.mjs.map +1 -1
- package/package.json +1 -1
- package/src/app/modules/fabrikantencore/components/fab-product-tile/fab-product-tile.component.d.ts +3 -1
- package/src/app/modules/fabrikantencore/services/photo.service.d.ts +2 -1
- package/src/app/modules/fabrikantencore/swagger/SwaggerClient.d.ts +6 -0
package/package.json
CHANGED
package/src/app/modules/fabrikantencore/components/fab-product-tile/fab-product-tile.component.d.ts
CHANGED
|
@@ -2,15 +2,17 @@ import { ChangeDetectorRef, OnInit } from '@angular/core';
|
|
|
2
2
|
import { DomSanitizer } from '@angular/platform-browser';
|
|
3
3
|
import { FabrikantenService } from '../../services/fabrikanten.service';
|
|
4
4
|
import { TranslateService } from '../../services/translate.service';
|
|
5
|
+
import { PhotoService } from '../../services/photo.service';
|
|
5
6
|
import { FabrikantenProductViewModel } from '../../swagger/SwaggerClient';
|
|
6
7
|
import * as i0 from "@angular/core";
|
|
7
8
|
export declare class FabProductTileComponent implements OnInit {
|
|
8
9
|
FabrikantenService: FabrikantenService;
|
|
9
10
|
TranslateService: TranslateService;
|
|
11
|
+
private PhotoService;
|
|
10
12
|
private sanitization;
|
|
11
13
|
private ChangeDetectorRef;
|
|
12
14
|
product: FabrikantenProductViewModel;
|
|
13
|
-
constructor(FabrikantenService: FabrikantenService, TranslateService: TranslateService, sanitization: DomSanitizer, ChangeDetectorRef: ChangeDetectorRef);
|
|
15
|
+
constructor(FabrikantenService: FabrikantenService, TranslateService: TranslateService, PhotoService: PhotoService, sanitization: DomSanitizer, ChangeDetectorRef: ChangeDetectorRef);
|
|
14
16
|
ngOnInit(): void;
|
|
15
17
|
Select(): void;
|
|
16
18
|
GetPhoto(): string;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { FabrikantenBCBProductAfbeeldingViewModel } from '../swagger/SwaggerClient';
|
|
1
|
+
import { FabrikantenBCBProductAfbeeldingViewModel, FabrikantenProductViewModel } from '../swagger/SwaggerClient';
|
|
2
2
|
import { FabrikantenService } from './fabrikanten.service';
|
|
3
3
|
import { TranslateService } from './translate.service';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
@@ -14,6 +14,7 @@ export declare class PhotoService {
|
|
|
14
14
|
ShouldDisplayRight(): boolean;
|
|
15
15
|
GetPhotoCount(): number;
|
|
16
16
|
GetPhotoArray(): Array<FabrikantenBCBProductAfbeeldingViewModel>;
|
|
17
|
+
GetPhotoArrayProduct(product: FabrikantenProductViewModel | undefined): Array<FabrikantenBCBProductAfbeeldingViewModel>;
|
|
17
18
|
static ɵfac: i0.ɵɵFactoryDeclaration<PhotoService, never>;
|
|
18
19
|
static ɵprov: i0.ɵɵInjectableDeclaration<PhotoService>;
|
|
19
20
|
}
|
|
@@ -763,6 +763,8 @@ export declare class FabrikantenBCBProductAfbeeldingViewModel implements IFabrik
|
|
|
763
763
|
id: number;
|
|
764
764
|
description?: string | undefined;
|
|
765
765
|
url?: string | undefined;
|
|
766
|
+
position: number;
|
|
767
|
+
hiddenOnMix: boolean;
|
|
766
768
|
constructor(data?: IFabrikantenBCBProductAfbeeldingViewModel);
|
|
767
769
|
init(_data?: any): void;
|
|
768
770
|
static fromJS(data: any): FabrikantenBCBProductAfbeeldingViewModel;
|
|
@@ -772,6 +774,8 @@ export interface IFabrikantenBCBProductAfbeeldingViewModel {
|
|
|
772
774
|
id: number;
|
|
773
775
|
description?: string | undefined;
|
|
774
776
|
url?: string | undefined;
|
|
777
|
+
position: number;
|
|
778
|
+
hiddenOnMix: boolean;
|
|
775
779
|
}
|
|
776
780
|
export declare class FabrikantenRequestModel implements IFabrikantenRequestModel {
|
|
777
781
|
sessionId?: string | undefined;
|
|
@@ -1791,6 +1795,7 @@ export interface ILoginRequestModel {
|
|
|
1791
1795
|
}
|
|
1792
1796
|
export declare class LoginIPResponseModel implements ILoginIPResponseModel {
|
|
1793
1797
|
ipAddress?: string | undefined;
|
|
1798
|
+
fabrikantenCoreVersion?: string | undefined;
|
|
1794
1799
|
constructor(data?: ILoginIPResponseModel);
|
|
1795
1800
|
init(_data?: any): void;
|
|
1796
1801
|
static fromJS(data: any): LoginIPResponseModel;
|
|
@@ -1798,6 +1803,7 @@ export declare class LoginIPResponseModel implements ILoginIPResponseModel {
|
|
|
1798
1803
|
}
|
|
1799
1804
|
export interface ILoginIPResponseModel {
|
|
1800
1805
|
ipAddress?: string | undefined;
|
|
1806
|
+
fabrikantenCoreVersion?: string | undefined;
|
|
1801
1807
|
}
|
|
1802
1808
|
export declare class LanguagesViewModel implements ILanguagesViewModel {
|
|
1803
1809
|
languages?: LanguageViewModel[] | undefined;
|