@eqproject/eqp-dynamic-module 2.10.27 → 2.10.28
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 +3 -3
- package/esm2020/lib/components/private/form-statistics/filter-templates/date-filter-template/date-filter-template.component.mjs +3 -3
- package/esm2020/lib/components/private/form-statistics/filter-templates/list-value-filter-template/list-value-filter-template.component.mjs +3 -3
- package/esm2020/lib/components/private/form-statistics/filter-templates/numeric-filter-template/numeric-filter-template.component.mjs +3 -3
- package/esm2020/lib/components/private/form-statistics/filter-templates/text-filter-template/text-filter-template.component.mjs +3 -3
- package/esm2020/lib/components/private/form-statistics/filter-templates/textarea-filter-template/textarea-filter-template.component.mjs +3 -3
- package/fesm2015/eqproject-eqp-dynamic-module.mjs +12 -12
- package/fesm2015/eqproject-eqp-dynamic-module.mjs.map +1 -1
- package/fesm2020/eqproject-eqp-dynamic-module.mjs +12 -12
- package/fesm2020/eqproject-eqp-dynamic-module.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -8877,7 +8877,7 @@ class TextFilterTemplateComponent {
|
|
|
8877
8877
|
* Metodo per emettere l'evento che il valore del record è cambiato.
|
|
8878
8878
|
*/
|
|
8879
8879
|
onFilterChange() {
|
|
8880
|
-
if ((this.aggregations != null && this.aggregations.length > 0) || this.operatorsGroupBy.length > 0) {
|
|
8880
|
+
if ((this.aggregations != null && this.aggregations.length > 0) || (this.operatorsGroupBy != null && this.operatorsGroupBy.length > 0)) {
|
|
8881
8881
|
this.visible = true;
|
|
8882
8882
|
}
|
|
8883
8883
|
var statistic = {
|
|
@@ -8896,7 +8896,7 @@ class TextFilterTemplateComponent {
|
|
|
8896
8896
|
*/
|
|
8897
8897
|
changeVisibility() {
|
|
8898
8898
|
this.visible = !this.visible;
|
|
8899
|
-
if ((this.aggregations != null && this.aggregations.length > 0) || this.operatorsGroupBy.length > 0) {
|
|
8899
|
+
if ((this.aggregations != null && this.aggregations.length > 0) || (this.operatorsGroupBy != null && this.operatorsGroupBy.length > 0)) {
|
|
8900
8900
|
this.visible = true;
|
|
8901
8901
|
}
|
|
8902
8902
|
this.onFilterChange();
|
|
@@ -8966,7 +8966,7 @@ class NumericFilterTemplateComponent {
|
|
|
8966
8966
|
this.filterChange.emit(statistic);
|
|
8967
8967
|
}
|
|
8968
8968
|
createStatistic() {
|
|
8969
|
-
if ((this.aggregations != null && this.aggregations.length > 0) || this.operatorsGroupBy.length > 0) {
|
|
8969
|
+
if ((this.aggregations != null && this.aggregations.length > 0) || (this.operatorsGroupBy != null && this.operatorsGroupBy.length > 0)) {
|
|
8970
8970
|
this.visible = true;
|
|
8971
8971
|
}
|
|
8972
8972
|
var statistic = {
|
|
@@ -9021,7 +9021,7 @@ class NumericFilterTemplateComponent {
|
|
|
9021
9021
|
*/
|
|
9022
9022
|
changeVisibility() {
|
|
9023
9023
|
this.visible = !this.visible;
|
|
9024
|
-
if ((this.aggregations != null && this.aggregations.length > 0) || this.operatorsGroupBy.length > 0) {
|
|
9024
|
+
if ((this.aggregations != null && this.aggregations.length > 0) || (this.operatorsGroupBy != null && this.operatorsGroupBy.length > 0)) {
|
|
9025
9025
|
this.visible = true;
|
|
9026
9026
|
}
|
|
9027
9027
|
this.onFilterChange();
|
|
@@ -9083,7 +9083,7 @@ class BooleanFilterTemplateComponent {
|
|
|
9083
9083
|
* Metodo per emettere l'evento che il valore del record è cambiato.
|
|
9084
9084
|
*/
|
|
9085
9085
|
onFilterChange() {
|
|
9086
|
-
if ((this.aggregations != null && this.aggregations.length > 0) || this.operatorsGroupBy.length > 0) {
|
|
9086
|
+
if ((this.aggregations != null && this.aggregations.length > 0) || (this.operatorsGroupBy != null && this.operatorsGroupBy.length > 0)) {
|
|
9087
9087
|
this.visible = true;
|
|
9088
9088
|
}
|
|
9089
9089
|
var statistic = {
|
|
@@ -9102,7 +9102,7 @@ class BooleanFilterTemplateComponent {
|
|
|
9102
9102
|
*/
|
|
9103
9103
|
changeVisibility() {
|
|
9104
9104
|
this.visible = !this.visible;
|
|
9105
|
-
if ((this.aggregations != null && this.aggregations.length > 0) || this.operatorsGroupBy.length > 0) {
|
|
9105
|
+
if ((this.aggregations != null && this.aggregations.length > 0) || (this.operatorsGroupBy != null && this.operatorsGroupBy.length > 0)) {
|
|
9106
9106
|
this.visible = true;
|
|
9107
9107
|
}
|
|
9108
9108
|
this.onFilterChange();
|
|
@@ -9187,7 +9187,7 @@ class DateFilterTemplateComponent {
|
|
|
9187
9187
|
this.filterChange.emit(statistic);
|
|
9188
9188
|
}
|
|
9189
9189
|
createStatistic() {
|
|
9190
|
-
if ((this.aggregations != null && this.aggregations.length > 0) || this.operatorsGroupBy.length > 0) {
|
|
9190
|
+
if ((this.aggregations != null && this.aggregations.length > 0) || (this.operatorsGroupBy != null && this.operatorsGroupBy.length > 0)) {
|
|
9191
9191
|
this.visible = true;
|
|
9192
9192
|
}
|
|
9193
9193
|
var statistic = {
|
|
@@ -9222,7 +9222,7 @@ class DateFilterTemplateComponent {
|
|
|
9222
9222
|
*/
|
|
9223
9223
|
changeVisibility() {
|
|
9224
9224
|
this.visible = !this.visible;
|
|
9225
|
-
if ((this.aggregations != null && this.aggregations.length > 0) || this.operatorsGroupBy.length > 0) {
|
|
9225
|
+
if ((this.aggregations != null && this.aggregations.length > 0) || (this.operatorsGroupBy != null && this.operatorsGroupBy.length > 0)) {
|
|
9226
9226
|
this.visible = true;
|
|
9227
9227
|
}
|
|
9228
9228
|
this.onFilterChange();
|
|
@@ -9286,7 +9286,7 @@ class ListValueFilterTemplateComponent {
|
|
|
9286
9286
|
* Metodo per emettere l'evento che il valore del record è cambiato.
|
|
9287
9287
|
*/
|
|
9288
9288
|
onFilterChange() {
|
|
9289
|
-
if ((this.aggregations != null && this.aggregations.length > 0) || this.operatorsGroupBy.length > 0) {
|
|
9289
|
+
if ((this.aggregations != null && this.aggregations.length > 0) || (this.operatorsGroupBy != null && this.operatorsGroupBy.length > 0)) {
|
|
9290
9290
|
this.visible = true;
|
|
9291
9291
|
}
|
|
9292
9292
|
var statistic = {
|
|
@@ -9343,7 +9343,7 @@ class ListValueFilterTemplateComponent {
|
|
|
9343
9343
|
*/
|
|
9344
9344
|
changeVisibility() {
|
|
9345
9345
|
this.visible = !this.visible;
|
|
9346
|
-
if ((this.aggregations != null && this.aggregations.length > 0) || this.operatorsGroupBy.length > 0) {
|
|
9346
|
+
if ((this.aggregations != null && this.aggregations.length > 0) || (this.operatorsGroupBy != null && this.operatorsGroupBy.length > 0)) {
|
|
9347
9347
|
this.visible = true;
|
|
9348
9348
|
}
|
|
9349
9349
|
this.onFilterChange();
|
|
@@ -9457,7 +9457,7 @@ class TextareaFilterTemplateComponent {
|
|
|
9457
9457
|
* Metodo che genera l'oggetto da inviare all'esterno
|
|
9458
9458
|
*/
|
|
9459
9459
|
generateCondition(mode) {
|
|
9460
|
-
if ((this.aggregations != null && this.aggregations.length > 0) || this.operatorsGroupBy.length > 0) {
|
|
9460
|
+
if ((this.aggregations != null && this.aggregations.length > 0) || (this.operatorsGroupBy != null && this.operatorsGroupBy.length > 0)) {
|
|
9461
9461
|
this.visible = true;
|
|
9462
9462
|
}
|
|
9463
9463
|
let output = new Statistic();
|
|
@@ -9490,7 +9490,7 @@ class TextareaFilterTemplateComponent {
|
|
|
9490
9490
|
*/
|
|
9491
9491
|
changeVisibility() {
|
|
9492
9492
|
this.visible = !this.visible;
|
|
9493
|
-
if ((this.aggregations != null && this.aggregations.length > 0) || this.operatorsGroupBy.length > 0) {
|
|
9493
|
+
if ((this.aggregations != null && this.aggregations.length > 0) || (this.operatorsGroupBy != null && this.operatorsGroupBy.length > 0)) {
|
|
9494
9494
|
this.visible = true;
|
|
9495
9495
|
}
|
|
9496
9496
|
this.onFilterChange();
|