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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fabrikantencore",
3
- "version": "2.37.2",
3
+ "version": "2.38.3",
4
4
  "dependencies": {
5
5
  "tslib": "^2.3.0"
6
6
  },
@@ -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 {
@@ -76,6 +76,7 @@ export declare class FabrikantenService {
76
76
  ShowToebehoren(): boolean;
77
77
  ShowVariants(): boolean;
78
78
  ShowActionMenu(): boolean;
79
+ Show2D(): boolean;
79
80
  IsAProductSelected(): boolean;
80
81
  HasToebehoren(): boolean;
81
82
  GetToolTipModeDefault(): boolean;
@@ -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
  }