@acorex/data-grid 4.1.6 → 4.1.10
Sign up to get free protection for your applications and to get access to all the features.
- package/esm2020/lib/data-grid/columns/check-column.component.mjs +2 -2
- package/esm2020/lib/data-grid/columns/text-column.component.mjs +2 -2
- package/esm2020/lib/data-lov/data-lov-popup/data-lov-popup.component.mjs +2 -2
- package/fesm2015/acorex-data-grid.mjs +3 -3
- package/fesm2015/acorex-data-grid.mjs.map +1 -1
- package/fesm2020/acorex-data-grid.mjs +3 -3
- package/fesm2020/acorex-data-grid.mjs.map +1 -1
- package/package.json +1 -1
@@ -316,7 +316,7 @@ class BooleanFilterRenderer {
|
|
316
316
|
}
|
317
317
|
agInit(params) {
|
318
318
|
this.params = params;
|
319
|
-
this.valueGetter = params.valueGetter;
|
319
|
+
this.valueGetter = (params.valueGetter);
|
320
320
|
}
|
321
321
|
isFilterActive() {
|
322
322
|
return this.value !== null && this.value !== undefined;
|
@@ -654,7 +654,7 @@ class TextFilterRenderer {
|
|
654
654
|
}
|
655
655
|
agInit(params) {
|
656
656
|
this.params = params;
|
657
|
-
this.valueGetter = params.valueGetter;
|
657
|
+
this.valueGetter = (params.valueGetter);
|
658
658
|
}
|
659
659
|
isFilterActive() {
|
660
660
|
return this.value !== null && this.value !== undefined;
|
@@ -1674,7 +1674,7 @@ class AXDataLovPopupComponent extends AXBasePopupPageComponent {
|
|
1674
1674
|
text: AXTranslator.get('common.cancel'),
|
1675
1675
|
name: 'cancel',
|
1676
1676
|
style: 'ax light',
|
1677
|
-
icon: 'far fa-times
|
1677
|
+
icon: 'far fa-times'
|
1678
1678
|
}
|
1679
1679
|
];
|
1680
1680
|
}
|