@eqproject/eqp-dynamic-module 2.10.24 → 2.10.25
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/attachment-filter-template/attachment-filter-template.component.mjs +5 -5
- 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 +9 -3
- package/esm2020/lib/components/private/form-statistics/filter-templates/image-filter-template/image-filter-template.component.mjs +5 -5
- package/esm2020/lib/components/private/form-statistics/filter-templates/image-selector-filter-template/image-selector-filter-template.component.mjs +5 -5
- package/esm2020/lib/components/private/form-statistics/filter-templates/list-form-record-filter-template/list-form-record-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 +9 -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 +5 -5
- package/fesm2015/eqproject-eqp-dynamic-module.mjs +40 -28
- package/fesm2015/eqproject-eqp-dynamic-module.mjs.map +1 -1
- package/fesm2020/eqproject-eqp-dynamic-module.mjs +40 -28
- package/fesm2020/eqproject-eqp-dynamic-module.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -8887,8 +8887,8 @@ class TextFilterTemplateComponent {
|
|
|
8887
8887
|
logicoperator: this.selectedLogicOperator,
|
|
8888
8888
|
fieldtype: this.field.FieldType,
|
|
8889
8889
|
visible: this.visible,
|
|
8890
|
-
isX: this.isX,
|
|
8891
|
-
isY: this.isY,
|
|
8890
|
+
isX: this.isX === undefined ? false : this.isX,
|
|
8891
|
+
isY: this.isY === undefined ? false : this.isY,
|
|
8892
8892
|
aggregations: this.aggregations
|
|
8893
8893
|
};
|
|
8894
8894
|
this.filterChange.emit(statistic);
|
|
@@ -8945,6 +8945,12 @@ class NumericFilterTemplateComponent {
|
|
|
8945
8945
|
this.isX = this.Statistic.isX;
|
|
8946
8946
|
this.isY = this.Statistic.isY;
|
|
8947
8947
|
this.aggregations = this.Statistic.aggregations;
|
|
8948
|
+
if (this.isX === undefined) {
|
|
8949
|
+
this.isX = false;
|
|
8950
|
+
}
|
|
8951
|
+
if (this.isY === undefined) {
|
|
8952
|
+
this.isY = false;
|
|
8953
|
+
}
|
|
8948
8954
|
}
|
|
8949
8955
|
this.configureEqpNumericOptions();
|
|
8950
8956
|
this.configureControllers();
|
|
@@ -8981,8 +8987,8 @@ class NumericFilterTemplateComponent {
|
|
|
8981
8987
|
logicoperator: this.selectedLogicOperator,
|
|
8982
8988
|
fieldtype: this.field.FieldType,
|
|
8983
8989
|
visible: this.visible,
|
|
8984
|
-
isX: this.isX,
|
|
8985
|
-
isY: this.isY,
|
|
8990
|
+
isX: this.isX === undefined ? false : this.isX,
|
|
8991
|
+
isY: this.isY === undefined ? false : this.isY,
|
|
8986
8992
|
aggregations: this.aggregations
|
|
8987
8993
|
};
|
|
8988
8994
|
return statistic;
|
|
@@ -9112,8 +9118,8 @@ class BooleanFilterTemplateComponent {
|
|
|
9112
9118
|
logicoperator: this.selectedLogicOperator,
|
|
9113
9119
|
fieldtype: this.field.FieldType,
|
|
9114
9120
|
visible: this.visible,
|
|
9115
|
-
isX: this.isX,
|
|
9116
|
-
isY: this.isY,
|
|
9121
|
+
isX: this.isX === undefined ? false : this.isX,
|
|
9122
|
+
isY: this.isY === undefined ? false : this.isY,
|
|
9117
9123
|
aggregations: this.aggregations
|
|
9118
9124
|
};
|
|
9119
9125
|
this.filterChange.emit(statistic);
|
|
@@ -9176,6 +9182,12 @@ class DateFilterTemplateComponent {
|
|
|
9176
9182
|
this.isX = this.Statistic.isX;
|
|
9177
9183
|
this.isY = this.Statistic.isY;
|
|
9178
9184
|
this.aggregations = this.Statistic.aggregations;
|
|
9185
|
+
if (this.isX === undefined) {
|
|
9186
|
+
this.isX = false;
|
|
9187
|
+
}
|
|
9188
|
+
if (this.isY === undefined) {
|
|
9189
|
+
this.isY = false;
|
|
9190
|
+
}
|
|
9179
9191
|
}
|
|
9180
9192
|
this.setTimeType();
|
|
9181
9193
|
this.setOutputFormat();
|
|
@@ -9221,8 +9233,8 @@ class DateFilterTemplateComponent {
|
|
|
9221
9233
|
logicoperator: this.selectedLogicOperator,
|
|
9222
9234
|
fieldtype: this.field.FieldType,
|
|
9223
9235
|
visible: this.visible,
|
|
9224
|
-
isX: this.isX,
|
|
9225
|
-
isY: this.isY,
|
|
9236
|
+
isX: this.isX === undefined ? false : this.isX,
|
|
9237
|
+
isY: this.isY === undefined ? false : this.isY,
|
|
9226
9238
|
aggregations: this.aggregations
|
|
9227
9239
|
};
|
|
9228
9240
|
return statistic;
|
|
@@ -9334,8 +9346,8 @@ class ListValueFilterTemplateComponent {
|
|
|
9334
9346
|
logicoperator: this.selectedLogicOperator,
|
|
9335
9347
|
fieldtype: this.field.FieldType,
|
|
9336
9348
|
visible: this.visible,
|
|
9337
|
-
isX: this.isX,
|
|
9338
|
-
isY: this.isY,
|
|
9349
|
+
isX: this.isX === undefined ? false : this.isX,
|
|
9350
|
+
isY: this.isY === undefined ? false : this.isY,
|
|
9339
9351
|
aggregations: this.aggregations
|
|
9340
9352
|
};
|
|
9341
9353
|
this.filterChange.emit(statistic);
|
|
@@ -9510,8 +9522,8 @@ class TextareaFilterTemplateComponent {
|
|
|
9510
9522
|
logicoperator: this.selectedLogicOperator,
|
|
9511
9523
|
fieldtype: this.field.FieldType,
|
|
9512
9524
|
visible: this.visible,
|
|
9513
|
-
isX: this.isX,
|
|
9514
|
-
isY: this.isY,
|
|
9525
|
+
isX: this.isX === undefined ? false : this.isX,
|
|
9526
|
+
isY: this.isY === undefined ? false : this.isY,
|
|
9515
9527
|
aggregations: this.aggregations
|
|
9516
9528
|
};
|
|
9517
9529
|
}
|
|
@@ -9522,8 +9534,8 @@ class TextareaFilterTemplateComponent {
|
|
|
9522
9534
|
logicoperator: null,
|
|
9523
9535
|
fieldtype: null,
|
|
9524
9536
|
visible: this.visible,
|
|
9525
|
-
isX: this.isX,
|
|
9526
|
-
isY: this.isY,
|
|
9537
|
+
isX: this.isX === undefined ? false : this.isX,
|
|
9538
|
+
isY: this.isY === undefined ? false : this.isY,
|
|
9527
9539
|
aggregations: this.aggregations
|
|
9528
9540
|
};
|
|
9529
9541
|
}
|
|
@@ -9588,8 +9600,8 @@ class AttachmentFilterTemplateComponent {
|
|
|
9588
9600
|
logicoperator: this.selectedLogicOperator,
|
|
9589
9601
|
fieldtype: this.field.FieldType,
|
|
9590
9602
|
visible: false,
|
|
9591
|
-
isX: this.isX,
|
|
9592
|
-
isY: this.isY,
|
|
9603
|
+
isX: this.isX === undefined ? false : this.isX,
|
|
9604
|
+
isY: this.isY === undefined ? false : this.isY,
|
|
9593
9605
|
aggregations: this.aggregations
|
|
9594
9606
|
};
|
|
9595
9607
|
}
|
|
@@ -9600,8 +9612,8 @@ class AttachmentFilterTemplateComponent {
|
|
|
9600
9612
|
logicoperator: null,
|
|
9601
9613
|
fieldtype: null,
|
|
9602
9614
|
visible: false,
|
|
9603
|
-
isX: this.isX,
|
|
9604
|
-
isY: this.isY,
|
|
9615
|
+
isX: this.isX === undefined ? false : this.isX,
|
|
9616
|
+
isY: this.isY === undefined ? false : this.isY,
|
|
9605
9617
|
aggregations: this.aggregations
|
|
9606
9618
|
};
|
|
9607
9619
|
}
|
|
@@ -9650,8 +9662,8 @@ class ImageFilterTemplateComponent {
|
|
|
9650
9662
|
logicoperator: this.selectedLogicOperator,
|
|
9651
9663
|
fieldtype: this.field.FieldType,
|
|
9652
9664
|
visible: false,
|
|
9653
|
-
isX: this.isX,
|
|
9654
|
-
isY: this.isY,
|
|
9665
|
+
isX: this.isX === undefined ? false : this.isX,
|
|
9666
|
+
isY: this.isY === undefined ? false : this.isY,
|
|
9655
9667
|
aggregations: this.aggregations
|
|
9656
9668
|
};
|
|
9657
9669
|
}
|
|
@@ -9662,8 +9674,8 @@ class ImageFilterTemplateComponent {
|
|
|
9662
9674
|
logicoperator: null,
|
|
9663
9675
|
fieldtype: null,
|
|
9664
9676
|
visible: false,
|
|
9665
|
-
isX: this.isX,
|
|
9666
|
-
isY: this.isY,
|
|
9677
|
+
isX: this.isX === undefined ? false : this.isX,
|
|
9678
|
+
isY: this.isY === undefined ? false : this.isY,
|
|
9667
9679
|
aggregations: this.aggregations
|
|
9668
9680
|
};
|
|
9669
9681
|
}
|
|
@@ -9706,8 +9718,8 @@ class ListFormRecordFilterTemplateComponent {
|
|
|
9706
9718
|
logicoperator: this.selectedLogicOperator,
|
|
9707
9719
|
fieldtype: this.field.FieldType,
|
|
9708
9720
|
visible: false,
|
|
9709
|
-
isX: this.isX,
|
|
9710
|
-
isY: this.isY,
|
|
9721
|
+
isX: this.isX === undefined ? false : this.isX,
|
|
9722
|
+
isY: this.isY === undefined ? false : this.isY,
|
|
9711
9723
|
aggregations: this.aggregations
|
|
9712
9724
|
};
|
|
9713
9725
|
this.filterChange.emit(statistic);
|
|
@@ -9770,8 +9782,8 @@ class ImageSelectorFilterTemplateComponent {
|
|
|
9770
9782
|
logicoperator: this.selectedLogicOperator,
|
|
9771
9783
|
fieldtype: this.field.FieldType,
|
|
9772
9784
|
visible: false,
|
|
9773
|
-
isX: this.isX,
|
|
9774
|
-
isY: this.isY,
|
|
9785
|
+
isX: this.isX === undefined ? false : this.isX,
|
|
9786
|
+
isY: this.isY === undefined ? false : this.isY,
|
|
9775
9787
|
aggregations: this.aggregations
|
|
9776
9788
|
};
|
|
9777
9789
|
}
|
|
@@ -9782,8 +9794,8 @@ class ImageSelectorFilterTemplateComponent {
|
|
|
9782
9794
|
logicoperator: null,
|
|
9783
9795
|
fieldtype: null,
|
|
9784
9796
|
visible: false,
|
|
9785
|
-
isX: this.isX,
|
|
9786
|
-
isY: this.isY,
|
|
9797
|
+
isX: this.isX === undefined ? false : this.isX,
|
|
9798
|
+
isY: this.isY === undefined ? false : this.isY,
|
|
9787
9799
|
aggregations: this.aggregations
|
|
9788
9800
|
};
|
|
9789
9801
|
}
|