awf-test-lib 0.0.11 → 0.0.13

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.
Files changed (79) hide show
  1. package/esm2020/lib/core/application/ge-portal/menu-ge-portal/menu-ge-portal.component.mjs +3 -3
  2. package/esm2020/lib/core/application/warranty-portal/menu-warranty/menu-warranty.component.mjs +3 -4
  3. package/esm2020/lib/core/core.module.mjs +2 -2
  4. package/esm2020/lib/core/menu/menu.component.mjs +4 -5
  5. package/esm2020/lib/core/top-bar/top-bar.component.mjs +1 -1
  6. package/esm2020/lib/ge/ge-routing.module.mjs +18 -0
  7. package/esm2020/lib/ge/ge.module.mjs +38 -0
  8. package/esm2020/lib/ge/system-list/system-list.component.mjs +32 -0
  9. package/esm2020/lib/models/account.model.mjs +3 -0
  10. package/esm2020/lib/models/alternativeDate.model.mjs +3 -0
  11. package/esm2020/lib/models/applicationName.mjs +7 -0
  12. package/esm2020/lib/models/cancelPMMailRequest.model.mjs +4 -0
  13. package/esm2020/lib/models/contactRequest.model.mjs +3 -0
  14. package/esm2020/lib/models/customObject.model.mjs +3 -0
  15. package/esm2020/lib/models/detailedPmJob.model.mjs +3 -0
  16. package/esm2020/lib/models/emailStatus.mjs +6 -0
  17. package/esm2020/lib/models/emailType.mjs +8 -0
  18. package/esm2020/lib/models/eventStatus.mjs +9 -0
  19. package/esm2020/lib/models/field.mjs +9 -0
  20. package/esm2020/lib/models/language.mjs +7 -0
  21. package/esm2020/lib/models/mailRequest.model.mjs +3 -0
  22. package/esm2020/lib/models/pMGroupedJob.model.mjs +3 -0
  23. package/esm2020/lib/models/pmJob.model.mjs +3 -0
  24. package/esm2020/lib/models/pmJobRequest.model.mjs +3 -0
  25. package/esm2020/lib/models/pmJobStatus.mjs +12 -0
  26. package/esm2020/lib/models/reportDateMailRequest.model.mjs +4 -0
  27. package/esm2020/lib/models/role.mjs +7 -0
  28. package/esm2020/lib/models/service.model.mjs +3 -0
  29. package/esm2020/lib/models/serviceName.mjs +12 -0
  30. package/esm2020/lib/models/socialLoginRequest.model.mjs +3 -0
  31. package/esm2020/lib/models/socialMadia.mjs +5 -0
  32. package/esm2020/lib/models/system.mjs +3 -0
  33. package/esm2020/lib/models/theme.model.mjs +2 -0
  34. package/esm2020/lib/models/tokenStatus.mjs +7 -0
  35. package/esm2020/lib/models/warranty.mjs +3 -0
  36. package/esm2020/lib/pipes/pipes/pipes.module.mjs +21 -0
  37. package/esm2020/lib/pipes/subrtring-w.pipe.mjs +20 -0
  38. package/esm2020/lib/pipes/substring.pipe.mjs +16 -0
  39. package/esm2020/public-api.mjs +36 -3
  40. package/fesm2015/awf-test-lib.mjs +272 -18
  41. package/fesm2015/awf-test-lib.mjs.map +1 -1
  42. package/fesm2020/awf-test-lib.mjs +271 -18
  43. package/fesm2020/awf-test-lib.mjs.map +1 -1
  44. package/lib/core/menu/menu.component.d.ts +3 -3
  45. package/lib/ge/ge-routing.module.d.ts +7 -0
  46. package/lib/ge/ge.module.d.ts +12 -0
  47. package/lib/ge/system-list/system-list.component.d.ts +15 -0
  48. package/lib/models/account.model.d.ts +14 -0
  49. package/lib/models/alternativeDate.model.d.ts +6 -0
  50. package/lib/models/applicationName.d.ts +5 -0
  51. package/lib/models/cancelPMMailRequest.model.d.ts +5 -0
  52. package/lib/models/contactRequest.model.d.ts +8 -0
  53. package/lib/models/customObject.model.d.ts +3 -0
  54. package/lib/models/detailedPmJob.model.d.ts +10 -0
  55. package/lib/models/emailStatus.d.ts +4 -0
  56. package/lib/models/emailType.d.ts +6 -0
  57. package/lib/models/eventStatus.d.ts +7 -0
  58. package/lib/models/field.d.ts +7 -0
  59. package/lib/models/language.d.ts +5 -0
  60. package/lib/models/mailRequest.model.d.ts +16 -0
  61. package/lib/models/pMGroupedJob.model.d.ts +3 -0
  62. package/lib/models/pmJob.model.d.ts +25 -0
  63. package/lib/models/pmJobRequest.model.d.ts +5 -0
  64. package/lib/models/pmJobStatus.d.ts +10 -0
  65. package/lib/models/reportDateMailRequest.model.d.ts +5 -0
  66. package/lib/models/role.d.ts +5 -0
  67. package/lib/models/service.model.d.ts +8 -0
  68. package/lib/models/serviceName.d.ts +10 -0
  69. package/lib/models/socialLoginRequest.model.d.ts +6 -0
  70. package/lib/models/socialMadia.d.ts +3 -0
  71. package/lib/models/system.d.ts +11 -0
  72. package/lib/models/theme.model.d.ts +38 -0
  73. package/lib/models/tokenStatus.d.ts +5 -0
  74. package/lib/models/warranty.d.ts +17 -0
  75. package/lib/pipes/pipes/pipes.module.d.ts +9 -0
  76. package/lib/pipes/subrtring-w.pipe.d.ts +7 -0
  77. package/lib/pipes/substring.pipe.d.ts +7 -0
  78. package/package.json +1 -1
  79. package/public-api.d.ts +33 -0
