fabrikantencore 2.2.7 → 2.2.12
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-ebo-koppel/beheer-ebo-koppel/beheer-ebo-koppel.component.mjs +4 -3
- package/esm2020/src/app/modules/fabrikantencore/components/fab-filter/fab-filter.component.mjs +3 -3
- package/esm2020/src/app/modules/fabrikantencore/fabrikantencore.module.mjs +10 -1
- package/esm2020/src/app/modules/fabrikantencore/services/fabrikanten.service.mjs +7 -2
- package/esm2020/src/app/modules/fabrikantencore/services/google.analytics.service.mjs +32 -0
- package/esm2020/src/app/modules/fabrikantencore/services/navigate.service.mjs +7 -4
- package/esm2020/src/app/modules/fabrikantencore/swagger/SwaggerClient.mjs +5 -1
- package/fesm2015/fabrikantencore.mjs +56 -9
- package/fesm2015/fabrikantencore.mjs.map +1 -1
- package/fesm2020/fabrikantencore.mjs +56 -9
- package/fesm2020/fabrikantencore.mjs.map +1 -1
- package/package.json +3 -2
- package/src/app/modules/fabrikantencore/beheer/components/beheer-ebo-koppel/beheer-ebo-koppel/beheer-ebo-koppel.component.d.ts +1 -0
- package/src/app/modules/fabrikantencore/services/google.analytics.service.d.ts +9 -0
- package/src/app/modules/fabrikantencore/services/navigate.service.d.ts +3 -1
- package/src/app/modules/fabrikantencore/swagger/SwaggerClient.d.ts +4 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "fabrikantencore",
|
|
3
|
-
"version": "2.2.
|
|
3
|
+
"version": "2.2.12",
|
|
4
4
|
"dependencies": {
|
|
5
5
|
"tslib": "^2.3.0"
|
|
6
6
|
},
|
|
@@ -28,7 +28,8 @@
|
|
|
28
28
|
"ng-packagr": "^15.0.0",
|
|
29
29
|
"rxjs": "~7.5.0",
|
|
30
30
|
"typescript": "~4.8.4",
|
|
31
|
-
"zone.js": "~0.11.4"
|
|
31
|
+
"zone.js": "~0.11.4",
|
|
32
|
+
"angular-google-tag-manager": "^1.7.0"
|
|
32
33
|
},
|
|
33
34
|
"module": "fesm2015/fabrikantencore.mjs",
|
|
34
35
|
"es2020": "fesm2020/fabrikantencore.mjs",
|
|
@@ -10,6 +10,7 @@ export declare class BeheerEboKoppelComponent implements OnInit {
|
|
|
10
10
|
private ChangeDetectorRef;
|
|
11
11
|
EBOKoppelViewModel: EBOKoppelViewModel;
|
|
12
12
|
LoadingModel: boolean;
|
|
13
|
+
lastopened: string;
|
|
13
14
|
constructor(EBOKoppelApiClient: EBOKoppelApiClient, ImportSetsService: ImportSetsService, dialog: MatDialog, ChangeDetectorRef: ChangeDetectorRef);
|
|
14
15
|
ngOnInit(): void;
|
|
15
16
|
Loading(): boolean;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class GoogleAnalyticsService {
|
|
3
|
+
analytics: any;
|
|
4
|
+
constructor();
|
|
5
|
+
PageView(): void;
|
|
6
|
+
private Init;
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<GoogleAnalyticsService, never>;
|
|
8
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<GoogleAnalyticsService>;
|
|
9
|
+
}
|
|
@@ -1,12 +1,14 @@
|
|
|
1
1
|
import { Router } from '@angular/router';
|
|
2
2
|
import { FabrikantenService } from './fabrikanten.service';
|
|
3
3
|
import { TranslateService } from './translate.service';
|
|
4
|
+
import { GoogleAnalyticsService } from './google.analytics.service';
|
|
4
5
|
import * as i0 from "@angular/core";
|
|
5
6
|
export declare class NavigateService {
|
|
6
7
|
private Router;
|
|
8
|
+
private GoogleAnalyticsService;
|
|
7
9
|
FabrikantenService: FabrikantenService | null;
|
|
8
10
|
TranslateService: TranslateService | null;
|
|
9
|
-
constructor(Router: Router);
|
|
11
|
+
constructor(Router: Router, GoogleAnalyticsService: GoogleAnalyticsService);
|
|
10
12
|
RefreshPage(): void;
|
|
11
13
|
static ɵfac: i0.ɵɵFactoryDeclaration<NavigateService, never>;
|
|
12
14
|
static ɵprov: i0.ɵɵInjectableDeclaration<NavigateService>;
|
|
@@ -892,6 +892,7 @@ export declare class FabrikantenFilterOptionViewModel implements IFabrikantenFil
|
|
|
892
892
|
id: number;
|
|
893
893
|
name?: string | undefined;
|
|
894
894
|
colour?: string | undefined;
|
|
895
|
+
imagePath?: string | undefined;
|
|
895
896
|
hidden: boolean;
|
|
896
897
|
constructor(data?: IFabrikantenFilterOptionViewModel);
|
|
897
898
|
init(_data?: any): void;
|
|
@@ -902,6 +903,7 @@ export interface IFabrikantenFilterOptionViewModel {
|
|
|
902
903
|
id: number;
|
|
903
904
|
name?: string | undefined;
|
|
904
905
|
colour?: string | undefined;
|
|
906
|
+
imagePath?: string | undefined;
|
|
905
907
|
hidden: boolean;
|
|
906
908
|
}
|
|
907
909
|
export declare class FabrikantenRangeInputViewModel implements IFabrikantenRangeInputViewModel {
|
|
@@ -1241,6 +1243,7 @@ export interface IFabrikantenTextureRequestModel {
|
|
|
1241
1243
|
export declare class FabrikantenFileViewModel implements IFabrikantenFileViewModel {
|
|
1242
1244
|
file?: string | undefined;
|
|
1243
1245
|
customRFAZip: boolean;
|
|
1246
|
+
rvtExtension: boolean;
|
|
1244
1247
|
constructor(data?: IFabrikantenFileViewModel);
|
|
1245
1248
|
init(_data?: any): void;
|
|
1246
1249
|
static fromJS(data: any): FabrikantenFileViewModel;
|
|
@@ -1249,6 +1252,7 @@ export declare class FabrikantenFileViewModel implements IFabrikantenFileViewMod
|
|
|
1249
1252
|
export interface IFabrikantenFileViewModel {
|
|
1250
1253
|
file?: string | undefined;
|
|
1251
1254
|
customRFAZip: boolean;
|
|
1255
|
+
rvtExtension: boolean;
|
|
1252
1256
|
}
|
|
1253
1257
|
export declare class FabrikantenFileRequestModel implements IFabrikantenFileRequestModel {
|
|
1254
1258
|
fileType?: string | undefined;
|