Welcome to the Angular feedback portal. We’re happy you’re here! If you have feedback on how to improve the Angular, we’d love to hear it!

  • Check out the features or bugs others have reported and vote on your favorites. Feedback will be prioritized based on popularity.
  • If you have feedback that’s not listed yet, submit your own.

Thanks for joining our community and helping improve Syncfusion products!

2
Votes

Hello, I've noticed a large bundle size increase of ~600kb (parsed) when upgrading from v16.4.0.54 to the latest version of the angular grid package. 


for reference this is what I import

import { NgModule } from'@angular/core';

import {
ColumnMenuService,
FilterService,
GridModule,
GroupService,
PageService,
ResizeService,
SortService,
ToolbarService
} from'@syncfusion/ej2-angular-grids';

@NgModule({
imports: [GridModule],
exports: [GridModule],
providers: [ColumnMenuService, FilterService, GroupService, PageService, ResizeService, SortService, ToolbarService]
})
exportclassSyncfusionModule {}