@@ -0,0 +1,21 @@
1
+ import { NgModule } from '@angular/core';
2
+ import { CommonModule } from '@angular/common';
3
+ import { SubstringPipe } from '../substring.pipe';
4
+ import { SubrtringWPipe } from '../subrtring-w.pipe';
5
+ import * as i0 from "@angular/core";
6
+ export class PipesModule {
7
+ }
8
+ PipesModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PipesModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
9
+ PipesModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.2.0", ngImport: i0, type: PipesModule, declarations: [SubstringPipe, SubrtringWPipe], imports: [CommonModule], exports: [SubstringPipe, SubrtringWPipe] });
10
+ PipesModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PipesModule, imports: [CommonModule] });
11
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PipesModule, decorators: [{
12
+ type: NgModule,
13
+ args: [{
14
+ declarations: [SubstringPipe, SubrtringWPipe],
15
+ exports: [SubstringPipe, SubrtringWPipe],
16
+ imports: [
17
+ CommonModule
18
+ ]
19
+ }]
20
+ }] });
21
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicGlwZXMubW9kdWxlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvYXdmLXRlc3QtbGliL3NyYy9saWIvcGlwZXMvcGlwZXMvcGlwZXMubW9kdWxlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxRQUFRLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDekMsT0FBTyxFQUFFLFlBQVksRUFBRSxNQUFNLGlCQUFpQixDQUFDO0FBQy9DLE9BQU8sRUFBRSxhQUFhLEVBQUUsTUFBTSxtQkFBbUIsQ0FBQztBQUNsRCxPQUFPLEVBQUUsY0FBYyxFQUFFLE1BQU0scUJBQXFCLENBQUM7O0FBVXJELE1BQU0sT0FBTyxXQUFXOzt3R0FBWCxXQUFXO3lHQUFYLFdBQVcsaUJBTlAsYUFBYSxFQUFDLGNBQWMsYUFHdkMsWUFBWSxhQUZOLGFBQWEsRUFBQyxjQUFjO3lHQUszQixXQUFXLFlBSGxCLFlBQVk7MkZBR0wsV0FBVztrQkFQdkIsUUFBUTttQkFBQztvQkFDUixZQUFZLEVBQUUsQ0FBQyxhQUFhLEVBQUMsY0FBYyxDQUFDO29CQUM1QyxPQUFPLEVBQUUsQ0FBQyxhQUFhLEVBQUMsY0FBYyxDQUFDO29CQUN2QyxPQUFPLEVBQUU7d0JBQ0wsWUFBWTtxQkFDZjtpQkFDRiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IE5nTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBDb21tb25Nb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb21tb24nO1xuaW1wb3J0IHsgU3Vic3RyaW5nUGlwZSB9IGZyb20gJy4uL3N1YnN0cmluZy5waXBlJztcbmltcG9ydCB7IFN1YnJ0cmluZ1dQaXBlIH0gZnJvbSAnLi4vc3VicnRyaW5nLXcucGlwZSc7XG5cblxuQE5nTW9kdWxlKHtcbiAgZGVjbGFyYXRpb25zOiBbU3Vic3RyaW5nUGlwZSxTdWJydHJpbmdXUGlwZV0sXG4gIGV4cG9ydHM6IFtTdWJzdHJpbmdQaXBlLFN1YnJ0cmluZ1dQaXBlXSxcbiAgaW1wb3J0czogW1xuICAgICAgQ29tbW9uTW9kdWxlXG4gIF1cbn0pXG5leHBvcnQgY2xhc3MgUGlwZXNNb2R1bGUgeyB9XG4iXX0=
@@ -0,0 +1,20 @@
1
+ import { Pipe } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export class SubrtringWPipe {
4
+ transform(brand, manufacturerId) {
5
+ if (manufacturerId == 4 && (brand.substring(0, 2) === 'FR')) {
6
+ return brand.substring(2, 12);
7
+ }
8
+ else
9
+ return brand;
10
+ }
11
+ }
12
+ SubrtringWPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: SubrtringWPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
13
+ SubrtringWPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "14.2.0", ngImport: i0, type: SubrtringWPipe, name: "subrtringW" });
14
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: SubrtringWPipe, decorators: [{
15
+ type: Pipe,
16
+ args: [{
17
+ name: 'subrtringW'
18
+ }]
19
+ }] });
20
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic3VicnRyaW5nLXcucGlwZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2F3Zi10ZXN0LWxpYi9zcmMvbGliL3BpcGVzL3N1YnJ0cmluZy13LnBpcGUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLElBQUksRUFBaUIsTUFBTSxlQUFlLENBQUM7O0FBS3BELE1BQU0sT0FBTyxjQUFjO0lBRXpCLFNBQVMsQ0FBQyxLQUFhLEVBQUUsY0FBc0I7UUFDN0MsSUFBRyxjQUFjLElBQUUsQ0FBQyxJQUFJLENBQUMsS0FBSyxDQUFDLFNBQVMsQ0FBQyxDQUFDLEVBQUUsQ0FBQyxDQUFDLEtBQUcsSUFBSSxDQUFDLEVBQ3REO1lBQ0ksT0FBTyxLQUFLLENBQUMsU0FBUyxDQUFDLENBQUMsRUFBRSxFQUFFLENBQUMsQ0FBQztTQUNqQzs7WUFFRyxPQUFPLEtBQUssQ0FBQTtJQUNwQixDQUFDOzsyR0FUWSxjQUFjO3lHQUFkLGNBQWM7MkZBQWQsY0FBYztrQkFIMUIsSUFBSTttQkFBQztvQkFDSixJQUFJLEVBQUUsWUFBWTtpQkFDbkIiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBQaXBlLCBQaXBlVHJhbnNmb3JtIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XHJcblxyXG5AUGlwZSh7XHJcbiAgbmFtZTogJ3N1YnJ0cmluZ1cnXHJcbn0pXHJcbmV4cG9ydCBjbGFzcyBTdWJydHJpbmdXUGlwZSBpbXBsZW1lbnRzIFBpcGVUcmFuc2Zvcm0ge1xyXG5cclxuICB0cmFuc2Zvcm0oYnJhbmQ6IHN0cmluZywgbWFudWZhY3R1cmVySWQ6IG51bWJlcik6IHN0cmluZyB7XHJcbiAgICBpZihtYW51ZmFjdHVyZXJJZD09NCAmJiAoYnJhbmQuc3Vic3RyaW5nKDAsIDIpPT09J0ZSJykgKVxyXG4gICAge1xyXG4gICAgICAgIHJldHVybiBicmFuZC5zdWJzdHJpbmcoMiwgMTIpO1xyXG4gICAgfVxyXG4gICAgZWxzZVxyXG4gICAgICAgIHJldHVybiBicmFuZFxyXG59XHJcbn1cclxuIl19
@@ -0,0 +1,16 @@
1
+ import { Pipe } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export class SubstringPipe {
4
+ transform(time, arg1, arg2) {
5
+ return time.substring(arg1, arg2);
6
+ }
7
+ }
8
+ SubstringPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: SubstringPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
9
+ SubstringPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "14.2.0", ngImport: i0, type: SubstringPipe, name: "substring" });
10
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: SubstringPipe, decorators: [{
11
+ type: Pipe,
12
+ args: [{
13
+ name: 'substring'
14
+ }]
15
+ }] });
16
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic3Vic3RyaW5nLnBpcGUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9hd2YtdGVzdC1saWIvc3JjL2xpYi9waXBlcy9zdWJzdHJpbmcucGlwZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFDQSxPQUFPLEVBQUUsSUFBSSxFQUFpQixNQUFNLGVBQWUsQ0FBQzs7QUFNcEQsTUFBTSxPQUFPLGFBQWE7SUFFdEIsU0FBUyxDQUFDLElBQVksRUFBRSxJQUFZLEVBQUUsSUFBWTtRQUM5QyxPQUFPLElBQUksQ0FBQyxTQUFTLENBQUMsSUFBSSxFQUFFLElBQUksQ0FBQyxDQUFDO0lBQ3RDLENBQUM7OzBHQUpRLGFBQWE7d0dBQWIsYUFBYTsyRkFBYixhQUFhO2tCQUh6QixJQUFJO21CQUFDO29CQUNGLElBQUksRUFBRSxXQUFXO2lCQUNwQiIsInNvdXJjZXNDb250ZW50IjpbIlxyXG5pbXBvcnQgeyBQaXBlLCBQaXBlVHJhbnNmb3JtIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XHJcblxyXG5cclxuQFBpcGUoe1xyXG4gICAgbmFtZTogJ3N1YnN0cmluZydcclxufSlcclxuZXhwb3J0IGNsYXNzIFN1YnN0cmluZ1BpcGUgaW1wbGVtZW50cyBQaXBlVHJhbnNmb3JtIHtcclxuXHJcbiAgICB0cmFuc2Zvcm0odGltZTogc3RyaW5nLCBhcmcxOiBudW1iZXIsIGFyZzI6IG51bWJlcik6IHN0cmluZyB7XHJcbiAgICAgICAgcmV0dXJuIHRpbWUuc3Vic3RyaW5nKGFyZzEsIGFyZzIpO1xyXG4gICAgfVxyXG5cclxufVxyXG5cclxuIl19
@@ -6,6 +6,39 @@ export * from './lib/core/core.module';
6
6
  export * from './lib/core/menu/menu.component';
7
7
  export * from './lib/core/not-found/not-found.component';
8
8
  export * from './lib/core/top-bar/top-bar.component';
