ngx-techlify-core 18.3.4 → 18.4.0
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/column-selector/column-config.model.mjs +3 -0
- package/esm2022/lib/column-selector/column-selector/column-selector.component.mjs +55 -28
- package/esm2022/lib/column-selector/column-selector.module.mjs +12 -4
- package/esm2022/lib/column-selector/index.mjs +2 -1
- package/esm2022/lib/techlify-tagger-tag-form-field/techlify-tagger-tag-form-field.component.mjs +3 -4
- package/fesm2022/ngx-techlify-core.mjs +69 -35
- package/fesm2022/ngx-techlify-core.mjs.map +1 -1
- package/lib/column-selector/column-config.model.d.ts +6 -0
- package/lib/column-selector/column-selector/column-selector.component.d.ts +11 -9
- package/lib/column-selector/column-selector.module.d.ts +3 -1
- package/lib/column-selector/index.d.ts +1 -0
- package/package.json +1 -1
|
@@ -31,7 +31,7 @@ import * as i1$4 from '@angular/forms';
|
|
|
31
31
|
import { UntypedFormControl, Validators, ReactiveFormsModule, FormsModule, NG_VALUE_ACCESSOR, FormControl } from '@angular/forms';
|
|
32
32
|
import * as i1$2 from '@angular/common/http';
|
|
33
33
|
import { HttpErrorResponse, HttpResponse, HttpClient, provideHttpClient, withInterceptorsFromDi } from '@angular/common/http';
|
|
34
|
-
import { throwError, Observable, Subject, of, BehaviorSubject, map as map$1, Subscription, from, finalize as finalize$1, debounceTime as debounceTime$1, distinctUntilChanged as distinctUntilChanged$1 } from 'rxjs';
|
|
34
|
+
import { throwError, Observable, Subject, of, BehaviorSubject, map as map$1, Subscription, from, finalize as finalize$1, debounceTime as debounceTime$1, distinctUntilChanged as distinctUntilChanged$1, startWith as startWith$1 } from 'rxjs';
|
|
35
35
|
import * as i1$1 from '@angular/material/snack-bar';
|
|
36
36
|
import { MAT_SNACK_BAR_DATA, MatSnackBarModule } from '@angular/material/snack-bar';
|
|
37
37
|
import * as i8$5 from '@angular/material/form-field';
|
|
@@ -533,8 +533,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
533
533
|
|
|
534
534
|
class DataTable {
|
|
535
535
|
}
|
|
536
|
-
class ColumnConfig {
|
|
537
|
-
}
|
|
536
|
+
let ColumnConfig$1 = class ColumnConfig {
|
|
537
|
+
};
|
|
538
538
|
class ActionConfig {
|
|
539
539
|
}
|
|
540
540
|
class ActionsMenu {
|
|
@@ -1545,9 +1545,8 @@ class TechlifyTaggerTagFormFieldComponent {
|
|
|
1545
1545
|
return this._value;
|
|
1546
1546
|
}
|
|
1547
1547
|
set value(tagIds) {
|
|
1548
|
-
|
|
1549
|
-
|
|
1550
|
-
this._value = [this.value];
|
|
1548
|
+
if (Array.isArray(tagIds)) {
|
|
1549
|
+
this._value = tagIds;
|
|
1551
1550
|
}
|
|
1552
1551
|
this.stateChanges.next();
|
|
1553
1552
|
}
|
|
@@ -12403,52 +12402,81 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
12403
12402
|
}]
|
|
12404
12403
|
}] });
|
|
12405
12404
|
|
|
12405
|
+
class ColumnConfig {
|
|
12406
|
+
}
|
|
12407
|
+
|
|
12406
12408
|
class ColumnSelectorComponent {
|
|
12409
|
+
get availableColumns() {
|
|
12410
|
+
return this.columnConfigs;
|
|
12411
|
+
}
|
|
12412
|
+
get displayedColumns() {
|
|
12413
|
+
return this.columnConfigs.filter(column => column.isSelected ?? true);
|
|
12414
|
+
}
|
|
12415
|
+
get displayedColumnDefs() {
|
|
12416
|
+
return this.displayedColumns.map(column => column.def);
|
|
12417
|
+
}
|
|
12418
|
+
get filteredColumns() {
|
|
12419
|
+
return this.availableColumns.filter((column) => {
|
|
12420
|
+
if (this.search.value) {
|
|
12421
|
+
return column.label.toLowerCase().includes(this.search.value.toLowerCase());
|
|
12422
|
+
}
|
|
12423
|
+
return true;
|
|
12424
|
+
});
|
|
12425
|
+
}
|
|
12426
|
+
get sortedColumns() {
|
|
12427
|
+
let columns = this.filteredColumns.sort((a, b) => {
|
|
12428
|
+
if (a.label < b.label)
|
|
12429
|
+
return -1;
|
|
12430
|
+
if (a.label > b.label)
|
|
12431
|
+
return 1;
|
|
12432
|
+
return 0;
|
|
12433
|
+
});
|
|
12434
|
+
if (this.search.value) {
|
|
12435
|
+
columns = [...columns, ...this.selectedColumns];
|
|
12436
|
+
}
|
|
12437
|
+
return [...new Map(columns.map(column => [column.def, column])).values()];
|
|
12438
|
+
}
|
|
12407
12439
|
constructor() {
|
|
12408
|
-
this.availableColumns = [];
|
|
12409
|
-
this.displayedColumns = [];
|
|
12410
12440
|
this.label = 'Columns';
|
|
12411
12441
|
this.mode = 'selector';
|
|
12442
|
+
this.columnConfigs = [];
|
|
12443
|
+
this.selectedColumns = [];
|
|
12444
|
+
this.selectedColumnsChange = new EventEmitter();
|
|
12412
12445
|
this.displayedColumnsChange = new EventEmitter();
|
|
12413
|
-
/**
|
|
12414
|
-
* @deprecated Use displayedColumnsChange instead
|
|
12415
|
-
*/
|
|
12416
|
-
this.updated = new EventEmitter();
|
|
12417
12446
|
this.columnSelector = new FormControl([]);
|
|
12418
|
-
this.
|
|
12419
|
-
this.selectedColumns = this.columnSelector.value || [];
|
|
12447
|
+
this.search = new FormControl('');
|
|
12420
12448
|
}
|
|
12421
12449
|
ngOnInit() {
|
|
12422
12450
|
if (this.displayedColumns?.length > 0) {
|
|
12423
|
-
this.columnSelector.setValue(this.
|
|
12424
|
-
this.selectedColumns = this.columnSelector.value;
|
|
12451
|
+
this.columnSelector.setValue(this.displayedColumnDefs, { emitEvent: false });
|
|
12425
12452
|
}
|
|
12426
|
-
this.columnSelector.valueChanges
|
|
12427
|
-
this.
|
|
12428
|
-
|
|
12429
|
-
this.
|
|
12453
|
+
this.columnSelector.valueChanges
|
|
12454
|
+
.pipe(startWith$1(this.displayedColumnDefs))
|
|
12455
|
+
.subscribe((selectedColumns) => {
|
|
12456
|
+
this.selectedColumns = this.columnConfigs
|
|
12457
|
+
.filter(column => selectedColumns.includes(column.def));
|
|
12458
|
+
const columnDefs = this.selectedColumns.map(column => column.def);
|
|
12459
|
+
this.selectedColumnsChange.emit(this.selectedColumns);
|
|
12460
|
+
this.displayedColumnsChange.emit(columnDefs);
|
|
12430
12461
|
});
|
|
12431
12462
|
}
|
|
12432
|
-
updateColumnSelector() {
|
|
12433
|
-
this.columnSelector.setValue(this.selectedColumns);
|
|
12434
|
-
}
|
|
12435
12463
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: ColumnSelectorComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
12436
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: ColumnSelectorComponent, selector: "app-column-selector", inputs: {
|
|
12464
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: ColumnSelectorComponent, selector: "app-column-selector", inputs: { label: "label", mode: "mode", columnConfigs: "columnConfigs", selectedColumns: "selectedColumns" }, outputs: { selectedColumnsChange: "selectedColumnsChange", displayedColumnsChange: "displayedColumnsChange" }, ngImport: i0, template: "<mat-form-field *ngIf=\"mode === 'selector'\">\n <mat-label>{{ label }}</mat-label>\n <mat-select [multiple]=\"true\" [formControl]=\"columnSelector\">\n <mat-option class=\"text-capitalize\" *ngFor=\"let col of sortedColumns\" [value]=\"col.def\"\n [disabled]=\"!(col?.isEditable ?? true)\">\n {{ col.label }}\n </mat-option>\n </mat-select>\n</mat-form-field>\n\n<div *ngIf=\"mode === 'icon'\" style=\"height: 20px;\">\n <button matTooltip=\"Column Selector\" type=\"button\" mat-icon-button (click)=\"select.open()\" class=\"column-button\">\n <mat-icon class=\"relative-view-icon\">view_column</mat-icon>\n <mat-select class=\"column-selector\" #select [formControl]=\"columnSelector\" multiple panelWidth=\"\">\n <mat-form-field class=\"p-1 w-100\">\n <input matInput [formControl]=\"search\" placeholder=\"Search\" (keydown)=\"$event.stopPropagation();\"\n autocomplete=\"off\">\n <button mat-icon-button matSuffix type=\"button\" *ngIf=\"search.value\" (click)=\"search.setValue('')\">\n <mat-icon>clear</mat-icon>\n </button>\n </mat-form-field>\n <mat-option *ngFor=\"let column of sortedColumns\" [value]=\"column.def\" class=\"text-capitalize\"\n [disabled]=\"!(column?.isEditable ?? true)\">{{column?.label}}</mat-option>\n </mat-select>\n </button>\n</div>", styles: [".relative-view-icon{position:relative;right:10px;bottom:14px}.column-button{height:20px;width:20px;border:0;background:transparent}.column-selector{opacity:0;position:relative;bottom:50px}\n"], 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: i8$5.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i8$5.MatLabel, selector: "mat-label" }, { kind: "directive", type: i8$5.MatSuffix, selector: "[matSuffix], [matIconSuffix], [matTextSuffix]", inputs: ["matTextSuffix"] }, { kind: "component", type: i8$3.MatOption, selector: "mat-option", inputs: ["value", "id", "disabled"], outputs: ["onSelectionChange"], exportAs: ["matOption"] }, { kind: "component", type: i12.MatSelect, selector: "mat-select", inputs: ["aria-describedby", "panelClass", "disabled", "disableRipple", "tabIndex", "hideSingleSelectionIndicator", "placeholder", "required", "multiple", "disableOptionCentering", "compareWith", "value", "aria-label", "aria-labelledby", "errorStateMatcher", "typeaheadDebounceInterval", "sortComparator", "id", "panelWidth"], outputs: ["openedChange", "opened", "closed", "selectionChange", "valueChange"], exportAs: ["matSelect"] }, { kind: "directive", type: i1$4.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i1$4.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1$4.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }, { kind: "component", type: i8$1.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }, { kind: "directive", type: i9$1.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly"], exportAs: ["matInput"] }, { kind: "component", type: i7$1.MatIconButton, selector: "button[mat-icon-button]", exportAs: ["matButton"] }] }); }
|
|
12437
12465
|
}
|
|
12438
12466
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: ColumnSelectorComponent, decorators: [{
|
|
12439
12467
|
type: Component,
|
|
12440
|
-
args: [{ selector: 'app-column-selector', template: "<mat-form-field *ngIf=\"mode === 'selector'\">\n <mat-label>{{ label }}</mat-label>\n <mat-select [multiple]=\"true\" [formControl]=\"columnSelector\">\n <mat-option class=\"text-capitalize\" *ngFor=\"let col of
|
|
12441
|
-
}], ctorParameters: () => [], propDecorators: {
|
|
12468
|
+
args: [{ selector: 'app-column-selector', template: "<mat-form-field *ngIf=\"mode === 'selector'\">\n <mat-label>{{ label }}</mat-label>\n <mat-select [multiple]=\"true\" [formControl]=\"columnSelector\">\n <mat-option class=\"text-capitalize\" *ngFor=\"let col of sortedColumns\" [value]=\"col.def\"\n [disabled]=\"!(col?.isEditable ?? true)\">\n {{ col.label }}\n </mat-option>\n </mat-select>\n</mat-form-field>\n\n<div *ngIf=\"mode === 'icon'\" style=\"height: 20px;\">\n <button matTooltip=\"Column Selector\" type=\"button\" mat-icon-button (click)=\"select.open()\" class=\"column-button\">\n <mat-icon class=\"relative-view-icon\">view_column</mat-icon>\n <mat-select class=\"column-selector\" #select [formControl]=\"columnSelector\" multiple panelWidth=\"\">\n <mat-form-field class=\"p-1 w-100\">\n <input matInput [formControl]=\"search\" placeholder=\"Search\" (keydown)=\"$event.stopPropagation();\"\n autocomplete=\"off\">\n <button mat-icon-button matSuffix type=\"button\" *ngIf=\"search.value\" (click)=\"search.setValue('')\">\n <mat-icon>clear</mat-icon>\n </button>\n </mat-form-field>\n <mat-option *ngFor=\"let column of sortedColumns\" [value]=\"column.def\" class=\"text-capitalize\"\n [disabled]=\"!(column?.isEditable ?? true)\">{{column?.label}}</mat-option>\n </mat-select>\n </button>\n</div>", styles: [".relative-view-icon{position:relative;right:10px;bottom:14px}.column-button{height:20px;width:20px;border:0;background:transparent}.column-selector{opacity:0;position:relative;bottom:50px}\n"] }]
|
|
12469
|
+
}], ctorParameters: () => [], propDecorators: { label: [{
|
|
12442
12470
|
type: Input
|
|
12443
|
-
}],
|
|
12471
|
+
}], mode: [{
|
|
12444
12472
|
type: Input
|
|
12445
|
-
}],
|
|
12473
|
+
}], columnConfigs: [{
|
|
12446
12474
|
type: Input
|
|
12447
|
-
}],
|
|
12475
|
+
}], selectedColumns: [{
|
|
12448
12476
|
type: Input
|
|
12449
|
-
}],
|
|
12477
|
+
}], selectedColumnsChange: [{
|
|
12450
12478
|
type: Output
|
|
12451
|
-
}],
|
|
12479
|
+
}], displayedColumnsChange: [{
|
|
12452
12480
|
type: Output
|
|
12453
12481
|
}] } });
|
|
12454
12482
|
|
|
@@ -12464,7 +12492,9 @@ class ColumnSelectorModule {
|
|
|
12464
12492
|
MatMenu,
|
|
12465
12493
|
MatSelectionList,
|
|
12466
12494
|
FormsModule,
|
|
12467
|
-
MatListOption
|
|
12495
|
+
MatListOption,
|
|
12496
|
+
MatInputModule,
|
|
12497
|
+
MatButtonModule], exports: [ColumnSelectorComponent] }); }
|
|
12468
12498
|
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: ColumnSelectorModule, imports: [CommonModule,
|
|
12469
12499
|
MatFormFieldModule,
|
|
12470
12500
|
MatOptionModule,
|
|
@@ -12474,7 +12504,9 @@ class ColumnSelectorModule {
|
|
|
12474
12504
|
MatMenu,
|
|
12475
12505
|
MatSelectionList,
|
|
12476
12506
|
FormsModule,
|
|
12477
|
-
MatListOption
|
|
12507
|
+
MatListOption,
|
|
12508
|
+
MatInputModule,
|
|
12509
|
+
MatButtonModule] }); }
|
|
12478
12510
|
}
|
|
12479
12511
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: ColumnSelectorModule, decorators: [{
|
|
12480
12512
|
type: NgModule,
|
|
@@ -12496,7 +12528,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
12496
12528
|
MatMenu,
|
|
12497
12529
|
MatSelectionList,
|
|
12498
12530
|
FormsModule,
|
|
12499
|
-
MatListOption
|
|
12531
|
+
MatListOption,
|
|
12532
|
+
MatInputModule,
|
|
12533
|
+
MatButtonModule
|
|
12500
12534
|
]
|
|
12501
12535
|
}]
|
|
12502
12536
|
}] });
|
|
@@ -12509,5 +12543,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
12509
12543
|
* Generated bundle index. Do not edit.
|
|
12510
12544
|
*/
|
|
12511
12545
|
|
|
12512
|
-
export { AccessControlConfigModule, ActionPopup, ActionPopupComponent, ActionPopupModule, AlertService, ApiPrefixInterceptor, AuditLogForModelComponent, AuditLogForModelModule, AuditLogForModelRoutingModule, AuditLogListComponent, AuditLogListFilterComponent, AuditLogListFilterModule, AuditLogListFilterRoutingModule, AuditLogListModule, AuditLogListRoutingModule, AuditLogModule, AuditLogRoutingModule, AuditLogViewComponent, AuditLogViewModelComponent, AuditLogViewModelModule, AuditLogViewModelRoutingModule, AuditLogViewModule, AuditLogViewRoutingModule, AuditLogsViewModelComponent, AuditLogsViewModelModule, AuditLogsViewModelRoutingModule, AuthenticationGuard, AuthenticationService, CacheInterceptor, ChangePasswordModule, ColumnSelectorComponent, ColumnSelectorModule, CommentFormComponent, ConfigService, CoreModule, CredentialsService, CurrentUserService, 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, 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, LoginHistoryForUserComponent, LoginHistoryForUserModule, LoginHistoryForUserRoutingModule, LoginModule, LoginRoutingModule, MaterialModule, MultiUserConfig, NgxTechlifyUsersModule, NoteFormComponent, NoteListComponent, NoteModule, NumItemsSelector, NumberInputButtonComponent, NumberInputButtonModule, NumberSelector, PageEvent, Permission, PermissionModule, PermissionRoutingProvider, PermissionsManagementComponent, ProfileEditComponent, ProfileModule, ProfileRoutingModule, ReadMoreComponent, ReadMoreModule, RequestHelperService, RestrictorTypeSelectorComponent, RestrictorTypeSelectorModule, RestrictorsModule, Role, RoleFormButtonComponent, RoleFormComponent, RoleModule, RoleRoutingProvider, RoleService, RolesViewAllComponent, RouteReusableStrategy, SearchableSelectorComponent, SearchableSelectorModule, SignUpComponent, SignupModule, SignupRoutingModule, SnackModule, StorageService, SuccessSnackComponent, TechlifyCompanySwitcherComponent, TechlifyCompanySwitcherModule, TechlifyConfig, TechlifyFeatureEnabledDirective, TechlifyFeatureListingComponent, TechlifyFeatureModule, TechlifyFeatureRoutes, TechlifyFormComponentInterface, TechlifyListingControllerInterface, TechlifyNotificationForUserComponent, TechlifyNotificationForUserModule, TechlifyNotificationForUserRoutingModule, TechlifyNotificationModule, TechlifyNotificationRoutingModule, TechlifyServiceBaseClass, TechlifyTaggerTagFormConfigModel, TechlifyTaggerTagFormFieldComponent, TechlifyTaggerTagFormFieldModule, TechlifyTaggerTagSelectorComponent, TechlifyTaggerTagSelectorModule, TechlifyUpdateHistoryModule, TechlifyUpdateModule, TechlifyUpdateService, TechlifyUpdatesTeaserComponent, TechlifyUpdatesTeaserModule, Timeline, TimelineFilterComponent, TimelineFilterModule, TokenInterceptor, UpdateNotifierComponent, UpdateNotifierModule, User, UserClientEnableDisableButtonComponent, UserClientsListComponent, UserConfig, UserConfigService, UserDataService, UserEnableButtonComponent, UserExploreComponent, UserFormComponent, UserListPageConfig, UserModule, UserRoutingProvider, UserSelectorComponent, UserSelectorModule, UserService, UserSessionsComponent, UsersViewAllComponent, UtilityModule, ViewerConfig, calculateTimeline, esfur, estlr, esulr };
|
|
12546
|
+
export { AccessControlConfigModule, ActionPopup, ActionPopupComponent, ActionPopupModule, AlertService, ApiPrefixInterceptor, AuditLogForModelComponent, AuditLogForModelModule, AuditLogForModelRoutingModule, AuditLogListComponent, AuditLogListFilterComponent, AuditLogListFilterModule, AuditLogListFilterRoutingModule, AuditLogListModule, AuditLogListRoutingModule, AuditLogModule, AuditLogRoutingModule, AuditLogViewComponent, AuditLogViewModelComponent, AuditLogViewModelModule, AuditLogViewModelRoutingModule, AuditLogViewModule, AuditLogViewRoutingModule, AuditLogsViewModelComponent, AuditLogsViewModelModule, AuditLogsViewModelRoutingModule, AuthenticationGuard, AuthenticationService, CacheInterceptor, ChangePasswordModule, ColumnConfig, ColumnSelectorComponent, ColumnSelectorModule, CommentFormComponent, ConfigService, CoreModule, CredentialsService, CurrentUserService, 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, 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, LoginHistoryForUserComponent, LoginHistoryForUserModule, LoginHistoryForUserRoutingModule, LoginModule, LoginRoutingModule, MaterialModule, MultiUserConfig, NgxTechlifyUsersModule, NoteFormComponent, NoteListComponent, NoteModule, NumItemsSelector, NumberInputButtonComponent, NumberInputButtonModule, NumberSelector, PageEvent, Permission, PermissionModule, PermissionRoutingProvider, PermissionsManagementComponent, ProfileEditComponent, ProfileModule, ProfileRoutingModule, ReadMoreComponent, ReadMoreModule, RequestHelperService, RestrictorTypeSelectorComponent, RestrictorTypeSelectorModule, RestrictorsModule, Role, RoleFormButtonComponent, RoleFormComponent, RoleModule, RoleRoutingProvider, RoleService, RolesViewAllComponent, RouteReusableStrategy, SearchableSelectorComponent, SearchableSelectorModule, SignUpComponent, SignupModule, SignupRoutingModule, SnackModule, StorageService, SuccessSnackComponent, TechlifyCompanySwitcherComponent, TechlifyCompanySwitcherModule, TechlifyConfig, TechlifyFeatureEnabledDirective, TechlifyFeatureListingComponent, TechlifyFeatureModule, TechlifyFeatureRoutes, TechlifyFormComponentInterface, TechlifyListingControllerInterface, TechlifyNotificationForUserComponent, TechlifyNotificationForUserModule, TechlifyNotificationForUserRoutingModule, TechlifyNotificationModule, TechlifyNotificationRoutingModule, TechlifyServiceBaseClass, TechlifyTaggerTagFormConfigModel, TechlifyTaggerTagFormFieldComponent, TechlifyTaggerTagFormFieldModule, TechlifyTaggerTagSelectorComponent, TechlifyTaggerTagSelectorModule, TechlifyUpdateHistoryModule, TechlifyUpdateModule, TechlifyUpdateService, TechlifyUpdatesTeaserComponent, TechlifyUpdatesTeaserModule, Timeline, TimelineFilterComponent, TimelineFilterModule, TokenInterceptor, UpdateNotifierComponent, UpdateNotifierModule, User, UserClientEnableDisableButtonComponent, UserClientsListComponent, UserConfig, UserConfigService, UserDataService, UserEnableButtonComponent, UserExploreComponent, UserFormComponent, UserListPageConfig, UserModule, UserRoutingProvider, UserSelectorComponent, UserSelectorModule, UserService, UserSessionsComponent, UsersViewAllComponent, UtilityModule, ViewerConfig, calculateTimeline, esfur, estlr, esulr };
|
|
12513
12547
|
//# sourceMappingURL=ngx-techlify-core.mjs.map
|