@progress/kendo-ui
Version:
This package is part of the [Kendo UI for jQuery](http://www.telerik.com/kendo-ui) suite.
19 lines (13 loc) • 745 B
JavaScript
;
const { applyGridDragStrips } = require('../_shared.cjs');
module.exports = function transformer(fileInfo) {
if (!/\.(css|scss|sass|less)$/i.test(fileInfo.path)) {
return undefined;
}
const updated = applyGridDragStrips(fileInfo.source);
return updated !== fileInfo.source ? updated : undefined;
};
module.exports.aiInstructions = `Several CSS classes were removed from Grid and TreeList drag-related elements in Kendo UI 2025 Q2:
- k-drag-cell removed from k-table-th elements: .k-table-th.k-drag-cell → .k-table-th
- k-touch-action-none removed from k-table-th elements: .k-table-th.k-touch-action-none → .k-table-th
These classes are only stripped when they appear in compound selectors with .k-table-th.`;