@eqproject/eqp-dynamic-module 2.10.11 → 2.10.13

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 (17) hide show
  1. package/esm2020/lib/components/private/form-statistics/filter-templates/boolean-filter-template/boolean-filter-template.component.mjs +9 -2
  2. package/esm2020/lib/components/private/form-statistics/filter-templates/date-filter-template/date-filter-template.component.mjs +4 -3
  3. package/esm2020/lib/components/private/form-statistics/filter-templates/list-form-record-filter-template/list-form-record-filter-template.component.mjs +9 -2
  4. package/esm2020/lib/components/private/form-statistics/filter-templates/list-value-filter-template/list-value-filter-template.component.mjs +9 -2
  5. package/esm2020/lib/components/private/form-statistics/filter-templates/numeric-filter-template/numeric-filter-template.component.mjs +4 -4
  6. package/esm2020/lib/components/private/form-statistics/filter-templates/text-filter-template/text-filter-template.component.mjs +9 -2
  7. package/esm2020/lib/components/private/form-statistics/filter-templates/textarea-filter-template/textarea-filter-template.component.mjs +9 -2
  8. package/fesm2015/eqproject-eqp-dynamic-module.mjs +46 -10
  9. package/fesm2015/eqproject-eqp-dynamic-module.mjs.map +1 -1
  10. package/fesm2020/eqproject-eqp-dynamic-module.mjs +46 -10
  11. package/fesm2020/eqproject-eqp-dynamic-module.mjs.map +1 -1
  12. package/lib/components/private/form-statistics/filter-templates/boolean-filter-template/boolean-filter-template.component.d.ts +2 -1
  13. package/lib/components/private/form-statistics/filter-templates/list-form-record-filter-template/list-form-record-filter-template.component.d.ts +2 -1
  14. package/lib/components/private/form-statistics/filter-templates/list-value-filter-template/list-value-filter-template.component.d.ts +2 -1
  15. package/lib/components/private/form-statistics/filter-templates/text-filter-template/text-filter-template.component.d.ts +2 -1
  16. package/lib/components/private/form-statistics/filter-templates/textarea-filter-template/textarea-filter-template.component.d.ts +2 -1
  17. package/package.json +1 -1
@@ -1,4 +1,4 @@
1
- import { EventEmitter } from '@angular/core';
1
+ import { EventEmitter, SimpleChanges } from '@angular/core';
2
2
  import { Record } from '../../../../../models/record.model';
3
3
  import { LogicOperatorBoolean } from '../../../../../models/logicOperator.model';
4
4
  import { NotNumberAggregationFunctionEnum, NumberAggregationFunctionEnum, Statistic } from '../../../../../models/statistic.model';
@@ -24,6 +24,7 @@ export declare class BooleanFilterTemplateComponent {
24
24
  constructor();
25
25
  ngOnInit(): void;
26
26
  initStyles(): void;
27
+ ngOnChanges(changes: SimpleChanges): void;
27
28
  /**
28
29
  * Metodo per emettere l'evento che il valore del record è cambiato.
29
30
  */
@@ -1,4 +1,4 @@
1
- import { EventEmitter } from '@angular/core';
1
+ import { EventEmitter, SimpleChanges } from '@angular/core';
2
2
  import { LogicOperatorText } from '../../../../../models/logicOperator.model';
3
3
  import { Record } from '../../../../../models/record.model';
4
4
  import { NotNumberAggregationFunctionEnum, NumberAggregationFunctionEnum } from '../../../../../models/statistic.model';
@@ -14,6 +14,7 @@ export declare class ListFormRecordFilterTemplateComponent {
14
14
  isX: boolean;
15
15
  isY: boolean;
16
16
  aggregations: Array<NumberAggregationFunctionEnum> | Array<NotNumberAggregationFunctionEnum>;
17
+ ngOnChanges(changes: SimpleChanges): void;
17
18
  /**
18
19
  * Metodo per emettere l'evento che il valore del record è cambiato.
19
20
  */
@@ -1,4 +1,4 @@
1
- import { EventEmitter } from '@angular/core';
1
+ import { EventEmitter, SimpleChanges } from '@angular/core';
2
2
  import { Record } from '../../../../../models/record.model';
3
3
  import { LogicOperatorListValue } from '../../../../../models/logicOperator.model';
4
4
  import { NotNumberAggregationFunctionEnum, NumberAggregationFunctionEnum, Statistic } from '../../../../../models/statistic.model';
@@ -29,6 +29,7 @@ export declare class ListValueFilterTemplateComponent {
29
29
  isY: boolean;
30
30
  constructor();
31
31
  ngOnInit(): void;
32
+ ngOnChanges(changes: SimpleChanges): void;
32
33
  initStyles(): void;
33
34
  /**
34
35
  * Metodo per emettere l'evento che il valore del record è cambiato.
@@ -1,4 +1,4 @@
1
- import { EventEmitter } from '@angular/core';
1
+ import { EventEmitter, SimpleChanges } from '@angular/core';
2
2
  import { Record } from '../../../../../models/record.model';
3
3
  import { TextMaskEnum, TextField } from '../../../../../models/fields/textField.model';
4
4
  import { Subscription } from 'rxjs';
@@ -31,6 +31,7 @@ export declare class TextFilterTemplateComponent {
31
31
  aggregationFunctionEnum: typeof NotNumberAggregationFunctionEnum;
32
32
  constructor();
33
33
  ngOnInit(): void;
34
+ ngOnChanges(changes: SimpleChanges): void;
34
35
  initStyles(): void;
35
36
  getInputType(): "text" | "email" | "password" | "tel" | "url";
36
37
  /**
@@ -1,4 +1,4 @@
1
- import { EventEmitter } from '@angular/core';
1
+ import { EventEmitter, SimpleChanges } from '@angular/core';
2
2
  import { Record } from '../../../../../models/record.model';
3
3
  import { TextMaskEnum, TextField } from '../../../../../models/fields/textField.model';
4
4
  import { Subscription } from 'rxjs';
@@ -33,6 +33,7 @@ export declare class TextareaFilterTemplateComponent {
33
33
  ngOnInit(): void;
34
34
  initStyles(): void;
35
35
  getInputType(): "text" | "email" | "password" | "tel" | "url";
36
+ ngOnChanges(changes: SimpleChanges): void;
36
37
  /**
37
38
  * Metodo per emettere l'evento che il valore del record è cambiato.
38
39
  */
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "author": {
5
5
  "name": "EqProject"
6
6
  },
7
- "version": "2.10.11",
7
+ "version": "2.10.13",
8
8
  "peerDependencies": {
9
9
  "@angular-material-components/datetime-picker": "^15.0.0",
10
10
  "@angular-material-components/moment-adapter": "^15.0.0",