ngx-techlify-core 11.4.9 → 11.5.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/bundles/ngx-techlify-core.umd.js +211 -125
- package/bundles/ngx-techlify-core.umd.js.map +1 -1
- package/bundles/ngx-techlify-core.umd.min.js +1 -1
- package/bundles/ngx-techlify-core.umd.min.js.map +1 -1
- package/esm2015/lib/entity-files/entity-file.service.js +4 -1
- package/esm2015/lib/entity-files/entity-files-view-all.component.js +74 -4
- package/esm2015/lib/material.module.js +4 -2
- package/esm2015/ngx-techlify-core.js +35 -35
- package/fesm2015/ngx-techlify-core.js +78 -5
- package/fesm2015/ngx-techlify-core.js.map +1 -1
- package/lib/entity-files/entity-file.service.d.ts +1 -0
- package/lib/entity-files/entity-files-view-all.component.d.ts +15 -1
- package/ngx-techlify-core.d.ts +34 -34
- package/ngx-techlify-core.metadata.json +1 -1
- package/package.json +1 -1
|
@@ -3,15 +3,18 @@ import { Location } from '@angular/common';
|
|
|
3
3
|
import { MatDialog } from '@angular/material/dialog';
|
|
4
4
|
import { EntityFileService } from './entity-file.service';
|
|
5
5
|
import { FormBuilder, FormGroup } from '@angular/forms';
|
|
6
|
+
import { MatTableDataSource } from '@angular/material/table';
|
|
6
7
|
import { AlertService } from '../core/alert.service';
|
|
7
8
|
import { ViewerConfig } from '../document-viewer/viewer-config.model';
|
|
8
9
|
import { FileDropperConfig } from '../file-dropper';
|
|
10
|
+
import { ErrorHandlerService } from '../core/error-handler.service';
|
|
9
11
|
export declare class EntityFilesViewAllComponent implements OnInit {
|
|
10
12
|
private entityFileService;
|
|
11
13
|
location: Location;
|
|
12
14
|
private alertService;
|
|
13
15
|
private dialog;
|
|
14
16
|
private fb;
|
|
17
|
+
private errorHandler;
|
|
15
18
|
entityId: number;
|
|
16
19
|
entityType: string;
|
|
17
20
|
viewOnly: boolean;
|
|
@@ -19,6 +22,9 @@ export declare class EntityFilesViewAllComponent implements OnInit {
|
|
|
19
22
|
hideTitleAndDetails: boolean;
|
|
20
23
|
displayMode: boolean;
|
|
21
24
|
allowMultipleFiles: boolean;
|
|
25
|
+
allowBulkUpdate: boolean;
|
|
26
|
+
documentIds: any[];
|
|
27
|
+
isAllSelected: boolean;
|
|
22
28
|
/**
|
|
23
29
|
* Should we allow tagging entity-files?
|
|
24
30
|
*/
|
|
@@ -35,7 +41,10 @@ export declare class EntityFilesViewAllComponent implements OnInit {
|
|
|
35
41
|
fileConfig: FileDropperConfig;
|
|
36
42
|
fileList: any[];
|
|
37
43
|
filterFormGroup: FormGroup;
|
|
38
|
-
|
|
44
|
+
dataSource: MatTableDataSource<unknown>;
|
|
45
|
+
updateRowForm: FormGroup;
|
|
46
|
+
isReload: boolean;
|
|
47
|
+
constructor(entityFileService: EntityFileService, location: Location, alertService: AlertService, dialog: MatDialog, fb: FormBuilder, errorHandler: ErrorHandlerService);
|
|
39
48
|
ngOnInit(): void;
|
|
40
49
|
listenRoutes(): void;
|
|
41
50
|
fetchEntityFilesDetails(): Promise<void>;
|
|
@@ -48,4 +57,9 @@ export declare class EntityFilesViewAllComponent implements OnInit {
|
|
|
48
57
|
resetFieldValue(event: any, field: any): void;
|
|
49
58
|
sizeOf(bytes: any): string;
|
|
50
59
|
fileChanged(event: any): Promise<void>;
|
|
60
|
+
selectAll(): void;
|
|
61
|
+
employeeListModified(event: any, employee: any): void;
|
|
62
|
+
unCheckAll(): void;
|
|
63
|
+
resetFieldValueOfRow(field: string, event: any): void;
|
|
64
|
+
bulkUpdate(fieldName: any): Promise<void>;
|
|
51
65
|
}
|
package/ngx-techlify-core.d.ts
CHANGED
|
@@ -5,55 +5,55 @@ export * from './public-api';
|
|
|
5
5
|
export { ActionPopupComponent as ɵg } from './lib/action-popup/action-popup.component';
|
|
6
6
|
export { ActionPopup as ɵh } from './lib/action-popup/action-popup.model';
|
|
7
7
|
export { AlertService as ɵn } from './lib/core/alert.service';
|
|
8
|
-
export { AuthenticationGuard as
|
|
9
|
-
export { ConfigService as
|
|
10
|
-
export { CredentialsService as
|
|
11
|
-
export { DataManager as
|
|
12
|
-
export { ErrorHandlerService as
|
|
8
|
+
export { AuthenticationGuard as ɵbh } from './lib/core/authentication.guard';
|
|
9
|
+
export { ConfigService as ɵz } from './lib/core/config.service';
|
|
10
|
+
export { CredentialsService as ɵy } from './lib/core/credentials.service';
|
|
11
|
+
export { DataManager as ɵbw } from './lib/core/dataManager.service';
|
|
12
|
+
export { ErrorHandlerService as ɵp } from './lib/core/error-handler.service';
|
|
13
13
|
export { FormValidatorService as ɵl } from './lib/core/form-validator.service';
|
|
14
14
|
export { HTTP_DYNAMIC_INTERCEPTORS as ɵd, HttpService as ɵe } from './lib/core/http.service';
|
|
15
15
|
export { RouteReusableStrategy as ɵf } from './lib/core/route-reusable-strategy';
|
|
16
16
|
export { ErrorSnackComponent as ɵc, SuccessSnackComponent as ɵb } from './lib/core/snack/snack.component';
|
|
17
17
|
export { SnackModule as ɵa } from './lib/core/snack/snack.module';
|
|
18
18
|
export { StorageService as ɵcc } from './lib/core/storage.service';
|
|
19
|
-
export { TechlifyConfig as
|
|
19
|
+
export { TechlifyConfig as ɵq } from './lib/core/techlify-config.model';
|
|
20
20
|
export { DataTableComponent as ɵi } from './lib/data-table/data-table.component';
|
|
21
21
|
export { DocumentViewerComponent as ɵj } from './lib/document-viewer/document-viewer.component';
|
|
22
|
-
export { EmailSubscriptionForUserComponent as
|
|
23
|
-
export { EmailSubscriptionTypeFormComponent as
|
|
24
|
-
export { EmailSubscriptionTypeListComponent as
|
|
25
|
-
export { EmailSubscriptionUserFormComponent as
|
|
26
|
-
export { EmailSubscriptionUserListFilterComponent as
|
|
27
|
-
export { EmailSubscriptionUserListComponent as
|
|
22
|
+
export { EmailSubscriptionForUserComponent as ɵbl } from './lib/email-subscription/email-subscription-for-user/email-subscription-for-user.component';
|
|
23
|
+
export { EmailSubscriptionTypeFormComponent as ɵbj } from './lib/email-subscription/email-subscription-type/email-subscription-type-form/email-subscription-type-form.component';
|
|
24
|
+
export { EmailSubscriptionTypeListComponent as ɵbk } from './lib/email-subscription/email-subscription-type/email-subscription-type-list/email-subscription-type-list.component';
|
|
25
|
+
export { EmailSubscriptionUserFormComponent as ɵbf } from './lib/email-subscription/email-subscription-user/email-subscription-user-form/email-subscription-user-form.component';
|
|
26
|
+
export { EmailSubscriptionUserListFilterComponent as ɵbi } from './lib/email-subscription/email-subscription-user/email-subscription-user-list-filter/email-subscription-user-list-filter.component';
|
|
27
|
+
export { EmailSubscriptionUserListComponent as ɵbg } from './lib/email-subscription/email-subscription-user/email-subscription-user-list/email-subscription-user-list.component';
|
|
28
28
|
export { EntityFileFormComponent as ɵk } from './lib/entity-files/entity-file-form/entity-file-form.component';
|
|
29
29
|
export { EntityFileService as ɵm } from './lib/entity-files/entity-file.service';
|
|
30
30
|
export { EntityFilesViewAllComponent as ɵo } from './lib/entity-files/entity-files-view-all.component';
|
|
31
|
-
export { FileDropperComponent as
|
|
31
|
+
export { FileDropperComponent as ɵr } from './lib/file-dropper/file-dropper.component';
|
|
32
32
|
export { DataImportComponent as ɵcb } from './lib/import-csv/data-import/data-import.component';
|
|
33
33
|
export { FailedItemsListComponent as ɵby } from './lib/import-csv/failed-items-list/failed-items-list.component';
|
|
34
34
|
export { FieldMappingComponent as ɵbx } from './lib/import-csv/field-mapping/field-mapping.component';
|
|
35
35
|
export { ImportHistoryListComponent as ɵbz } from './lib/import-csv/import-history-list/import-history-list.component';
|
|
36
36
|
export { ImportSuccessComponent as ɵca } from './lib/import-csv/import-success/import-success.component';
|
|
37
|
-
export { LoaderComponent as
|
|
38
|
-
export { CommentFormComponent as
|
|
39
|
-
export { NoteFormComponent as
|
|
40
|
-
export { NoteListComponent as
|
|
41
|
-
export { NoteService as
|
|
42
|
-
export { MatSelectInfiniteScrollDirective as
|
|
43
|
-
export { SearchableSelectorComponent as
|
|
37
|
+
export { LoaderComponent as ɵbe } from './lib/loader/loader.component';
|
|
38
|
+
export { CommentFormComponent as ɵx } from './lib/note/comment-form/comment-form.component';
|
|
39
|
+
export { NoteFormComponent as ɵw } from './lib/note/note-form/note-form.component';
|
|
40
|
+
export { NoteListComponent as ɵu } from './lib/note/note-list/note-list.component';
|
|
41
|
+
export { NoteService as ɵv } from './lib/note/note.service';
|
|
42
|
+
export { MatSelectInfiniteScrollDirective as ɵt } from './lib/searchable-selector/mat-select-infinite-scroll.directive';
|
|
43
|
+
export { SearchableSelectorComponent as ɵs } from './lib/searchable-selector/searchable-selector.component';
|
|
44
44
|
export { OnOffSwitchComponent as ɵce } from './lib/techlify-feature/on-off-switch/on-off-switch.component';
|
|
45
45
|
export { TechlifyFeatureService as ɵcd } from './lib/techlify-feature/techlify-feature.service';
|
|
46
|
-
export { TechlifyUpdateFormComponent as
|
|
47
|
-
export { TechlifyUpdateFormModule as
|
|
48
|
-
export { TechlifyUpdateHistoryRoutingModule as
|
|
49
|
-
export { TechlifyUpdateHistoryComponent as
|
|
50
|
-
export { TechlifyUpdateRoutingModule as
|
|
51
|
-
export { TechlifyUpdateService as
|
|
52
|
-
export { TechlifyUpdatesListComponent as
|
|
53
|
-
export { UpdateNotifierSnackComponent as
|
|
54
|
-
export { UpdateViewComponent as
|
|
55
|
-
export { UpdateViewModule as
|
|
56
|
-
export { TimelineFilterRoutingModule as
|
|
57
|
-
export { TimelineFilterComponent as
|
|
58
|
-
export { NumItemsSelector as
|
|
59
|
-
export { NumberSelector as
|
|
46
|
+
export { TechlifyUpdateFormComponent as ɵbq } from './lib/techlify-update/techlify-update-form/techlify-update-form.component';
|
|
47
|
+
export { TechlifyUpdateFormModule as ɵbp } from './lib/techlify-update/techlify-update-form/techlify-update-form.module';
|
|
48
|
+
export { TechlifyUpdateHistoryRoutingModule as ɵbr } from './lib/techlify-update/techlify-update-history/techlify-update-history-routing.module';
|
|
49
|
+
export { TechlifyUpdateHistoryComponent as ɵbs } from './lib/techlify-update/techlify-update-history/techlify-update-history.component';
|
|
50
|
+
export { TechlifyUpdateRoutingModule as ɵbo } from './lib/techlify-update/techlify-update-routing.module';
|
|
51
|
+
export { TechlifyUpdateService as ɵbn } from './lib/techlify-update/techlify-update.service';
|
|
52
|
+
export { TechlifyUpdatesListComponent as ɵbm } from './lib/techlify-update/techlify-updates-list/techlify-updates-list.component';
|
|
53
|
+
export { UpdateNotifierSnackComponent as ɵbt } from './lib/techlify-update/update-notifier/update-notifier-snack/update-notifier-snack.component';
|
|
54
|
+
export { UpdateViewComponent as ɵbv } from './lib/techlify-update/update-view/update-view.component';
|
|
55
|
+
export { UpdateViewModule as ɵbu } from './lib/techlify-update/update-view/update-view.module';
|
|
56
|
+
export { TimelineFilterRoutingModule as ɵbd } from './lib/timeline-filter/timeline-filter-routing.module';
|
|
57
|
+
export { TimelineFilterComponent as ɵbc } from './lib/timeline-filter/timeline-filter.component';
|
|
58
|
+
export { NumItemsSelector as ɵba } from './lib/utility/num-items-selector.component';
|
|
59
|
+
export { NumberSelector as ɵbb } from './lib/utility/number-selector.component';
|