@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) • 584 B
JavaScript
;
const { applyVirtualListClassRename } = require('../_shared.cjs');
module.exports = function transformer(fileInfo) {
if (!/\.(css|scss|sass|less)$/i.test(fileInfo.path)) {
return undefined;
}
const updated = applyVirtualListClassRename(fileInfo.source);
return updated !== fileInfo.source ? updated : undefined;
};
module.exports.aiInstructions = `The virtual list content container class was renamed from k-virtual-content to k-list-ul in Kendo UI 2026 Q1.
Before:
.k-virtual-content { overflow: hidden; }
After:
.k-list-ul { overflow: hidden; }`;