9
- // export * from './lib/awf-test-lib.component';
10
- // export * from './lib/awf-test-lib.module';
11
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3Byb2plY3RzL2F3Zi10ZXN0LWxpYi9zcmMvcHVibGljLWFwaS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTs7R0FFRztBQUNILHNDQUFzQztBQUN0QyxjQUFjLHdCQUF3QixDQUFDO0FBQ3ZDLGNBQWMsZ0NBQWdDLENBQUM7QUFDL0MsY0FBYywwQ0FBMEMsQ0FBQztBQUN6RCxjQUFjLHNDQUFzQyxDQUFDO0FBS3JELGdEQUFnRDtBQUNoRCw2Q0FBNkMiLCJzb3VyY2VzQ29udGVudCI6WyIvKlxyXG4gKiBQdWJsaWMgQVBJIFN1cmZhY2Ugb2YgYXdmLXRlc3QtbGliXHJcbiAqL1xyXG4vKioqKioqKioqKiogc2hhcmVkIG1vZHVsZSoqKioqKioqKioqL1xyXG5leHBvcnQgKiBmcm9tICcuL2xpYi9jb3JlL2NvcmUubW9kdWxlJztcclxuZXhwb3J0ICogZnJvbSAnLi9saWIvY29yZS9tZW51L21lbnUuY29tcG9uZW50JztcclxuZXhwb3J0ICogZnJvbSAnLi9saWIvY29yZS9ub3QtZm91bmQvbm90LWZvdW5kLmNvbXBvbmVudCc7XHJcbmV4cG9ydCAqIGZyb20gJy4vbGliL2NvcmUvdG9wLWJhci90b3AtYmFyLmNvbXBvbmVudCc7XHJcblxyXG5cclxuXHJcblxyXG4vLyBleHBvcnQgKiBmcm9tICcuL2xpYi9hd2YtdGVzdC1saWIuY29tcG9uZW50JztcclxuLy8gZXhwb3J0ICogZnJvbSAnLi9saWIvYXdmLXRlc3QtbGliLm1vZHVsZSc7XHJcbiJdfQ==
9
+ /*********** GE module ***********/
10
+ export * from './lib/ge/ge.module';
11
+ export * from './lib/ge/system-list/system-list.component';
12
+ // models
13
+ export * from './lib/models/account.model';
14
+ export * from './lib/models/alternativeDate.model';
15
+ export * from './lib/models/applicationName';
16
+ export * from './lib/models/cancelPMMailRequest.model';
17
+ export * from './lib/models/contactRequest.model';
18
+ export * from './lib/models/customObject.model';
19
+ export * from './lib/models/detailedPmJob.model';
20
+ export * from './lib/models/emailStatus';
21
+ export * from './lib/models/emailType';
22
+ export * from './lib/models/eventStatus';
23
+ export * from './lib/models/field';
24
+ export * from './lib/models/language';
25
+ export * from './lib/models/mailRequest.model';
26
+ export * from './lib/models/pMGroupedJob.model';
27
+ export * from './lib/models/pmJob.model';
28
+ export * from './lib/models/pmJobRequest.model';
29
+ export * from './lib/models/pmJobStatus';
30
+ export * from './lib/models/reportDateMailRequest.model';
31
+ export * from './lib/models/role';
32
+ export * from './lib/models/service.model';
33
+ export * from './lib/models/serviceName';
34
+ export * from './lib/models/socialLoginRequest.model';
35
+ export * from './lib/models/socialMadia';
36
+ export * from './lib/models/system';
37
+ export * from './lib/models/theme.model';
38
+ export * from './lib/models/tokenStatus';
39
+ export * from './lib/models/warranty';
40
+ // Pipes
41
+ export * from './lib/pipes/pipes/pipes.module';
42
+ export * from './lib/pipes/subrtring-w.pipe';
43
+ export * from './lib/pipes/substring.pipe';
44
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3Byb2plY3RzL2F3Zi10ZXN0LWxpYi9zcmMvcHVibGljLWFwaS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTs7R0FFRztBQUNILHNDQUFzQztBQUV0QyxjQUFjLHdCQUF3QixDQUFDO0FBQ3ZDLGNBQWMsZ0NBQWdDLENBQUM7QUFDL0MsY0FBYywwQ0FBMEMsQ0FBQztBQUN6RCxjQUFjLHNDQUFzQyxDQUFDO0FBRXJELHVDQUF1QztBQUV2QyxjQUFjLG9CQUFvQixDQUFDO0FBQ25DLGNBQWMsNENBQTRDLENBQUM7QUFHM0QsVUFBVTtBQUNWLGNBQWMsNEJBQTRCLENBQUM7QUFDM0MsY0FBYyxvQ0FBb0MsQ0FBQztBQUNuRCxjQUFjLDhCQUE4QixDQUFDO0FBQzdDLGNBQWMsd0NBQXdDLENBQUM7QUFDdkQsY0FBYyxtQ0FBbUMsQ0FBQztBQUNsRCxjQUFjLGlDQUFpQyxDQUFDO0FBQ2hELGNBQWMsa0NBQWtDLENBQUM7QUFDakQsY0FBYywwQkFBMEIsQ0FBQztBQUN6QyxjQUFjLHdCQUF3QixDQUFDO0FBQ3ZDLGNBQWMsMEJBQTBCLENBQUM7QUFDekMsY0FBYyxvQkFBb0IsQ0FBQztBQUNuQyxjQUFjLHVCQUF1QixDQUFDO0FBQ3RDLGNBQWMsZ0NBQWdDLENBQUM7QUFDL0MsY0FBYyxpQ0FBaUMsQ0FBQztBQUNoRCxjQUFjLDBCQUEwQixDQUFDO0FBQ3pDLGNBQWMsaUNBQWlDLENBQUM7QUFDaEQsY0FBYywwQkFBMEIsQ0FBQztBQUN6QyxjQUFjLDBDQUEwQyxDQUFDO0FBQ3pELGNBQWMsbUJBQW1CLENBQUM7QUFDbEMsY0FBYyw0QkFBNEIsQ0FBQztBQUMzQyxjQUFjLDBCQUEwQixDQUFDO0FBQ3pDLGNBQWMsdUNBQXVDLENBQUM7QUFDdEQsY0FBYywwQkFBMEIsQ0FBQztBQUN6QyxjQUFjLHFCQUFxQixDQUFDO0FBQ3BDLGNBQWMsMEJBQTBCLENBQUM7QUFDekMsY0FBYywwQkFBMEIsQ0FBQztBQUN6QyxjQUFjLHVCQUF1QixDQUFDO0FBSXRDLFFBQVE7QUFFUixjQUFjLGdDQUFnQyxDQUFDO0FBQy9DLGNBQWMsOEJBQThCLENBQUM7QUFDN0MsY0FBYyw0QkFBNEIsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbIi8qXHJcbiAqIFB1YmxpYyBBUEkgU3VyZmFjZSBvZiBhd2YtdGVzdC1saWJcclxuICovXHJcbi8qKioqKioqKioqKiBzaGFyZWQgbW9kdWxlKioqKioqKioqKiovXHJcblxyXG5leHBvcnQgKiBmcm9tICcuL2xpYi9jb3JlL2NvcmUubW9kdWxlJztcclxuZXhwb3J0ICogZnJvbSAnLi9saWIvY29yZS9tZW51L21lbnUuY29tcG9uZW50JztcclxuZXhwb3J0ICogZnJvbSAnLi9saWIvY29yZS9ub3QtZm91bmQvbm90LWZvdW5kLmNvbXBvbmVudCc7XHJcbmV4cG9ydCAqIGZyb20gJy4vbGliL2NvcmUvdG9wLWJhci90b3AtYmFyLmNvbXBvbmVudCc7XHJcblxyXG4vKioqKioqKioqKiogICAgR0UgbW9kdWxlICAqKioqKioqKioqKi9cclxuXHJcbmV4cG9ydCAqIGZyb20gJy4vbGliL2dlL2dlLm1vZHVsZSc7XHJcbmV4cG9ydCAqIGZyb20gJy4vbGliL2dlL3N5c3RlbS1saXN0L3N5c3RlbS1saXN0LmNvbXBvbmVudCc7XHJcblxyXG5cclxuLy8gbW9kZWxzIFxyXG5leHBvcnQgKiBmcm9tICcuL2xpYi9tb2RlbHMvYWNjb3VudC5tb2RlbCc7XHJcbmV4cG9ydCAqIGZyb20gJy4vbGliL21vZGVscy9hbHRlcm5hdGl2ZURhdGUubW9kZWwnO1xyXG5leHBvcnQgKiBmcm9tICcuL2xpYi9tb2RlbHMvYXBwbGljYXRpb25OYW1lJztcclxuZXhwb3J0ICogZnJvbSAnLi9saWIvbW9kZWxzL2NhbmNlbFBNTWFpbFJlcXVlc3QubW9kZWwnO1xyXG5leHBvcnQgKiBmcm9tICcuL2xpYi9tb2RlbHMvY29udGFjdFJlcXVlc3QubW9kZWwnO1xyXG5leHBvcnQgKiBmcm9tICcuL2xpYi9tb2RlbHMvY3VzdG9tT2JqZWN0Lm1vZGVsJztcclxuZXhwb3J0ICogZnJvbSAnLi9saWIvbW9kZWxzL2RldGFpbGVkUG1Kb2IubW9kZWwnO1xyXG5leHBvcnQgKiBmcm9tICcuL2xpYi9tb2RlbHMvZW1haWxTdGF0dXMnO1xyXG5leHBvcnQgKiBmcm9tICcuL2xpYi9tb2RlbHMvZW1haWxUeXBlJztcclxuZXhwb3J0ICogZnJvbSAnLi9saWIvbW9kZWxzL2V2ZW50U3RhdHVzJztcclxuZXhwb3J0ICogZnJvbSAnLi9saWIvbW9kZWxzL2ZpZWxkJztcclxuZXhwb3J0ICogZnJvbSAnLi9saWIvbW9kZWxzL2xhbmd1YWdlJztcclxuZXhwb3J0ICogZnJvbSAnLi9saWIvbW9kZWxzL21haWxSZXF1ZXN0Lm1vZGVsJztcclxuZXhwb3J0ICogZnJvbSAnLi9saWIvbW9kZWxzL3BNR3JvdXBlZEpvYi5tb2RlbCc7XHJcbmV4cG9ydCAqIGZyb20gJy4vbGliL21vZGVscy9wbUpvYi5tb2RlbCc7XHJcbmV4cG9ydCAqIGZyb20gJy4vbGliL21vZGVscy9wbUpvYlJlcXVlc3QubW9kZWwnO1xyXG5leHBvcnQgKiBmcm9tICcuL2xpYi9tb2RlbHMvcG1Kb2JTdGF0dXMnO1xyXG5leHBvcnQgKiBmcm9tICcuL2xpYi9tb2RlbHMvcmVwb3J0RGF0ZU1haWxSZXF1ZXN0Lm1vZGVsJztcclxuZXhwb3J0ICogZnJvbSAnLi9saWIvbW9kZWxzL3JvbGUnO1xyXG5leHBvcnQgKiBmcm9tICcuL2xpYi9tb2RlbHMvc2VydmljZS5tb2RlbCc7XHJcbmV4cG9ydCAqIGZyb20gJy4vbGliL21vZGVscy9zZXJ2aWNlTmFtZSc7XHJcbmV4cG9ydCAqIGZyb20gJy4vbGliL21vZGVscy9zb2NpYWxMb2dpblJlcXVlc3QubW9kZWwnO1xyXG5leHBvcnQgKiBmcm9tICcuL2xpYi9tb2RlbHMvc29jaWFsTWFkaWEnO1xyXG5leHBvcnQgKiBmcm9tICcuL2xpYi9tb2RlbHMvc3lzdGVtJztcclxuZXhwb3J0ICogZnJvbSAnLi9saWIvbW9kZWxzL3RoZW1lLm1vZGVsJztcclxuZXhwb3J0ICogZnJvbSAnLi9saWIvbW9kZWxzL3Rva2VuU3RhdHVzJztcclxuZXhwb3J0ICogZnJvbSAnLi9saWIvbW9kZWxzL3dhcnJhbnR5JztcclxuXHJcblxyXG5cclxuLy8gUGlwZXNcclxuXHJcbmV4cG9ydCAqIGZyb20gJy4vbGliL3BpcGVzL3BpcGVzL3BpcGVzLm1vZHVsZSc7IFxyXG5leHBvcnQgKiBmcm9tICcuL2xpYi9waXBlcy9zdWJydHJpbmctdy5waXBlJztcclxuZXhwb3J0ICogZnJvbSAnLi9saWIvcGlwZXMvc3Vic3RyaW5nLnBpcGUnO1xyXG5cclxuIl19
@@ -1,22 +1,28 @@
1
1
  import * as i0 from '@angular/core';
