@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.
Files changed (23) hide show
  1. package/esm2020/lib/components/exported/eqp-dynamic-module/eqp-dynamic-module.component.mjs +7 -10
  2. package/esm2020/lib/components/exported/eqp-dynamic-module-configurator/eqp-dynamic-module-configurator.component.mjs +7 -6
  3. package/esm2020/lib/components/private/add-form-field/add-form-field.component.mjs +7 -6
  4. package/esm2020/lib/components/private/dynamic-module-field/dynamic-module-field.component.mjs +1 -1
  5. package/esm2020/lib/components/private/dynamic-module-field-fix/dynamic-module-field.component.mjs +1 -1
  6. package/esm2020/lib/components/private/field-templates/list-value-field-template/list-value-field-template.component.mjs +14 -13
  7. package/esm2020/lib/components/private/field-templates/numeric-field-template/numeric-field-template.component.mjs +17 -6
  8. package/esm2020/lib/components/private/form-records/add-form-record/add-form-record.component.mjs +37 -36
  9. package/esm2020/lib/components/private/form-records/list-form-record/list-form-record.component.mjs +7 -6
  10. package/esm2020/lib/components/private/form-records/list-view-form-record/list-view-form-record.component.mjs +17 -17
  11. package/esm2020/lib/components/private/form-records/list-view-form-record/single-record/single-record.component.mjs +5 -4
  12. package/esm2020/lib/components/private/form-records/view-form-record/view-form-record.component.mjs +8 -7
  13. package/esm2020/lib/components/private/form-statistics/filter-form-statistic/filter-form-statistic.component.mjs +16 -15
  14. package/esm2020/lib/services/global.service.mjs +23 -0
  15. package/esm2020/lib/services/utilityHelper.services.mjs +21 -20
  16. package/fesm2015/eqproject-eqp-dynamic-module.mjs +214 -187
  17. package/fesm2015/eqproject-eqp-dynamic-module.mjs.map +1 -1
  18. package/fesm2020/eqproject-eqp-dynamic-module.mjs +214 -187
  19. package/fesm2020/eqproject-eqp-dynamic-module.mjs.map +1 -1
  20. package/lib/components/exported/eqp-dynamic-module/eqp-dynamic-module.component.d.ts +0 -1
  21. package/lib/components/private/field-templates/numeric-field-template/numeric-field-template.component.d.ts +2 -1
  22. package/lib/services/global.service.d.ts +10 -0
  23. 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
+ }
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "author": {
5
5
  "name": "EqProject"
6
6
  },
7
- "version": "2.3.29",
7
+ "version": "2.3.30",
8
8
  "peerDependencies": {
9
9
  "@angular-material-components/datetime-picker": "^15.0.0",
10
10
  "@angular-material-components/moment-adapter": "^15.0.0",