ngx-techlify-core 18.47.0 → 18.48.1
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/esm2022/lib/form-configuration/form-configuration-field-form/form-configuration-field-form-routing.module.mjs +29 -0
- package/esm2022/lib/form-configuration/form-configuration-field-form/form-configuration-field-form.component.mjs +44 -0
- package/esm2022/lib/form-configuration/form-configuration-field-form/form-configuration-field-form.module.mjs +36 -0
- package/esm2022/lib/form-configuration/form-configuration-for-form/form-configuration-for-form.component.mjs +22 -0
- package/esm2022/lib/form-configuration/form-configuration-for-form/form-configuration-for-form.module.mjs +28 -0
- package/esm2022/lib/form-configuration/form-configuration-form-field.service.mjs +18 -0
- package/esm2022/lib/form-configuration/form-configuration-form.service.mjs +18 -0
- package/esm2022/lib/form-configuration/form-configuration-utility.service.mjs +29 -0
- package/esm2022/public-api.mjs +10 -1
- package/fesm2022/ngx-techlify-core.mjs +314 -135
- package/fesm2022/ngx-techlify-core.mjs.map +1 -1
- package/lib/form-configuration/form-configuration-field-form/form-configuration-field-form-routing.module.d.ts +7 -0
- package/lib/form-configuration/form-configuration-field-form/form-configuration-field-form.component.d.ts +18 -0
- package/lib/form-configuration/form-configuration-field-form/form-configuration-field-form.module.d.ts +12 -0
- package/lib/form-configuration/form-configuration-for-form/form-configuration-for-form.component.d.ts +10 -0
- package/lib/form-configuration/form-configuration-for-form/form-configuration-for-form.module.d.ts +10 -0
- package/lib/form-configuration/form-configuration-form-field.service.d.ts +8 -0
- package/lib/form-configuration/form-configuration-form.service.d.ts +8 -0
- package/lib/form-configuration/form-configuration-utility.service.d.ts +10 -0
- package/package.json +1 -1
- package/public-api.d.ts +8 -0
|
@@ -4779,7 +4779,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
4779
4779
|
args: [{ selector: 'user-view', template: "<div class=\"mat-typography m-4\" *ngIf=\"user\">\n <h1 class=\"text-center\">{{user.name}}</h1>\n\n <div class=\"border\">\n <mat-tab-group>\n <mat-tab label=\"Basic Information\">\n <ng-template matTabContent>\n <div class=\"row m-4\">\n <div class=\"col-4\">\n <div class=\"bordered-section\">\n <div class=\"row\" *ngIf=\"currentUser?.user_type_id != 3\">\n <button type=\"button\" mat-icon-button (click)=\"editUser(user)\">\n <mat-icon>edit</mat-icon>\n </button>\n <button mat-stroked-button color=\"warn\" *ngIf=\"!user.user_client?.is_enabled\"\n (click)=\"enableOrDisableUser('enable')\">\n Enable\n </button>\n <button mat-stroked-button color=\"primary\" *ngIf=\"user.user_client?.is_enabled\"\n (click)=\"enableOrDisableUser('disable')\">Disable</button>\n </div>\n\n <div class=\"row\">\n <label class=\"col-sm-4 control-label\">Name:</label>\n <div class=\"col-sm-8\">{{user?.name}}</div>\n </div>\n <div class=\"row\">\n <label class=\"col-sm-4 control-label\">Email:</label>\n <div class=\"col-sm-8\">{{user?.email}}</div>\n </div>\n <div class=\"row\">\n <label class=\"col-sm-4 control-label\">Type:</label>\n <div class=\"col-sm-8\">{{user?.type?.title}}</div>\n </div>\n <div class=\"row\">\n <label class=\"col-sm-4 control-label\">Status:</label>\n <div class=\"col-sm-8\">{{user?.user_client?.is_enabled ? 'Enabled' : 'Disabled' }}\n </div>\n </div>\n <div class=\"row\">\n <label class=\"col-sm-4 control-label\">Role:</label>\n <div class=\"col-sm-8\">\n <span *ngFor=\"let role of user?.roles\">\n <button class=\"btn btn-outline-dark btn-xs mb-2\">{{role?.label}}</button>\n \n </span>\n </div>\n </div>\n <div class=\"row\">\n <label class=\"col-sm-4 control-label\">Signature:</label>\n <div class=\"col-sm-8\">\n <span *ngIf=\"user?.signature\">\n <img src=\"{{user?.signature_url}}\" alt=\"\" width=\"250px\" />\n </span>\n <span *ngIf=\"!user?.signature\">\n No Signature Added\n </span>\n\n </div>\n </div>\n </div>\n </div>\n </div>\n </ng-template>\n </mat-tab>\n <mat-tab label=\"Login History\">\n <ng-template matTabContent>\n <app-login-history-for-user [userId]=\"user?.id\"></app-login-history-for-user>\n </ng-template>\n </mat-tab>\n <mat-tab label=\"Activity Logs\">\n <ng-template matTabContent>\n <app-audit-log-list objectType=\"User\" [objectId]=\"user?.id\" [showExportButtons]=\"false\">\n </app-audit-log-list>\n </ng-template>\n </mat-tab>\n <mat-tab label=\"Tenants\" *ngIf=\"currentUser?.user_type_id === UserTypeEnum.ADMIN\">\n <ng-template matTabContent>\n <app-user-clients-list [user]=\"user\"></app-user-clients-list>\n </ng-template>\n </mat-tab>\n <mat-tab label=\"Sessions\">\n <ng-template matTabContent>\n <app-user-sessions [user]=\"user\"></app-user-sessions>\n </ng-template>\n </mat-tab>\n </mat-tab-group>\n </div>\n\n</div>", styles: [".user-node .page-title{margin:20px 0 0}.user-node #information-tabs-wrapper .nav-pills .nav-link{border-radius:0;border:1px solid #007bff;border-right:none;width:190px}.user-node #information-tabs-wrapper .tab-content{padding:20px;border:1px solid #007bff;width:calc(100vw - 200px)}\n"] }]
|
|
4780
4780
|
}], ctorParameters: () => [{ type: UserService }, { type: i1$2.ActivatedRoute }, { type: ConfigService }, { type: HttpService }, { type: i1.MatDialog }, { type: CurrentUserService }] });
|
|
4781
4781
|
|
|
4782
|
-
const routes$
|
|
4782
|
+
const routes$J = [
|
|
4783
4783
|
{ path: '', component: UsersViewAllComponent, canActivate: [AuthenticationGuard] },
|
|
4784
4784
|
{ path: ':id', component: UserViewComponent, canActivate: [AuthenticationGuard] },
|
|
4785
4785
|
{ path: ':id/app-admin-view', loadChildren: () => Promise.resolve().then(function () { return appAdminUserView_module; }).then(mod => mod.AppAdminUserViewModule), canActivate: [AuthenticationGuard] },
|
|
@@ -4790,12 +4790,12 @@ const routes$I = [
|
|
|
4790
4790
|
class UserRoutingProvider {
|
|
4791
4791
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: UserRoutingProvider, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
4792
4792
|
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.14", ngImport: i0, type: UserRoutingProvider, imports: [i1$2.RouterModule], exports: [RouterModule] }); }
|
|
4793
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: UserRoutingProvider, imports: [RouterModule.forChild(routes$
|
|
4793
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: UserRoutingProvider, imports: [RouterModule.forChild(routes$J), RouterModule] }); }
|
|
4794
4794
|
}
|
|
4795
4795
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: UserRoutingProvider, decorators: [{
|
|
4796
4796
|
type: NgModule,
|
|
4797
4797
|
args: [{
|
|
4798
|
-
imports: [RouterModule.forChild(routes$
|
|
4798
|
+
imports: [RouterModule.forChild(routes$J)],
|
|
4799
4799
|
exports: [RouterModule]
|
|
4800
4800
|
}]
|
|
4801
4801
|
}] });
|
|
@@ -6191,16 +6191,16 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
6191
6191
|
}]
|
|
6192
6192
|
}] });
|
|
6193
6193
|
|
|
6194
|
-
const routes$
|
|
6194
|
+
const routes$I = [];
|
|
6195
6195
|
class TimelineFilterRoutingModule {
|
|
6196
6196
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: TimelineFilterRoutingModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
6197
6197
|
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.14", ngImport: i0, type: TimelineFilterRoutingModule, imports: [i1$2.RouterModule], exports: [RouterModule] }); }
|
|
6198
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: TimelineFilterRoutingModule, imports: [RouterModule.forChild(routes$
|
|
6198
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: TimelineFilterRoutingModule, imports: [RouterModule.forChild(routes$I), RouterModule] }); }
|
|
6199
6199
|
}
|
|
6200
6200
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: TimelineFilterRoutingModule, decorators: [{
|
|
6201
6201
|
type: NgModule,
|
|
6202
6202
|
args: [{
|
|
6203
|
-
imports: [RouterModule.forChild(routes$
|
|
6203
|
+
imports: [RouterModule.forChild(routes$I)],
|
|
6204
6204
|
exports: [RouterModule]
|
|
6205
6205
|
}]
|
|
6206
6206
|
}] });
|
|
@@ -6277,16 +6277,16 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
6277
6277
|
}]
|
|
6278
6278
|
}] });
|
|
6279
6279
|
|
|
6280
|
-
const routes$
|
|
6280
|
+
const routes$H = [];
|
|
6281
6281
|
class TechlifyNotificationRoutingModule {
|
|
6282
6282
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: TechlifyNotificationRoutingModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
6283
6283
|
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.14", ngImport: i0, type: TechlifyNotificationRoutingModule, imports: [i1$2.RouterModule], exports: [RouterModule] }); }
|
|
6284
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: TechlifyNotificationRoutingModule, imports: [RouterModule.forChild(routes$
|
|
6284
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: TechlifyNotificationRoutingModule, imports: [RouterModule.forChild(routes$H), RouterModule] }); }
|
|
6285
6285
|
}
|
|
6286
6286
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: TechlifyNotificationRoutingModule, decorators: [{
|
|
6287
6287
|
type: NgModule,
|
|
6288
6288
|
args: [{
|
|
6289
|
-
imports: [RouterModule.forChild(routes$
|
|
6289
|
+
imports: [RouterModule.forChild(routes$H)],
|
|
6290
6290
|
exports: [RouterModule]
|
|
6291
6291
|
}]
|
|
6292
6292
|
}] });
|
|
@@ -6378,7 +6378,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
6378
6378
|
args: [{ selector: 'app-techlify-notification-for-user', template: "<div fxLayout=\"column\" class=\"container my-4\">\n <div>\n <mat-card appearance=\"outlined\">\n <h3>My Notification Preferences</h3>\n </mat-card>\n <mat-progress-bar mode=\"indeterminate\" *ngIf=\"isWorking\"></mat-progress-bar>\n <mat-card appearance=\"outlined\" class=\"mt-4\">\n <mat-list fxLayout=\"column\">\n <mat-list-item fxLayout>\n <h5 fxFlex=\"33%\" class=\"p-1\">Notification</h5>\n <h5 fxFlex class=\"p-1\">Email</h5>\n <h5 fxFlex class=\"p-1\">Mobile</h5>\n <h5 fxFlex class=\"p-1\">In-App</h5>\n </mat-list-item>\n <ng-container *ngFor=\"let model of models|keyvalue\">\n <mat-list-item>\n <h5 class=\"p-1\">{{model?.key}}</h5>\n </mat-list-item>\n <mat-list-item *ngFor=\"let notificationType of model.value\" fxLayout=\"start center\">\n <div fxFlex=\"33%\" class=\"p-1\">\n <div>{{notificationType?.title}} </div>\n <div style=\"text-wrap: auto; line-height: normal;\">\n <small class=\"text-secondary\"> {{notificationType?.description}} </small>\n </div>\n </div>\n <div fxFlex class=\"p-1\">\n <mat-slide-toggle\n (change)=\"toggleSubscription(notificationType,'is_subscribed_email',$event)\"\n [checked]=\"notificationType?.is_subscribed_email\"\n [disabled]=\"(!notificationType.is_editable) || notificationType.isWorking || notificationType?.is_subscribed_email_default == null\">\n </mat-slide-toggle>\n </div>\n <div fxFlex class=\"p-1\">\n <mat-slide-toggle\n (change)=\"toggleSubscription(notificationType,'is_subscribed_mobile',$event)\"\n [checked]=\"notificationType?.is_subscribed_mobile\"\n [disabled]=\"(!notificationType.is_editable) || notificationType.isWorking || notificationType?.is_subscribed_mobile_default == null\">\n </mat-slide-toggle>\n </div>\n <div fxFlex class=\"p-1\">\n <mat-slide-toggle\n (change)=\"toggleSubscription(notificationType,'is_subscribed_in_app',$event)\"\n [checked]=\"notificationType?.is_subscribed_in_app\"\n [disabled]=\"(!notificationType.is_editable) || notificationType.isWorking || notificationType?.is_subscribed_in_app_default == null\">\n </mat-slide-toggle>\n </div>\n </mat-list-item>\n <mat-divider></mat-divider>\n </ng-container>\n </mat-list>\n </mat-card>\n </div>\n\n</div>", styles: [":host ::ng-deep .mdc-list-item.mdc-list-item--with-one-line{height:auto!important}\n"] }]
|
|
6379
6379
|
}], ctorParameters: () => [{ type: TechlifyNotificationTypeService }, { type: TechlifyNotificationSubscriptionService }] });
|
|
6380
6380
|
|
|
6381
|
-
const routes$
|
|
6381
|
+
const routes$G = [
|
|
6382
6382
|
{
|
|
6383
6383
|
path: '',
|
|
6384
6384
|
component: TechlifyNotificationForUserComponent,
|
|
@@ -6388,12 +6388,12 @@ const routes$F = [
|
|
|
6388
6388
|
class TechlifyNotificationForUserRoutingModule {
|
|
6389
6389
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: TechlifyNotificationForUserRoutingModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
6390
6390
|
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.14", ngImport: i0, type: TechlifyNotificationForUserRoutingModule, imports: [i1$2.RouterModule], exports: [RouterModule] }); }
|
|
6391
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: TechlifyNotificationForUserRoutingModule, imports: [RouterModule.forChild(routes$
|
|
6391
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: TechlifyNotificationForUserRoutingModule, imports: [RouterModule.forChild(routes$G), RouterModule] }); }
|
|
6392
6392
|
}
|
|
6393
6393
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: TechlifyNotificationForUserRoutingModule, decorators: [{
|
|
6394
6394
|
type: NgModule,
|
|
6395
6395
|
args: [{
|
|
6396
|
-
imports: [RouterModule.forChild(routes$
|
|
6396
|
+
imports: [RouterModule.forChild(routes$G)],
|
|
6397
6397
|
exports: [RouterModule]
|
|
6398
6398
|
}]
|
|
6399
6399
|
}] });
|
|
@@ -6432,16 +6432,16 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
6432
6432
|
* Public API Surface of techlify-notifications
|
|
6433
6433
|
*/
|
|
6434
6434
|
|
|
6435
|
-
const routes$
|
|
6435
|
+
const routes$F = [];
|
|
6436
6436
|
class EmailSubscriptionRoutingModule {
|
|
6437
6437
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: EmailSubscriptionRoutingModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
6438
6438
|
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.14", ngImport: i0, type: EmailSubscriptionRoutingModule, imports: [i1$2.RouterModule], exports: [RouterModule] }); }
|
|
6439
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: EmailSubscriptionRoutingModule, imports: [RouterModule.forChild(routes$
|
|
6439
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: EmailSubscriptionRoutingModule, imports: [RouterModule.forChild(routes$F), RouterModule] }); }
|
|
6440
6440
|
}
|
|
6441
6441
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: EmailSubscriptionRoutingModule, decorators: [{
|
|
6442
6442
|
type: NgModule,
|
|
6443
6443
|
args: [{
|
|
6444
|
-
imports: [RouterModule.forChild(routes$
|
|
6444
|
+
imports: [RouterModule.forChild(routes$F)],
|
|
6445
6445
|
exports: [RouterModule]
|
|
6446
6446
|
}]
|
|
6447
6447
|
}] });
|
|
@@ -6464,16 +6464,16 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
6464
6464
|
}]
|
|
6465
6465
|
}] });
|
|
6466
6466
|
|
|
6467
|
-
const routes$
|
|
6467
|
+
const routes$E = [];
|
|
6468
6468
|
class EmailSubscriptionUserRoutingModule {
|
|
6469
6469
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: EmailSubscriptionUserRoutingModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
6470
6470
|
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.14", ngImport: i0, type: EmailSubscriptionUserRoutingModule, imports: [i1$2.RouterModule], exports: [RouterModule] }); }
|
|
6471
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: EmailSubscriptionUserRoutingModule, imports: [RouterModule.forChild(routes$
|
|
6471
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: EmailSubscriptionUserRoutingModule, imports: [RouterModule.forChild(routes$E), RouterModule] }); }
|
|
6472
6472
|
}
|
|
6473
6473
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: EmailSubscriptionUserRoutingModule, decorators: [{
|
|
6474
6474
|
type: NgModule,
|
|
6475
6475
|
args: [{
|
|
6476
|
-
imports: [RouterModule.forChild(routes$
|
|
6476
|
+
imports: [RouterModule.forChild(routes$E)],
|
|
6477
6477
|
exports: [RouterModule]
|
|
6478
6478
|
}]
|
|
6479
6479
|
}] });
|
|
@@ -6496,16 +6496,16 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
6496
6496
|
}]
|
|
6497
6497
|
}] });
|
|
6498
6498
|
|
|
6499
|
-
const routes$
|
|
6499
|
+
const routes$D = [];
|
|
6500
6500
|
class EmailSubscriptionUserFormRoutingModule {
|
|
6501
6501
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: EmailSubscriptionUserFormRoutingModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
6502
6502
|
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.14", ngImport: i0, type: EmailSubscriptionUserFormRoutingModule, imports: [i1$2.RouterModule], exports: [RouterModule] }); }
|
|
6503
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: EmailSubscriptionUserFormRoutingModule, imports: [RouterModule.forChild(routes$
|
|
6503
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: EmailSubscriptionUserFormRoutingModule, imports: [RouterModule.forChild(routes$D), RouterModule] }); }
|
|
6504
6504
|
}
|
|
6505
6505
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: EmailSubscriptionUserFormRoutingModule, decorators: [{
|
|
6506
6506
|
type: NgModule,
|
|
6507
6507
|
args: [{
|
|
6508
|
-
imports: [RouterModule.forChild(routes$
|
|
6508
|
+
imports: [RouterModule.forChild(routes$D)],
|
|
6509
6509
|
exports: [RouterModule]
|
|
6510
6510
|
}]
|
|
6511
6511
|
}] });
|
|
@@ -6810,7 +6810,7 @@ const esulr = {
|
|
|
6810
6810
|
redirectTo: '/'
|
|
6811
6811
|
}
|
|
6812
6812
|
};
|
|
6813
|
-
const routes$
|
|
6813
|
+
const routes$C = [
|
|
6814
6814
|
{
|
|
6815
6815
|
path: '',
|
|
6816
6816
|
component: EmailSubscriptionUserListComponent,
|
|
@@ -6821,26 +6821,26 @@ const routes$B = [
|
|
|
6821
6821
|
class EmailSubscriptionUserListRoutingModule {
|
|
6822
6822
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: EmailSubscriptionUserListRoutingModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
6823
6823
|
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.14", ngImport: i0, type: EmailSubscriptionUserListRoutingModule, imports: [i1$2.RouterModule], exports: [RouterModule] }); }
|
|
6824
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: EmailSubscriptionUserListRoutingModule, imports: [RouterModule.forChild(routes$
|
|
6824
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: EmailSubscriptionUserListRoutingModule, imports: [RouterModule.forChild(routes$C), RouterModule] }); }
|
|
6825
6825
|
}
|
|
6826
6826
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: EmailSubscriptionUserListRoutingModule, decorators: [{
|
|
6827
6827
|
type: NgModule,
|
|
6828
6828
|
args: [{
|
|
6829
|
-
imports: [RouterModule.forChild(routes$
|
|
6829
|
+
imports: [RouterModule.forChild(routes$C)],
|
|
6830
6830
|
exports: [RouterModule]
|
|
6831
6831
|
}]
|
|
6832
6832
|
}] });
|
|
6833
6833
|
|
|
6834
|
-
const routes$
|
|
6834
|
+
const routes$B = [];
|
|
6835
6835
|
class EmailSubscriptionUserListFilterRoutingModule {
|
|
6836
6836
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: EmailSubscriptionUserListFilterRoutingModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
6837
6837
|
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.14", ngImport: i0, type: EmailSubscriptionUserListFilterRoutingModule, imports: [i1$2.RouterModule], exports: [RouterModule] }); }
|
|
6838
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: EmailSubscriptionUserListFilterRoutingModule, imports: [RouterModule.forChild(routes$
|
|
6838
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: EmailSubscriptionUserListFilterRoutingModule, imports: [RouterModule.forChild(routes$B), RouterModule] }); }
|
|
6839
6839
|
}
|
|
6840
6840
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: EmailSubscriptionUserListFilterRoutingModule, decorators: [{
|
|
6841
6841
|
type: NgModule,
|
|
6842
6842
|
args: [{
|
|
6843
|
-
imports: [RouterModule.forChild(routes$
|
|
6843
|
+
imports: [RouterModule.forChild(routes$B)],
|
|
6844
6844
|
exports: [RouterModule]
|
|
6845
6845
|
}]
|
|
6846
6846
|
}] });
|
|
@@ -6913,16 +6913,16 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
6913
6913
|
}]
|
|
6914
6914
|
}] });
|
|
6915
6915
|
|
|
6916
|
-
const routes$
|
|
6916
|
+
const routes$A = [];
|
|
6917
6917
|
class EmailSubscriptionTypeRoutingModule {
|
|
6918
6918
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: EmailSubscriptionTypeRoutingModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
6919
6919
|
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.14", ngImport: i0, type: EmailSubscriptionTypeRoutingModule, imports: [i1$2.RouterModule], exports: [RouterModule] }); }
|
|
6920
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: EmailSubscriptionTypeRoutingModule, imports: [RouterModule.forChild(routes$
|
|
6920
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: EmailSubscriptionTypeRoutingModule, imports: [RouterModule.forChild(routes$A), RouterModule] }); }
|
|
6921
6921
|
}
|
|
6922
6922
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: EmailSubscriptionTypeRoutingModule, decorators: [{
|
|
6923
6923
|
type: NgModule,
|
|
6924
6924
|
args: [{
|
|
6925
|
-
imports: [RouterModule.forChild(routes$
|
|
6925
|
+
imports: [RouterModule.forChild(routes$A)],
|
|
6926
6926
|
exports: [RouterModule]
|
|
6927
6927
|
}]
|
|
6928
6928
|
}] });
|
|
@@ -6945,16 +6945,16 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
6945
6945
|
}]
|
|
6946
6946
|
}] });
|
|
6947
6947
|
|
|
6948
|
-
const routes$
|
|
6948
|
+
const routes$z = [];
|
|
6949
6949
|
class EmailSubscriptionTypeFormRoutingModule {
|
|
6950
6950
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: EmailSubscriptionTypeFormRoutingModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
6951
6951
|
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.14", ngImport: i0, type: EmailSubscriptionTypeFormRoutingModule, imports: [i1$2.RouterModule], exports: [RouterModule] }); }
|
|
6952
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: EmailSubscriptionTypeFormRoutingModule, imports: [RouterModule.forChild(routes$
|
|
6952
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: EmailSubscriptionTypeFormRoutingModule, imports: [RouterModule.forChild(routes$z), RouterModule] }); }
|
|
6953
6953
|
}
|
|
6954
6954
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: EmailSubscriptionTypeFormRoutingModule, decorators: [{
|
|
6955
6955
|
type: NgModule,
|
|
6956
6956
|
args: [{
|
|
6957
|
-
imports: [RouterModule.forChild(routes$
|
|
6957
|
+
imports: [RouterModule.forChild(routes$z)],
|
|
6958
6958
|
exports: [RouterModule]
|
|
6959
6959
|
}]
|
|
6960
6960
|
}] });
|
|
@@ -7222,7 +7222,7 @@ const estlr = {
|
|
|
7222
7222
|
redirectTo: '/'
|
|
7223
7223
|
}
|
|
7224
7224
|
};
|
|
7225
|
-
const routes$
|
|
7225
|
+
const routes$y = [
|
|
7226
7226
|
{
|
|
7227
7227
|
path: '',
|
|
7228
7228
|
component: EmailSubscriptionTypeListComponent,
|
|
@@ -7233,12 +7233,12 @@ const routes$x = [
|
|
|
7233
7233
|
class EmailSubscriptionTypeListRoutingModule {
|
|
7234
7234
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: EmailSubscriptionTypeListRoutingModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
7235
7235
|
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.14", ngImport: i0, type: EmailSubscriptionTypeListRoutingModule, imports: [i1$2.RouterModule], exports: [RouterModule] }); }
|
|
7236
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: EmailSubscriptionTypeListRoutingModule, imports: [RouterModule.forChild(routes$
|
|
7236
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: EmailSubscriptionTypeListRoutingModule, imports: [RouterModule.forChild(routes$y), RouterModule] }); }
|
|
7237
7237
|
}
|
|
7238
7238
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: EmailSubscriptionTypeListRoutingModule, decorators: [{
|
|
7239
7239
|
type: NgModule,
|
|
7240
7240
|
args: [{
|
|
7241
|
-
imports: [RouterModule.forChild(routes$
|
|
7241
|
+
imports: [RouterModule.forChild(routes$y)],
|
|
7242
7242
|
exports: [RouterModule]
|
|
7243
7243
|
}]
|
|
7244
7244
|
}] });
|
|
@@ -7344,7 +7344,7 @@ const esfur = {
|
|
|
7344
7344
|
only: ['client_admin']
|
|
7345
7345
|
}
|
|
7346
7346
|
};
|
|
7347
|
-
const routes$
|
|
7347
|
+
const routes$x = [
|
|
7348
7348
|
{
|
|
7349
7349
|
path: '',
|
|
7350
7350
|
component: EmailSubscriptionForUserComponent,
|
|
@@ -7355,12 +7355,12 @@ const routes$w = [
|
|
|
7355
7355
|
class EmailSubscriptionForUserRoutingModule {
|
|
7356
7356
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: EmailSubscriptionForUserRoutingModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
7357
7357
|
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.14", ngImport: i0, type: EmailSubscriptionForUserRoutingModule, imports: [i1$2.RouterModule], exports: [RouterModule] }); }
|
|
7358
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: EmailSubscriptionForUserRoutingModule, imports: [RouterModule.forChild(routes$
|
|
7358
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: EmailSubscriptionForUserRoutingModule, imports: [RouterModule.forChild(routes$x), RouterModule] }); }
|
|
7359
7359
|
}
|
|
7360
7360
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: EmailSubscriptionForUserRoutingModule, decorators: [{
|
|
7361
7361
|
type: NgModule,
|
|
7362
7362
|
args: [{
|
|
7363
|
-
imports: [RouterModule.forChild(routes$
|
|
7363
|
+
imports: [RouterModule.forChild(routes$x)],
|
|
7364
7364
|
exports: [RouterModule]
|
|
7365
7365
|
}]
|
|
7366
7366
|
}] });
|
|
@@ -7697,7 +7697,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
7697
7697
|
args: [{ selector: 'app-techlify-updates-list', template: "<section class=\"p-4\" fxLayout=\"column\">\n <h3 class=\"primary-color text-center\">\n App Updates\n <button mat-raised-button (click)=\"modifyTechlifyUpdate()\" class=\"primary-bg text-white\">\n <mat-icon>\n add\n </mat-icon>\n Create\n </button>\n </h3>\n <form [formGroup]=\"filterFormGroup\" fxLayout=\"row wrap\" fxLayoutGap=\"0.5rem\" fxFlex=\"100%\" style=\"font-size: 12px;\">\n <mat-form-field fxFlex=\"0 1 calc(100% - 0.5rem)\" fxFlex.gt-md=\"0 1 calc(15% - 0.5rem)\" appearance=\"outline\"\n fxFlex.gt-sm=\"0 1 calc(20% - 0.5rem)\">\n <input type=\"text\" matInput formControlName=\"search\" placeholder=\"Title\" autocomplete=\"off\" />\n <button *ngIf=\"filterFormGroup.get('search').value\" matSuffix mat-icon-button (click)=\"resetFieldValue('search')\">\n <mat-icon>close</mat-icon>\n </button>\n </mat-form-field>\n <mat-form-field fxFlex=\"0 1 calc(100% - 0.5rem)\" fxFlex.gt-md=\"0 1 calc(15% - 0.5rem)\" appearance=\"outline\"\n fxFlex.gt-sm=\"0 1 calc(20% - 0.5rem)\">\n <input type=\"text\" matInput formControlName=\"version\" placeholder=\"Version\" autocomplete=\"off\" />\n <button *ngIf=\"filterFormGroup.get('version').value\" matSuffix mat-icon-button\n (click)=\"resetFieldValue('version')\">\n <mat-icon>close</mat-icon>\n </button>\n </mat-form-field>\n </form>\n\n <table mat-table [dataSource]=\"techlifyUpdates\" class=\"mat-elevation-z8 w-100\" matSort multiTemplateDataRows\n (matSortChange)=\"sortColumn($event)\" infiniteScroll [infiniteScrollDistance]=\"2\" [infiniteScrollThrottle]=\"50\"\n (scrolled)=\"onScroll()\">\n\n <!-- Index Column -->\n <ng-container matColumnDef=\"index\">\n <th mat-header-cell *matHeaderCellDef> # </th>\n <td mat-cell *matCellDef=\"let element;let i=dataIndex\"> {{ i+1 }} </td>\n </ng-container>\n\n <!-- Title Column -->\n <ng-container matColumnDef=\"title\">\n <th mat-header-cell *matHeaderCellDef mat-sort-header disableClear> Title </th>\n <td mat-cell *matCellDef=\"let element\"> {{element?.title}} </td>\n </ng-container>\n\n <!--Is Pinned Column-->\n <ng-container matColumnDef=\"is_pinned\">\n <th mat-header-cell *matHeaderCellDef mat-sort-header disableClear> Is Pinned </th>\n <td mat-cell *matCellDef=\"let element\"> {{element?.is_pinned ? 'Yes' : 'No'}} </td>\n </ng-container>\n\n\n <!-- Version Column -->\n <ng-container matColumnDef=\"version\">\n <th mat-header-cell *matHeaderCellDef mat-sort-header disableClear> Version </th>\n <td mat-cell *matCellDef=\"let element\"> {{element?.version}} </td>\n </ng-container>\n\n <!-- Released On Column -->\n <ng-container matColumnDef=\"released_on\">\n <th mat-header-cell *matHeaderCellDef mat-sort-header disableClear> Released On </th>\n <td mat-cell *matCellDef=\"let element\"> {{element?.released_on | date:'mediumDate'}} </td>\n </ng-container>\n\n <!-- Learn More Link Column -->\n <ng-container matColumnDef=\"learn_more_link\">\n <th mat-header-cell *matHeaderCellDef> Learn more link </th>\n <td mat-cell *matCellDef=\"let element\">\n <a [href]=\"element?.learn_more_link\" target=\"_blank\">\n {{element?.learn_more_link}}\n </a>\n </td>\n </ng-container>\n\n <!-- Description Column -->\n <ng-container matColumnDef=\"description\">\n <th mat-header-cell *matHeaderCellDef> Description </th>\n <td mat-cell *matCellDef=\"let element\">\n <app-read-more [text]=\"element?.description\" [maxLength]=\"50\"></app-read-more>\n </td>\n </ng-container>\n\n <!-- Creator Column -->\n <ng-container matColumnDef=\"creator\">\n <th mat-header-cell *matHeaderCellDef> Creator </th>\n <td mat-cell *matCellDef=\"let element\">\n {{element?.creator?.name}}\n <div fxLayout class=\"small\">\n {{element?.created_at | date : 'mediumDate'}}\n </div>\n </td>\n </ng-container>\n\n <!-- Actions Column -->\n <ng-container matColumnDef=\"actions\">\n <th mat-header-cell *matHeaderCellDef> Actions </th>\n <td mat-cell *matCellDef=\"let element\" class=\"secondary-color\">\n <button type=\"button\" class=\"secondary-color\" mat-icon-button (click)=\"modifyTechlifyUpdate(element)\">\n <mat-icon>edit</mat-icon>\n </button>\n\n <button type=\"button\" class=\"secondary-color\" mat-icon-button (click)=\"deleteTechlifyUpdate(element)\">\n <mat-icon>delete</mat-icon>\n </button>\n </td>\n </ng-container>\n\n <tr mat-header-row *matHeaderRowDef=\"displayedColumns\"></tr>\n <tr mat-row *matRowDef=\"let row; columns: displayedColumns;\"></tr>\n </table>\n</section>" }]
|
|
7698
7698
|
}], ctorParameters: () => [{ type: i1.MatDialog }, { type: AlertService }, { type: TechlifyUpdateService }, { type: i1$5.UntypedFormBuilder }] });
|
|
7699
7699
|
|
|
7700
|
-
const routes$
|
|
7700
|
+
const routes$w = [
|
|
7701
7701
|
{ path: '', redirectTo: 'all', pathMatch: 'full' },
|
|
7702
7702
|
{ path: 'all', component: TechlifyUpdatesListComponent },
|
|
7703
7703
|
//fallback
|
|
@@ -7710,12 +7710,12 @@ const routes$v = [
|
|
|
7710
7710
|
class TechlifyUpdateRoutingModule {
|
|
7711
7711
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: TechlifyUpdateRoutingModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
7712
7712
|
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.14", ngImport: i0, type: TechlifyUpdateRoutingModule, imports: [i1$2.RouterModule], exports: [RouterModule] }); }
|
|
7713
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: TechlifyUpdateRoutingModule, imports: [RouterModule.forChild(routes$
|
|
7713
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: TechlifyUpdateRoutingModule, imports: [RouterModule.forChild(routes$w), RouterModule] }); }
|
|
7714
7714
|
}
|
|
7715
7715
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: TechlifyUpdateRoutingModule, decorators: [{
|
|
7716
7716
|
type: NgModule,
|
|
7717
7717
|
args: [{
|
|
7718
|
-
imports: [RouterModule.forChild(routes$
|
|
7718
|
+
imports: [RouterModule.forChild(routes$w)],
|
|
7719
7719
|
exports: [RouterModule]
|
|
7720
7720
|
}]
|
|
7721
7721
|
}] });
|
|
@@ -7909,7 +7909,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
7909
7909
|
args: [{ selector: 'app-techlify-update-history', template: "<section class=\"p-4\" fxLayout=\"column\">\n <h3 class=\"primary-color text-center\">\n App Updates\n </h3>\n <form [formGroup]=\"filterFormGroup\" fxLayout=\"row wrap\" fxLayoutGap=\"0.5rem\" fxFlex=\"100%\" style=\"font-size: 12px;\">\n <mat-form-field fxFlex=\"0 1 calc(100% - 0.5rem)\" fxFlex.gt-md=\"0 1 calc(15% - 0.5rem)\" appearance=\"outline\"\n fxFlex.gt-sm=\"0 1 calc(20% - 0.5rem)\">\n <input type=\"text\" matInput formControlName=\"search\" placeholder=\"Title\" autocomplete=\"off\" />\n <button *ngIf=\"filterFormGroup.get('search').value\" matSuffix mat-icon-button (click)=\"resetFieldValue('search')\">\n <mat-icon>close</mat-icon>\n </button>\n </mat-form-field>\n <mat-form-field fxFlex=\"0 1 calc(100% - 0.5rem)\" fxFlex.gt-md=\"0 1 calc(15% - 0.5rem)\" appearance=\"outline\"\n fxFlex.gt-sm=\"0 1 calc(20% - 0.5rem)\">\n <input type=\"text\" matInput formControlName=\"version\" placeholder=\"Version\" autocomplete=\"off\" />\n <button *ngIf=\"filterFormGroup.get('version').value\" matSuffix mat-icon-button\n (click)=\"resetFieldValue('version')\">\n <mat-icon>close</mat-icon>\n </button>\n </mat-form-field>\n </form>\n\n <table mat-table [dataSource]=\"techlifyUpdates\" class=\"mat-elevation-z8 w-100\" matSort multiTemplateDataRows\n (matSortChange)=\"sortColumn($event)\" infiniteScroll [infiniteScrollDistance]=\"2\" [infiniteScrollThrottle]=\"50\"\n (scrolled)=\"onScroll()\">\n\n <!-- Index Column -->\n <ng-container matColumnDef=\"index\">\n <th mat-header-cell *matHeaderCellDef> # </th>\n <td mat-cell *matCellDef=\"let element;let i=dataIndex\"> {{ i+1 }} </td>\n </ng-container>\n\n <!-- Course Column -->\n <ng-container matColumnDef=\"title\">\n <th mat-header-cell *matHeaderCellDef mat-sort-header disableClear> Title </th>\n <td mat-cell *matCellDef=\"let element\"> {{element?.title}} </td>\n </ng-container>\n\n <!--Is Pinned Column-->\n <ng-container matColumnDef=\"is_pinned\">\n <th mat-header-cell *matHeaderCellDef mat-sort-header disableClear> Is Pinned </th>\n <td mat-cell *matCellDef=\"let element\"> {{element?.is_pinned ? 'Yes' : 'No'}} </td>\n </ng-container>\n\n <!-- Version Column -->\n <ng-container matColumnDef=\"version\">\n <th mat-header-cell *matHeaderCellDef mat-sort-header disableClear> Version </th>\n <td mat-cell *matCellDef=\"let element\"> {{element?.version}} </td>\n </ng-container>\n\n <!-- Released On Column -->\n <ng-container matColumnDef=\"released_on\">\n <th mat-header-cell *matHeaderCellDef mat-sort-header disableClear> Released On </th>\n <td mat-cell *matCellDef=\"let element\"> {{element?.released_on | date:'mediumDate'}} </td>\n </ng-container>\n\n <!-- Learn More Link Column -->\n <ng-container matColumnDef=\"learn_more_link\">\n <th mat-header-cell *matHeaderCellDef> Learn more link </th>\n <td mat-cell *matCellDef=\"let element\">\n <a [href]=\"element?.learn_more_link\" target=\"_blank\">\n {{element?.learn_more_link}}\n </a>\n </td>\n </ng-container>\n\n <!-- Description Column -->\n <ng-container matColumnDef=\"description\">\n <th mat-header-cell *matHeaderCellDef> Description </th>\n <td mat-cell *matCellDef=\"let element\">\n <app-read-more [text]=\"element?.description\" [maxLength]=\"50\"></app-read-more>\n </td>\n </ng-container>\n\n <!-- Creator Column -->\n <ng-container matColumnDef=\"creator\">\n <th mat-header-cell *matHeaderCellDef> Creator </th>\n <td mat-cell *matCellDef=\"let element\">\n {{element?.creator?.name}}\n <div fxLayout class=\"small\">\n {{element?.created_at | date : 'mediumDate'}}\n </div>\n </td>\n </ng-container>\n\n <!-- Actions Column -->\n <ng-container matColumnDef=\"actions\">\n <th mat-header-cell *matHeaderCellDef> Actions </th>\n <td mat-cell *matCellDef=\"let element\" class=\"secondary-color\">\n <button type=\"button\" class=\"secondary-color\" mat-icon-button (click)=\"openUpdateView(element)\">\n <mat-icon>remove_red_eye</mat-icon>\n </button>\n </td>\n </ng-container>\n\n <tr mat-header-row *matHeaderRowDef=\"displayedColumns\"></tr>\n <tr mat-row *matRowDef=\"let row; columns: displayedColumns;\"></tr>\n </table>\n</section>" }]
|
|
7910
7910
|
}], ctorParameters: () => [{ type: i1.MatDialog }, { type: TechlifyUpdateService }, { type: i1$5.UntypedFormBuilder }, { type: AlertService }] });
|
|
7911
7911
|
|
|
7912
|
-
const routes$
|
|
7912
|
+
const routes$v = [
|
|
7913
7913
|
{ path: '', redirectTo: 'update-history', pathMatch: 'full' },
|
|
7914
7914
|
{ path: 'update-history', component: TechlifyUpdateHistoryComponent },
|
|
7915
7915
|
//fallback
|
|
@@ -7922,12 +7922,12 @@ const routes$u = [
|
|
|
7922
7922
|
class TechlifyUpdateHistoryRoutingModule {
|
|
7923
7923
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: TechlifyUpdateHistoryRoutingModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
7924
7924
|
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.14", ngImport: i0, type: TechlifyUpdateHistoryRoutingModule, imports: [i1$2.RouterModule], exports: [RouterModule] }); }
|
|
7925
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: TechlifyUpdateHistoryRoutingModule, imports: [RouterModule.forChild(routes$
|
|
7925
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: TechlifyUpdateHistoryRoutingModule, imports: [RouterModule.forChild(routes$v), RouterModule] }); }
|
|
7926
7926
|
}
|
|
7927
7927
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: TechlifyUpdateHistoryRoutingModule, decorators: [{
|
|
7928
7928
|
type: NgModule,
|
|
7929
7929
|
args: [{
|
|
7930
|
-
imports: [RouterModule.forChild(routes$
|
|
7930
|
+
imports: [RouterModule.forChild(routes$v)],
|
|
7931
7931
|
exports: [RouterModule]
|
|
7932
7932
|
}]
|
|
7933
7933
|
}] });
|
|
@@ -8352,30 +8352,30 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
8352
8352
|
type: Input
|
|
8353
8353
|
}] } });
|
|
8354
8354
|
|
|
8355
|
-
const routes$
|
|
8355
|
+
const routes$u = [];
|
|
8356
8356
|
class AuditLogForModelRoutingModule {
|
|
8357
8357
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: AuditLogForModelRoutingModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
8358
8358
|
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.14", ngImport: i0, type: AuditLogForModelRoutingModule, imports: [i1$2.RouterModule], exports: [RouterModule] }); }
|
|
8359
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: AuditLogForModelRoutingModule, imports: [RouterModule.forChild(routes$
|
|
8359
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: AuditLogForModelRoutingModule, imports: [RouterModule.forChild(routes$u), RouterModule] }); }
|
|
8360
8360
|
}
|
|
8361
8361
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: AuditLogForModelRoutingModule, decorators: [{
|
|
8362
8362
|
type: NgModule,
|
|
8363
8363
|
args: [{
|
|
8364
|
-
imports: [RouterModule.forChild(routes$
|
|
8364
|
+
imports: [RouterModule.forChild(routes$u)],
|
|
8365
8365
|
exports: [RouterModule]
|
|
8366
8366
|
}]
|
|
8367
8367
|
}] });
|
|
8368
8368
|
|
|
8369
|
-
const routes$
|
|
8369
|
+
const routes$t = [];
|
|
8370
8370
|
class AuditLogViewModelRoutingModule {
|
|
8371
8371
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: AuditLogViewModelRoutingModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
8372
8372
|
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.14", ngImport: i0, type: AuditLogViewModelRoutingModule, imports: [i1$2.RouterModule], exports: [RouterModule] }); }
|
|
8373
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: AuditLogViewModelRoutingModule, imports: [RouterModule.forChild(routes$
|
|
8373
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: AuditLogViewModelRoutingModule, imports: [RouterModule.forChild(routes$t), RouterModule] }); }
|
|
8374
8374
|
}
|
|
8375
8375
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: AuditLogViewModelRoutingModule, decorators: [{
|
|
8376
8376
|
type: NgModule,
|
|
8377
8377
|
args: [{
|
|
8378
|
-
imports: [RouterModule.forChild(routes$
|
|
8378
|
+
imports: [RouterModule.forChild(routes$t)],
|
|
8379
8379
|
exports: [RouterModule]
|
|
8380
8380
|
}]
|
|
8381
8381
|
}] });
|
|
@@ -8405,44 +8405,44 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
8405
8405
|
}]
|
|
8406
8406
|
}] });
|
|
8407
8407
|
|
|
8408
|
-
const routes$
|
|
8408
|
+
const routes$s = [];
|
|
8409
8409
|
class AuditLogsViewModelRoutingModule {
|
|
8410
8410
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: AuditLogsViewModelRoutingModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
8411
8411
|
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.14", ngImport: i0, type: AuditLogsViewModelRoutingModule, imports: [i1$2.RouterModule], exports: [RouterModule] }); }
|
|
8412
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: AuditLogsViewModelRoutingModule, imports: [RouterModule.forChild(routes$
|
|
8412
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: AuditLogsViewModelRoutingModule, imports: [RouterModule.forChild(routes$s), RouterModule] }); }
|
|
8413
8413
|
}
|
|
8414
8414
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: AuditLogsViewModelRoutingModule, decorators: [{
|
|
8415
8415
|
type: NgModule,
|
|
8416
8416
|
args: [{
|
|
8417
|
-
imports: [RouterModule.forChild(routes$
|
|
8417
|
+
imports: [RouterModule.forChild(routes$s)],
|
|
8418
8418
|
exports: [RouterModule]
|
|
8419
8419
|
}]
|
|
8420
8420
|
}] });
|
|
8421
8421
|
|
|
8422
|
-
const routes$
|
|
8422
|
+
const routes$r = [];
|
|
8423
8423
|
class AuditLogListRoutingModule {
|
|
8424
8424
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: AuditLogListRoutingModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
8425
8425
|
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.14", ngImport: i0, type: AuditLogListRoutingModule, imports: [i1$2.RouterModule], exports: [RouterModule] }); }
|
|
8426
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: AuditLogListRoutingModule, imports: [RouterModule.forChild(routes$
|
|
8426
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: AuditLogListRoutingModule, imports: [RouterModule.forChild(routes$r), RouterModule] }); }
|
|
8427
8427
|
}
|
|
8428
8428
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: AuditLogListRoutingModule, decorators: [{
|
|
8429
8429
|
type: NgModule,
|
|
8430
8430
|
args: [{
|
|
8431
|
-
imports: [RouterModule.forChild(routes$
|
|
8431
|
+
imports: [RouterModule.forChild(routes$r)],
|
|
8432
8432
|
exports: [RouterModule]
|
|
8433
8433
|
}]
|
|
8434
8434
|
}] });
|
|
8435
8435
|
|
|
8436
|
-
const routes$
|
|
8436
|
+
const routes$q = [];
|
|
8437
8437
|
class AuditLogListFilterRoutingModule {
|
|
8438
8438
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: AuditLogListFilterRoutingModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
8439
8439
|
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.14", ngImport: i0, type: AuditLogListFilterRoutingModule, imports: [i1$2.RouterModule], exports: [RouterModule] }); }
|
|
8440
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: AuditLogListFilterRoutingModule, imports: [RouterModule.forChild(routes$
|
|
8440
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: AuditLogListFilterRoutingModule, imports: [RouterModule.forChild(routes$q), RouterModule] }); }
|
|
8441
8441
|
}
|
|
8442
8442
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: AuditLogListFilterRoutingModule, decorators: [{
|
|
8443
8443
|
type: NgModule,
|
|
8444
8444
|
args: [{
|
|
8445
|
-
imports: [RouterModule.forChild(routes$
|
|
8445
|
+
imports: [RouterModule.forChild(routes$q)],
|
|
8446
8446
|
exports: [RouterModule]
|
|
8447
8447
|
}]
|
|
8448
8448
|
}] });
|
|
@@ -8623,16 +8623,16 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
8623
8623
|
args: [{ selector: 'app-audit-log-view', template: "<div fxLayout=\"column\" class=\"m-4\" fxLayoutGap=\"1.5rem\">\n <h3 class=\"text-center\">Audit Log</h3>\n <div fxLayout=\"column\" fxLayoutGap=\"0.5rem\" *ngIf=\"logInfo\">\n <div>Object Type: {{logInfo?.object_type}}</div>\n <div>Object Id: {{logInfo?.object_id}}</div>\n <div>Action: {{logInfo?.action}}</div>\n <div>Created At: {{logInfo?.created_at | date:'medium'}}</div>\n <div>Created By: {{logInfo?.user?.email}}</div>\n </div>\n\n\n <div fxLayout=\"column\" *ngIf=\"logInfo?.action !== 'deleted'\">\n <div>\n <button mat-raised-button color=\"primary\" (click)=\"showDeltaChanges = !showDeltaChanges\">\n {{showDeltaChanges?'Hide JSON Changes': 'Show JSON Changes'}}\n </button>\n </div>\n <div [hidden]=\"!showDeltaChanges\">\n <h4 class=\"font-weight-bold\" *ngIf=\"logInfo\">Changes in JSON</h4>\n <div id=\"jsondiff\"></div>\n </div>\n </div>\n\n <div class=\"container\" *ngIf=\"changeList.length > 0\">\n <h4 class=\"font-weight-bold\"> Changes in Attributes</h4>\n <table class=\"table table-striped table-sm border\">\n <thead>\n <tr>\n <th scope=\"col\">#</th>\n <th scope=\"col\">Attribute</th>\n <th scope=\"col\">Old Value</th>\n <th scope=\"col\">New Value</th>\n </tr>\n </thead>\n <tbody>\n <tr *ngFor=\"let change of changeList; let i= index;\">\n <th scope=\"row\">{{i+1}}</th>\n <td>{{change?.displayAttribute}}</td>\n <td>{{change?.oldValue}}</td>\n <td>{{change?.newValue}}</td>\n </tr>\n </tbody>\n </table>\n\n </div>\n</div>" }]
|
|
8624
8624
|
}], ctorParameters: () => [{ type: DataManager }, { type: i1$2.ActivatedRoute }, { type: i2$1.Location }] });
|
|
8625
8625
|
|
|
8626
|
-
const routes$
|
|
8626
|
+
const routes$p = [];
|
|
8627
8627
|
class AuditLogViewRoutingModule {
|
|
8628
8628
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: AuditLogViewRoutingModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
8629
8629
|
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.14", ngImport: i0, type: AuditLogViewRoutingModule, imports: [i1$2.RouterModule], exports: [RouterModule] }); }
|
|
8630
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: AuditLogViewRoutingModule, imports: [RouterModule.forChild(routes$
|
|
8630
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: AuditLogViewRoutingModule, imports: [RouterModule.forChild(routes$p), RouterModule] }); }
|
|
8631
8631
|
}
|
|
8632
8632
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: AuditLogViewRoutingModule, decorators: [{
|
|
8633
8633
|
type: NgModule,
|
|
8634
8634
|
args: [{
|
|
8635
|
-
imports: [RouterModule.forChild(routes$
|
|
8635
|
+
imports: [RouterModule.forChild(routes$p)],
|
|
8636
8636
|
exports: [RouterModule]
|
|
8637
8637
|
}]
|
|
8638
8638
|
}] });
|
|
@@ -8662,7 +8662,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
8662
8662
|
}]
|
|
8663
8663
|
}] });
|
|
8664
8664
|
|
|
8665
|
-
const routes$
|
|
8665
|
+
const routes$o = [
|
|
8666
8666
|
{ path: 'log-list', component: AuditLogListComponent, canActivate: [AuthenticationGuard] },
|
|
8667
8667
|
{ path: 'log-view/:id', component: AuditLogViewComponent, canActivate: [AuthenticationGuard] },
|
|
8668
8668
|
{ path: '**', redirectTo: 'log-list', pathMatch: 'full' }
|
|
@@ -8670,12 +8670,12 @@ const routes$n = [
|
|
|
8670
8670
|
class AuditLogRoutingModule {
|
|
8671
8671
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: AuditLogRoutingModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
8672
8672
|
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.14", ngImport: i0, type: AuditLogRoutingModule, imports: [i1$2.RouterModule], exports: [RouterModule] }); }
|
|
8673
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: AuditLogRoutingModule, imports: [RouterModule.forChild(routes$
|
|
8673
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: AuditLogRoutingModule, imports: [RouterModule.forChild(routes$o), RouterModule] }); }
|
|
8674
8674
|
}
|
|
8675
8675
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: AuditLogRoutingModule, decorators: [{
|
|
8676
8676
|
type: NgModule,
|
|
8677
8677
|
args: [{
|
|
8678
|
-
imports: [RouterModule.forChild(routes$
|
|
8678
|
+
imports: [RouterModule.forChild(routes$o)],
|
|
8679
8679
|
exports: [RouterModule]
|
|
8680
8680
|
}]
|
|
8681
8681
|
}] });
|
|
@@ -9219,7 +9219,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
9219
9219
|
}]
|
|
9220
9220
|
}] });
|
|
9221
9221
|
|
|
9222
|
-
const routes$
|
|
9222
|
+
const routes$n = [
|
|
9223
9223
|
{
|
|
9224
9224
|
path: '',
|
|
9225
9225
|
component: LoginHistoryForUserComponent,
|
|
@@ -9229,12 +9229,12 @@ const routes$m = [
|
|
|
9229
9229
|
class LoginHistoryForUserRoutingModule {
|
|
9230
9230
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: LoginHistoryForUserRoutingModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
9231
9231
|
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.14", ngImport: i0, type: LoginHistoryForUserRoutingModule, imports: [i1$2.RouterModule], exports: [RouterModule] }); }
|
|
9232
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: LoginHistoryForUserRoutingModule, imports: [RouterModule.forChild(routes$
|
|
9232
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: LoginHistoryForUserRoutingModule, imports: [RouterModule.forChild(routes$n), RouterModule] }); }
|
|
9233
9233
|
}
|
|
9234
9234
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: LoginHistoryForUserRoutingModule, decorators: [{
|
|
9235
9235
|
type: NgModule,
|
|
9236
9236
|
args: [{
|
|
9237
|
-
imports: [RouterModule.forChild(routes$
|
|
9237
|
+
imports: [RouterModule.forChild(routes$n)],
|
|
9238
9238
|
exports: [RouterModule]
|
|
9239
9239
|
}]
|
|
9240
9240
|
}] });
|
|
@@ -9656,14 +9656,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
9656
9656
|
args: [{ selector: 'app-techlify-listing-feature', template: "<div fxLayout=\"column\" fxLayoutGap=\"3rem\" class=\"p-3\">\n <div fxLayout=\"column\" fxLayoutAlign=\"center center\" class=\"primary-color mt-3\">\n <h3>Features Configuration</h3>\n <mat-hint>\n <i> Here you can specify which optional features you'd like to have available to your team </i>\n </mat-hint>\n </div>\n\n\n <div>\n <mat-card>\n <mat-card-content fxlayout=\"column\" style=\"overflow: auto; height: 700px\" class=\"classifications-card\">\n <table mat-table [dataSource]=\"features\" class=\"mat-elevation-z8 w-100\" matSort multiTemplateDataRows\n (matSortChange)=\"sortColumn($event)\" infiniteScroll [infiniteScrollDistance]=\"2\" [infiniteScrollThrottle]=\"50\"\n (scrolled)=\"onScroll()\" [fromRoot]=\"true\" [infiniteScrollContainer]=\"'.classifications-card'\">\n <!-- Index Column -->\n <ng-container matColumnDef=\"index\">\n <th mat-header-cell *matHeaderCellDef>#</th>\n <td mat-cell *matCellDef=\"let element; let i = dataIndex\">\n {{ i + 1 }}\n </td>\n </ng-container>\n\n <!-- Title Column -->\n <ng-container matColumnDef=\"feature\">\n <th mat-header-cell *matHeaderCellDef mat-sort-header disableClear>\n Feature\n </th>\n <td mat-cell *matCellDef=\"let element\">{{ element?.title }}</td>\n </ng-container>\n\n <!-- Description Column -->\n <ng-container matColumnDef=\"description\">\n <th mat-header-cell *matHeaderCellDef mat-sort-header disableClear>\n Descriptions\n </th>\n <td mat-cell *matCellDef=\"let element\">\n {{ element?.description }}\n </td>\n </ng-container>\n\n <!-- Actions Column -->\n <ng-container matColumnDef=\"actions\">\n <th mat-header-cell *matHeaderCellDef mat-sort-header disableClear>\n Actions\n </th>\n <td mat-cell *matCellDef=\"let element\">\n <div *ngIf=\"!element?.client_feature\">\n <app-on-off-switch [value]=\"element?.is_enabled_default\"\n (click)=\"toggeleFeature(element?.is_enabled_default, element)\"></app-on-off-switch>\n </div>\n <div *ngIf=\"element?.client_feature\">\n <app-on-off-switch [value]=\"element?.client_feature?.is_enabled\"\n (click)=\"toggeleFeature(element?.client_feature?.is_enabled, element)\"></app-on-off-switch>\n </div>\n </td>\n </ng-container>\n\n <tr mat-header-row *matHeaderRowDef=\"displayedColumns\"></tr>\n <tr mat-row *matRowDef=\"let row; columns: displayedColumns\"></tr>\n </table>\n </mat-card-content>\n </mat-card>\n </div>\n</div>" }]
|
|
9657
9657
|
}], ctorParameters: () => [{ type: ErrorHandlerService }, { type: i1$5.UntypedFormBuilder }, { type: AlertService }, { type: i1.MatDialog }, { type: TechlifyFeatureService }] });
|
|
9658
9658
|
|
|
9659
|
-
const routes$
|
|
9659
|
+
const routes$m = [
|
|
9660
9660
|
{
|
|
9661
9661
|
path: '',
|
|
9662
9662
|
component: TechlifyFeatureListingComponent,
|
|
9663
9663
|
canActivate: [AuthenticationGuard]
|
|
9664
9664
|
},
|
|
9665
9665
|
];
|
|
9666
|
-
const TechlifyFeatureRoutes = RouterModule.forChild(routes$
|
|
9666
|
+
const TechlifyFeatureRoutes = RouterModule.forChild(routes$m);
|
|
9667
9667
|
|
|
9668
9668
|
class TechlifyFeatureEnabledDirective {
|
|
9669
9669
|
constructor(el, featureService) {
|
|
@@ -9964,7 +9964,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
9964
9964
|
args: [{ selector: 'app-change-password', template: "<div class=\"h-100 d-flex justify-content-center align-items-center w-100\">\n <div class=\"row w-100\">\n <div class=\"col-lg-6 col-md-8 col-sm-10 col-xs-12 col-12 mx-auto\">\n <mat-card>\n <mat-card-title>\n Update Your Password\n </mat-card-title>\n <mat-card-subtitle>\n <small class=\"text-muted\" *ngIf=\"user?.is_temporary_password\">\n You\u2019re currently using a temporary password, please change it to proceed\n </small>\n </mat-card-subtitle>\n <form [formGroup]=\"passwordResetForm\" (ngSubmit)=\"saveNewPassword()\">\n <mat-card-content fxLayout=\"column wrap\" fxLayoutGap=\"1rem\">\n <mat-form-field fxFlex=\"100%\">\n <mat-label>Current Password</mat-label>\n <input matInput formControlName=\"current_password\"\n placeholder=\"Current Password\"\n type=\"password\"\n autocomplete=\"off\"\n required />\n <mat-hint>Your current password.</mat-hint>\n <mat-error *ngIf=\"isFieldValid('current_password')\">\n {{getErrorMessage('current_password')}}\n </mat-error>\n </mat-form-field>\n <mat-form-field fxFlex=\"100%\">\n <mat-label>New Password</mat-label>\n <input matInput formControlName=\"password\"\n placeholder=\"New Password\"\n [type]=\"passwordHide ? 'password' : 'text'\"\n autocomplete=\"off\"\n required />\n <button matSuffix mat-icon-button (click)=\"passwordHide = !passwordHide\" type=\"button\">\n <mat-icon>{{passwordHide ? 'visibility_off' : 'visibility'}}</mat-icon>\n </button>\n <mat-error *ngIf=\"isFieldValid('password')\">\n {{getErrorMessage('password')}}\n </mat-error>\n <mat-hint>The new password you would like to use.</mat-hint>\n </mat-form-field>\n <mat-form-field fxFlex=\"100%\">\n <mat-label>Confirm Password</mat-label>\n <input matInput formControlName=\"password_confirmation\"\n placeholder=\"Confirm Password\"\n [type]=\"passwordConfirmationHide ? 'password' : 'text'\"\n autocomplete=\"off\" required />\n <button matSuffix mat-icon-button (click)=\"passwordConfirmationHide = !passwordConfirmationHide\" type=\"button\">\n <mat-icon>{{passwordConfirmationHide ? 'visibility_off' : 'visibility'}}</mat-icon>\n </button>\n <mat-error *ngIf=\"isFieldValid('password_confirmation')\">\n {{getErrorMessage('password_confirmation')}}\n </mat-error>\n </mat-form-field>\n </mat-card-content>\n <div class=\"mt-2 mb-2\">\n <techlify-password-requirement-check [password]=\"passwordResetForm.get('password').value\"></techlify-password-requirement-check>\n </div>\n <mat-card-actions fxLayoutAlign=\"end\">\n <button mat-raised-button color=primary type=\"submit\" [disabled]=\"isWorking\">\n Change Password\n </button>\n </mat-card-actions>\n </form>\n </mat-card>\n </div>\n </div>\n</div>\n" }]
|
|
9965
9965
|
}], ctorParameters: () => [{ type: HttpService }, { type: AlertService }, { type: i1$2.Router }, { type: CurrentUserService }, { type: i1$5.UntypedFormBuilder }, { type: ErrorHandlerService }, { type: FormValidatorService }] });
|
|
9966
9966
|
|
|
9967
|
-
const routes$
|
|
9967
|
+
const routes$l = [
|
|
9968
9968
|
{ path: '', component: ChangePasswordComponent, canActivate: [AuthenticationGuard] },
|
|
9969
9969
|
// fallback when no prior route found
|
|
9970
9970
|
{ path: '**', redirectTo: '', pathMatch: 'full' }
|
|
@@ -9972,12 +9972,12 @@ const routes$k = [
|
|
|
9972
9972
|
class ChangePasswordRoutingModule {
|
|
9973
9973
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: ChangePasswordRoutingModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
9974
9974
|
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.14", ngImport: i0, type: ChangePasswordRoutingModule, imports: [i1$2.RouterModule], exports: [RouterModule] }); }
|
|
9975
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: ChangePasswordRoutingModule, imports: [RouterModule.forChild(routes$
|
|
9975
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: ChangePasswordRoutingModule, imports: [RouterModule.forChild(routes$l), RouterModule] }); }
|
|
9976
9976
|
}
|
|
9977
9977
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: ChangePasswordRoutingModule, decorators: [{
|
|
9978
9978
|
type: NgModule,
|
|
9979
9979
|
args: [{
|
|
9980
|
-
imports: [RouterModule.forChild(routes$
|
|
9980
|
+
imports: [RouterModule.forChild(routes$l)],
|
|
9981
9981
|
exports: [RouterModule]
|
|
9982
9982
|
}]
|
|
9983
9983
|
}] });
|
|
@@ -10097,18 +10097,18 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
10097
10097
|
args: [{ selector: 'forgot-password', template: "<div class=\"h-100 row align-items-center mx-0\">\n <div class=\"col\">\n <header class=\"branding-block mb-0 mt-4\">\n <div class=\"branding text-center\">\n <a *ngIf=\"userConfig.appLogoUrl\" href=\"{{userConfig.appUrl}}\" target=\"_blank\">\n <img class=\"techlify-logo d-inline-block\" [src]=\"userConfig.appLogoUrl\" />\n </a>\n </div>\n <div class=\"product-info text-center mt-2\">\n <h3 class=\"product-name\">{{ userConfig.appName }}</h3>\n </div>\n </header>\n\n <div id=\"login-form-wrapper\"\n class=\"form-bordered mx-auto form-medium form-bordered form-centered form-horizontal mt-3 white-box\"\n style=\"width:550px\">\n\n <h4 class=\"section-title text-center mt-4\">RESET</h4>\n\n <form [formGroup]=\"forgotPasswordForm\" (ngSubmit)=\"sendOtp()\" class=\"mt-4\">\n\n <div class=\"form-group row\">\n <mat-form-field class=\"offset-2 col-8\">\n <input matInput formControlName=\"email\" placeholder=\"Email\" type=\"email\" autocomplete=\"off\"\n required />\n <mat-error *ngIf=\"isFieldValid('email')\">{{getErrorMessage('email')}}</mat-error>\n </mat-form-field>\n </div>\n\n <div class=\"row mt-4\">\n <div class=\"col-12 text-center\">\n <button mat-raised-button color=\"primary\" class=\"w-50\" type=\"submit\"\n [disabled]=\"isWorking\">\n Send OTP\n </button>\n </div>\n </div>\n </form>\n </div>\n\n <div class=\"row mt-3 mr-0 ml-0\" *ngIf=\"userConfig.showSignup\">\n <div class=\"col-12 text-center\">\n <p>New to {{ userConfig.appName }}?</p>\n <button mat-button class=\"btn btn-sm btn-secondary text-white\" style=\"width: 550px;\" type=\"button\"\n [routerLink]=\"['/signup']\">\n Create an account\n </button>\n </div>\n </div>\n </div>\n</div>\n", styles: ["#login-form-wrapper{margin-top:100px}#login-form-wrapper .branding-block{margin-bottom:60px}#login-form-wrapper .techlify-logo{height:40px;padding-right:10px;bottom:10px;position:relative}#login-form-wrapper .company-name{margin-bottom:0}:host{width:100%}.white-box{background-color:#fff;padding:10px}\n"] }]
|
|
10098
10098
|
}], ctorParameters: () => [{ type: HttpService }, { type: AlertService }, { type: i1$2.Router }, { type: CurrentUserService }, { type: ErrorHandlerService }, { type: CredentialsService }, { type: i1$5.UntypedFormBuilder }, { type: FormValidatorService }, { type: UserConfigService }] });
|
|
10099
10099
|
|
|
10100
|
-
const routes$
|
|
10100
|
+
const routes$k = [
|
|
10101
10101
|
{ path: '', component: ForgotPasswordComponent }
|
|
10102
10102
|
];
|
|
10103
10103
|
class ForgotPasswordRoutingModule {
|
|
10104
10104
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: ForgotPasswordRoutingModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
10105
10105
|
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.14", ngImport: i0, type: ForgotPasswordRoutingModule, imports: [i1$2.RouterModule], exports: [RouterModule] }); }
|
|
10106
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: ForgotPasswordRoutingModule, imports: [RouterModule.forChild(routes$
|
|
10106
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: ForgotPasswordRoutingModule, imports: [RouterModule.forChild(routes$k), RouterModule] }); }
|
|
10107
10107
|
}
|
|
10108
10108
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: ForgotPasswordRoutingModule, decorators: [{
|
|
10109
10109
|
type: NgModule,
|
|
10110
10110
|
args: [{
|
|
10111
|
-
imports: [RouterModule.forChild(routes$
|
|
10111
|
+
imports: [RouterModule.forChild(routes$k)],
|
|
10112
10112
|
exports: [RouterModule],
|
|
10113
10113
|
providers: []
|
|
10114
10114
|
}]
|
|
@@ -10320,19 +10320,19 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
10320
10320
|
args: [{ selector: 'login', template: "<div class=\"h-100 d-flex justify-content-center align-items-center w-100\" style=\"background: #fafafa;\">\n <div class=\"row w-100\">\n <div class=\"col-lg-4 col-md-6 col-sm-8 col-xs-10 col-12 mx-auto\">\n <mat-card class=\"mb-3 mt-3 w-100\">\n <header class=\"branding-block mb-0 mt-4\">\n <div class=\"branding text-center\">\n <a *ngIf=\"userConfig.appLogoUrl\" href=\"{{userConfig.appUrl}}\" target=\"_blank\">\n <img class=\"techlify-logo d-inline-block\" [src]=\"userConfig.appLogoUrl\" alt=\"Logo\" />\n </a>\n </div>\n <div class=\"product-info text-center mt-2\">\n <h3 class=\"product-name\">{{ userConfig.appName }}</h3>\n </div>\n </header>\n\n <div id=\"login-form-wrapper\">\n <app-login-form-fields [userConfig]=\"userConfig\"></app-login-form-fields>\n </div>\n\n <div class=\"mt-3 p-0 mr-0 ml-0\" *ngIf=\"userConfig.showSignup\">\n <p>New to {{ userConfig.appName }}?</p>\n <button mat-raised-button class=\"w-100\" color=\"accent\" type=\"button\" [routerLink]=\"['/signup']\">\n Create an account\n </button>\n </div>\n </mat-card>\n </div>\n </div>\n</div>", styles: ["#login-form-wrapper{margin-top:40px}#login-form-wrapper .branding-block{margin-bottom:60px}#login-form-wrapper .techlify-logo{height:40px;padding-right:10px;bottom:10px;position:relative}#login-form-wrapper .company-name{margin-bottom:0}#login-form-wrapper .google-button{background:#ce1d1d;color:#fff}#login-form-wrapper .facebook-button{background:#38388e;color:#fff}:host{width:100%}.white-box{background-color:#fff;padding:10px}mat-selection-list{width:100%;display:flex;flex-direction:column;justify-content:center;align-items:center}mat-list-option{border:1px solid #ccc;text-align:center;border-radius:4px;padding:10px;cursor:pointer}mat-list-option:hover{background-color:#f0f0f0}\n"] }]
|
|
10321
10321
|
}], ctorParameters: () => [{ type: AlertService }, { type: i1$2.Router }, { type: AuthenticationService }, { type: CurrentUserService }, { type: StorageService }, { type: CredentialsService }, { type: i1$2.ActivatedRoute }, { type: UserConfigService }] });
|
|
10322
10322
|
|
|
10323
|
-
const routes$
|
|
10323
|
+
const routes$j = [
|
|
10324
10324
|
{ path: '', component: LoginComponent },
|
|
10325
10325
|
{ path: ':id', component: LoginComponent }
|
|
10326
10326
|
];
|
|
10327
10327
|
class LoginRoutingModule {
|
|
10328
10328
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: LoginRoutingModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
10329
10329
|
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.14", ngImport: i0, type: LoginRoutingModule, imports: [i1$2.RouterModule], exports: [RouterModule] }); }
|
|
10330
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: LoginRoutingModule, imports: [RouterModule.forChild(routes$
|
|
10330
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: LoginRoutingModule, imports: [RouterModule.forChild(routes$j), RouterModule] }); }
|
|
10331
10331
|
}
|
|
10332
10332
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: LoginRoutingModule, decorators: [{
|
|
10333
10333
|
type: NgModule,
|
|
10334
10334
|
args: [{
|
|
10335
|
-
imports: [RouterModule.forChild(routes$
|
|
10335
|
+
imports: [RouterModule.forChild(routes$j)],
|
|
10336
10336
|
exports: [RouterModule],
|
|
10337
10337
|
providers: []
|
|
10338
10338
|
}]
|
|
@@ -10402,18 +10402,18 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
10402
10402
|
type: Output
|
|
10403
10403
|
}] } });
|
|
10404
10404
|
|
|
10405
|
-
const routes$
|
|
10405
|
+
const routes$i = [
|
|
10406
10406
|
{ path: '', component: ProfileEditComponent, canActivate: [AuthenticationGuard] }
|
|
10407
10407
|
];
|
|
10408
10408
|
class ProfileRoutingModule {
|
|
10409
10409
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: ProfileRoutingModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
10410
10410
|
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.14", ngImport: i0, type: ProfileRoutingModule, imports: [i1$2.RouterModule], exports: [RouterModule] }); }
|
|
10411
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: ProfileRoutingModule, imports: [RouterModule.forChild(routes$
|
|
10411
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: ProfileRoutingModule, imports: [RouterModule.forChild(routes$i), RouterModule] }); }
|
|
10412
10412
|
}
|
|
10413
10413
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: ProfileRoutingModule, decorators: [{
|
|
10414
10414
|
type: NgModule,
|
|
10415
10415
|
args: [{
|
|
10416
|
-
imports: [RouterModule.forChild(routes$
|
|
10416
|
+
imports: [RouterModule.forChild(routes$i)],
|
|
10417
10417
|
exports: [RouterModule],
|
|
10418
10418
|
providers: []
|
|
10419
10419
|
}]
|
|
@@ -10824,7 +10824,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
10824
10824
|
class Permission {
|
|
10825
10825
|
}
|
|
10826
10826
|
|
|
10827
|
-
const routes$
|
|
10827
|
+
const routes$h = [
|
|
10828
10828
|
{ path: '', component: RolesViewAllComponent, canActivate: [AuthenticationGuard] },
|
|
10829
10829
|
{
|
|
10830
10830
|
path: ':id',
|
|
@@ -10837,17 +10837,17 @@ const routes$g = [
|
|
|
10837
10837
|
class RoleRoutingProvider {
|
|
10838
10838
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: RoleRoutingProvider, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
10839
10839
|
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.14", ngImport: i0, type: RoleRoutingProvider, imports: [i1$2.RouterModule], exports: [RouterModule] }); }
|
|
10840
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: RoleRoutingProvider, imports: [RouterModule.forChild(routes$
|
|
10840
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: RoleRoutingProvider, imports: [RouterModule.forChild(routes$h), RouterModule] }); }
|
|
10841
10841
|
}
|
|
10842
10842
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: RoleRoutingProvider, decorators: [{
|
|
10843
10843
|
type: NgModule,
|
|
10844
10844
|
args: [{
|
|
10845
|
-
imports: [RouterModule.forChild(routes$
|
|
10845
|
+
imports: [RouterModule.forChild(routes$h)],
|
|
10846
10846
|
exports: [RouterModule]
|
|
10847
10847
|
}]
|
|
10848
10848
|
}] });
|
|
10849
10849
|
|
|
10850
|
-
const routes$
|
|
10850
|
+
const routes$g = [
|
|
10851
10851
|
{ path: '', component: PermissionsManagementComponent, canActivate: [AuthenticationGuard] },
|
|
10852
10852
|
// fallback when no prior route found
|
|
10853
10853
|
{ path: '**', redirectTo: '', pathMatch: 'full' },
|
|
@@ -10855,12 +10855,12 @@ const routes$f = [
|
|
|
10855
10855
|
class PermissionRoutingProvider {
|
|
10856
10856
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PermissionRoutingProvider, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
10857
10857
|
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.14", ngImport: i0, type: PermissionRoutingProvider, imports: [i1$2.RouterModule], exports: [RouterModule] }); }
|
|
10858
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PermissionRoutingProvider, imports: [RouterModule.forChild(routes$
|
|
10858
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PermissionRoutingProvider, imports: [RouterModule.forChild(routes$g), RouterModule] }); }
|
|
10859
10859
|
}
|
|
10860
10860
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PermissionRoutingProvider, decorators: [{
|
|
10861
10861
|
type: NgModule,
|
|
10862
10862
|
args: [{
|
|
10863
|
-
imports: [RouterModule.forChild(routes$
|
|
10863
|
+
imports: [RouterModule.forChild(routes$g)],
|
|
10864
10864
|
exports: [RouterModule]
|
|
10865
10865
|
}]
|
|
10866
10866
|
}] });
|
|
@@ -10932,18 +10932,18 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
10932
10932
|
args: [{ selector: 'signup', template: "<div class=\"h-100 row align-items-center mx-0\">\n <div class=\"col\">\n <header class=\"branding-block mb-0 mt-4\">\n <div class=\"branding text-center\">\n <a *ngIf=\"userConfig.appLogoUrl\" href=\"{{userConfig.appUrl}}\" target=\"_blank\">\n <img class=\"techlify-logo d-inline-block\" [src]=\"userConfig.appLogoUrl\" />\n </a>\n </div>\n <div class=\"product-info text-center mt-2\">\n <h3 class=\"product-name\">{{ userConfig.appName }}</h3>\n </div>\n </header>\n\n <div id=\"login-form-wrapper\"\n class=\"form-bordered mx-auto form-medium form-bordered form-centered form-horizontal mt-3 white-box\"\n style=\"width:550px\">\n\n <h4 class=\"section-title text-center\">REGISTER</h4>\n\n <form [formGroup]=\"signUpForm\" (ngSubmit)=\"signUp()\" class=\"pt-4 pr-4 pl-4 pb-1 mt-4 ml-4 mr-4 mb-1\">\n <div class=\"form-group row\">\n <mat-form-field class=\"col-12\">\n <input matInput formControlName=\"business_name\" placeholder=\"Business / Company Name\"\n type=\"text\" autocomplete=\"off\" required />\n <mat-error *ngIf=\"isFieldValid('business_name')\">{{getErrorMessage('business_name')}}\n </mat-error>\n </mat-form-field>\n </div>\n <div class=\"form-group row\">\n <mat-form-field class=\"col-12\">\n <input matInput formControlName=\"business_email\" placeholder=\"Business / Company Email\"\n type=\"email\" autocomplete=\"off\" required />\n <mat-error *ngIf=\"isFieldValid('business_email')\">{{getErrorMessage('business_email')}}\n </mat-error>\n </mat-form-field>\n </div>\n <div class=\"form-group row\">\n <mat-form-field class=\"col-12\">\n <input matInput formControlName=\"user_name\" placeholder=\"User Name\" type=\"text\"\n autocomplete=\"off\" required />\n <mat-error *ngIf=\"isFieldValid('user_name')\">{{getErrorMessage('user_name')}}</mat-error>\n </mat-form-field>\n </div>\n <div class=\"form-group row\">\n <mat-form-field class=\"col-12\">\n <input matInput formControlName=\"user_email\" placeholder=\"User Email\" type=\"email\"\n autocomplete=\"off\" required />\n <mat-error *ngIf=\"isFieldValid('user_email')\">{{getErrorMessage('user_email')}}</mat-error>\n </mat-form-field>\n </div>\n <div class=\"row mt-4\">\n <div class=\"col-12 text-center\">\n <button mat-button type=\"submit\" class=\"btn btn-sm btn-primary w-100\"\n [disabled]=\"isWorking\">Register</button>\n </div>\n </div>\n <div class=\"row mt-2\" *ngIf=\"userConfig.showSocialLogin\">\n <div class=\"col-6\">\n <button class=\"col-12 google-button\" mat-raised-button type=\"button\"\n (click)=\"redirect('google')\">Google</button>\n </div>\n <div class=\"col-6\">\n <button class=\"col-12 facebook-button\" mat-raised-button type=\"button\"\n (click)=\"redirect('facebook')\">Facebook</button>\n </div>\n </div>\n </form>\n </div>\n <div class=\"row mt-3 mr-0 ml-0\">\n <div class=\"col-12 text-center\">\n <p>Already an {{ userConfig.appName }} member?</p>\n <button mat-button class=\"btn btn-sm btn-secondary text-white\" style=\"width: 550px;\" type=\"button\"\n [routerLink]=\"['/login']\">\n Continue with login\n </button>\n </div>\n </div>\n </div>\n</div>", styles: ["#login-form-wrapper{margin-top:40px}#login-form-wrapper .branding-block{margin-bottom:60px}#login-form-wrapper .techlify-logo{height:40px;padding-right:10px;bottom:10px;position:relative}#login-form-wrapper .company-name{margin-bottom:0}#login-form-wrapper .google-button{background:#ce1d1d;color:#fff}#login-form-wrapper .facebook-button{background:#38388e;color:#fff}:host{width:100%}.white-box{background-color:#fff;padding:10px}mat-selection-list{width:100%;display:flex;flex-direction:column;justify-content:center;align-items:center}mat-list-option{border:1px solid #ccc;text-align:center;border-radius:4px;padding:10px;cursor:pointer}mat-list-option:hover{background-color:#f0f0f0}\n"] }]
|
|
10933
10933
|
}], ctorParameters: () => [{ type: HttpService }, { type: AlertService }, { type: i1$2.Router }, { type: ErrorHandlerService }, { type: i1$5.UntypedFormBuilder }, { type: FormValidatorService }, { type: UserConfigService }] });
|
|
10934
10934
|
|
|
10935
|
-
const routes$
|
|
10935
|
+
const routes$f = [
|
|
10936
10936
|
{ path: '', component: SignUpComponent }
|
|
10937
10937
|
];
|
|
10938
10938
|
class SignupRoutingModule {
|
|
10939
10939
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: SignupRoutingModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
10940
10940
|
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.14", ngImport: i0, type: SignupRoutingModule, imports: [i1$2.RouterModule], exports: [RouterModule] }); }
|
|
10941
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: SignupRoutingModule, imports: [RouterModule.forChild(routes$
|
|
10941
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: SignupRoutingModule, imports: [RouterModule.forChild(routes$f), RouterModule] }); }
|
|
10942
10942
|
}
|
|
10943
10943
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: SignupRoutingModule, decorators: [{
|
|
10944
10944
|
type: NgModule,
|
|
10945
10945
|
args: [{
|
|
10946
|
-
imports: [RouterModule.forChild(routes$
|
|
10946
|
+
imports: [RouterModule.forChild(routes$f)],
|
|
10947
10947
|
exports: [RouterModule],
|
|
10948
10948
|
providers: []
|
|
10949
10949
|
}]
|
|
@@ -11248,7 +11248,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
11248
11248
|
args: [{ selector: 'app-role-view', template: "<div fxLayout=\"column\" fxLayoutGap=\"1rem\" class=\"p-4\">\n <h3 fxLayoutAlign=\"center\" class=\"pb-4\">Role View</h3>\n <div fxLayout=\"row wrap\" fxLayoutGap=\"1rem grid\">\n <div fxFlex.lt-md=\"100%\" fxFlex=\"0 1 calc(50%-1rem)\">\n <mat-card fxFlex=\"100%\">\n <mat-card-title>Basic Info.</mat-card-title>\n <mat-card-content fxLayout=\"column wrap\" fxLayoutGap=\"1rem\">\n <div>\n <span class=\"font-weight-bold\">Role:</span> {{role?.label}}\n </div>\n <div>\n <span class=\"font-weight-bold\">Description:</span> {{role?.description}}\n </div>\n <div>\n <span class=\"font-weight-bold\">Is App Role:</span> {{(role?.client_id == null) ? 'Yes' : 'No'}}\n </div>\n <div>\n <span class=\"font-weight-bold\"># Users:</span> {{role?.role_users_count}}\n </div>\n </mat-card-content>\n </mat-card>\n </div>\n <div fxFlex.lt-md=\"100%\" fxFlex=\"0 1 calc(50%-1rem)\">\n <mat-card fxFlex=\"100%\">\n <mat-card-title>Permissions ({{role?.permissions.length}})</mat-card-title>\n <mat-card-content style=\"height:400px;overflow-y: scroll;\">\n <div fxLayout=\"column wrap\">\n <div *ngFor=\"let permission of role?.permissions;let i=index;\">\n {{i+1}}. {{permission.label}}\n </div>\n </div>\n </mat-card-content>\n </mat-card>\n </div>\n </div>\n</div>" }]
|
|
11249
11249
|
}], ctorParameters: () => [{ type: HttpService }, { type: ErrorHandlerService }, { type: i1$2.ActivatedRoute }] });
|
|
11250
11250
|
|
|
11251
|
-
const routes$
|
|
11251
|
+
const routes$e = [
|
|
11252
11252
|
{
|
|
11253
11253
|
path: '**',
|
|
11254
11254
|
component: RoleViewComponent,
|
|
@@ -11258,12 +11258,12 @@ const routes$d = [
|
|
|
11258
11258
|
class RoleViewRoutingModule {
|
|
11259
11259
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: RoleViewRoutingModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
11260
11260
|
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.14", ngImport: i0, type: RoleViewRoutingModule, imports: [i1$2.RouterModule], exports: [RouterModule] }); }
|
|
11261
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: RoleViewRoutingModule, imports: [RouterModule.forChild(routes$
|
|
11261
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: RoleViewRoutingModule, imports: [RouterModule.forChild(routes$e), RouterModule] }); }
|
|
11262
11262
|
}
|
|
11263
11263
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: RoleViewRoutingModule, decorators: [{
|
|
11264
11264
|
type: NgModule,
|
|
11265
11265
|
args: [{
|
|
11266
|
-
imports: [RouterModule.forChild(routes$
|
|
11266
|
+
imports: [RouterModule.forChild(routes$e)],
|
|
11267
11267
|
exports: [RouterModule]
|
|
11268
11268
|
}]
|
|
11269
11269
|
}] });
|
|
@@ -11496,7 +11496,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
11496
11496
|
args: [{ selector: 'app-admin-role-list', template: "<div fxLayout=\"column\" class=\"m-2\">\n <mat-card appearance=\"outlined\" fxLayout fxLayoutGap=\"0.5rem\" fxLayoutAlign=\"start center\">\n <div fxLayout fxLayoutAlign=\"start center\">\n <h5 class=\"m-0\">Global Roles</h5>\n <app-role-form-button (success)=\"reload()\" class=\"mt-2\"></app-role-form-button>\n </div>\n </mat-card>\n <mat-card appearance=\"outlined\" class=\"mt-2\">\n <table mat-table matSort [dataSource]=\"models\" class=\"w-100\" infiniteScroll [infiniteScrollDistance]=\"2\"\n [infiniteScrollThrottle]=\"50\" (scrolled)=\"onScroll()\" (matSortChange)=\"sortColumn($event)\">\n\n <ng-container matColumnDef=\"index\">\n <th mat-header-cell *matHeaderCellDef> # </th>\n <td mat-cell *matCellDef=\"let role; let i = index\"> {{ i+1 }} </td>\n </ng-container>\n\n <ng-container matColumnDef=\"label\">\n <th mat-header-cell *matHeaderCellDef mat-sort-header disableClear> Label </th>\n <td mat-cell *matCellDef=\"let role\">\n <span>{{role?.label }}</span>\n </td>\n </ng-container>\n\n <ng-container matColumnDef=\"description\">\n <th mat-header-cell *matHeaderCellDef mat-sort-header disableClear> Description </th>\n <td mat-cell *matCellDef=\"let role\">\n <span>{{role?.description }}</span>\n </td>\n </ng-container>\n\n <ng-container matColumnDef=\"permissions_count\">\n <th mat-header-cell *matHeaderCellDef> Permissions </th>\n <td mat-cell *matCellDef=\"let role\">\n <div>{{role?.permissions_count}}</div>\n </td>\n </ng-container>\n\n <ng-container matColumnDef=\"actions\">\n <th mat-header-cell *matHeaderCellDef> Actions </th>\n <td mat-cell *matCellDef=\"let role\">\n <div class=\"text-secondary\" fxLayoutAlign=\"start center\">\n <app-admin-role-permission-form (success)=\"reload()\" [roleInfo]=\"role\"\n class=\"text-muted\"></app-admin-role-permission-form>\n <app-techlify-icon name=\"view\" matTooltip=\"View\" [routerLink]=\"['/admin/role-view',role?.id]\"\n class=\"clickable ml-1\"></app-techlify-icon>\n </div>\n </td>\n </ng-container>\n <tr mat-header-row *matHeaderRowDef=\"displayedColumns\"></tr>\n <tr mat-row *matRowDef=\"let row; columns: displayedColumns;\"></tr>\n </table>\n </mat-card>\n</div>" }]
|
|
11497
11497
|
}], ctorParameters: () => [{ type: AdminRoleService }, { type: FilterService }, { type: i1$2.ActivatedRoute }, { type: i1$5.UntypedFormBuilder }, { type: i1.MatDialog }, { type: i6$4.NgxSpinnerService }] });
|
|
11498
11498
|
|
|
11499
|
-
const routes$
|
|
11499
|
+
const routes$d = [
|
|
11500
11500
|
{
|
|
11501
11501
|
path: '',
|
|
11502
11502
|
component: AdminRoleListComponent,
|
|
@@ -11506,12 +11506,12 @@ const routes$c = [
|
|
|
11506
11506
|
class AdminRoleListRoutingModule {
|
|
11507
11507
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: AdminRoleListRoutingModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
11508
11508
|
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.14", ngImport: i0, type: AdminRoleListRoutingModule, imports: [i1$2.RouterModule], exports: [RouterModule] }); }
|
|
11509
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: AdminRoleListRoutingModule, imports: [RouterModule.forChild(routes$
|
|
11509
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: AdminRoleListRoutingModule, imports: [RouterModule.forChild(routes$d), RouterModule] }); }
|
|
11510
11510
|
}
|
|
11511
11511
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: AdminRoleListRoutingModule, decorators: [{
|
|
11512
11512
|
type: NgModule,
|
|
11513
11513
|
args: [{
|
|
11514
|
-
imports: [RouterModule.forChild(routes$
|
|
11514
|
+
imports: [RouterModule.forChild(routes$d)],
|
|
11515
11515
|
exports: [RouterModule]
|
|
11516
11516
|
}]
|
|
11517
11517
|
}] });
|
|
@@ -11950,7 +11950,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
11950
11950
|
args: [{ selector: 'app-access-control-config-form', template: "<mat-card fxLayout=\"row\" fxLayoutAlign=\"center\" fxFlexOffset=\"25%\" fxFlex=\"50%\">\n <mat-card-content>\n <form [formGroup]=\"configForm\" (ngSubmit)=\"submit()\">\n <div fxLayout=\"column\" class=\"mat-typography\">\n <div class=\"text-center\">\n <h2>\n Access Control Configuration\n </h2>\n </div>\n <div class=\"alert alert-warning\" role=\"alert\">\n Be careful with these configurations as they affect all users in your entire app.\n </div>\n <div *ngIf=\"!isWorking\" fxLayout=\"row wrap\" fxLayoutGap=\"1rem grid\">\n <mat-form-field fxFlex=\"100%\">\n <mat-label>\n Max Failed Login Attempts\n </mat-label>\n <input matInput formControlName=\"max_failed_consecutive_login_attempts\"\n placeholder=\"Max Failed Login Attempts\" autocomplete=\"off\" type=\"number\" min=\"0\" required />\n <mat-hint>After how many failed login attempts should this user\u2019s account be locked?</mat-hint>\n <mat-error *ngIf=\"isFieldValid('max_failed_consecutive_login_attempts')\">\n {{getErrorMessage('max_failed_consecutive_login_attempts')}}\n </mat-error>\n </mat-form-field>\n\n <mat-form-field fxFlex=\"100%\">\n <mat-label>\n Block x most recent passwords\n </mat-label>\n <input matInput formControlName=\"max_old_passwords_block\" placeholder=\"Block x most recent passwords\"\n type=\"number\" min=\"0\" autocomplete=\"off\" required />\n <mat-hint>\n How many recent passwords should the system block the user from reusing?\n Example: The user cannot reuse any of his/her last 3 passwords.\n </mat-hint>\n <mat-error *ngIf=\"isFieldValid('max_old_passwords_block')\">\n {{getErrorMessage('max_old_passwords_block')}}\n </mat-error>\n </mat-form-field>\n\n <mat-form-field fxFlex=\"100%\">\n <mat-label>\n Minimum Password Length\n </mat-label>\n <input matInput formControlName=\"min_password_length\" placeholder=\"Minimum Password Length\" type=\"number\"\n min=\"1\" autocomplete=\"off\" />\n <mat-hint>\n What is the minimum length of a user\u2019s password?\n </mat-hint>\n <mat-error *ngIf=\"isFieldValid('min_password_length')\">\n {{getErrorMessage('min_password_length')}}\n </mat-error>\n </mat-form-field>\n\n <div fxFlex=\"0 1 calc(50%-1rem)\">\n <div fxLayout=\"column\">\n <p class=\"text-secondary mb-0\"> Track Old Passwords?</p>\n <div>\n <mat-button-toggle-group [hideSingleSelectionIndicator]=\"true\" [hideMultipleSelectionIndicator]=\"true\"\n formControlName=\"is_track_old_passwords\" class=\"status\" name=\"status\">\n <mat-button-toggle [value]=\"true\">\n Yes\n </mat-button-toggle>\n <mat-button-toggle [value]=\"false\">\n No\n </mat-button-toggle>\n </mat-button-toggle-group>\n <br>\n <mat-hint class=\"custom-hint\">\n Should our software track old passwords to ensure users do not reuse old passwords?\n </mat-hint>\n </div>\n </div>\n </div>\n <div fxFlex=\"0 1 calc(50%-1rem)\">\n <div fxLayout=\"column\">\n <p class=\"text-secondary mb-0\"> Password Require Number </p>\n <div>\n <mat-button-toggle-group [hideSingleSelectionIndicator]=\"true\" [hideMultipleSelectionIndicator]=\"true\"\n formControlName=\"is_password_require_number\" class=\"status\" name=\"status\">\n <mat-button-toggle [value]=\"true\">\n Yes\n </mat-button-toggle>\n <mat-button-toggle [value]=\"false\">\n No\n </mat-button-toggle>\n </mat-button-toggle-group>\n <br>\n <mat-hint class=\"custom-hint\">\n Should the system force a user to have a number in his/her password?\n </mat-hint>\n </div>\n </div>\n </div>\n\n <div fxFlex=\"0 1 calc(50%-1rem)\">\n <div fxLayout=\"column\">\n <p class=\"text-secondary mb-0\"> Password Require Symbol </p>\n <div>\n <mat-button-toggle-group [hideSingleSelectionIndicator]=\"true\" [hideMultipleSelectionIndicator]=\"true\"\n formControlName=\"is_password_require_symbol\" class=\"status\" name=\"status\">\n <mat-button-toggle [value]=\"true\">\n Yes\n </mat-button-toggle>\n <mat-button-toggle [value]=\"false\">\n No\n </mat-button-toggle>\n </mat-button-toggle-group>\n <br>\n <mat-hint class=\"custom-hint\">\n Should the system force a user to have a symbol in his/her password?\n </mat-hint>\n </div>\n </div>\n </div>\n <div fxFlex=\"0 1 calc(50%-1rem)\">\n <div fxLayout=\"column\">\n <p class=\"text-secondary mb-0\"> Password Require Capital Letter </p>\n <div>\n <mat-button-toggle-group [hideSingleSelectionIndicator]=\"true\" [hideMultipleSelectionIndicator]=\"true\"\n formControlName=\"is_password_require_capital_letter\" class=\"status\" name=\"status\">\n <mat-button-toggle [value]=\"true\">\n Yes\n </mat-button-toggle>\n <mat-button-toggle [value]=\"false\">\n No\n </mat-button-toggle>\n </mat-button-toggle-group>\n <br>\n <mat-hint class=\"custom-hint\">\n Should the system force a user to have a capital letter in his/her password?\n </mat-hint>\n </div>\n </div>\n </div>\n </div>\n <div class=\"mt-3 mb-3\">\n <mat-progress-bar *ngIf=\"isWorking\" mode=\"indeterminate\"></mat-progress-bar>\n </div>\n <div fxFlex=\"100%\" fxLayout fxLayoutAlign=\"end\" fxLayoutGap=\"1rem\">\n <button [disabled]=\"isSaving\" mat-flat-button type=\"button\" (click)=\"redirectBack()\">\n Cancel\n </button>\n <button [disabled]=\"isSaving\" mat-raised-button type=\"submit\" color=\"primary\">\n {{ isSaving ? 'Saving...' : 'Save' }}\n </button>\n </div>\n </div>\n </form>\n </mat-card-content>\n</mat-card>", styles: [".custom-hint{font-size:10.5px}\n"] }]
|
|
11951
11951
|
}], ctorParameters: () => [{ type: i1$5.UntypedFormBuilder }, { type: FormValidatorService }, { type: AlertService }, { type: AccessControlConfigService }, { type: i2$1.Location }] });
|
|
11952
11952
|
|
|
11953
|
-
const routes$
|
|
11953
|
+
const routes$c = [
|
|
11954
11954
|
{
|
|
11955
11955
|
path: '',
|
|
11956
11956
|
component: AccessControlConfigFormComponent,
|
|
@@ -11965,12 +11965,12 @@ const routes$b = [
|
|
|
11965
11965
|
class AccessControlConfigRoutingModule {
|
|
11966
11966
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: AccessControlConfigRoutingModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
11967
11967
|
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.14", ngImport: i0, type: AccessControlConfigRoutingModule, imports: [i1$2.RouterModule], exports: [RouterModule] }); }
|
|
11968
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: AccessControlConfigRoutingModule, imports: [RouterModule.forChild(routes$
|
|
11968
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: AccessControlConfigRoutingModule, imports: [RouterModule.forChild(routes$c), RouterModule] }); }
|
|
11969
11969
|
}
|
|
11970
11970
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: AccessControlConfigRoutingModule, decorators: [{
|
|
11971
11971
|
type: NgModule,
|
|
11972
11972
|
args: [{
|
|
11973
|
-
imports: [RouterModule.forChild(routes$
|
|
11973
|
+
imports: [RouterModule.forChild(routes$c)],
|
|
11974
11974
|
exports: [RouterModule]
|
|
11975
11975
|
}]
|
|
11976
11976
|
}] });
|
|
@@ -12138,7 +12138,7 @@ var accessControlConfig_module = /*#__PURE__*/Object.freeze({
|
|
|
12138
12138
|
AccessControlConfigModule: AccessControlConfigModule
|
|
12139
12139
|
});
|
|
12140
12140
|
|
|
12141
|
-
const routes$
|
|
12141
|
+
const routes$b = [
|
|
12142
12142
|
{
|
|
12143
12143
|
path: '', redirectTo: 'users', pathMatch: 'full'
|
|
12144
12144
|
},
|
|
@@ -12167,12 +12167,12 @@ const routes$a = [
|
|
|
12167
12167
|
class NgxTechlifyUsersRoutingModule {
|
|
12168
12168
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: NgxTechlifyUsersRoutingModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
12169
12169
|
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.14", ngImport: i0, type: NgxTechlifyUsersRoutingModule, imports: [i1$2.RouterModule], exports: [RouterModule] }); }
|
|
12170
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: NgxTechlifyUsersRoutingModule, imports: [RouterModule.forChild(routes$
|
|
12170
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: NgxTechlifyUsersRoutingModule, imports: [RouterModule.forChild(routes$b), RouterModule] }); }
|
|
12171
12171
|
}
|
|
12172
12172
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: NgxTechlifyUsersRoutingModule, decorators: [{
|
|
12173
12173
|
type: NgModule,
|
|
12174
12174
|
args: [{
|
|
12175
|
-
imports: [RouterModule.forChild(routes$
|
|
12175
|
+
imports: [RouterModule.forChild(routes$b)],
|
|
12176
12176
|
exports: [RouterModule]
|
|
12177
12177
|
}]
|
|
12178
12178
|
}] });
|
|
@@ -12848,7 +12848,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
12848
12848
|
args: [{ selector: 'lib-restrictors-form-page', template: "<div fxLayout fxLayoutAlign=\"start center\">\n <mat-card fxFlex=\"50%\" fxFlexOffset=\"25%\">\n <mat-card-content>\n <techlify-restrictors-form *ngIf=\"!isWorking else progressBarTemplate\"\n [restrictor]=\"restrictor\"></techlify-restrictors-form>\n </mat-card-content>\n </mat-card>\n</div>\n\n<ng-template #progressBarTemplate>\n <mat-progress-bar mode=\"indeterminate\"></mat-progress-bar>\n</ng-template>\n" }]
|
|
12849
12849
|
}], ctorParameters: () => [{ type: i1$2.ActivatedRoute }, { type: RestrictorService }] });
|
|
12850
12850
|
|
|
12851
|
-
const routes$
|
|
12851
|
+
const routes$a = [
|
|
12852
12852
|
{
|
|
12853
12853
|
path: '',
|
|
12854
12854
|
component: RestrictorsListPageComponent,
|
|
@@ -12873,12 +12873,12 @@ const routes$9 = [
|
|
|
12873
12873
|
class RestrictorsRoutingModule {
|
|
12874
12874
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: RestrictorsRoutingModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
12875
12875
|
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.14", ngImport: i0, type: RestrictorsRoutingModule, imports: [i1$2.RouterModule], exports: [RouterModule] }); }
|
|
12876
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: RestrictorsRoutingModule, imports: [RouterModule.forChild(routes$
|
|
12876
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: RestrictorsRoutingModule, imports: [RouterModule.forChild(routes$a), RouterModule] }); }
|
|
12877
12877
|
}
|
|
12878
12878
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: RestrictorsRoutingModule, decorators: [{
|
|
12879
12879
|
type: NgModule,
|
|
12880
12880
|
args: [{
|
|
12881
|
-
imports: [RouterModule.forChild(routes$
|
|
12881
|
+
imports: [RouterModule.forChild(routes$a)],
|
|
12882
12882
|
exports: [RouterModule]
|
|
12883
12883
|
}]
|
|
12884
12884
|
}] });
|
|
@@ -13656,18 +13656,18 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
13656
13656
|
args: [{ selector: 'app-reset-password', template: "<div class=\"h-100 row align-items-center mx-0\">\n <div class=\"col\">\n <header class=\"branding-block mb-0 mt-4\">\n <div class=\"branding text-center\">\n <a *ngIf=\"userConfig.appLogoUrl\" href=\"{{userConfig.appUrl}}\" target=\"_blank\">\n <img class=\"techlify-logo d-inline-block\" [src]=\"userConfig.appLogoUrl\" />\n </a>\n </div>\n <div class=\"product-info text-center mt-2\">\n <h3 class=\"product-name\">{{ userConfig.appName }}</h3>\n </div>\n </header>\n\n <div id=\"login-form-wrapper\"\n class=\"form-bordered mx-auto form-medium form-bordered form-centered form-horizontal mt-3 white-box\"\n style=\"width:550px\">\n\n <h4 class=\"section-title text-center mt-4\">Reset Password</h4>\n\n <form [formGroup]=\"form\" (ngSubmit)=\"submit()\" class=\"mt-4\">\n\n <div class=\"form-group row\">\n <mat-form-field class=\"offset-2 col-8\">\n <mat-label>Email</mat-label>\n <input matInput formControlName=\"email\" placeholder=\"Email\" type=\"email\" autocomplete=\"off\"\n required readonly />\n <mat-error *ngIf=\"isFieldValid('email')\">{{getErrorMessage('email')}}</mat-error>\n </mat-form-field>\n <mat-form-field class=\"offset-2 col-8\">\n <mat-label>OTP</mat-label>\n <input matInput formControlName=\"otp\" placeholder=\"OTP\" type=\"string\" autocomplete=\"off\"\n required />\n <mat-error *ngIf=\"isFieldValid('otp')\">{{getErrorMessage('otp')}}</mat-error>\n </mat-form-field>\n <mat-form-field class=\"offset-2 col-8\">\n <mat-label>New Password</mat-label>\n <input matInput formControlName=\"password\" placeholder=\"New Password\"\n [type]=\"passwordHide ? 'password' : 'text'\" autocomplete=\"off\" required />\n <button matSuffix mat-icon-button (click)=\"passwordHide = !passwordHide\" type=\"button\">\n <mat-icon>{{passwordHide ? 'visibility_off' : 'visibility'}}</mat-icon>\n </button>\n <mat-error *ngIf=\"isFieldValid('password')\">\n {{getErrorMessage('password')}}\n </mat-error>\n <mat-hint>The new password you would like to use.</mat-hint>\n </mat-form-field>\n <mat-form-field class=\"offset-2 col-8 mt-3\">\n <mat-label>Confirm Password</mat-label>\n <input matInput formControlName=\"password_confirmation\" placeholder=\"Confirm Password\"\n [type]=\"passwordConfirmationHide ? 'password' : 'text'\" autocomplete=\"off\" required />\n <button matSuffix mat-icon-button (click)=\"passwordConfirmationHide = !passwordConfirmationHide\"\n type=\"button\">\n <mat-icon>{{passwordConfirmationHide ? 'visibility_off' : 'visibility'}}</mat-icon>\n </button>\n <mat-error *ngIf=\"isFieldValid('password_confirmation')\">\n {{getErrorMessage('password_confirmation')}}\n </mat-error>\n </mat-form-field>\n </div>\n\n <div class=\"mt-4 row\">\n <techlify-password-requirement-check class=\"offset-2 col-8\" [password]=\"form.get('password').value\"\n [email]=\"form.get('email').value\"></techlify-password-requirement-check>\n </div>\n\n <div class=\"row mt-4\">\n <div class=\"offset-2 col-8 text-center\">\n <button mat-raised-button color=\"primary\" class=\"w-100\" type=\"submit\" [disabled]=\"isWorking\">\n Submit\n </button>\n </div>\n </div>\n </form>\n </div>\n </div>\n</div>", styles: ["#login-form-wrapper{margin-top:100px}#login-form-wrapper .branding-block{margin-bottom:60px}#login-form-wrapper .techlify-logo{height:40px;padding-right:10px;bottom:10px;position:relative}#login-form-wrapper .company-name{margin-bottom:0}:host{width:100%}.white-box{background-color:#fff;padding:10px}\n"] }]
|
|
13657
13657
|
}], ctorParameters: () => [{ type: ResetPasswordService }, { type: i1$2.Router }, { type: CurrentUserService }, { type: i1$5.UntypedFormBuilder }, { type: FormValidatorService }, { type: UserConfigService }, { type: i1$2.ActivatedRoute }] });
|
|
13658
13658
|
|
|
13659
|
-
const routes$
|
|
13659
|
+
const routes$9 = [
|
|
13660
13660
|
{ path: '**', component: ResetPasswordComponent }
|
|
13661
13661
|
];
|
|
13662
13662
|
class ResetPasswordRoutingModule {
|
|
13663
13663
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: ResetPasswordRoutingModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
13664
13664
|
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.14", ngImport: i0, type: ResetPasswordRoutingModule, imports: [i1$2.RouterModule], exports: [RouterModule] }); }
|
|
13665
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: ResetPasswordRoutingModule, imports: [RouterModule.forChild(routes$
|
|
13665
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: ResetPasswordRoutingModule, imports: [RouterModule.forChild(routes$9), RouterModule] }); }
|
|
13666
13666
|
}
|
|
13667
13667
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: ResetPasswordRoutingModule, decorators: [{
|
|
13668
13668
|
type: NgModule,
|
|
13669
13669
|
args: [{
|
|
13670
|
-
imports: [RouterModule.forChild(routes$
|
|
13670
|
+
imports: [RouterModule.forChild(routes$9)],
|
|
13671
13671
|
exports: [RouterModule],
|
|
13672
13672
|
providers: []
|
|
13673
13673
|
}]
|
|
@@ -14019,7 +14019,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
14019
14019
|
], template: "<div class=\"row\">\n <div class=\"col-lg-6\">\n <app-tenant-list-widget *ngxPermissionsOnly=\"['app_admin']\"></app-tenant-list-widget>\n </div>\n</div>\n" }]
|
|
14020
14020
|
}] });
|
|
14021
14021
|
|
|
14022
|
-
const routes$
|
|
14022
|
+
const routes$8 = [
|
|
14023
14023
|
{
|
|
14024
14024
|
path: 'home',
|
|
14025
14025
|
component: AppAdminHomeComponent
|
|
@@ -14033,12 +14033,12 @@ const routes$7 = [
|
|
|
14033
14033
|
class AppAdminRoutingModule {
|
|
14034
14034
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: AppAdminRoutingModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
14035
14035
|
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.14", ngImport: i0, type: AppAdminRoutingModule, imports: [i1$2.RouterModule], exports: [RouterModule] }); }
|
|
14036
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: AppAdminRoutingModule, imports: [RouterModule.forChild(routes$
|
|
14036
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: AppAdminRoutingModule, imports: [RouterModule.forChild(routes$8), RouterModule] }); }
|
|
14037
14037
|
}
|
|
14038
14038
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: AppAdminRoutingModule, decorators: [{
|
|
14039
14039
|
type: NgModule,
|
|
14040
14040
|
args: [{
|
|
14041
|
-
imports: [RouterModule.forChild(routes$
|
|
14041
|
+
imports: [RouterModule.forChild(routes$8)],
|
|
14042
14042
|
exports: [RouterModule]
|
|
14043
14043
|
}]
|
|
14044
14044
|
}] });
|
|
@@ -14159,19 +14159,19 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
14159
14159
|
args: [{ selector: 'app-admin-user-view', template: "<div class=\"mat-typography m-4\" *ngIf=\"user\">\n <h1 class=\"text-center\">{{user.name}}</h1>\n\n <div class=\"border\">\n <mat-tab-group>\n <mat-tab label=\"Basic Information\">\n <ng-template matTabContent>\n <div class=\"row m-4\">\n <div class=\"col-4\">\n <div class=\"bordered-section\">\n <div class=\"row\" *ngIf=\"currentUser?.user_type_id != 3\">\n <button type=\"button\" mat-icon-button (click)=\"editUser(user)\">\n <mat-icon>edit</mat-icon>\n </button>\n <button mat-stroked-button color=\"warn\" *ngIf=\"!user.user_client?.is_enabled\"\n (click)=\"enableOrDisableUser('enable')\">\n Enable\n </button>\n <button mat-stroked-button color=\"primary\" *ngIf=\"user.user_client?.is_enabled\"\n (click)=\"enableOrDisableUser('disable')\">Disable</button>\n </div>\n\n <div class=\"row\">\n <label class=\"col-sm-4 control-label\">Name:</label>\n <div class=\"col-sm-8\">{{user?.name}}</div>\n </div>\n <div class=\"row\">\n <label class=\"col-sm-4 control-label\">Email:</label>\n <div class=\"col-sm-8\">{{user?.email}}</div>\n </div>\n <div class=\"row\">\n <label class=\"col-sm-4 control-label\">Type:</label>\n <div class=\"col-sm-8\">{{user?.type?.title}}</div>\n </div>\n <div class=\"row\">\n <label class=\"col-sm-4 control-label\">Status:</label>\n <div class=\"col-sm-8\">{{user?.user_client?.is_enabled ? 'Enabled' : 'Disabled' }}\n </div>\n </div>\n <div class=\"row\">\n <label class=\"col-sm-4 control-label\">Role:</label>\n <div class=\"col-sm-8\">\n <span *ngFor=\"let role of user?.roles\">\n <button class=\"btn btn-outline-dark btn-xs mb-2\">{{role?.label}}</button>\n \n </span>\n </div>\n </div>\n <div class=\"row\">\n <label class=\"col-sm-4 control-label\">Signature:</label>\n <div class=\"col-sm-8\">\n <span *ngIf=\"user?.signature\">\n <img src=\"{{user?.signature_url}}\" alt=\"\" width=\"250px\" />\n </span>\n <span *ngIf=\"!user?.signature\">\n No Signature Added\n </span>\n\n </div>\n </div>\n </div>\n </div>\n </div>\n </ng-template>\n </mat-tab>\n <mat-tab label=\"Login History\">\n <ng-template matTabContent>\n <app-login-history-for-user [userId]=\"user?.id\"></app-login-history-for-user>\n </ng-template>\n </mat-tab>\n <mat-tab label=\"Activity Logs\">\n <ng-template matTabContent>\n <app-audit-log-list objectType=\"User\" [objectId]=\"user?.id\" [showExportButtons]=\"false\">\n </app-audit-log-list>\n </ng-template>\n </mat-tab>\n <mat-tab label=\"Tenants\">\n <ng-template matTabContent>\n <app-user-clients-list [user]=\"user\"></app-user-clients-list>\n </ng-template>\n </mat-tab>\n <mat-tab label=\"Sessions\">\n <ng-template matTabContent>\n <app-user-sessions [user]=\"user\"></app-user-sessions>\n </ng-template>\n </mat-tab>\n </mat-tab-group>\n </div>\n\n</div>" }]
|
|
14160
14160
|
}], ctorParameters: () => [{ type: UserService }, { type: i1$2.ActivatedRoute }, { type: ConfigService }, { type: HttpService }, { type: i1.MatDialog }, { type: CurrentUserService }] });
|
|
14161
14161
|
|
|
14162
|
-
const routes$
|
|
14162
|
+
const routes$7 = [
|
|
14163
14163
|
{ path: '**', component: AppAdminUserViewComponent },
|
|
14164
14164
|
];
|
|
14165
14165
|
// @dynamic
|
|
14166
14166
|
class AppAdminUserViewRoutingProvider {
|
|
14167
14167
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: AppAdminUserViewRoutingProvider, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
14168
14168
|
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.14", ngImport: i0, type: AppAdminUserViewRoutingProvider, imports: [i1$2.RouterModule], exports: [RouterModule] }); }
|
|
14169
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: AppAdminUserViewRoutingProvider, imports: [RouterModule.forChild(routes$
|
|
14169
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: AppAdminUserViewRoutingProvider, imports: [RouterModule.forChild(routes$7), RouterModule] }); }
|
|
14170
14170
|
}
|
|
14171
14171
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: AppAdminUserViewRoutingProvider, decorators: [{
|
|
14172
14172
|
type: NgModule,
|
|
14173
14173
|
args: [{
|
|
14174
|
-
imports: [RouterModule.forChild(routes$
|
|
14174
|
+
imports: [RouterModule.forChild(routes$7)],
|
|
14175
14175
|
exports: [RouterModule]
|
|
14176
14176
|
}]
|
|
14177
14177
|
}] });
|
|
@@ -14351,16 +14351,16 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
14351
14351
|
}]
|
|
14352
14352
|
}] });
|
|
14353
14353
|
|
|
14354
|
-
const routes$
|
|
14354
|
+
const routes$6 = [];
|
|
14355
14355
|
class SubscriptionFormRoutingModule {
|
|
14356
14356
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: SubscriptionFormRoutingModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
14357
14357
|
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.14", ngImport: i0, type: SubscriptionFormRoutingModule, imports: [i1$2.RouterModule], exports: [RouterModule] }); }
|
|
14358
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: SubscriptionFormRoutingModule, imports: [RouterModule.forChild(routes$
|
|
14358
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: SubscriptionFormRoutingModule, imports: [RouterModule.forChild(routes$6), RouterModule] }); }
|
|
14359
14359
|
}
|
|
14360
14360
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: SubscriptionFormRoutingModule, decorators: [{
|
|
14361
14361
|
type: NgModule,
|
|
14362
14362
|
args: [{
|
|
14363
|
-
imports: [RouterModule.forChild(routes$
|
|
14363
|
+
imports: [RouterModule.forChild(routes$6)],
|
|
14364
14364
|
exports: [RouterModule]
|
|
14365
14365
|
}]
|
|
14366
14366
|
}] });
|
|
@@ -14667,7 +14667,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
14667
14667
|
type: Input
|
|
14668
14668
|
}] } });
|
|
14669
14669
|
|
|
14670
|
-
const routes$
|
|
14670
|
+
const routes$5 = [
|
|
14671
14671
|
{
|
|
14672
14672
|
path: '**',
|
|
14673
14673
|
component: SubscriptionListingComponent,
|
|
@@ -14677,12 +14677,12 @@ const routes$4 = [
|
|
|
14677
14677
|
class SubscriptionListingRoutingModule {
|
|
14678
14678
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: SubscriptionListingRoutingModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
14679
14679
|
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.14", ngImport: i0, type: SubscriptionListingRoutingModule, imports: [i1$2.RouterModule], exports: [RouterModule] }); }
|
|
14680
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: SubscriptionListingRoutingModule, imports: [RouterModule.forChild(routes$
|
|
14680
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: SubscriptionListingRoutingModule, imports: [RouterModule.forChild(routes$5), RouterModule] }); }
|
|
14681
14681
|
}
|
|
14682
14682
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: SubscriptionListingRoutingModule, decorators: [{
|
|
14683
14683
|
type: NgModule,
|
|
14684
14684
|
args: [{
|
|
14685
|
-
imports: [RouterModule.forChild(routes$
|
|
14685
|
+
imports: [RouterModule.forChild(routes$5)],
|
|
14686
14686
|
exports: [RouterModule]
|
|
14687
14687
|
}]
|
|
14688
14688
|
}] });
|
|
@@ -14841,7 +14841,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
14841
14841
|
args: [{ selector: 'app-subscription-package-listing', template: "<div fxLayout=\"column\" class=\"m-2\">\n <mat-card appearance=\"outlined\" fxLayout fxLayoutGap=\"0.5rem\" fxLayoutAlign=\"start center\">\n <h5 class=\"m-0\">Subscription Packages</h5>\n <span fxFlex></span>\n <form [formGroup]=\"filterFormGroup\" class=\"filter-form\" fxLayout=\"row\">\n <mat-form-field appearance=\"outline\" class=\"nil-subscript-wrappe fl-md\">\n <mat-label>Search</mat-label>\n <input type=\"text\" matInput formControlName=\"search\" placeholder=\"Search..\" name=\"search\"\n autocomplete=\"off\" />\n <button *ngIf=\"filterFormGroup.get('search').value\" matSuffix mat-icon-button\n (click)=\"filterFormGroup.get('search').setValue('')\">\n <mat-icon>close</mat-icon>\n </button>\n </mat-form-field>\n </form>\n </mat-card>\n <mat-card appearance=\"outlined\" class=\"p-0 mt-2\">\n <table mat-table matSort [dataSource]=\"models\" class=\"w-100\" infiniteScroll [infiniteScrollDistance]=\"2\"\n [infiniteScrollThrottle]=\"50\" (scrolled)=\"onScroll()\" (matSortChange)=\"sortColumn($event)\">\n\n <ng-container matColumnDef=\"index\">\n <th mat-header-cell *matHeaderCellDef> # </th>\n <td mat-cell *matCellDef=\"let subscriptionPackage; let i = index\"> {{ i+1 }} </td>\n </ng-container>\n\n <ng-container matColumnDef=\"title\">\n <th mat-header-cell *matHeaderCellDef mat-sort-header disableClear> Title </th>\n <td mat-cell *matCellDef=\"let subscriptionPackage\">\n <span>{{subscriptionPackage?.title }}</span>\n </td>\n </ng-container>\n\n <ng-container matColumnDef=\"code\">\n <th mat-header-cell *matHeaderCellDef mat-sort-header disableClear> Code </th>\n <td mat-cell *matCellDef=\"let subscriptionPackage\">\n <span>{{subscriptionPackage?.code }}</span>\n </td>\n </ng-container>\n\n <ng-container matColumnDef=\"description\">\n <th mat-header-cell *matHeaderCellDef mat-sort-header disableClear class=\"w-description\"> Description\n </th>\n <td mat-cell *matCellDef=\"let subscriptionPackage\">\n <span>{{subscriptionPackage?.description }}</span>\n </td>\n </ng-container>\n\n <ng-container matColumnDef=\"tenants_count\">\n <th mat-header-cell *matHeaderCellDef> Tenants </th>\n <td mat-cell *matCellDef=\"let subscriptionPackage\">\n <span>{{subscriptionPackage?.tenants_count ?? 0 }} tenants</span>\n </td>\n </ng-container>\n\n <ng-container matColumnDef=\"actions\">\n <th mat-header-cell *matHeaderCellDef> Actions </th>\n <td mat-cell *matCellDef=\"let subscriptionPackage\">\n <div class=\"text-secondary\" fxLayout fxLayoutAlign=\"start center\">\n <app-techlify-icon name=\"view\" class=\"clickable\" matTooltip=\"View\"\n (click)=\"navigateToView(subscriptionPackage)\"></app-techlify-icon>\n <mat-slide-toggle style=\"transform: scale(0.8);\" [checked]=\"subscriptionPackage?.is_enabled\"\n color=\"primary\" (change)=\"confirmToggle($event,subscriptionPackage)\">Is Enabled\n </mat-slide-toggle>\n </div>\n </td>\n </ng-container>\n <tr mat-header-row *matHeaderRowDef=\"displayedColumns\"></tr>\n <tr mat-row *matRowDef=\"let row; columns: displayedColumns;\"></tr>\n </table>\n <mat-progress-bar mode=\"indeterminate\" *ngIf=\"isWorking\"></mat-progress-bar>\n </mat-card>\n</div>" }]
|
|
14842
14842
|
}], ctorParameters: () => [{ type: SubscriptionPackageService }, { type: i1$2.ActivatedRoute }, { type: FilterService }, { type: i1$2.Router }, { type: i1.MatDialog }, { type: i1$5.UntypedFormBuilder }] });
|
|
14843
14843
|
|
|
14844
|
-
const routes$
|
|
14844
|
+
const routes$4 = [
|
|
14845
14845
|
{
|
|
14846
14846
|
path: '**',
|
|
14847
14847
|
component: SubscriptionPackageListingComponent,
|
|
@@ -14851,12 +14851,12 @@ const routes$3 = [
|
|
|
14851
14851
|
class SubscriptionPackageListingRoutingModule {
|
|
14852
14852
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: SubscriptionPackageListingRoutingModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
14853
14853
|
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.14", ngImport: i0, type: SubscriptionPackageListingRoutingModule, imports: [i1$2.RouterModule], exports: [RouterModule] }); }
|
|
14854
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: SubscriptionPackageListingRoutingModule, imports: [RouterModule.forChild(routes$
|
|
14854
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: SubscriptionPackageListingRoutingModule, imports: [RouterModule.forChild(routes$4), RouterModule] }); }
|
|
14855
14855
|
}
|
|
14856
14856
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: SubscriptionPackageListingRoutingModule, decorators: [{
|
|
14857
14857
|
type: NgModule,
|
|
14858
14858
|
args: [{
|
|
14859
|
-
imports: [RouterModule.forChild(routes$
|
|
14859
|
+
imports: [RouterModule.forChild(routes$4)],
|
|
14860
14860
|
exports: [RouterModule]
|
|
14861
14861
|
}]
|
|
14862
14862
|
}] });
|
|
@@ -14929,7 +14929,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
14929
14929
|
args: [{ selector: 'app-subscription-package-view', template: "<div fxLayout=\"column\" class=\"m-2\">\n <mat-card appearance=\"outlined\" fxLayout fxLayoutAlign=\"start center\">\n <h5 class=\"m-0\">Package: {{subscriptionPackage?.title}}</h5>\n </mat-card>\n <div fxLayout>\n <mat-card appearance=\"outlined\" class=\"side-panel mt-2\" fxLayout=\"column\" fxLayoutGap=\"0.5rem\">\n <h5>Information</h5>\n <div>\n Title: <span class=\"text-secondary\">{{subscriptionPackage?.title}}</span>\n </div>\n <div>\n Code: <span class=\"text-secondary\">{{subscriptionPackage?.code}}</span>\n </div>\n <div>\n Description: <span class=\"text-secondary\">{{subscriptionPackage?.description}}</span>\n </div>\n <div>\n Tenants: <span class=\"text-secondary\">{{subscriptionPackage?.tenants_count ?? 0}} tenants</span>\n </div>\n </mat-card>\n <div fxFlex class=\"ml-2\">\n <app-subscription-listing class=\"w-100\" [subscriptionPackage]=\"subscriptionPackage\"\n *ngIf=\"subscriptionPackage\"></app-subscription-listing>\n </div>\n </div>\n</div>" }]
|
|
14930
14930
|
}], ctorParameters: () => [{ type: SubscriptionPackageService }, { type: i1$2.ActivatedRoute }, { type: i2$1.Location }] });
|
|
14931
14931
|
|
|
14932
|
-
const routes$
|
|
14932
|
+
const routes$3 = [
|
|
14933
14933
|
{
|
|
14934
14934
|
path: '**',
|
|
14935
14935
|
component: SubscriptionPackageViewComponent,
|
|
@@ -14939,12 +14939,12 @@ const routes$2 = [
|
|
|
14939
14939
|
class SubscriptionPackageViewRoutingModule {
|
|
14940
14940
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: SubscriptionPackageViewRoutingModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
14941
14941
|
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.14", ngImport: i0, type: SubscriptionPackageViewRoutingModule, imports: [i1$2.RouterModule], exports: [RouterModule] }); }
|
|
14942
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: SubscriptionPackageViewRoutingModule, imports: [RouterModule.forChild(routes$
|
|
14942
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: SubscriptionPackageViewRoutingModule, imports: [RouterModule.forChild(routes$3), RouterModule] }); }
|
|
14943
14943
|
}
|
|
14944
14944
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: SubscriptionPackageViewRoutingModule, decorators: [{
|
|
14945
14945
|
type: NgModule,
|
|
14946
14946
|
args: [{
|
|
14947
|
-
imports: [RouterModule.forChild(routes$
|
|
14947
|
+
imports: [RouterModule.forChild(routes$3)],
|
|
14948
14948
|
exports: [RouterModule]
|
|
14949
14949
|
}]
|
|
14950
14950
|
}] });
|
|
@@ -15024,16 +15024,16 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
15024
15024
|
}]
|
|
15025
15025
|
}] });
|
|
15026
15026
|
|
|
15027
|
-
const routes$
|
|
15027
|
+
const routes$2 = [];
|
|
15028
15028
|
class TimelineHistoryForModelRoutingModule {
|
|
15029
15029
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: TimelineHistoryForModelRoutingModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
15030
15030
|
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.14", ngImport: i0, type: TimelineHistoryForModelRoutingModule, imports: [i1$2.RouterModule], exports: [RouterModule] }); }
|
|
15031
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: TimelineHistoryForModelRoutingModule, imports: [RouterModule.forChild(routes$
|
|
15031
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: TimelineHistoryForModelRoutingModule, imports: [RouterModule.forChild(routes$2), RouterModule] }); }
|
|
15032
15032
|
}
|
|
15033
15033
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: TimelineHistoryForModelRoutingModule, decorators: [{
|
|
15034
15034
|
type: NgModule,
|
|
15035
15035
|
args: [{
|
|
15036
|
-
imports: [RouterModule.forChild(routes$
|
|
15036
|
+
imports: [RouterModule.forChild(routes$2)],
|
|
15037
15037
|
exports: [RouterModule]
|
|
15038
15038
|
}]
|
|
15039
15039
|
}] });
|
|
@@ -15165,16 +15165,16 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
15165
15165
|
type: Input
|
|
15166
15166
|
}] } });
|
|
15167
15167
|
|
|
15168
|
-
const routes = [];
|
|
15168
|
+
const routes$1 = [];
|
|
15169
15169
|
class TimelineActivityListRoutingModule {
|
|
15170
15170
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: TimelineActivityListRoutingModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
15171
15171
|
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.14", ngImport: i0, type: TimelineActivityListRoutingModule, imports: [i1$2.RouterModule], exports: [RouterModule] }); }
|
|
15172
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: TimelineActivityListRoutingModule, imports: [RouterModule.forChild(routes), RouterModule] }); }
|
|
15172
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: TimelineActivityListRoutingModule, imports: [RouterModule.forChild(routes$1), RouterModule] }); }
|
|
15173
15173
|
}
|
|
15174
15174
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: TimelineActivityListRoutingModule, decorators: [{
|
|
15175
15175
|
type: NgModule,
|
|
15176
15176
|
args: [{
|
|
15177
|
-
imports: [RouterModule.forChild(routes)],
|
|
15177
|
+
imports: [RouterModule.forChild(routes$1)],
|
|
15178
15178
|
exports: [RouterModule]
|
|
15179
15179
|
}]
|
|
15180
15180
|
}] });
|
|
@@ -15306,6 +15306,185 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
15306
15306
|
], template: "<app-techlify-icon role='button' name='delete' (click)=\"open()\"></app-techlify-icon>" }]
|
|
15307
15307
|
}], ctorParameters: () => [{ type: i1.MatDialog }, { type: AlertService }, { type: ErrorHandlerService }] });
|
|
15308
15308
|
|
|
15309
|
+
class FormConfigurationFormService extends TechlifyServiceBaseClass {
|
|
15310
|
+
constructor(http) {
|
|
15311
|
+
super(http, 'form-configuration-forms');
|
|
15312
|
+
}
|
|
15313
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: FormConfigurationFormService, deps: [{ token: HttpService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
15314
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: FormConfigurationFormService, providedIn: 'root' }); }
|
|
15315
|
+
}
|
|
15316
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: FormConfigurationFormService, decorators: [{
|
|
15317
|
+
type: Injectable,
|
|
15318
|
+
args: [{
|
|
15319
|
+
providedIn: 'root'
|
|
15320
|
+
}]
|
|
15321
|
+
}], ctorParameters: () => [{ type: HttpService }] });
|
|
15322
|
+
|
|
15323
|
+
class FormConfigurationFormFieldService extends TechlifyServiceBaseClass {
|
|
15324
|
+
constructor(http) {
|
|
15325
|
+
super(http, 'form-configuration-form-fields');
|
|
15326
|
+
}
|
|
15327
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: FormConfigurationFormFieldService, deps: [{ token: HttpService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
15328
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: FormConfigurationFormFieldService, providedIn: 'root' }); }
|
|
15329
|
+
}
|
|
15330
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: FormConfigurationFormFieldService, decorators: [{
|
|
15331
|
+
type: Injectable,
|
|
15332
|
+
args: [{
|
|
15333
|
+
providedIn: 'root'
|
|
15334
|
+
}]
|
|
15335
|
+
}], ctorParameters: () => [{ type: HttpService }] });
|
|
15336
|
+
|
|
15337
|
+
class FormConfigurationUtilityService {
|
|
15338
|
+
constructor() {
|
|
15339
|
+
this.fieldConfigCache = {};
|
|
15340
|
+
}
|
|
15341
|
+
initialize(formConfigurationFormService, formCode) {
|
|
15342
|
+
return formConfigurationFormService
|
|
15343
|
+
.show(formCode)
|
|
15344
|
+
.pipe(map(res => {
|
|
15345
|
+
this.formConfiguration = res.item;
|
|
15346
|
+
return true;
|
|
15347
|
+
}));
|
|
15348
|
+
}
|
|
15349
|
+
getFieldRequired(fieldCode) {
|
|
15350
|
+
return this.getFieldConfig(fieldCode)?.is_required ?? false;
|
|
15351
|
+
}
|
|
15352
|
+
getFieldEnabled(fieldCode) {
|
|
15353
|
+
return this.getFieldConfig(fieldCode)?.is_enabled ?? false;
|
|
15354
|
+
}
|
|
15355
|
+
getFieldConfig(fieldCode) {
|
|
15356
|
+
let fieldConfig = this.fieldConfigCache[fieldCode];
|
|
15357
|
+
if (!fieldConfig) {
|
|
15358
|
+
fieldConfig = this.formConfiguration.fields.find(x => x.field_code === fieldCode);
|
|
15359
|
+
this.fieldConfigCache[fieldCode] = fieldConfig;
|
|
15360
|
+
}
|
|
15361
|
+
return fieldConfig;
|
|
15362
|
+
}
|
|
15363
|
+
}
|
|
15364
|
+
|
|
15365
|
+
class FormConfigurationFieldFormComponent {
|
|
15366
|
+
constructor(formConfigurationFormService, activatedRoute, formConfigurationFormFieldService) {
|
|
15367
|
+
this.formConfigurationFormService = formConfigurationFormService;
|
|
15368
|
+
this.activatedRoute = activatedRoute;
|
|
15369
|
+
this.formConfigurationFormFieldService = formConfigurationFormFieldService;
|
|
15370
|
+
this.isWorking = false;
|
|
15371
|
+
}
|
|
15372
|
+
ngOnInit() {
|
|
15373
|
+
this.isWorking = true;
|
|
15374
|
+
this.activatedRoute.paramMap.pipe(switchMap$1((paramMap) => this.formConfigurationFormService
|
|
15375
|
+
.show(paramMap.get('formCode'))
|
|
15376
|
+
.pipe(finalize(() => this.isWorking = false)))).subscribe((res) => {
|
|
15377
|
+
this.formConfiguration = res?.item;
|
|
15378
|
+
});
|
|
15379
|
+
}
|
|
15380
|
+
updateField(fieldCode, field, value) {
|
|
15381
|
+
field[fieldCode] = value.checked;
|
|
15382
|
+
field.is_working = true;
|
|
15383
|
+
this.formConfigurationFormFieldService.update(field)
|
|
15384
|
+
.pipe(finalize(() => field.is_working = false))
|
|
15385
|
+
.subscribe((res) => {
|
|
15386
|
+
field.id = res?.item?.id;
|
|
15387
|
+
field[fieldCode] = res?.item[fieldCode];
|
|
15388
|
+
});
|
|
15389
|
+
}
|
|
15390
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: FormConfigurationFieldFormComponent, deps: [{ token: FormConfigurationFormService }, { token: i1$2.ActivatedRoute }, { token: FormConfigurationFormFieldService }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
15391
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: FormConfigurationFieldFormComponent, selector: "app-form-configuration-field-form", ngImport: i0, template: "<div fxLayout=\"column\" class=\"mt-2 container\" fxLayoutGap=\"0.5rem\">\n <mat-card appearance=\"outlined\" class=\"p-0\">\n <mat-progress-bar mode=\"indeterminate\" *ngIf=\"isWorking\"></mat-progress-bar>\n <h5 class=\"p-4\">\n Form Configuration: {{formConfiguration?.form_name}}\n </h5>\n <div *ngFor=\"let field of formConfiguration?.fields\" fxLayout=\"column\" class=\"px-4 py-2\">\n <div fxLayout=\"row\" fxLayoutAlign=\"start center\">\n <div fxFlex>\n {{field?.description}}\n </div>\n <div fxFlex fxLayout=\"row\">\n <mat-slide-toggle fxFlex [checked]=\"field?.is_required\" color=\"primary\"\n (change)=\"updateField('is_required',field,$event)\" [disabled]=\"field?.is_working || !field?.is_enabled\">Is\n Required</mat-slide-toggle>\n <mat-slide-toggle fxFlex [checked]=\"field?.is_enabled\" color=\"primary\"\n (change)=\"updateField('is_enabled',field,$event)\" [disabled]=\"field?.is_working\">Is\n Enabled</mat-slide-toggle>\n </div>\n </div>\n </div>\n </mat-card>\n</div>", styles: [""], dependencies: [{ kind: "directive", type: i2$1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i2$1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: i4.MatCard, selector: "mat-card", inputs: ["appearance"], exportAs: ["matCard"] }, { kind: "component", type: i12.MatProgressBar, selector: "mat-progress-bar", inputs: ["color", "value", "bufferValue", "mode"], outputs: ["animationEnd"], exportAs: ["matProgressBar"] }, { kind: "component", type: i8$6.MatSlideToggle, selector: "mat-slide-toggle", inputs: ["name", "id", "labelPosition", "aria-label", "aria-labelledby", "aria-describedby", "required", "color", "disabled", "disableRipple", "tabIndex", "checked", "hideIcon", "disabledInteractive"], outputs: ["change", "toggleChange"], exportAs: ["matSlideToggle"] }, { kind: "directive", type: i7.DefaultLayoutDirective, selector: " [fxLayout], [fxLayout.xs], [fxLayout.sm], [fxLayout.md], [fxLayout.lg], [fxLayout.xl], [fxLayout.lt-sm], [fxLayout.lt-md], [fxLayout.lt-lg], [fxLayout.lt-xl], [fxLayout.gt-xs], [fxLayout.gt-sm], [fxLayout.gt-md], [fxLayout.gt-lg]", inputs: ["fxLayout", "fxLayout.xs", "fxLayout.sm", "fxLayout.md", "fxLayout.lg", "fxLayout.xl", "fxLayout.lt-sm", "fxLayout.lt-md", "fxLayout.lt-lg", "fxLayout.lt-xl", "fxLayout.gt-xs", "fxLayout.gt-sm", "fxLayout.gt-md", "fxLayout.gt-lg"] }, { kind: "directive", type: i7.DefaultLayoutGapDirective, selector: " [fxLayoutGap], [fxLayoutGap.xs], [fxLayoutGap.sm], [fxLayoutGap.md], [fxLayoutGap.lg], [fxLayoutGap.xl], [fxLayoutGap.lt-sm], [fxLayoutGap.lt-md], [fxLayoutGap.lt-lg], [fxLayoutGap.lt-xl], [fxLayoutGap.gt-xs], [fxLayoutGap.gt-sm], [fxLayoutGap.gt-md], [fxLayoutGap.gt-lg]", inputs: ["fxLayoutGap", "fxLayoutGap.xs", "fxLayoutGap.sm", "fxLayoutGap.md", "fxLayoutGap.lg", "fxLayoutGap.xl", "fxLayoutGap.lt-sm", "fxLayoutGap.lt-md", "fxLayoutGap.lt-lg", "fxLayoutGap.lt-xl", "fxLayoutGap.gt-xs", "fxLayoutGap.gt-sm", "fxLayoutGap.gt-md", "fxLayoutGap.gt-lg"] }, { kind: "directive", type: i7.DefaultLayoutAlignDirective, selector: " [fxLayoutAlign], [fxLayoutAlign.xs], [fxLayoutAlign.sm], [fxLayoutAlign.md], [fxLayoutAlign.lg], [fxLayoutAlign.xl], [fxLayoutAlign.lt-sm], [fxLayoutAlign.lt-md], [fxLayoutAlign.lt-lg], [fxLayoutAlign.lt-xl], [fxLayoutAlign.gt-xs], [fxLayoutAlign.gt-sm], [fxLayoutAlign.gt-md], [fxLayoutAlign.gt-lg]", inputs: ["fxLayoutAlign", "fxLayoutAlign.xs", "fxLayoutAlign.sm", "fxLayoutAlign.md", "fxLayoutAlign.lg", "fxLayoutAlign.xl", "fxLayoutAlign.lt-sm", "fxLayoutAlign.lt-md", "fxLayoutAlign.lt-lg", "fxLayoutAlign.lt-xl", "fxLayoutAlign.gt-xs", "fxLayoutAlign.gt-sm", "fxLayoutAlign.gt-md", "fxLayoutAlign.gt-lg"] }, { kind: "directive", type: i7.DefaultFlexDirective, selector: " [fxFlex], [fxFlex.xs], [fxFlex.sm], [fxFlex.md], [fxFlex.lg], [fxFlex.xl], [fxFlex.lt-sm], [fxFlex.lt-md], [fxFlex.lt-lg], [fxFlex.lt-xl], [fxFlex.gt-xs], [fxFlex.gt-sm], [fxFlex.gt-md], [fxFlex.gt-lg]", inputs: ["fxFlex", "fxFlex.xs", "fxFlex.sm", "fxFlex.md", "fxFlex.lg", "fxFlex.xl", "fxFlex.lt-sm", "fxFlex.lt-md", "fxFlex.lt-lg", "fxFlex.lt-xl", "fxFlex.gt-xs", "fxFlex.gt-sm", "fxFlex.gt-md", "fxFlex.gt-lg"] }] }); }
|
|
15392
|
+
}
|
|
15393
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: FormConfigurationFieldFormComponent, decorators: [{
|
|
15394
|
+
type: Component,
|
|
15395
|
+
args: [{ selector: 'app-form-configuration-field-form', template: "<div fxLayout=\"column\" class=\"mt-2 container\" fxLayoutGap=\"0.5rem\">\n <mat-card appearance=\"outlined\" class=\"p-0\">\n <mat-progress-bar mode=\"indeterminate\" *ngIf=\"isWorking\"></mat-progress-bar>\n <h5 class=\"p-4\">\n Form Configuration: {{formConfiguration?.form_name}}\n </h5>\n <div *ngFor=\"let field of formConfiguration?.fields\" fxLayout=\"column\" class=\"px-4 py-2\">\n <div fxLayout=\"row\" fxLayoutAlign=\"start center\">\n <div fxFlex>\n {{field?.description}}\n </div>\n <div fxFlex fxLayout=\"row\">\n <mat-slide-toggle fxFlex [checked]=\"field?.is_required\" color=\"primary\"\n (change)=\"updateField('is_required',field,$event)\" [disabled]=\"field?.is_working || !field?.is_enabled\">Is\n Required</mat-slide-toggle>\n <mat-slide-toggle fxFlex [checked]=\"field?.is_enabled\" color=\"primary\"\n (change)=\"updateField('is_enabled',field,$event)\" [disabled]=\"field?.is_working\">Is\n Enabled</mat-slide-toggle>\n </div>\n </div>\n </div>\n </mat-card>\n</div>" }]
|
|
15396
|
+
}], ctorParameters: () => [{ type: FormConfigurationFormService }, { type: i1$2.ActivatedRoute }, { type: FormConfigurationFormFieldService }] });
|
|
15397
|
+
|
|
15398
|
+
const routes = [
|
|
15399
|
+
{
|
|
15400
|
+
path: '',
|
|
15401
|
+
component: FormConfigurationFieldFormComponent,
|
|
15402
|
+
canActivate: [AuthenticationGuard],
|
|
15403
|
+
data: {
|
|
15404
|
+
breadcrumb: 'Form Configuration'
|
|
15405
|
+
}
|
|
15406
|
+
}
|
|
15407
|
+
];
|
|
15408
|
+
class FormConfigurationFieldFormRoutingModule {
|
|
15409
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: FormConfigurationFieldFormRoutingModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
15410
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.14", ngImport: i0, type: FormConfigurationFieldFormRoutingModule, imports: [i1$2.RouterModule], exports: [RouterModule] }); }
|
|
15411
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: FormConfigurationFieldFormRoutingModule, imports: [RouterModule.forChild(routes), RouterModule] }); }
|
|
15412
|
+
}
|
|
15413
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: FormConfigurationFieldFormRoutingModule, decorators: [{
|
|
15414
|
+
type: NgModule,
|
|
15415
|
+
args: [{
|
|
15416
|
+
imports: [RouterModule.forChild(routes)],
|
|
15417
|
+
exports: [RouterModule]
|
|
15418
|
+
}]
|
|
15419
|
+
}] });
|
|
15420
|
+
|
|
15421
|
+
class FormConfigurationFieldFormModule {
|
|
15422
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: FormConfigurationFieldFormModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
15423
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.14", ngImport: i0, type: FormConfigurationFieldFormModule, declarations: [FormConfigurationFieldFormComponent], imports: [CommonModule,
|
|
15424
|
+
FormsModule,
|
|
15425
|
+
MaterialModule,
|
|
15426
|
+
FlexLayoutModule,
|
|
15427
|
+
FormConfigurationFieldFormRoutingModule], exports: [FormConfigurationFieldFormComponent] }); }
|
|
15428
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: FormConfigurationFieldFormModule, imports: [CommonModule,
|
|
15429
|
+
FormsModule,
|
|
15430
|
+
MaterialModule,
|
|
15431
|
+
FlexLayoutModule,
|
|
15432
|
+
FormConfigurationFieldFormRoutingModule] }); }
|
|
15433
|
+
}
|
|
15434
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: FormConfigurationFieldFormModule, decorators: [{
|
|
15435
|
+
type: NgModule,
|
|
15436
|
+
args: [{
|
|
15437
|
+
declarations: [FormConfigurationFieldFormComponent],
|
|
15438
|
+
imports: [
|
|
15439
|
+
CommonModule,
|
|
15440
|
+
FormsModule,
|
|
15441
|
+
MaterialModule,
|
|
15442
|
+
FlexLayoutModule,
|
|
15443
|
+
FormConfigurationFieldFormRoutingModule
|
|
15444
|
+
],
|
|
15445
|
+
exports: [FormConfigurationFieldFormComponent]
|
|
15446
|
+
}]
|
|
15447
|
+
}] });
|
|
15448
|
+
|
|
15449
|
+
class FormConfigurationForFormComponent {
|
|
15450
|
+
constructor(router) {
|
|
15451
|
+
this.router = router;
|
|
15452
|
+
}
|
|
15453
|
+
openForm() {
|
|
15454
|
+
this.router.navigate(['/form-configuration-field-form', this.formCode]);
|
|
15455
|
+
}
|
|
15456
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: FormConfigurationForFormComponent, deps: [{ token: i1$2.Router }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
15457
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: FormConfigurationForFormComponent, selector: "app-form-configuration-for-form", inputs: { formCode: "formCode" }, ngImport: i0, template: "<mat-icon role='button' matTooltip=\"Form Configuration\" (click)=\"openForm()\">settings</mat-icon>", dependencies: [{ kind: "component", type: i8.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }, { kind: "directive", type: i11.MatTooltip, selector: "[matTooltip]", inputs: ["matTooltipPosition", "matTooltipPositionAtOrigin", "matTooltipDisabled", "matTooltipShowDelay", "matTooltipHideDelay", "matTooltipTouchGestures", "matTooltip", "matTooltipClass"], exportAs: ["matTooltip"] }] }); }
|
|
15458
|
+
}
|
|
15459
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: FormConfigurationForFormComponent, decorators: [{
|
|
15460
|
+
type: Component,
|
|
15461
|
+
args: [{ selector: 'app-form-configuration-for-form', template: "<mat-icon role='button' matTooltip=\"Form Configuration\" (click)=\"openForm()\">settings</mat-icon>" }]
|
|
15462
|
+
}], ctorParameters: () => [{ type: i1$2.Router }], propDecorators: { formCode: [{
|
|
15463
|
+
type: Input
|
|
15464
|
+
}] } });
|
|
15465
|
+
|
|
15466
|
+
class FormConfigurationForFormModule {
|
|
15467
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: FormConfigurationForFormModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
15468
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.14", ngImport: i0, type: FormConfigurationForFormModule, declarations: [FormConfigurationForFormComponent], imports: [CommonModule,
|
|
15469
|
+
RouterModule,
|
|
15470
|
+
MaterialModule], exports: [FormConfigurationForFormComponent] }); }
|
|
15471
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: FormConfigurationForFormModule, imports: [CommonModule,
|
|
15472
|
+
RouterModule,
|
|
15473
|
+
MaterialModule] }); }
|
|
15474
|
+
}
|
|
15475
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: FormConfigurationForFormModule, decorators: [{
|
|
15476
|
+
type: NgModule,
|
|
15477
|
+
args: [{
|
|
15478
|
+
declarations: [FormConfigurationForFormComponent],
|
|
15479
|
+
imports: [
|
|
15480
|
+
CommonModule,
|
|
15481
|
+
RouterModule,
|
|
15482
|
+
MaterialModule
|
|
15483
|
+
],
|
|
15484
|
+
exports: [FormConfigurationForFormComponent]
|
|
15485
|
+
}]
|
|
15486
|
+
}] });
|
|
15487
|
+
|
|
15309
15488
|
/*
|
|
15310
15489
|
* Public API Surface of ngx-techlify-core
|
|
15311
15490
|
*/
|
|
@@ -15314,5 +15493,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
15314
15493
|
* Generated bundle index. Do not edit.
|
|
15315
15494
|
*/
|
|
15316
15495
|
|
|
15317
|
-
export { AccessControlConfigModule, ActionPopup, ActionPopupComponent, ActionPopupModule, AdminRoleListComponent, AdminRoleListModule, AdminRolePermissionFormComponent, AdminRolePermissionFormModule, AdminRoleService, AlertService, ApiPrefixInterceptor, AppAdminHomeComponent, AppAdminModule, AppAdminUserViewComponent, AppAdminUserViewModule, AuditLogForModelComponent, AuditLogForModelModule, AuditLogForModelRoutingModule, AuditLogListComponent, AuditLogListFilterComponent, AuditLogListFilterModule, AuditLogListFilterRoutingModule, AuditLogListModule, AuditLogListRoutingModule, AuditLogModule, AuditLogRoutingModule, AuditLogViewComponent, AuditLogViewModelComponent, AuditLogViewModelModule, AuditLogViewModelRoutingModule, AuditLogViewModule, AuditLogViewRoutingModule, AuditLogsViewModelComponent, AuditLogsViewModelModule, AuditLogsViewModelRoutingModule, AuthenticationGuard, AuthenticationService, CacheInterceptor, ChangePasswordModule, ClientService, ColumnConfig, ColumnSelectorComponent, ColumnSelectorModule, CommentFormComponent, CompanyInfoDisplayComponent, CompanyInformationComponent, ConfigService, CoreModule, CredentialsService, CurrentUserService, CustomIconComponent, CustomIconModule, DEFAULT_SELECTED_VALUE, DataManager, DataTable, DataTableComponent, DataTableModule, DateUtils, DateValidator, DocumentViewerComponent, DocumentViewerModule, EmailSubscriptionForUserComponent, EmailSubscriptionForUserModule, EmailSubscriptionForUserRoutingModule, EmailSubscriptionModule, EmailSubscriptionRoutingModule, EmailSubscriptionTypeFormComponent, EmailSubscriptionTypeFormModule, EmailSubscriptionTypeFormRoutingModule, EmailSubscriptionTypeListComponent, EmailSubscriptionTypeListModule, EmailSubscriptionTypeListRoutingModule, EmailSubscriptionTypeModule, EmailSubscriptionTypeRoutingModule, EmailSubscriptionUserFormComponent, EmailSubscriptionUserFormModule, EmailSubscriptionUserFormRoutingModule, EmailSubscriptionUserListComponent, EmailSubscriptionUserListFilterComponent, EmailSubscriptionUserListFilterModule, EmailSubscriptionUserListFilterRoutingModule, EmailSubscriptionUserListModule, EmailSubscriptionUserListRoutingModule, EmailSubscriptionUserModule, EmailSubscriptionUserRoutingModule, EntityFileFormComponent, EntityFileService, EntityFilesViewAllComponent, EntityFilesViewAllModule, EnvironmentService, ErrorHandlerInterceptor, ErrorHandlerService, ErrorSnackComponent, ExportExcelButtonComponent, ExportExcelModule, FileDragdropUploaderComponent, FileDragdropUploaderModule, FileDropperComponent, FileDropperConfig, FileDropperModule, FilterService, ForgotPasswordComponent, ForgotPasswordModule, ForgotPasswordRoutingModule, FormValidatorService, HTTP_DYNAMIC_INTERCEPTORS, HttpCacheService, HttpService, ImportCsvComponent, ImportCsvModule, LoaderComponent, LoaderModule, LogLevel, Logger, LoginComponent, LoginFormFieldsComponent, LoginHistoryForUserComponent, LoginHistoryForUserModule, LoginHistoryForUserRoutingModule, LoginModule, LoginRoutingModule, MaterialModule, MultiUserConfig, NgxTechlifyUsersModule, NoteFormComponent, NoteListComponent, NoteModule, NumItemsSelector, NumberInputButtonComponent, NumberInputButtonModule, NumberSelector, PageEvent, PdfButtonComponent, PdfButtonModule, Permission, PermissionModule, PermissionRoutingProvider, PermissionsManagementComponent, ProfileEditComponent, ProfileModule, ProfileRoutingModule, ReadMoreComponent, ReadMoreModule, RequestHelperService, ResetPasswordComponent, ResetPasswordModule, ResetPasswordRoutingModule, ResetPasswordService, RestrictorTypeSelectorComponent, RestrictorTypeSelectorModule, RestrictorsModule, Role, RoleFormButtonComponent, RoleFormComponent, RoleModule, RoleRoutingProvider, RoleService, RoleViewComponent, RoleViewModule, RolesViewAllComponent, RouteReusableStrategy, SearchableSelectorComponent, SearchableSelectorModule, SignUpComponent, SignupModule, SignupRoutingModule, SnackModule, StorageService, SubscriptionFormComponent, SubscriptionFormModule, SubscriptionListingComponent, SubscriptionListingModule, SubscriptionPackageListingComponent, SubscriptionPackageListingModule, SubscriptionPackageViewComponent, SubscriptionPackageViewModule, SubscriptionService, SuccessSnackComponent, TechlifyAppSelectorComponent, TechlifyAppSelectorModule, TechlifyCompanySwitcherComponent, TechlifyCompanySwitcherModule, TechlifyConfig, TechlifyDeleteButtonComponent, TechlifyFeatureDirectiveModule, TechlifyFeatureEnabledDirective, TechlifyFeatureListingComponent, TechlifyFeatureModule, TechlifyFeatureRoutes, TechlifyFeatureService, TechlifyFormComponentInterface, TechlifyIconComponent, TechlifyIconModule, TechlifyListingControllerInterface, TechlifyNotificationForUserComponent, TechlifyNotificationForUserModule, TechlifyNotificationForUserRoutingModule, TechlifyNotificationModule, TechlifyNotificationRoutingModule, TechlifyServiceBaseClass, TechlifySubscriptionDirective, TechlifySubscriptionDirectiveModule, TechlifyTaggerTagFormConfigModel, TechlifyTaggerTagFormFieldComponent, TechlifyTaggerTagFormFieldModule, TechlifyTaggerTagSelectorComponent, TechlifyTaggerTagSelectorModule, TechlifyUpdateHistoryModule, TechlifyUpdateModule, TechlifyUpdateService, TechlifyUpdatesTeaserComponent, TechlifyUpdatesTeaserModule, TenantFormButtonComponent, TenantListWidgetComponent, Timeline, TimelineActivityButtonComponent, TimelineActivityButtonModule, TimelineActivityListComponent, TimelineActivityListModule, TimelineFilterComponent, TimelineFilterModule, TokenInterceptor, UpdateNotifierComponent, UpdateNotifierModule, User, UserClientEnableDisableButtonComponent, UserClientEnableDisableButtonModule, UserClientsListComponent, UserClientsListModule, UserConfig, UserConfigService, UserDataService, UserEnableButtonComponent, UserEnableButtonModule, UserExploreComponent, UserFormComponent, UserListPageConfig, UserMenuComponent, UserMenuModule, UserModule, UserRoutingProvider, UserSelectorComponent, UserSelectorModule, UserService, UserSessionsComponent, UserSessionsModule, UserViewComponent, UsersViewAllComponent, UtilityModule, ViewerConfig, WrapPipe, calculateTimeline, esfur, estlr, esulr };
|
|
15496
|
+
export { AccessControlConfigModule, ActionPopup, ActionPopupComponent, ActionPopupModule, AdminRoleListComponent, AdminRoleListModule, AdminRolePermissionFormComponent, AdminRolePermissionFormModule, AdminRoleService, AlertService, ApiPrefixInterceptor, AppAdminHomeComponent, AppAdminModule, AppAdminUserViewComponent, AppAdminUserViewModule, AuditLogForModelComponent, AuditLogForModelModule, AuditLogForModelRoutingModule, AuditLogListComponent, AuditLogListFilterComponent, AuditLogListFilterModule, AuditLogListFilterRoutingModule, AuditLogListModule, AuditLogListRoutingModule, AuditLogModule, AuditLogRoutingModule, AuditLogViewComponent, AuditLogViewModelComponent, AuditLogViewModelModule, AuditLogViewModelRoutingModule, AuditLogViewModule, AuditLogViewRoutingModule, AuditLogsViewModelComponent, AuditLogsViewModelModule, AuditLogsViewModelRoutingModule, AuthenticationGuard, AuthenticationService, CacheInterceptor, ChangePasswordModule, ClientService, ColumnConfig, ColumnSelectorComponent, ColumnSelectorModule, CommentFormComponent, CompanyInfoDisplayComponent, CompanyInformationComponent, ConfigService, CoreModule, CredentialsService, CurrentUserService, CustomIconComponent, CustomIconModule, DEFAULT_SELECTED_VALUE, DataManager, DataTable, DataTableComponent, DataTableModule, DateUtils, DateValidator, DocumentViewerComponent, DocumentViewerModule, EmailSubscriptionForUserComponent, EmailSubscriptionForUserModule, EmailSubscriptionForUserRoutingModule, EmailSubscriptionModule, EmailSubscriptionRoutingModule, EmailSubscriptionTypeFormComponent, EmailSubscriptionTypeFormModule, EmailSubscriptionTypeFormRoutingModule, EmailSubscriptionTypeListComponent, EmailSubscriptionTypeListModule, EmailSubscriptionTypeListRoutingModule, EmailSubscriptionTypeModule, EmailSubscriptionTypeRoutingModule, EmailSubscriptionUserFormComponent, EmailSubscriptionUserFormModule, EmailSubscriptionUserFormRoutingModule, EmailSubscriptionUserListComponent, EmailSubscriptionUserListFilterComponent, EmailSubscriptionUserListFilterModule, EmailSubscriptionUserListFilterRoutingModule, EmailSubscriptionUserListModule, EmailSubscriptionUserListRoutingModule, EmailSubscriptionUserModule, EmailSubscriptionUserRoutingModule, EntityFileFormComponent, EntityFileService, EntityFilesViewAllComponent, EntityFilesViewAllModule, EnvironmentService, ErrorHandlerInterceptor, ErrorHandlerService, ErrorSnackComponent, ExportExcelButtonComponent, ExportExcelModule, FileDragdropUploaderComponent, FileDragdropUploaderModule, FileDropperComponent, FileDropperConfig, FileDropperModule, FilterService, ForgotPasswordComponent, ForgotPasswordModule, ForgotPasswordRoutingModule, FormConfigurationFieldFormComponent, FormConfigurationFieldFormModule, FormConfigurationFieldFormRoutingModule, FormConfigurationForFormComponent, FormConfigurationForFormModule, FormConfigurationFormFieldService, FormConfigurationFormService, FormConfigurationUtilityService, FormValidatorService, HTTP_DYNAMIC_INTERCEPTORS, HttpCacheService, HttpService, ImportCsvComponent, ImportCsvModule, LoaderComponent, LoaderModule, LogLevel, Logger, LoginComponent, LoginFormFieldsComponent, LoginHistoryForUserComponent, LoginHistoryForUserModule, LoginHistoryForUserRoutingModule, LoginModule, LoginRoutingModule, MaterialModule, MultiUserConfig, NgxTechlifyUsersModule, NoteFormComponent, NoteListComponent, NoteModule, NumItemsSelector, NumberInputButtonComponent, NumberInputButtonModule, NumberSelector, PageEvent, PdfButtonComponent, PdfButtonModule, Permission, PermissionModule, PermissionRoutingProvider, PermissionsManagementComponent, ProfileEditComponent, ProfileModule, ProfileRoutingModule, ReadMoreComponent, ReadMoreModule, RequestHelperService, ResetPasswordComponent, ResetPasswordModule, ResetPasswordRoutingModule, ResetPasswordService, RestrictorTypeSelectorComponent, RestrictorTypeSelectorModule, RestrictorsModule, Role, RoleFormButtonComponent, RoleFormComponent, RoleModule, RoleRoutingProvider, RoleService, RoleViewComponent, RoleViewModule, RolesViewAllComponent, RouteReusableStrategy, SearchableSelectorComponent, SearchableSelectorModule, SignUpComponent, SignupModule, SignupRoutingModule, SnackModule, StorageService, SubscriptionFormComponent, SubscriptionFormModule, SubscriptionListingComponent, SubscriptionListingModule, SubscriptionPackageListingComponent, SubscriptionPackageListingModule, SubscriptionPackageViewComponent, SubscriptionPackageViewModule, SubscriptionService, SuccessSnackComponent, TechlifyAppSelectorComponent, TechlifyAppSelectorModule, TechlifyCompanySwitcherComponent, TechlifyCompanySwitcherModule, TechlifyConfig, TechlifyDeleteButtonComponent, TechlifyFeatureDirectiveModule, TechlifyFeatureEnabledDirective, TechlifyFeatureListingComponent, TechlifyFeatureModule, TechlifyFeatureRoutes, TechlifyFeatureService, TechlifyFormComponentInterface, TechlifyIconComponent, TechlifyIconModule, TechlifyListingControllerInterface, TechlifyNotificationForUserComponent, TechlifyNotificationForUserModule, TechlifyNotificationForUserRoutingModule, TechlifyNotificationModule, TechlifyNotificationRoutingModule, TechlifyServiceBaseClass, TechlifySubscriptionDirective, TechlifySubscriptionDirectiveModule, TechlifyTaggerTagFormConfigModel, TechlifyTaggerTagFormFieldComponent, TechlifyTaggerTagFormFieldModule, TechlifyTaggerTagSelectorComponent, TechlifyTaggerTagSelectorModule, TechlifyUpdateHistoryModule, TechlifyUpdateModule, TechlifyUpdateService, TechlifyUpdatesTeaserComponent, TechlifyUpdatesTeaserModule, TenantFormButtonComponent, TenantListWidgetComponent, Timeline, TimelineActivityButtonComponent, TimelineActivityButtonModule, TimelineActivityListComponent, TimelineActivityListModule, TimelineFilterComponent, TimelineFilterModule, TokenInterceptor, UpdateNotifierComponent, UpdateNotifierModule, User, UserClientEnableDisableButtonComponent, UserClientEnableDisableButtonModule, UserClientsListComponent, UserClientsListModule, UserConfig, UserConfigService, UserDataService, UserEnableButtonComponent, UserEnableButtonModule, UserExploreComponent, UserFormComponent, UserListPageConfig, UserMenuComponent, UserMenuModule, UserModule, UserRoutingProvider, UserSelectorComponent, UserSelectorModule, UserService, UserSessionsComponent, UserSessionsModule, UserViewComponent, UsersViewAllComponent, UtilityModule, ViewerConfig, WrapPipe, calculateTimeline, esfur, estlr, esulr };
|
|
15318
15497
|
//# sourceMappingURL=ngx-techlify-core.mjs.map
|