2
- import { NgModule, EventEmitter, Component, Input, Output } from '@angular/core';
2
+ import { NgModule, EventEmitter, Component, Input, Output, Pipe, ViewChild } from '@angular/core';
3
3
  import * as i1$1 from '@angular/common';
4
4
  import { CommonModule } from '@angular/common';
5
5
  import * as i2 from '@angular/router';
6
6
  import { RouterModule } from '@angular/router';
7
7
  import * as i1 from 'primeng/megamenu';
8
8
  import { MegaMenuModule } from 'primeng/megamenu';
9
+ import * as i2$1 from 'primeng/api';
10
+ import { MessageService } from 'primeng/api';
11
+ import * as i1$2 from 'primeng/table';
12
+ import { TableModule } from 'primeng/table';
13
+ import * as i3 from 'primeng/inputtext';
14
+ import { InputTextModule } from 'primeng/inputtext';
9
15
 
10
- const routes = [];
16
+ const routes$1 = [];
11
17
  class CoreRoutingModule {
12
18
  }
13
19
  CoreRoutingModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: CoreRoutingModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
14
20
  CoreRoutingModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.2.0", ngImport: i0, type: CoreRoutingModule, imports: [i2.RouterModule], exports: [RouterModule] });
15
- CoreRoutingModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: CoreRoutingModule, imports: [RouterModule.forChild(routes), RouterModule] });
21
+ CoreRoutingModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: CoreRoutingModule, imports: [RouterModule.forChild(routes$1), RouterModule] });
16
22
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: CoreRoutingModule, decorators: [{
17
23
  type: NgModule,
18
24
  args: [{
19
- imports: [RouterModule.forChild(routes)],
25
+ imports: [RouterModule.forChild(routes$1)],
20
26
  exports: [RouterModule]
21
27
  }]
22
28
  }] });
@@ -63,7 +69,6 @@ class MenuWarrantyComponent {
63
69
  constructor() {
64
70
  this.logOutClick = new EventEmitter();
65
71
  this.hideMenu = new EventEmitter();
66
- this.haveConsumerDataId = false;
67
72
  }
68
73
  ngOnInit() {
69
74
  }
@@ -75,10 +80,10 @@ class MenuWarrantyComponent {
75
80
  }
76
81
  }
77
82
  MenuWarrantyComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: MenuWarrantyComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
