@progress/kendo-ui
Version:
This package is part of the [Kendo UI for jQuery](http://www.telerik.com/kendo-ui) suite.
21 lines (14 loc) • 575 B
JavaScript
;
const { applyGridColumnMenuPopupRename } = require('../_shared.cjs');
module.exports = function transformer(fileInfo) {
if (!/\.(css|scss|sass|less)$/i.test(fileInfo.path)) {
return undefined;
}
const result = applyGridColumnMenuPopupRename(fileInfo.source);
return result !== fileInfo.source ? result : undefined;
};
module.exports.aiInstructions = `The Grid column menu popup CSS class was renamed in Kendo UI 2024 R4 to be more specific.
Before:
.k-columnmenu-popup { width: 250px; }
After:
.k-grid-columnmenu-popup { width: 250px; }`;