@progress/kendo-ui
Version:
This package is part of the [Kendo UI for jQuery](http://www.telerik.com/kendo-ui) suite.
20 lines (14 loc) • 614 B
JavaScript
;
const { applyMultiColumnComboBoxGroupHeaderRename } = require('../_shared.cjs');
module.exports = function transformer(fileInfo) {
if (!/\.(css|scss|sass|less)$/i.test(fileInfo.path)) {
return undefined;
}
const updated = applyMultiColumnComboBoxGroupHeaderRename(fileInfo.source);
return updated !== fileInfo.source ? updated : undefined;
};
module.exports.aiInstructions = `The MultiColumnComboBox group header sticky class was renamed in Kendo UI 2026 Q1.
Before:
.k-list-group-sticky-header { background: white; }
After:
.k-table-group-sticky-header { background: white; }`;