Hi, i have a big app in production with many grids.
with my old package.json it works everything ok:
"@syncfusion/ej2-angular-barcode-generator": "^18.2.54",
"@syncfusion/ej2-angular-buttons": "^18.2.54",
"@syncfusion/ej2-angular-calendars": "^18.2.54",
"@syncfusion/ej2-angular-charts": "^18.2.54",
"@syncfusion/ej2-angular-dropdowns": "^18.2.54",
"@syncfusion/ej2-angular-filemanager": "^18.2.54",
"@syncfusion/ej2-angular-grids": "^18.2.55",
"@syncfusion/ej2-angular-inputs": "^18.4.47",
"@syncfusion/ej2-angular-layouts": "^19.1.63",
"@syncfusion/ej2-angular-navigations": "^18.2.54",
"@syncfusion/ej2-angular-pdfviewer": "^18.2.54",
"@syncfusion/ej2-angular-popups": "^18.2.54",
"@syncfusion/ej2-angular-schedule": "^18.2.54",
"@syncfusion/ej2-angular-splitbuttons": "^18.2.54",
"@syncfusion/ej2-angular-treegrid": "^18.2.54",
"@syncfusion/ej2-layouts": "^18.2.54",
but after doing
ncu -u -f /^@syncfusion/
npm install
and get this one:
"@syncfusion/ej2-angular-barcode-generator": "^19.4.52",
"@syncfusion/ej2-angular-buttons": "^19.4.52",
"@syncfusion/ej2-angular-calendars": "^19.4.52",
"@syncfusion/ej2-angular-charts": "^19.4.52",
"@syncfusion/ej2-angular-dropdowns": "^19.4.52",
"@syncfusion/ej2-angular-filemanager": "^19.4.52",
"@syncfusion/ej2-angular-grids": "^19.4.52",
"@syncfusion/ej2-angular-inputs": "^19.4.52",
"@syncfusion/ej2-angular-layouts": "^19.4.52",
"@syncfusion/ej2-angular-navigations": "^19.4.52",
"@syncfusion/ej2-angular-pdfviewer": "^19.4.52",
"@syncfusion/ej2-angular-popups": "^19.4.52",
"@syncfusion/ej2-angular-schedule": "^19.4.52",
"@syncfusion/ej2-angular-splitbuttons": "^19.4.52",
"@syncfusion/ej2-angular-treegrid": "^19.4.52",
"@syncfusion/ej2-layouts": "^19.4.52",
I have some issues like dont recognize [visible] and [showInColumnChooser].
<e-column field="uid" [visible]="false" [showInColumnChooser]="false"></e-column>
this column is showed in the grid
<e-column field="" textAlign="left" width="80" headerText="" [showInColumnChooser]="false">
<ng-template #template let-data>
<div class="container-fluid p-0">
<div class="row align-items-center">
<div class="col-12">
<mat-icon *ngIf="commitmentEndDateStatus(data.commitmentEndDate)"
[ngClass]="commitmentEndDateStatus(data.commitmentEndDate)">schedule</mat-icon>
</div>
</div>
</div>
</ng-template>
</e-column>
and this one is showed in column chooser.
the buttons was in spanish and now there are in english...
for the moment i have came back to my previous versions but i want to update my project step by step.