fabrikantencore 2.37.2 → 2.38.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/esm2022/src/app/modules/fabrikantencore/components/fab-product/fab-product.component.mjs +2 -9
- package/esm2022/src/app/modules/fabrikantencore/components/fab-texture-configurator/fab-texture-configurator.component.mjs +111 -3
- package/esm2022/src/app/modules/fabrikantencore/services/fabrikanten.service.mjs +25 -1
- package/esm2022/src/app/modules/fabrikantencore/swagger/SwaggerClient.mjs +46 -1
- package/fesm2022/fabrikantencore.mjs +180 -10
- package/fesm2022/fabrikantencore.mjs.map +1 -1
- package/package.json +1 -1
- package/src/app/modules/fabrikantencore/components/fab-texture-configurator/fab-texture-configurator.component.d.ts +9 -0
- package/src/app/modules/fabrikantencore/services/fabrikanten.service.d.ts +1 -0
- package/src/app/modules/fabrikantencore/swagger/SwaggerClient.d.ts +2 -0
package/package.json
CHANGED
|
@@ -49,7 +49,9 @@ export declare class FabTextureConfiguratorComponent implements OnInit, DoCheck
|
|
|
49
49
|
ShowTexture(): boolean;
|
|
50
50
|
ShowKern(stone: StoneRowObject, option: FabrikantenFilterOptionViewModel): boolean;
|
|
51
51
|
ShowSticker(stone: StoneRowObject, option: FabrikantenFilterOptionViewModel): boolean;
|
|
52
|
+
ShowStickerSecond(stone: StoneRowObject, option: FabrikantenFilterOptionViewModel): boolean;
|
|
52
53
|
GetSticker(stone: StoneRowObject, option: FabrikantenFilterOptionViewModel): string;
|
|
54
|
+
GetStickerSecond(stone: StoneRowObject, option: FabrikantenFilterOptionViewModel): string;
|
|
53
55
|
GetSelectedStones(): FabrikantenFilterOptionViewModel[];
|
|
54
56
|
GetSelectedStoneObjects(): StoneFormaatObject[];
|
|
55
57
|
GetSelectedAmount(): number;
|
|
@@ -93,18 +95,25 @@ declare class StoneRowObject {
|
|
|
93
95
|
FabTextureConfiguratorComponent: FabTextureConfiguratorComponent;
|
|
94
96
|
constructor(name: string, FabrikantenService: FabrikantenService, FabTextureConfiguratorComponent: FabTextureConfiguratorComponent);
|
|
95
97
|
Select(option: FabrikantenFilterOptionViewModel): void;
|
|
98
|
+
SelectSecond(option: FabrikantenFilterOptionViewModel): void;
|
|
96
99
|
AddOption(option: FabrikantenFilterOptionViewModel): void;
|
|
97
100
|
CanSelectStone(option: FabrikantenFilterOptionViewModel): boolean;
|
|
101
|
+
CanSelectStoneSecond(option: FabrikantenFilterOptionViewModel): boolean;
|
|
98
102
|
DisableToggle(): boolean;
|
|
99
103
|
GetSelectedStoneObjects(stones: Array<StoneFormaatObject>): void;
|
|
100
104
|
GetStoneFormaatObject(option: FabrikantenFilterOptionViewModel): StoneFormaatObject | null;
|
|
105
|
+
GetStoneFormaatObjectSecond(option: FabrikantenFilterOptionViewModel): StoneFormaatObject | null;
|
|
101
106
|
HasStone(option: FabrikantenFilterOptionViewModel): boolean;
|
|
107
|
+
HasSecondStone(option: FabrikantenFilterOptionViewModel): boolean;
|
|
102
108
|
IsDouvleAV(option: FabrikantenFilterOptionViewModel): boolean;
|
|
103
109
|
HasStoneSelected(): boolean;
|
|
104
110
|
IsAnySelected(): boolean;
|
|
105
111
|
IsSelected(option: FabrikantenFilterOptionViewModel): boolean;
|
|
112
|
+
IsSelectedSecond(option: FabrikantenFilterOptionViewModel): boolean;
|
|
106
113
|
GetImage(option: FabrikantenFilterOptionViewModel): string;
|
|
114
|
+
GetImageSecond(option: FabrikantenFilterOptionViewModel): string;
|
|
107
115
|
GetStone(option: FabrikantenFilterOptionViewModel): FabrikantenFilterOptionViewModel;
|
|
116
|
+
GetStoneSecond(option: FabrikantenFilterOptionViewModel): FabrikantenFilterOptionViewModel;
|
|
108
117
|
GetSelectedStones(stones: Array<FabrikantenFilterOptionViewModel>): void;
|
|
109
118
|
}
|
|
110
119
|
declare class StoneFormaatObject {
|
|
@@ -370,6 +370,8 @@ export declare class TextureApiClient {
|
|
|
370
370
|
protected processGetKern(response: HttpResponseBase): Observable<string[]>;
|
|
371
371
|
getTextureMix(pTextureRequestModel: TextureMixRequestModel): Observable<TextureMixResponseModel>;
|
|
372
372
|
protected processGetTextureMix(response: HttpResponseBase): Observable<TextureMixResponseModel>;
|
|
373
|
+
generate(): Observable<void>;
|
|
374
|
+
protected processGenerate(response: HttpResponseBase): Observable<void>;
|
|
373
375
|
static ɵfac: i0.ɵɵFactoryDeclaration<TextureApiClient, [null, { optional: true; }]>;
|
|
374
376
|
static ɵprov: i0.ɵɵInjectableDeclaration<TextureApiClient>;
|
|
375
377
|
}
|