78
- MenuWarrantyComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.0", type: MenuWarrantyComponent, selector: "app-menu-warranty", inputs: { isAdmin: "isAdmin", translate: "translate", haveConsumerDataId: "haveConsumerDataId" }, outputs: { logOutClick: "logOutClick", hideMenu: "hideMenu" }, ngImport: i0, template: "<div class=\"layout-menu\" *ngIf=\"translate\">\r\n <div class=\"menu-category\"> <i class=\"pi pi-home\"></i> {{translate.general}}</div>\r\n <div class=\"menu-items\">\r\n <a routerLink=\"./warranties\" (click)=\"hideMenuMethode()\">{{translate.Homepage}}</a>\r\n <a routerLink=\"./device\" (click)=\"hideMenuMethode()\">{{translate.devices}}</a>\r\n </div>\r\n <div class=\"menu-category\" *ngIf=\"isAdmin \"> <i class=\"pi pi-cog\"></i> {{translate.config}}</div>\r\n <div class=\"menu-items\" *ngIf=\"isAdmin \">\r\n\r\n <a routerLink=\"./theme\" (click)=\"hideMenuMethode()\">{{translate.themes}}</a>\r\n <a routerLink=\"./servicesConfig\" (click)=\"hideMenuMethode()\">{{translate.services}}</a>\r\n </div>\r\n <div class=\"menu-category\"> <i class=\"pi pi-user\"></i> {{translate.account}}</div>\r\n <div class=\"menu-items\">\r\n <a routerLink=\"./account\" *ngIf=\"haveConsumerDataId\" (click)=\"hideMenuMethode()\">{{translate.personalData}}</a>\r\n <a routerLink=\"./account/optionsList\" *ngIf=\"haveConsumerDataId\" (click)=\"hideMenuMethode()\">{{translate.optionsList}}</a>\r\n <a routerLink=\"./account/change-password\" *ngIf=\"haveConsumerDataId\" (click)=\"hideMenuMethode()\">{{translate.changePassword}}</a>\r\n <a (click)=\"logout()\">{{translate.logout}}</a>\r\n </div>\r\n</div>", styles: [""], dependencies: [{ kind: "directive", type: i1$1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i2.RouterLinkWithHref, selector: "a[routerLink],area[routerLink]", inputs: ["target", "queryParams", "fragment", "queryParamsHandling", "state", "relativeTo", "preserveFragment", "skipLocationChange", "replaceUrl", "routerLink"] }] });
83
+ MenuWarrantyComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.0", type: MenuWarrantyComponent, selector: "app-menu-warranty", inputs: { isAdmin: "isAdmin", translate: "translate", haveConsumerDataId: "haveConsumerDataId" }, outputs: { logOutClick: "logOutClick", hideMenu: "hideMenu" }, ngImport: i0, template: "<div class=\"layout-menu\" *ngIf=\"translate\">\r\n <div class=\"menu-category\"> <i class=\"pi pi-home\"></i> {{translate.general}}</div>\r\n <div class=\"menu-items\">\r\n <a routerLink=\"./warranties\" (click)=\"hideMenuMethode()\">{{translate.Homepage}}</a>\r\n <a routerLink=\"./device\" (click)=\"hideMenuMethode()\">{{translate.devices}}</a>\r\n </div>\r\n <div class=\"menu-category\" *ngIf=\"isAdmin \"> <i class=\"pi pi-cog\"></i> {{translate.config}}</div>\r\n <div class=\"menu-items\" *ngIf=\"isAdmin \">\r\n\r\n <a routerLink=\"./theme\" (click)=\"hideMenuMethode()\">{{translate.themes}}</a>\r\n <a routerLink=\"./servicesConfig\" (click)=\"hideMenuMethode()\">{{translate.services}}</a>\r\n </div>\r\n <div class=\"menu-category\"> <i class=\"pi pi-user\"></i> {{translate.account}}</div>\r\n <div class=\"menu-items\">\r\n <a routerLink=\"./account\" *ngIf=\"haveConsumerDataId\" (click)=\"hideMenuMethode()\">{{translate.personalData}}</a>\r\n <a routerLink=\"./account/optionsList\" *ngIf=\"haveConsumerDataId\" (click)=\"hideMenuMethode()\">{{translate.optionsList}}</a>\r\n <a routerLink=\"./account/change-password\" *ngIf=\"haveConsumerDataId\" (click)=\"hideMenuMethode()\">{{translate.changePassword}}</a>\r\n <a (click)=\"logout()\">{{translate.logout}}</a>\r\n </div>\r\n</div>", styles: [".layout-menu .logo img{width:150px;max-height:20px;margin-left:24px}@media (max-width: var(--smscreen)){.layout-menu .logo img{max-height:33px;margin-left:0}}.layout-menu .a{font-family:var(--font)}\n"], dependencies: [{ kind: "directive", type: i1$1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i2.RouterLinkWithHref, selector: "a[routerLink],area[routerLink]", inputs: ["target", "queryParams", "fragment", "queryParamsHandling", "state", "relativeTo", "preserveFragment", "skipLocationChange", "replaceUrl", "routerLink"] }] });
79
84
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: MenuWarrantyComponent, decorators: [{
80
85
  type: Component,
81
- args: [{ selector: 'app-menu-warranty', template: "<div class=\"layout-menu\" *ngIf=\"translate\">\r\n <div class=\"menu-category\"> <i class=\"pi pi-home\"></i> {{translate.general}}</div>\r\n <div class=\"menu-items\">\r\n <a routerLink=\"./warranties\" (click)=\"hideMenuMethode()\">{{translate.Homepage}}</a>\r\n <a routerLink=\"./device\" (click)=\"hideMenuMethode()\">{{translate.devices}}</a>\r\n </div>\r\n <div class=\"menu-category\" *ngIf=\"isAdmin \"> <i class=\"pi pi-cog\"></i> {{translate.config}}</div>\r\n <div class=\"menu-items\" *ngIf=\"isAdmin \">\r\n\r\n <a routerLink=\"./theme\" (click)=\"hideMenuMethode()\">{{translate.themes}}</a>\r\n <a routerLink=\"./servicesConfig\" (click)=\"hideMenuMethode()\">{{translate.services}}</a>\r\n </div>\r\n <div class=\"menu-category\"> <i class=\"pi pi-user\"></i> {{translate.account}}</div>\r\n <div class=\"menu-items\">\r\n <a routerLink=\"./account\" *ngIf=\"haveConsumerDataId\" (click)=\"hideMenuMethode()\">{{translate.personalData}}</a>\r\n <a routerLink=\"./account/optionsList\" *ngIf=\"haveConsumerDataId\" (click)=\"hideMenuMethode()\">{{translate.optionsList}}</a>\r\n <a routerLink=\"./account/change-password\" *ngIf=\"haveConsumerDataId\" (click)=\"hideMenuMethode()\">{{translate.changePassword}}</a>\r\n <a (click)=\"logout()\">{{translate.logout}}</a>\r\n </div>\r\n</div>" }]
86
+ args: [{ selector: 'app-menu-warranty', template: "<div class=\"layout-menu\" *ngIf=\"translate\">\r\n <div class=\"menu-category\"> <i class=\"pi pi-home\"></i> {{translate.general}}</div>\r\n <div class=\"menu-items\">\r\n <a routerLink=\"./warranties\" (click)=\"hideMenuMethode()\">{{translate.Homepage}}</a>\r\n <a routerLink=\"./device\" (click)=\"hideMenuMethode()\">{{translate.devices}}</a>\r\n </div>\r\n <div class=\"menu-category\" *ngIf=\"isAdmin \"> <i class=\"pi pi-cog\"></i> {{translate.config}}</div>\r\n <div class=\"menu-items\" *ngIf=\"isAdmin \">\r\n\r\n <a routerLink=\"./theme\" (click)=\"hideMenuMethode()\">{{translate.themes}}</a>\r\n <a routerLink=\"./servicesConfig\" (click)=\"hideMenuMethode()\">{{translate.services}}</a>\r\n </div>\r\n <div class=\"menu-category\"> <i class=\"pi pi-user\"></i> {{translate.account}}</div>\r\n <div class=\"menu-items\">\r\n <a routerLink=\"./account\" *ngIf=\"haveConsumerDataId\" (click)=\"hideMenuMethode()\">{{translate.personalData}}</a>\r\n <a routerLink=\"./account/optionsList\" *ngIf=\"haveConsumerDataId\" (click)=\"hideMenuMethode()\">{{translate.optionsList}}</a>\r\n <a routerLink=\"./account/change-password\" *ngIf=\"haveConsumerDataId\" (click)=\"hideMenuMethode()\">{{translate.changePassword}}</a>\r\n <a (click)=\"logout()\">{{translate.logout}}</a>\r\n </div>\r\n</div>", styles: [".layout-menu .logo img{width:150px;max-height:20px;margin-left:24px}@media (max-width: var(--smscreen)){.layout-menu .logo img{max-height:33px;margin-left:0}}.layout-menu .a{font-family:var(--font)}\n"] }]
82
87
  }], ctorParameters: function () { return []; }, propDecorators: { logOutClick: [{
83
88
  type: Output
84
89
  }], hideMenu: [{
@@ -127,10 +132,10 @@ class MenuGePortalComponent {
127
132
  }
128
133
  }
129
134
  MenuGePortalComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: MenuGePortalComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
130
- MenuGePortalComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.0", type: MenuGePortalComponent, selector: "app-menu-ge-portal", inputs: { translate: "translate", isAdmin: "isAdmin" }, outputs: { logOutClick: "logOutClick", hideMenu: "hideMenu" }, ngImport: i0, template: "<div class=\"layout-menu\" *ngIf=\"translate\">\r\n <div class=\"menu\" routerLink=\"./\" (click)=\"hideMenuMethode()\"> <i class=\"pi pi-home\"></i> {{translate.home}}</div>\r\n <div class=\"menu\" routerLink=\"./contact\" (click)=\"hideMenuMethode()\"> <i class=\"pi pi-phone\"></i> {{translate.contact}}</div>\r\n <div class=\"menu\" routerLink=\"./systems\" (click)=\"hideMenuMethode()\"> <i class=\"pi pi-eye\"></i> {{translate.systems}}</div>\r\n <div class=\"menu\" routerLink=\"./maintenance\" (click)=\"hideMenuMethode()\"> <i class=\"pi pi-inbox\"></i> {{translate.maintenance}}</div>\r\n <div class=\"menu\" (click)=\"logout()\"> <i class=\"pi pi-power-off\"></i> {{translate.logout}}</div>\r\n</div>", styles: [".layout-menu{margin-left:50px}.layout-menu .menu{display:block;color:#8da1b5;font-weight:300;padding:1rem 0 .5rem;font-size:16px;cursor:pointer}.layout-menu .menu:hover{font-weight:700;color:var(--primarycolor)}\n"], dependencies: [{ kind: "directive", type: i1$1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i2.RouterLink, selector: ":not(a):not(area)[routerLink]", inputs: ["queryParams", "fragment", "queryParamsHandling", "state", "relativeTo", "preserveFragment", "skipLocationChange", "replaceUrl", "routerLink"] }] });
135
+ MenuGePortalComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.0", type: MenuGePortalComponent, selector: "app-menu-ge-portal", inputs: { translate: "translate", isAdmin: "isAdmin" }, outputs: { logOutClick: "logOutClick", hideMenu: "hideMenu" }, ngImport: i0, template: "<div class=\"layout-menu\" *ngIf=\"translate\">\r\n <div class=\"menu\" routerLink=\"./\" (click)=\"hideMenuMethode()\"> <i class=\"pi pi-home\"></i> {{translate.home}}</div>\r\n <div class=\"menu\" routerLink=\"./contact\" (click)=\"hideMenuMethode()\"> <i class=\"pi pi-phone\"></i> {{translate.contact}}</div>\r\n <div class=\"menu\" routerLink=\"./systems\" (click)=\"hideMenuMethode()\"> <i class=\"pi pi-eye\"></i> {{translate.systems}}</div>\r\n <div class=\"menu\" routerLink=\"./maintenance\" (click)=\"hideMenuMethode()\"> <i class=\"pi pi-inbox\"></i> {{translate.maintenance}}</div>\r\n <div class=\"menu\" (click)=\"logout()\"> <i class=\"pi pi-power-off\"></i> {{translate.logout}}</div>\r\n</div> ", styles: [".layout-menu{margin-left:50px}.layout-menu .menu{display:block;color:#8da1b5;font-weight:300;padding:1rem 0 .5rem;font-size:16px;cursor:pointer}.layout-menu .menu:hover{font-weight:700;color:var(--primarycolor)}\n"], dependencies: [{ kind: "directive", type: i1$1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i2.RouterLink, selector: ":not(a):not(area)[routerLink]", inputs: ["queryParams", "fragment", "queryParamsHandling", "state", "relativeTo", "preserveFragment", "skipLocationChange", "replaceUrl", "routerLink"] }] });
131
136
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: MenuGePortalComponent, decorators: [{
132
137
  type: Component,
133
- args: [{ selector: 'app-menu-ge-portal', template: "<div class=\"layout-menu\" *ngIf=\"translate\">\r\n <div class=\"menu\" routerLink=\"./\" (click)=\"hideMenuMethode()\"> <i class=\"pi pi-home\"></i> {{translate.home}}</div>\r\n <div class=\"menu\" routerLink=\"./contact\" (click)=\"hideMenuMethode()\"> <i class=\"pi pi-phone\"></i> {{translate.contact}}</div>\r\n <div class=\"menu\" routerLink=\"./systems\" (click)=\"hideMenuMethode()\"> <i class=\"pi pi-eye\"></i> {{translate.systems}}</div>\r\n <div class=\"menu\" routerLink=\"./maintenance\" (click)=\"hideMenuMethode()\"> <i class=\"pi pi-inbox\"></i> {{translate.maintenance}}</div>\r\n <div class=\"menu\" (click)=\"logout()\"> <i class=\"pi pi-power-off\"></i> {{translate.logout}}</div>\r\n</div>", styles: [".layout-menu{margin-left:50px}.layout-menu .menu{display:block;color:#8da1b5;font-weight:300;padding:1rem 0 .5rem;font-size:16px;cursor:pointer}.layout-menu .menu:hover{font-weight:700;color:var(--primarycolor)}\n"] }]
138
+ args: [{ selector: 'app-menu-ge-portal', template: "<div class=\"layout-menu\" *ngIf=\"translate\">\r\n <div class=\"menu\" routerLink=\"./\" (click)=\"hideMenuMethode()\"> <i class=\"pi pi-home\"></i> {{translate.home}}</div>\r\n <div class=\"menu\" routerLink=\"./contact\" (click)=\"hideMenuMethode()\"> <i class=\"pi pi-phone\"></i> {{translate.contact}}</div>\r\n <div class=\"menu\" routerLink=\"./systems\" (click)=\"hideMenuMethode()\"> <i class=\"pi pi-eye\"></i> {{translate.systems}}</div>\r\n <div class=\"menu\" routerLink=\"./maintenance\" (click)=\"hideMenuMethode()\"> <i class=\"pi pi-inbox\"></i> {{translate.maintenance}}</div>\r\n <div class=\"menu\" (click)=\"logout()\"> <i class=\"pi pi-power-off\"></i> {{translate.logout}}</div>\r\n</div> ", styles: [".layout-menu{margin-left:50px}.layout-menu .menu{display:block;color:#8da1b5;font-weight:300;padding:1rem 0 .5rem;font-size:16px;cursor:pointer}.layout-menu .menu:hover{font-weight:700;color:var(--primarycolor)}\n"] }]
134
139
  }], ctorParameters: function () { return []; }, propDecorators: { logOutClick: [{
135
140
  type: Output
136
141
  }], translate: [{
@@ -162,9 +167,8 @@ class MenuComponent {
162
167
  constructor() {
163
168
  this.logOutClick = new EventEmitter();
164
169
  this.hideMenu = new EventEmitter();
165
- this.haveConsumerDataId = false;
166
170
  }
167
- ngOnChanges() { }
171
+ ngOnInit() { }
168
172
  logout() {
169
173
  this.logOutClick.emit();
170
174
  }
@@ -173,10 +177,10 @@ class MenuComponent {
173
177
  }
174
178
  }
175
179
  MenuComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: MenuComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
176
- MenuComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.0", type: MenuComponent, selector: "awf-menu", inputs: { active: "active", isAdmin: "isAdmin", translate: "translate", applicationName: "applicationName", haveConsumerDataId: "haveConsumerDataId" }, outputs: { logOutClick: "logOutClick", hideMenu: "hideMenu" }, usesOnChanges: true, ngImport: i0, template: "<div class=\"layout-sidebar\" [ngClass]=\"{'active': active}\" *ngIf=\"applicationName && translate\">\n <a href=\"./\" class=\"logo d-flex align-items-center\"><img [src]=\"translate.logo\" alt=\"\"></a>\n <div class=\"layout-sidebar-filter p-fluid p-input-filled\">\n </div>\n <app-menu-warranty [haveConsumerDataId]=\"haveConsumerDataId\" [translate]=\"translate\" [isAdmin]=\"isAdmin\" *ngIf=\"applicationName ==='WarrantyPortal' \" (logOutClick)=logout() (hideMenu)=\"hideMenuMethode()\">\n </app-menu-warranty>\n <app-menu-consomer [translate]=\"translate\" [isAdmin]=\"isAdmin\" *ngIf=\"applicationName ==='ConsomerPortal' \" (logOutClick)=logout() (hideMenu)=\"hideMenuMethode()\"></app-menu-consomer>\n <app-menu-ge-portal [translate]=\"translate\" [isAdmin]=\"isAdmin\" *ngIf=\"applicationName ==='GEPortal' \" (logOutClick)=logout() (hideMenu)=\"hideMenuMethode()\"></app-menu-ge-portal>\n</div>\n", styles: [".layout-menu .logo img{width:150px;max-height:20px;margin-left:24px}@media (max-width: var(--smscreen)){.layout-menu .logo img{max-height:33px;margin-left:0}}.layout-menu .a{font-family:var(--font)}\n"], dependencies: [{ kind: "directive", type: i1$1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1$1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: MenuWarrantyComponent, selector: "app-menu-warranty", inputs: ["isAdmin", "translate", "haveConsumerDataId"], outputs: ["logOutClick", "hideMenu"] }, { kind: "component", type: MenuConsomerComponent, selector: "app-menu-consomer", inputs: ["translate", "isAdmin"], outputs: ["logOutClick"] }, { kind: "component", type: MenuGePortalComponent, selector: "app-menu-ge-portal", inputs: ["translate", "isAdmin"], outputs: ["logOutClick", "hideMenu"] }] });
180
+ MenuComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.0", type: MenuComponent, selector: "awf-menu", inputs: { active: "active", isAdmin: "isAdmin", translate: "translate", applicationName: "applicationName", haveConsumerDataId: "haveConsumerDataId" }, outputs: { logOutClick: "logOutClick", hideMenu: "hideMenu" }, ngImport: i0, template: "\r\n\r\n <app-menu-warranty [haveConsumerDataId]=\"haveConsumerDataId\" [translate]=\"translate\" [isAdmin]=\"isAdmin\" *ngIf=\"applicationName ==='WarrantyPortal' \" (logOutClick)=logout() (hideMenu)=\"hideMenuMethode()\">\r\n </app-menu-warranty>\r\n <app-menu-consomer [translate]=\"translate\" [isAdmin]=\"isAdmin\" *ngIf=\"applicationName ==='ConsomerPortal' \" (logOutClick)=logout() (hideMenu)=\"hideMenuMethode()\"></app-menu-consomer>\r\n <app-menu-ge-portal [translate]=\"translate\" [isAdmin]=\"isAdmin\" *ngIf=\"applicationName ==='GEPortal' \" (logOutClick)=logout() (hideMenu)=\"hideMenuMethode()\"></app-menu-ge-portal> \r\n", styles: [".layout-menu .logo img{width:150px;max-height:20px;margin-left:24px}@media (max-width: var(--smscreen)){.layout-menu .logo img{max-height:33px;margin-left:0}}.layout-menu .a{font-family:var(--font)}\n"], dependencies: [{ kind: "directive", type: i1$1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: MenuWarrantyComponent, selector: "app-menu-warranty", inputs: ["isAdmin", "translate", "haveConsumerDataId"], outputs: ["logOutClick", "hideMenu"] }, { kind: "component", type: MenuConsomerComponent, selector: "app-menu-consomer", inputs: ["translate", "isAdmin"], outputs: ["logOutClick"] }, { kind: "component", type: MenuGePortalComponent, selector: "app-menu-ge-portal", inputs: ["translate", "isAdmin"], outputs: ["logOutClick", "hideMenu"] }] });
177
181
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: MenuComponent, decorators: [{
178
182
  type: Component,
179
- args: [{ selector: 'awf-menu', template: "<div class=\"layout-sidebar\" [ngClass]=\"{'active': active}\" *ngIf=\"applicationName && translate\">\n <a href=\"./\" class=\"logo d-flex align-items-center\"><img [src]=\"translate.logo\" alt=\"\"></a>\n <div class=\"layout-sidebar-filter p-fluid p-input-filled\">\n </div>\n <app-menu-warranty [haveConsumerDataId]=\"haveConsumerDataId\" [translate]=\"translate\" [isAdmin]=\"isAdmin\" *ngIf=\"applicationName ==='WarrantyPortal' \" (logOutClick)=logout() (hideMenu)=\"hideMenuMethode()\">\n </app-menu-warranty>\n <app-menu-consomer [translate]=\"translate\" [isAdmin]=\"isAdmin\" *ngIf=\"applicationName ==='ConsomerPortal' \" (logOutClick)=logout() (hideMenu)=\"hideMenuMethode()\"></app-menu-consomer>\n <app-menu-ge-portal [translate]=\"translate\" [isAdmin]=\"isAdmin\" *ngIf=\"applicationName ==='GEPortal' \" (logOutClick)=logout() (hideMenu)=\"hideMenuMethode()\"></app-menu-ge-portal>\n</div>\n", styles: [".layout-menu .logo img{width:150px;max-height:20px;margin-left:24px}@media (max-width: var(--smscreen)){.layout-menu .logo img{max-height:33px;margin-left:0}}.layout-menu .a{font-family:var(--font)}\n"] }]
183
+ args: [{ selector: 'awf-menu', template: "\r\n\r\n <app-menu-warranty [haveConsumerDataId]=\"haveConsumerDataId\" [translate]=\"translate\" [isAdmin]=\"isAdmin\" *ngIf=\"applicationName ==='WarrantyPortal' \" (logOutClick)=logout() (hideMenu)=\"hideMenuMethode()\">\r\n </app-menu-warranty>\r\n <app-menu-consomer [translate]=\"translate\" [isAdmin]=\"isAdmin\" *ngIf=\"applicationName ==='ConsomerPortal' \" (logOutClick)=logout() (hideMenu)=\"hideMenuMethode()\"></app-menu-consomer>\r\n <app-menu-ge-portal [translate]=\"translate\" [isAdmin]=\"isAdmin\" *ngIf=\"applicationName ==='GEPortal' \" (logOutClick)=logout() (hideMenu)=\"hideMenuMethode()\"></app-menu-ge-portal> \r\n", styles: [".layout-menu .logo img{width:150px;max-height:20px;margin-left:24px}@media (max-width: var(--smscreen)){.layout-menu .logo img{max-height:33px;margin-left:0}}.layout-menu .a{font-family:var(--font)}\n"] }]
180
184
  }], ctorParameters: function () { return []; }, propDecorators: { logOutClick: [{
181
185
  type: Output
182
186
  }], hideMenu: [{
@@ -228,20 +232,270 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImpor
228
232
  exports: [
229
233
  NotFoundComponent,
230
234
  MenuComponent,
231
- TopBarComponent
235
+ TopBarComponent,
232
236
  ]
233
237
  }]
234
238
  }] });
