@eqproject/eqp-dynamic-module 2.10.12 → 2.10.14
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/private/form-statistics/filter-templates/boolean-filter-template/boolean-filter-template.component.mjs +11 -3
- package/esm2020/lib/components/private/form-statistics/filter-templates/date-filter-template/date-filter-template.component.mjs +7 -5
- package/esm2020/lib/components/private/form-statistics/filter-templates/list-form-record-filter-template/list-form-record-filter-template.component.mjs +9 -2
- package/esm2020/lib/components/private/form-statistics/filter-templates/list-value-filter-template/list-value-filter-template.component.mjs +11 -3
- package/esm2020/lib/components/private/form-statistics/filter-templates/numeric-filter-template/numeric-filter-template.component.mjs +7 -6
- package/esm2020/lib/components/private/form-statistics/filter-templates/text-filter-template/text-filter-template.component.mjs +11 -3
- package/esm2020/lib/components/private/form-statistics/filter-templates/textarea-filter-template/textarea-filter-template.component.mjs +11 -3
- package/esm2020/lib/models/logicOperator.model.mjs +8 -1
- package/fesm2015/eqproject-eqp-dynamic-module.mjs +67 -18
- package/fesm2015/eqproject-eqp-dynamic-module.mjs.map +1 -1
- package/fesm2020/eqproject-eqp-dynamic-module.mjs +67 -18
- package/fesm2020/eqproject-eqp-dynamic-module.mjs.map +1 -1
- package/lib/components/private/form-statistics/filter-templates/boolean-filter-template/boolean-filter-template.component.d.ts +2 -1
- package/lib/components/private/form-statistics/filter-templates/list-form-record-filter-template/list-form-record-filter-template.component.d.ts +2 -1
- package/lib/components/private/form-statistics/filter-templates/list-value-filter-template/list-value-filter-template.component.d.ts +2 -1
- package/lib/components/private/form-statistics/filter-templates/text-filter-template/text-filter-template.component.d.ts +2 -1
- package/lib/components/private/form-statistics/filter-templates/textarea-filter-template/textarea-filter-template.component.d.ts +2 -1
- package/lib/models/logicOperator.model.d.ts +7 -0
- 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
|
*/
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
export declare enum LogicOperatorNumeric {
|
|
2
|
+
"" = 0,
|
|
2
3
|
"=" = 1,
|
|
3
4
|
"!=" = 2,
|
|
4
5
|
">" = 5,
|
|
@@ -7,6 +8,7 @@ export declare enum LogicOperatorNumeric {
|
|
|
7
8
|
"<=" = 8
|
|
8
9
|
}
|
|
9
10
|
export declare enum LogicOperatorDate {
|
|
11
|
+
"" = 0,
|
|
10
12
|
"=" = 1,
|
|
11
13
|
"!=" = 2,
|
|
12
14
|
">" = 5,
|
|
@@ -15,24 +17,29 @@ export declare enum LogicOperatorDate {
|
|
|
15
17
|
"<=" = 8
|
|
16
18
|
}
|
|
17
19
|
export declare enum LogicOperatorText {
|
|
20
|
+
"" = 0,
|
|
18
21
|
"=" = 1,
|
|
19
22
|
"!=" = 2,
|
|
20
23
|
"LIKE" = 3,
|
|
21
24
|
"NOT LIKE" = 4
|
|
22
25
|
}
|
|
23
26
|
export declare enum LogicOperatorBoolean {
|
|
27
|
+
"" = 0,
|
|
24
28
|
"Si" = 9,
|
|
25
29
|
"No" = 10
|
|
26
30
|
}
|
|
27
31
|
export declare enum LogicOperatorListValue {
|
|
32
|
+
"" = 0,
|
|
28
33
|
"CONTIENE ALMENO UNO" = 11,
|
|
29
34
|
"CONTIENE TUTTI" = 12
|
|
30
35
|
}
|
|
31
36
|
export declare enum LogicOperatorImageSelector {
|
|
37
|
+
"" = 0,
|
|
32
38
|
"=" = 1,
|
|
33
39
|
"!=" = 2
|
|
34
40
|
}
|
|
35
41
|
export declare enum LogicOperator {
|
|
42
|
+
"" = 0,
|
|
36
43
|
"=" = 1,
|
|
37
44
|
"!=" = 2,
|
|
38
45
|
"LIKE" = 3,
|