awf-test-lib 0.0.22 → 0.0.23
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/lib/shared/choose-another-date/choose-another-date.component.mjs +107 -0
- package/esm2020/lib/{ge → shared}/confirm-dialog/confirm-dialog.component.mjs +1 -1
- package/esm2020/lib/{ge → shared}/confirm-dialog-validated-to-waiting/confirm-dialog-validated-to-waiting.component.mjs +1 -1
- package/esm2020/lib/{ge → shared}/confirmed-date-information/confirmed-date-information.component.mjs +1 -1
- package/esm2020/lib/{ge → shared}/contact/contact.component.mjs +1 -1
- package/esm2020/lib/{ge → shared}/contact-support/contact-support.component.mjs +1 -1
- package/esm2020/lib/shared/maintenance-list/maintenance-list.component.mjs +275 -0
- package/esm2020/lib/shared/shared-routing.module.mjs +18 -0
- package/esm2020/lib/shared/shared.module.mjs +141 -0
- package/esm2020/lib/{ge → shared}/show-links/show-links.component.mjs +1 -1
- package/esm2020/lib/{ge → shared}/system-list/system-list.component.mjs +1 -1
- package/esm2020/public-api.mjs +5 -5
- package/fesm2015/awf-test-lib.mjs +23 -25
- package/fesm2015/awf-test-lib.mjs.map +1 -1
- package/fesm2020/awf-test-lib.mjs +23 -25
- package/fesm2020/awf-test-lib.mjs.map +1 -1
- package/lib/{ge → shared}/choose-another-date/choose-another-date.component.d.ts +0 -0
- package/lib/{ge → shared}/confirm-dialog/confirm-dialog.component.d.ts +0 -0
- package/lib/{ge → shared}/confirm-dialog-validated-to-waiting/confirm-dialog-validated-to-waiting.component.d.ts +0 -0
- package/lib/{ge → shared}/confirmed-date-information/confirmed-date-information.component.d.ts +0 -0
- package/lib/{ge → shared}/contact/contact.component.d.ts +0 -0
- package/lib/{ge → shared}/contact-support/contact-support.component.d.ts +0 -0
- package/lib/{ge → shared}/maintenance-list/maintenance-list.component.d.ts +0 -0
- package/lib/shared/shared-routing.module.d.ts +7 -0
- package/lib/{ge/ge.module.d.ts → shared/shared.module.d.ts} +5 -5
- package/lib/{ge → shared}/show-links/show-links.component.d.ts +0 -0
- package/lib/{ge → shared}/system-list/system-list.component.d.ts +0 -0
- package/package.json +1 -1
- package/public-api.d.ts +4 -4
- package/esm2020/lib/ge/choose-another-date/choose-another-date.component.mjs +0 -107
- package/esm2020/lib/ge/ge-routing.module.mjs +0 -18
- package/esm2020/lib/ge/ge.module.mjs +0 -141
- package/esm2020/lib/ge/maintenance-list/maintenance-list.component.mjs +0 -277
- package/lib/ge/ge-routing.module.d.ts +0 -7
@@ -263,20 +263,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImpor
|
|
263
263
|
}]
|
264
264
|
}] });
|
265
265
|
|
266
|
-
const routes = [];
|
267
|
-
class GeRoutingModule {
|
268
|
-
}
|
269
|
-
GeRoutingModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: GeRoutingModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
270
|
-
GeRoutingModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.2.0", ngImport: i0, type: GeRoutingModule, imports: [i2.RouterModule], exports: [RouterModule] });
|
271
|
-
GeRoutingModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: GeRoutingModule, imports: [RouterModule.forChild(routes), RouterModule] });
|
272
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: GeRoutingModule, decorators: [{
|
273
|
-
type: NgModule,
|
274
|
-
args: [{
|
275
|
-
imports: [RouterModule.forChild(routes)],
|
276
|
-
exports: [RouterModule]
|
277
|
-
}]
|
278
|
-
}] });
|
279
|
-
|
280
266
|
class SubstringPipe {
|
281
267
|
transform(time, arg1, arg2) {
|
282
268
|
return time.substring(arg1, arg2);
|
@@ -890,7 +876,6 @@ class MaintenanceListComponent {
|
|
890
876
|
closeAnotherDate(event) {
|
891
877
|
this.displayAnotherDate = false;
|
892
878
|
if (event === false) {
|
893
|
-
//alert('getOtherDates');
|
894
879
|
this.alreadyScheduledMsg = false;
|
895
880
|
this.op.hide();
|
896
881
|
this.displayConfirmValidatedToWaiting = true;
|
@@ -952,7 +937,6 @@ class MaintenanceListComponent {
|
|
952
937
|
this.displayAnotherDate = false;
|
953
938
|
}
|
954
939
|
getAlternativeDates(pmJob) {
|
955
|
-
alert();
|
956
940
|
let pmJobReques = {};
|
957
941
|
pmJobReques.countrymodule = "France";
|
958
942
|
pmJobReques.pmJob = pmJob;
|
@@ -1038,10 +1022,24 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImpor
|
|
1038
1022
|
type: Input
|
1039
1023
|
}] } });
|
1040
1024
|
|
1041
|
-
|
1025
|
+
const routes = [];
|
1026
|
+
class SharedRoutingModule {
|
1027
|
+
}
|
1028
|
+
SharedRoutingModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: SharedRoutingModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
1029
|
+
SharedRoutingModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.2.0", ngImport: i0, type: SharedRoutingModule, imports: [i2.RouterModule], exports: [RouterModule] });
|
1030
|
+
SharedRoutingModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: SharedRoutingModule, imports: [RouterModule.forChild(routes), RouterModule] });
|
1031
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: SharedRoutingModule, decorators: [{
|
1032
|
+
type: NgModule,
|
1033
|
+
args: [{
|
1034
|
+
imports: [RouterModule.forChild(routes)],
|
1035
|
+
exports: [RouterModule]
|
1036
|
+
}]
|
1037
|
+
}] });
|
1038
|
+
|
1039
|
+
class SharedModule {
|
1042
1040
|
}
|
1043
|
-
|
1044
|
-
|
1041
|
+
SharedModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: SharedModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
1042
|
+
SharedModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.2.0", ngImport: i0, type: SharedModule, declarations: [SystemListComponent,
|
1045
1043
|
ContactComponent,
|
1046
1044
|
ChooseAnotherDateComponent,
|
1047
1045
|
ConfirmDialogComponent,
|
@@ -1050,7 +1048,7 @@ GeModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.2
|
|
1050
1048
|
ContactSupportComponent,
|
1051
1049
|
MaintenanceListComponent,
|
1052
1050
|
ShowLinksComponent], imports: [CommonModule,
|
1053
|
-
|
1051
|
+
SharedRoutingModule,
|
1054
1052
|
TableModule,
|
1055
1053
|
InputTextModule,
|
1056
1054
|
PipesModule,
|
@@ -1074,8 +1072,8 @@ GeModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.2
|
|
1074
1072
|
DropdownModule,
|
1075
1073
|
ButtonModule,
|
1076
1074
|
ToolbarModule], exports: [SystemListComponent, ContactComponent, MaintenanceListComponent] });
|
1077
|
-
|
1078
|
-
|
1075
|
+
SharedModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: SharedModule, imports: [CommonModule,
|
1076
|
+
SharedRoutingModule,
|
1079
1077
|
TableModule,
|
1080
1078
|
InputTextModule,
|
1081
1079
|
PipesModule,
|
@@ -1099,7 +1097,7 @@ GeModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.2
|
|
1099
1097
|
DropdownModule,
|
1100
1098
|
ButtonModule,
|
1101
1099
|
ToolbarModule] });
|
1102
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type:
|
1100
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: SharedModule, decorators: [{
|
1103
1101
|
type: NgModule,
|
1104
1102
|
args: [{
|
1105
1103
|
declarations: [
|
@@ -1115,7 +1113,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImpor
|
|
1115
1113
|
],
|
1116
1114
|
imports: [
|
1117
1115
|
CommonModule,
|
1118
|
-
|
1116
|
+
SharedRoutingModule,
|
1119
1117
|
TableModule,
|
1120
1118
|
InputTextModule,
|
1121
1119
|
PipesModule,
|
@@ -1257,5 +1255,5 @@ class Warranty {
|
|
1257
1255
|
* Generated bundle index. Do not edit.
|
1258
1256
|
*/
|
1259
1257
|
|
1260
|
-
export { Account, AlternativeDate, ApplicationName, CancelPMMailRequest, ContactComponent, ContactRequest, CoreModule, CustomObject, DetailedPmJob, EmailStatus, EmailType, EventStatus, Field,
|
1258
|
+
export { Account, AlternativeDate, ApplicationName, CancelPMMailRequest, ContactComponent, ContactRequest, CoreModule, CustomObject, DetailedPmJob, EmailStatus, EmailType, EventStatus, Field, Language, MailRequest, MaintenanceListComponent, MenuComponent, NotFoundComponent, PMGroupedJob, PipesModule, PmJob, PmJobRequest, PmJobStatus, ReportDateMailRequest, Role, Service, ServiceName, SharedModule, SocialLoginRequest, SocialMadia, SubrtringWPipe, SubstringPipe, System, SystemListComponent, TokenStatus, TopBarComponent, Warranty };
|
1261
1259
|
//# sourceMappingURL=awf-test-lib.mjs.map
|