235
239
 
240
+ const routes = [];
241
+ class GeRoutingModule {
242
+ }
243
+ GeRoutingModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: GeRoutingModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
244
+ GeRoutingModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.2.0", ngImport: i0, type: GeRoutingModule, imports: [i2.RouterModule], exports: [RouterModule] });
245
+ GeRoutingModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: GeRoutingModule, imports: [RouterModule.forChild(routes), RouterModule] });
246
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: GeRoutingModule, decorators: [{
247
+ type: NgModule,
248
+ args: [{
249
+ imports: [RouterModule.forChild(routes)],
250
+ exports: [RouterModule]
251
+ }]
252
+ }] });
253
+
254
+ class SubstringPipe {
255
+ transform(time, arg1, arg2) {
256
+ return time.substring(arg1, arg2);
257
+ }
258
+ }
259
+ SubstringPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: SubstringPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
260
+ SubstringPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "14.2.0", ngImport: i0, type: SubstringPipe, name: "substring" });
261
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: SubstringPipe, decorators: [{
262
+ type: Pipe,
263
+ args: [{
264
+ name: 'substring'
265
+ }]
266
+ }] });
267
+
268
+ class SystemListComponent {
269
+ constructor() {
270
+ this.systems = [];
271
+ }
272
+ ngOnChanges() { }
273
+ applyFilterGlobal($event, stringVal) {
274
+ var _a;
275
+ (_a = this.dt) === null || _a === void 0 ? void 0 : _a.filterGlobal($event.target.value, stringVal);
276
+ }
277
+ }
278
+ SystemListComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: SystemListComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
279
+ SystemListComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.0", type: SystemListComponent, selector: "awf-system-list", inputs: { translate: "translate", globaltranslate: "globaltranslate", systems: "systems" }, providers: [MessageService], viewQueries: [{ propertyName: "dt", first: true, predicate: ["dt"], descendants: true }], usesOnChanges: true, ngImport: i0, template: "<p-table #dt [value]=\"systems\" responsiveLayout=\"stack\" [rows]=\"5\" [showCurrentPageReport]=\"true\" [rowsPerPageOptions]=\"[5,10,25,50]\" [paginator]=\"true\" [globalFilterFields]=\"['id','systemId','name','modality','installDate']\" [rowHover]=\"true\" dataKey=\"id\"\n [currentPageReportTemplate]=\"globaltranslate.countPages\" [showCurrentPageReport]=\"true\">\n <ng-template pTemplate=\"caption\">\n <div>\n <span class=\"p-input-icon-left\">\n <i class=\"pi pi-search\"></i>\n <input pInputText type=\"text\" (input)=\"applyFilterGlobal($event, 'contains')\"\n [placeholder]=\"globaltranslate.search\" />\n </span>\n </div>\n </ng-template>\n <ng-template pTemplate=\"header\" let-columns>\n <tr>\n <!-- <th pSortableColumn=\"caseId\">Case Id <p-sortIcon field=\"caseId\"></p-sortIcon> -->\n <th pSortableColumn=\"id\">Id\n <p-sortIcon field=\"id\"></p-sortIcon>\n <th pSortableColumn=\"systemId\">System Id\n <p-sortIcon field=\"systemId\"></p-sortIcon>\n <th pSortableColumn=\"name\">Name\n <p-sortIcon field=\"name\"></p-sortIcon>\n <th pSortableColumn=\"modality\">Modality\n <p-sortIcon field=\"modality\"></p-sortIcon>\n <th pSortableColumn=\"installDate\">Install Date\n <!-- <p-sortIcon field=\"installDate\"></p-sortIcon>\n <th> Action</th> -->\n </tr>\n </ng-template>\n <ng-template pTemplate=\"body\" let-product let-columns=\"columns\">\n <tr>\n\n <td>{{product.id }}</td>\n <td>{{product.systemId }}</td>\n <td>{{product.name }}</td>\n <td>{{product.modality }}</td>\n <td>{{product.installDate | substring :0:10 }}</td>\n\n <!-- <td>\n <button pButton pRipple type=\"button\" label=\"\" icon=\"pi pi-pencil\" class=\"p-button-rounded\" [disabled]=\"product.status ==='waiting'\"></button>\n </td> -->\n </tr>\n </ng-template>\n <ng-template pTemplate=\"summary\">\n <div class=\"p-d-flex p-ai-center p-jc-between\">\n {{globaltranslate.count}} {{systems ? systems.length : 0 }} {{globaltranslate.elements}}.\n </div>\n </ng-template>\n</p-table>\n", styles: [""], dependencies: [{ kind: "component", type: i1$2.Table, selector: "p-table", inputs: ["frozenColumns", "frozenValue", "style", "styleClass", "tableStyle", "tableStyleClass", "paginator", "pageLinks", "rowsPerPageOptions", "alwaysShowPaginator", "paginatorPosition", "paginatorDropdownAppendTo", "paginatorDropdownScrollHeight", "currentPageReportTemplate", "showCurrentPageReport", "showJumpToPageDropdown", "showJumpToPageInput", "showFirstLastIcon", "showPageLinks", "defaultSortOrder", "sortMode", "resetPageOnSort", "selectionMode", "selectionPageOnly", "contextMenuSelection", "contextMenuSelectionMode", "dataKey", "metaKeySelection", "rowSelectable", "rowTrackBy", "lazy", "lazyLoadOnInit", "compareSelectionBy", "csvSeparator", "exportFilename", "filters", "globalFilterFields", "filterDelay", "filterLocale", "expandedRowKeys", "editingRowKeys", "rowExpandMode", "scrollable", "scrollDirection", "rowGroupMode", "scrollHeight", "virtualScroll", "virtualScrollItemSize", "virtualScrollOptions", "virtualScrollDelay", "frozenWidth", "responsive", "contextMenu", "resizableColumns", "columnResizeMode", "reorderableColumns", "loading", "loadingIcon", "showLoader", "rowHover", "customSort", "showInitialSortBadge", "autoLayout", "exportFunction", "exportHeader", "stateKey", "stateStorage", "editMode", "groupRowsBy", "groupRowsByOrder", "responsiveLayout", "breakpoint", "virtualRowHeight", "value", "columns", "first", "rows", "totalRecords", "sortField", "sortOrder", "multiSortMeta", "selection", "selectAll"], outputs: ["selectAllChange", "selectionChange", "contextMenuSelectionChange", "onRowSelect", "onRowUnselect", "onPage", "onSort", "onFilter", "onLazyLoad", "onRowExpand", "onRowCollapse", "onContextMenuSelect", "onColResize", "onColReorder", "onRowReorder", "onEditInit", "onEditComplete", "onEditCancel", "onHeaderCheckboxToggle", "sortFunction", "firstChange", "rowsChange", "onStateSave", "onStateRestore"] }, { kind: "directive", type: i2$1.PrimeTemplate, selector: "[pTemplate]", inputs: ["type", "pTemplate"] }, { kind: "directive", type: i1$2.SortableColumn, selector: "[pSortableColumn]", inputs: ["pSortableColumn", "pSortableColumnDisabled"] }, { kind: "component", type: i1$2.SortIcon, selector: "p-sortIcon", inputs: ["field"] }, { kind: "directive", type: i3.InputText, selector: "[pInputText]" }, { kind: "pipe", type: SubstringPipe, name: "substring" }] });
280
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: SystemListComponent, decorators: [{
281
+ type: Component,
282
+ args: [{ selector: 'awf-system-list', providers: [MessageService], template: "<p-table #dt [value]=\"systems\" responsiveLayout=\"stack\" [rows]=\"5\" [showCurrentPageReport]=\"true\" [rowsPerPageOptions]=\"[5,10,25,50]\" [paginator]=\"true\" [globalFilterFields]=\"['id','systemId','name','modality','installDate']\" [rowHover]=\"true\" dataKey=\"id\"\n [currentPageReportTemplate]=\"globaltranslate.countPages\" [showCurrentPageReport]=\"true\">\n <ng-template pTemplate=\"caption\">\n <div>\n <span class=\"p-input-icon-left\">\n <i class=\"pi pi-search\"></i>\n <input pInputText type=\"text\" (input)=\"applyFilterGlobal($event, 'contains')\"\n [placeholder]=\"globaltranslate.search\" />\n </span>\n </div>\n </ng-template>\n <ng-template pTemplate=\"header\" let-columns>\n <tr>\n <!-- <th pSortableColumn=\"caseId\">Case Id <p-sortIcon field=\"caseId\"></p-sortIcon> -->\n <th pSortableColumn=\"id\">Id\n <p-sortIcon field=\"id\"></p-sortIcon>\n <th pSortableColumn=\"systemId\">System Id\n <p-sortIcon field=\"systemId\"></p-sortIcon>\n <th pSortableColumn=\"name\">Name\n <p-sortIcon field=\"name\"></p-sortIcon>\n <th pSortableColumn=\"modality\">Modality\n <p-sortIcon field=\"modality\"></p-sortIcon>\n <th pSortableColumn=\"installDate\">Install Date\n <!-- <p-sortIcon field=\"installDate\"></p-sortIcon>\n <th> Action</th> -->\n </tr>\n </ng-template>\n <ng-template pTemplate=\"body\" let-product let-columns=\"columns\">\n <tr>\n\n <td>{{product.id }}</td>\n <td>{{product.systemId }}</td>\n <td>{{product.name }}</td>\n <td>{{product.modality }}</td>\n <td>{{product.installDate | substring :0:10 }}</td>\n\n <!-- <td>\n <button pButton pRipple type=\"button\" label=\"\" icon=\"pi pi-pencil\" class=\"p-button-rounded\" [disabled]=\"product.status ==='waiting'\"></button>\n </td> -->\n </tr>\n </ng-template>\n <ng-template pTemplate=\"summary\">\n <div class=\"p-d-flex p-ai-center p-jc-between\">\n {{globaltranslate.count}} {{systems ? systems.length : 0 }} {{globaltranslate.elements}}.\n </div>\n </ng-template>\n</p-table>\n" }]
283
+ }], ctorParameters: function () { return []; }, propDecorators: { dt: [{
284
+ type: ViewChild,
285
+ args: ['dt']
286
+ }], translate: [{
287
+ type: Input
288
+ }], globaltranslate: [{
289
+ type: Input
290
+ }], systems: [{
291
+ type: Input
292
+ }] } });
293
+
294
+ class SubrtringWPipe {
295
+ transform(brand, manufacturerId) {
296
+ if (manufacturerId == 4 && (brand.substring(0, 2) === 'FR')) {
297
+ return brand.substring(2, 12);
298
+ }
299
+ else
300
+ return brand;
301
+ }
302
+ }
303
+ SubrtringWPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: SubrtringWPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
304
+ SubrtringWPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "14.2.0", ngImport: i0, type: SubrtringWPipe, name: "subrtringW" });
305
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: SubrtringWPipe, decorators: [{
306
+ type: Pipe,
307
+ args: [{
308
+ name: 'subrtringW'
309
+ }]
310
+ }] });
311
+
312
+ class PipesModule {
313
+ }
314
+ PipesModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PipesModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
315
+ PipesModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.2.0", ngImport: i0, type: PipesModule, declarations: [SubstringPipe, SubrtringWPipe], imports: [CommonModule], exports: [SubstringPipe, SubrtringWPipe] });
316
+ PipesModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PipesModule, imports: [CommonModule] });
317
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PipesModule, decorators: [{
318
+ type: NgModule,
319
+ args: [{
320
+ declarations: [SubstringPipe, SubrtringWPipe],
321
+ exports: [SubstringPipe, SubrtringWPipe],
322
+ imports: [
323
+ CommonModule
324
+ ]
325
+ }]
326
+ }] });
327
+
328
+ class GeModule {
329
+ }
330
+ GeModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: GeModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
331
+ GeModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.2.0", ngImport: i0, type: GeModule, declarations: [SystemListComponent], imports: [CommonModule,
332
+ GeRoutingModule,
333
+ TableModule,
334
+ InputTextModule,
335
+ PipesModule], exports: [SystemListComponent] });
336
+ GeModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: GeModule, imports: [CommonModule,
337
+ GeRoutingModule,
338
+ TableModule,
339
+ InputTextModule,
340
+ PipesModule] });
341
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: GeModule, decorators: [{
342
+ type: NgModule,
343
+ args: [{
344
+ declarations: [
345
+ SystemListComponent,
346
+ ],
347
+ imports: [
348
+ CommonModule,
349
+ GeRoutingModule,
350
+ TableModule,
351
+ InputTextModule,
352
+ PipesModule
353
+ ],
354
+ exports: [SystemListComponent]
355
+ }]
356
+ }] });
357
+
358
+ class Account {
359
+ }
360
+
361
+ class AlternativeDate {
362
+ }
363
+
364
+ var ApplicationName;
365
+ (function (ApplicationName) {
366
+ ApplicationName["ConsomerPortal"] = "ConsomerPortal";
367
+ ApplicationName["WarrantyPortal"] = "WarrantyPortal";
368
+ ApplicationName["GEPortal"] = "GEPortal";
369
+ })(ApplicationName || (ApplicationName = {}));
370
+
371
+ class MailRequest {
372
+ }
373
+
374
+ class CancelPMMailRequest extends MailRequest {
375
+ }
376
+
377
+ class ContactRequest {
378
+ }
379
+
380
+ class CustomObject {
381
+ }
382
+
383
+ class DetailedPmJob {
384
+ }
385
+
386
+ var EmailStatus;
387
+ (function (EmailStatus) {
388
+ EmailStatus[EmailStatus["Verifying"] = 0] = "Verifying";
389
+ EmailStatus[EmailStatus["Failed"] = 1] = "Failed";
390
+ })(EmailStatus || (EmailStatus = {}));
391
+
392
+ var EmailType;
393
+ (function (EmailType) {
394
+ EmailType["ACCEPTED"] = "Accepted";
395
+ EmailType["SENDNEWDATES"] = "SendNewDates";
396
+ EmailType["CANCEL"] = "Cancel";
397
+ EmailType["REPORTANDCANCEL"] = "ReportAndCancel";
398
+ })(EmailType || (EmailType = {}));
399
+
400
+ var EventStatus;
401
+ (function (EventStatus) {
402
+ EventStatus["ASSIGNEDANC"] = "Assigned ANC";
403
+ EventStatus["ASSIGNED"] = "Assigned";
404
+ EventStatus["ASSIGNEDPINNED"] = "Assigned Pinned";
405
+ EventStatus["COMPLETE"] = "Complete";
406
+ EventStatus["INCOMPLETE"] = "Incomplete";
407
+ })(EventStatus || (EventStatus = {}));
408
+
409
+ var Field;
410
+ (function (Field) {
411
+ Field["Textbox"] = "textbox";
412
+ Field["File"] = "file";
413
+ Field["Dropdown"] = "dropdown";
414
+ Field["Radio"] = "radio";
415
+ Field["Checkbox"] = "checkbox";
416
+ })(Field || (Field = {}));
417
+
418
+ var Language;
419
+ (function (Language) {
420
+ Language["FR"] = "fr-FR";
421
+ Language["US"] = "en-US";
422
+ Language["GB"] = "en-GB";
423
+ })(Language || (Language = {}));
424
+
425
+ class PMGroupedJob {
426
+ }
427
+
428
+ class PmJob {
429
+ }
430
+
431
+ class PmJobRequest {
432
+ }
433
+
434
+ var PmJobStatus;
435
+ (function (PmJobStatus) {
436
+ PmJobStatus["NEW"] = "new";
437
+ PmJobStatus["ACCEPTED"] = "accepted";
438
+ PmJobStatus["CLOSED"] = "closed";
439
+ PmJobStatus["Late"] = "late";
440
+ PmJobStatus["OPEN"] = "open";
441
+ PmJobStatus["WAITING"] = "waiting";
442
+ PmJobStatus["DONE"] = "done";
443
+ PmJobStatus["VALIDATED"] = "validated";
444
+ })(PmJobStatus || (PmJobStatus = {}));
445
+
446
+ class ReportDateMailRequest extends MailRequest {
447
+ }
448
+
449
+ var Role;
450
+ (function (Role) {
451
+ Role["User"] = "BasicUser";
452
+ Role["Admin"] = "Admin";
453
+ Role["RGPDUser"] = "RGPDUser";
454
+ })(Role || (Role = {}));
455
+
456
+ class Service {
457
+ }
458
+
459
+ var ServiceName;
460
+ (function (ServiceName) {
461
+ ServiceName["Repairer"] = "repairer";
462
+ ServiceName["WarrantyContract"] = "warrantyContract";
463
+ ServiceName["Devices"] = "devices";
464
+ ServiceName["TrackRepairs"] = "trackRepairs";
465
+ ServiceName["ExtendedWarranty"] = "extendedWarranty";
466
+ ServiceName["ScheduleAppointment"] = "scheduleAppointment";
467
+ ServiceName["Documentation"] = "documentation";
468
+ ServiceName["RepairabilityIndex"] = "repairabilityIndex";
469
+ })(ServiceName || (ServiceName = {}));
470
+
471
+ class SocialLoginRequest {
472
+ }
473
+
474
+ var SocialMadia;
475
+ (function (SocialMadia) {
476
+ SocialMadia["Gmail"] = "Gmail";
477
+ })(SocialMadia || (SocialMadia = {}));
478
+
479
+ class System {
480
+ }
481
+
482
+ var TokenStatus;
483
+ (function (TokenStatus) {
484
+ TokenStatus[TokenStatus["Validating"] = 0] = "Validating";
485
+ TokenStatus[TokenStatus["Valid"] = 1] = "Valid";
486
+ TokenStatus[TokenStatus["Invalid"] = 2] = "Invalid";
487
+ })(TokenStatus || (TokenStatus = {}));
488
+
489
+ class Warranty {
490
+ }
491
+
236
492
  /*
237
493
  * Public API Surface of awf-test-lib
238
- */
239
- // export * from './lib/awf-test-lib.component';
240
- // export * from './lib/awf-test-lib.module';
494
+ */
241
495
 
242
496
  /**
243
497
  * Generated bundle index. Do not edit.
244
498
  */
245
499
 
246
- export { CoreModule, MenuComponent, NotFoundComponent, TopBarComponent };
500
+ export { Account, AlternativeDate, ApplicationName, CancelPMMailRequest, ContactRequest, CoreModule, CustomObject, DetailedPmJob, EmailStatus, EmailType, EventStatus, Field, GeModule, Language, MailRequest, MenuComponent, NotFoundComponent, PMGroupedJob, PipesModule, PmJob, PmJobRequest, PmJobStatus, ReportDateMailRequest, Role, Service, ServiceName, SocialLoginRequest, SocialMadia, SubrtringWPipe, SubstringPipe, System, SystemListComponent, TokenStatus, TopBarComponent, Warranty };
247
501
  //# sourceMappingURL=awf-test-lib.mjs.map