@skyux/ag-grid 12.0.0-alpha.13 → 12.0.0-alpha.15

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.
@@ -3086,6 +3086,12 @@ class SkyAgGridService {
3086
3086
  ...providedGridOptions.rowSelection,
3087
3087
  };
3088
3088
  }
3089
+ if ('enableCellChangeFlash' in providedGridOptions) {
3090
+ providedGridOptions.defaultColDef ??= {};
3091
+ providedGridOptions.defaultColDef.enableCellChangeFlash ??=
3092
+ !!providedGridOptions.enableCellChangeFlash;
3093
+ delete providedGridOptions.enableCellChangeFlash;
3094
+ }
3089
3095
  const mergedGridOptions = {
3090
3096
  ...defaultGridOptions,
3091
3097
  ...providedGridOptions,