@skyux/ag-grid 14.5.1 → 14.6.1

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.
@@ -243,7 +243,7 @@ function agGridThemeIsCompact(themeSettings, compactLayout) {
243
243
  function getSkyAgGridThemeClassName(editable, themeSettings, compactLayout) {
244
244
  let theme = `ag-theme-sky-${editable ? 'data-entry-grid' : 'data-grid'}-`;
245
245
  if (themeSettings?.theme.name === 'modern') {
246
- theme += `modern-${themeSettings.mode.name}`;
246
+ theme += `modern-light`;
247
247
  if (agGridThemeIsCompact(themeSettings, compactLayout)) {
248
248
  theme += `-compact`;
249
249
  }