ngx-techlify-core 18.85.0 → 18.86.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/entity-files/entity-file-list/entity-file-list.component.mjs +37 -26
- package/esm2022/lib/user/app-admin-user-list/app-admin-user-list.component.mjs +2 -6
- package/fesm2022/ngx-techlify-core.mjs +58 -52
- package/fesm2022/ngx-techlify-core.mjs.map +1 -1
- package/lib/entity-files/entity-file-list/entity-file-list.component.d.ts +5 -1
- package/package.json +1 -1
|
@@ -9,6 +9,8 @@ import { ErrorHandlerService } from '../../core/error-handler.service';
|
|
|
9
9
|
import { TechlifyTaggerTagFormConfigModel } from "../../tag/techlify-tagger-tag-form-field/techlify-tagger-tag-form-config.model";
|
|
10
10
|
import { TechlifyListComponent } from '../../base-model';
|
|
11
11
|
import { NgxPermissionsService } from 'ngx-permissions';
|
|
12
|
+
import { FormConfigurationFormService } from '../../form-configuration/form-configuration-form.service';
|
|
13
|
+
import { FormConfigurationUtilityService } from '../../form-configuration/form-configuration-utility.service';
|
|
12
14
|
import * as i0 from "@angular/core";
|
|
13
15
|
/**
|
|
14
16
|
* We are using both app-entity-file-list and app-entity-files-view-all
|
|
@@ -21,6 +23,7 @@ export declare class EntityFileListComponent extends TechlifyListComponent imple
|
|
|
21
23
|
private fb;
|
|
22
24
|
private errorHandler;
|
|
23
25
|
private permissionsService;
|
|
26
|
+
private formConfigService;
|
|
24
27
|
entityId: number;
|
|
25
28
|
entityType: string;
|
|
26
29
|
viewOnly: boolean;
|
|
@@ -58,7 +61,8 @@ export declare class EntityFileListComponent extends TechlifyListComponent imple
|
|
|
58
61
|
delete: string;
|
|
59
62
|
read: string;
|
|
60
63
|
};
|
|
61
|
-
|
|
64
|
+
formConfigurationUtilityService: FormConfigurationUtilityService;
|
|
65
|
+
constructor(service: EntityFileService, alertService: AlertService, fb: UntypedFormBuilder, errorHandler: ErrorHandlerService, permissionsService: NgxPermissionsService, formConfigService: FormConfigurationFormService);
|
|
62
66
|
ngOnInit(): Promise<void>;
|
|
63
67
|
loadData(): void;
|
|
64
68
|
fileChanged(event: any): Promise<void>;
|