@eqproject/eqp-dynamic-module 2.3.29 → 2.3.30
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm2020/lib/components/exported/eqp-dynamic-module/eqp-dynamic-module.component.mjs +7 -10
- package/esm2020/lib/components/exported/eqp-dynamic-module-configurator/eqp-dynamic-module-configurator.component.mjs +7 -6
- package/esm2020/lib/components/private/add-form-field/add-form-field.component.mjs +7 -6
- package/esm2020/lib/components/private/dynamic-module-field/dynamic-module-field.component.mjs +1 -1
- package/esm2020/lib/components/private/dynamic-module-field-fix/dynamic-module-field.component.mjs +1 -1
- package/esm2020/lib/components/private/field-templates/list-value-field-template/list-value-field-template.component.mjs +14 -13
- package/esm2020/lib/components/private/field-templates/numeric-field-template/numeric-field-template.component.mjs +17 -6
- package/esm2020/lib/components/private/form-records/add-form-record/add-form-record.component.mjs +37 -36
- package/esm2020/lib/components/private/form-records/list-form-record/list-form-record.component.mjs +7 -6
- package/esm2020/lib/components/private/form-records/list-view-form-record/list-view-form-record.component.mjs +17 -17
- package/esm2020/lib/components/private/form-records/list-view-form-record/single-record/single-record.component.mjs +5 -4
- package/esm2020/lib/components/private/form-records/view-form-record/view-form-record.component.mjs +8 -7
- package/esm2020/lib/components/private/form-statistics/filter-form-statistic/filter-form-statistic.component.mjs +16 -15
- package/esm2020/lib/services/global.service.mjs +23 -0
- package/esm2020/lib/services/utilityHelper.services.mjs +21 -20
- package/fesm2015/eqproject-eqp-dynamic-module.mjs +214 -187
- package/fesm2015/eqproject-eqp-dynamic-module.mjs.map +1 -1
- package/fesm2020/eqproject-eqp-dynamic-module.mjs +214 -187
- package/fesm2020/eqproject-eqp-dynamic-module.mjs.map +1 -1
- package/lib/components/exported/eqp-dynamic-module/eqp-dynamic-module.component.d.ts +0 -1
- package/lib/components/private/field-templates/numeric-field-template/numeric-field-template.component.d.ts +2 -1
- package/lib/services/global.service.d.ts +10 -0
- package/package.json +1 -1
|
@@ -16,7 +16,6 @@ export declare class EqpDynamicModuleComponent implements OnInit, AfterViewInit
|
|
|
16
16
|
private utilityHelperService;
|
|
17
17
|
private changeDetector;
|
|
18
18
|
debugMode: boolean;
|
|
19
|
-
debugLog(message: string, element?: any): void;
|
|
20
19
|
configurations: DynamicModuleGeneralConfig;
|
|
21
20
|
formID: string;
|
|
22
21
|
starterViewMode: DynamicModuleViewModeEnum;
|
|
@@ -5,6 +5,7 @@ import { NumericField } from '../../../../models/fields/numericField.model';
|
|
|
5
5
|
import { IBaseFieldComponent } from '../../../../interfaces/iBaseFieldComponent.interface';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
7
|
export declare class NumericFieldTemplateComponent implements OnInit, OnChanges, IBaseFieldComponent {
|
|
8
|
+
debugMode: boolean;
|
|
8
9
|
field: NumericField;
|
|
9
10
|
record: Record;
|
|
10
11
|
recordChange: EventEmitter<Record>;
|
|
@@ -35,5 +36,5 @@ export declare class NumericFieldTemplateComponent implements OnInit, OnChanges,
|
|
|
35
36
|
private configureControllers;
|
|
36
37
|
setDirty(): void;
|
|
37
38
|
static ɵfac: i0.ɵɵFactoryDeclaration<NumericFieldTemplateComponent, never>;
|
|
38
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<NumericFieldTemplateComponent, "numeric-field-template", never, { "field": "field"; "record": "record"; }, { "recordChange": "recordChange"; }, never, never, false, never>;
|
|
39
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NumericFieldTemplateComponent, "numeric-field-template", never, { "debugMode": "debugMode"; "field": "field"; "record": "record"; }, { "recordChange": "recordChange"; }, never, never, false, never>;
|
|
39
40
|
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { HttpClient } from "@angular/common/http";
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class GlobalService {
|
|
4
|
+
private http;
|
|
5
|
+
static debugMode: boolean;
|
|
6
|
+
constructor(http: HttpClient);
|
|
7
|
+
static debugLog(message: string, element?: any): void;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<GlobalService, never>;
|
|
9
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<GlobalService>;
|
|
10
|
+
}
|