fabrikantencore 2.0.6 → 2.0.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/esm2020/src/app/modules/fabrikantencore/beheer/components/beheer-products/beheer-products-connect-manyname-dialog/beheer-products-connect-manyname-dialog.component.mjs +8 -7
- package/esm2020/src/app/modules/fabrikantencore/beheer/components/beheer-products/beheer-products-connect-rangeinput/beheer-products-connect-rangeinput.component.mjs +7 -6
- package/esm2020/src/app/modules/fabrikantencore/beheer/components/beheer-products/beheer-products-ebo/beheer-products-ebo.component.mjs +8 -7
- package/esm2020/src/app/modules/fabrikantencore/beheer/components/beheer-products/beheer-products-eigenschap/beheer-products-eigenschap.component.mjs +41 -43
- package/esm2020/src/app/modules/fabrikantencore/services/products.service.mjs +5 -2
- package/esm2020/src/app/modules/fabrikantencore/swagger/SwaggerClient.mjs +64 -13
- package/fesm2015/fabrikantencore.mjs +183 -127
- package/fesm2015/fabrikantencore.mjs.map +1 -1
- package/fesm2020/fabrikantencore.mjs +181 -125
- package/fesm2020/fabrikantencore.mjs.map +1 -1
- package/package.json +1 -1
- package/src/app/modules/fabrikantencore/beheer/components/beheer-products/beheer-products-connect-manyname-dialog/beheer-products-connect-manyname-dialog.component.d.ts +3 -2
- package/src/app/modules/fabrikantencore/beheer/components/beheer-products/beheer-products-connect-rangeinput/beheer-products-connect-rangeinput.component.d.ts +3 -2
- package/src/app/modules/fabrikantencore/beheer/components/beheer-products/beheer-products-ebo/beheer-products-ebo.component.d.ts +3 -2
- package/src/app/modules/fabrikantencore/beheer/components/beheer-products/beheer-products-eigenschap/beheer-products-eigenschap.component.d.ts +6 -3
- package/src/app/modules/fabrikantencore/services/products.service.d.ts +2 -2
- package/src/app/modules/fabrikantencore/swagger/SwaggerClient.d.ts +14 -10
package/package.json
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { OnInit } from '@angular/core';
|
|
1
|
+
import { ChangeDetectorRef, OnInit } from '@angular/core';
|
|
2
2
|
import { MatDialogRef } from '@angular/material/dialog';
|
|
3
3
|
import { ImportSetsService } from '../../../../services/importsets.service';
|
|
4
4
|
import { ProductsService } from '../../../../services/products.service';
|
|
@@ -11,6 +11,7 @@ export declare class BeheerProductsConnectManynameDialogComponent implements OnI
|
|
|
11
11
|
private ProductsService;
|
|
12
12
|
private ImportSetsService;
|
|
13
13
|
private FiltersApiClient;
|
|
14
|
+
private ChangeDetectorRef;
|
|
14
15
|
LoadingPreview: boolean;
|
|
15
16
|
LoadingFilters: boolean;
|
|
16
17
|
ConnectManyPreviewResponse: ConnectManyPreviewResponse;
|
|
@@ -20,7 +21,7 @@ export declare class BeheerProductsConnectManynameDialogComponent implements OnI
|
|
|
20
21
|
bcbproducteigenschapoptieid: number | null;
|
|
21
22
|
bcbproductopbouwoptieid: number | null;
|
|
22
23
|
bcbebodoid: number | null;
|
|
23
|
-
constructor(dialogRef: MatDialogRef<BeheerProductsConnectManynameDialogComponent>, data: any, ProductsApiClient: ProductsApiClient, ProductsService: ProductsService, ImportSetsService: ImportSetsService, FiltersApiClient: FiltersApiClient);
|
|
24
|
+
constructor(dialogRef: MatDialogRef<BeheerProductsConnectManynameDialogComponent>, data: any, ProductsApiClient: ProductsApiClient, ProductsService: ProductsService, ImportSetsService: ImportSetsService, FiltersApiClient: FiltersApiClient, ChangeDetectorRef: ChangeDetectorRef);
|
|
24
25
|
ngOnInit(): void;
|
|
25
26
|
Connect(): void;
|
|
26
27
|
ConnectType(type: string): void;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { OnInit } from '@angular/core';
|
|
1
|
+
import { ChangeDetectorRef, OnInit } from '@angular/core';
|
|
2
2
|
import { MatDialogRef } from '@angular/material/dialog';
|
|
3
3
|
import { ImportSetsService } from '../../../../services/importsets.service';
|
|
4
4
|
import { ProductsService } from '../../../../services/products.service';
|
|
@@ -11,6 +11,7 @@ export declare class BeheerProductsConnectRangeinputComponent implements OnInit
|
|
|
11
11
|
private FiltersApiClient;
|
|
12
12
|
private ImportSetsService;
|
|
13
13
|
ProductsService: ProductsService;
|
|
14
|
+
private ChangeDetectorRef;
|
|
14
15
|
private bcbeigenschapid;
|
|
15
16
|
private location;
|
|
16
17
|
Options: ConnectBCBEigenschapRangeInputResponse;
|
|
@@ -19,7 +20,7 @@ export declare class BeheerProductsConnectRangeinputComponent implements OnInit
|
|
|
19
20
|
RangeInputNaamNieuw: string;
|
|
20
21
|
LoadingRangeInputs: boolean;
|
|
21
22
|
LoadingOptions: boolean;
|
|
22
|
-
constructor(dialogRef: MatDialogRef<BeheerProductsConnectRangeinputComponent>, data: any, ProductsApiClient: ProductsApiClient, FiltersApiClient: FiltersApiClient, ImportSetsService: ImportSetsService, ProductsService: ProductsService);
|
|
23
|
+
constructor(dialogRef: MatDialogRef<BeheerProductsConnectRangeinputComponent>, data: any, ProductsApiClient: ProductsApiClient, FiltersApiClient: FiltersApiClient, ImportSetsService: ImportSetsService, ProductsService: ProductsService, ChangeDetectorRef: ChangeDetectorRef);
|
|
23
24
|
ngOnInit(): void;
|
|
24
25
|
NieuwToevoegen(): void;
|
|
25
26
|
Bestaand(): void;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { OnInit } from '@angular/core';
|
|
1
|
+
import { ChangeDetectorRef, OnInit } from '@angular/core';
|
|
2
2
|
import { MatDialog } from '@angular/material/dialog';
|
|
3
3
|
import { ProductsService } from '../../../../services/products.service';
|
|
4
4
|
import { ProductsApiClient, BCBEBOViewModel, BCBOpbouwViewModel } from '../../../../swagger/SwaggerClient';
|
|
@@ -7,8 +7,9 @@ export declare class BeheerProductsEboComponent implements OnInit {
|
|
|
7
7
|
dialog: MatDialog;
|
|
8
8
|
private ProductsApiClient;
|
|
9
9
|
private ProductsService;
|
|
10
|
+
private ChangeDetectorRef;
|
|
10
11
|
ebo: BCBEBOViewModel;
|
|
11
|
-
constructor(dialog: MatDialog, ProductsApiClient: ProductsApiClient, ProductsService: ProductsService);
|
|
12
|
+
constructor(dialog: MatDialog, ProductsApiClient: ProductsApiClient, ProductsService: ProductsService, ChangeDetectorRef: ChangeDetectorRef);
|
|
12
13
|
ngOnInit(): void;
|
|
13
14
|
ConnectAv(): boolean;
|
|
14
15
|
GetConnect(): string;
|
|
@@ -1,21 +1,24 @@
|
|
|
1
|
-
import { OnInit } from '@angular/core';
|
|
1
|
+
import { ChangeDetectorRef, OnInit } from '@angular/core';
|
|
2
2
|
import { MatDialog } from '@angular/material/dialog';
|
|
3
|
+
import { ImportSetsService } from '../../../../services/importsets.service';
|
|
3
4
|
import { ProductsService } from '../../../../services/products.service';
|
|
4
5
|
import { ProductsApiClient, BCBEigenschapViewModel } from '../../../../swagger/SwaggerClient';
|
|
5
6
|
import * as i0 from "@angular/core";
|
|
6
7
|
export declare class BeheerProductsEigenschapComponent implements OnInit {
|
|
8
|
+
ImportSetsService: ImportSetsService;
|
|
7
9
|
ProductsService: ProductsService;
|
|
8
10
|
dialog: MatDialog;
|
|
9
11
|
private ProductsApiClient;
|
|
12
|
+
private ChangeDetectorRef;
|
|
10
13
|
eigenschap: BCBEigenschapViewModel;
|
|
11
|
-
constructor(ProductsService: ProductsService, dialog: MatDialog, ProductsApiClient: ProductsApiClient);
|
|
14
|
+
constructor(ImportSetsService: ImportSetsService, ProductsService: ProductsService, dialog: MatDialog, ProductsApiClient: ProductsApiClient, ChangeDetectorRef: ChangeDetectorRef);
|
|
12
15
|
ngOnInit(): void;
|
|
13
16
|
Toggle(): void;
|
|
14
17
|
Connect(id: number, filter: string, option: string): void;
|
|
15
18
|
ConnectMany(id: number): void;
|
|
16
19
|
Ignore(id: number): void;
|
|
17
20
|
ConnectRange(): void;
|
|
18
|
-
ConnectCategory(
|
|
21
|
+
ConnectCategory(): void;
|
|
19
22
|
Show(): boolean;
|
|
20
23
|
static ɵfac: i0.ɵɵFactoryDeclaration<BeheerProductsEigenschapComponent, never>;
|
|
21
24
|
static ɵcmp: i0.ɵɵComponentDeclaration<BeheerProductsEigenschapComponent, "app-beheer-products-eigenschap", never, { "eigenschap": "eigenschap"; }, {}, never, never, false>;
|
|
@@ -5,7 +5,7 @@ import * as i0 from "@angular/core";
|
|
|
5
5
|
export declare class ProductsService {
|
|
6
6
|
private ProductsApiClient;
|
|
7
7
|
private ImportSetsService;
|
|
8
|
-
|
|
8
|
+
LoadingProducts: boolean;
|
|
9
9
|
ProductsViewModel: ProductsViewModel;
|
|
10
10
|
BCBProductViewModel?: BCBProductViewModel;
|
|
11
11
|
ProductViewModel?: ProductViewModel;
|
|
@@ -19,7 +19,7 @@ export declare class ProductsService {
|
|
|
19
19
|
ResetImport(productid: number, bcbproductid: number, changeDetectorRef: ChangeDetectorRef): void;
|
|
20
20
|
CleanUp(): void;
|
|
21
21
|
private LoadProducts;
|
|
22
|
-
LoadProduct(): void;
|
|
22
|
+
LoadProduct(changeDetectorRef: ChangeDetectorRef): void;
|
|
23
23
|
private MergeBCBProductViewModel;
|
|
24
24
|
private MergeBCBEBO;
|
|
25
25
|
private MergeBCBProductViewModelEigenschap;
|
|
@@ -134,8 +134,10 @@ export declare class ProductsApiClient {
|
|
|
134
134
|
protected processIgnoreBCBOpbouwOptieFilterOption(response: HttpResponseBase): Observable<void>;
|
|
135
135
|
removeBCBOpbouwOptieFilterOption(pConnectOpbouwOptieRequest: RemoveOpbouwOptieRequest): Observable<void>;
|
|
136
136
|
protected processRemoveBCBOpbouwOptieFilterOption(response: HttpResponseBase): Observable<void>;
|
|
137
|
-
|
|
138
|
-
protected
|
|
137
|
+
connectBCBEigenschapCategory(pConnectBCBEigenschapRequest: ConnectBCBEigenschapRequest): Observable<void>;
|
|
138
|
+
protected processConnectBCBEigenschapCategory(response: HttpResponseBase): Observable<void>;
|
|
139
|
+
connectBCBEigenschapFilter(pConnectBCBEigenschapRequest: ConnectBCBEigenschapRequest): Observable<void>;
|
|
140
|
+
protected processConnectBCBEigenschapFilter(response: HttpResponseBase): Observable<void>;
|
|
139
141
|
connectManyName(pConnectManyNameRequest: ConnectManyNameRequest): Observable<ConnectManyNameResponse>;
|
|
140
142
|
protected processConnectManyName(response: HttpResponseBase): Observable<ConnectManyNameResponse>;
|
|
141
143
|
connectManyNamePreview(pConnectManyPreviewRequest: ConnectManyPreviewRequest): Observable<ConnectManyPreviewResponse>;
|
|
@@ -1459,17 +1461,19 @@ export declare class RemoveOpbouwOptieRequest implements IRemoveOpbouwOptieReque
|
|
|
1459
1461
|
export interface IRemoveOpbouwOptieRequest {
|
|
1460
1462
|
bcbProductOpbouwOptieId: number;
|
|
1461
1463
|
}
|
|
1462
|
-
export declare class
|
|
1463
|
-
|
|
1464
|
-
|
|
1465
|
-
|
|
1464
|
+
export declare class ConnectBCBEigenschapRequest implements IConnectBCBEigenschapRequest {
|
|
1465
|
+
bcbEigenschapId: number;
|
|
1466
|
+
bcbImportSetId: number;
|
|
1467
|
+
location?: string | undefined;
|
|
1468
|
+
constructor(data?: IConnectBCBEigenschapRequest);
|
|
1466
1469
|
init(_data?: any): void;
|
|
1467
|
-
static fromJS(data: any):
|
|
1470
|
+
static fromJS(data: any): ConnectBCBEigenschapRequest;
|
|
1468
1471
|
toJSON(data?: any): any;
|
|
1469
1472
|
}
|
|
1470
|
-
export interface
|
|
1471
|
-
|
|
1472
|
-
|
|
1473
|
+
export interface IConnectBCBEigenschapRequest {
|
|
1474
|
+
bcbEigenschapId: number;
|
|
1475
|
+
bcbImportSetId: number;
|
|
1476
|
+
location?: string | undefined;
|
|
1473
1477
|
}
|
|
1474
1478
|
export declare class ConnectManyNameResponse implements IConnectManyNameResponse {
|
|
1475
1479
|
success: boolean;
|