UNPKG

@progress/kendo-ui

Version:

This package is part of the [Kendo UI for jQuery](http://www.telerik.com/kendo-ui) suite.

20 lines (15 loc) 972 B
'use strict'; const { applyRenderingClassRemovals } = require('../_shared.cjs'); module.exports = function transformer(fileInfo) { if (!/\.(css|scss|sass|less)$/i.test(fileInfo.path)) { return undefined; } const updated = applyRenderingClassRemovals(fileInfo.source); return updated !== fileInfo.source ? updated : undefined; }; module.exports.aiInstructions = `Several CSS class changes were introduced in Kendo UI 2025 Q2: - Grid: .k-table-alt-row.k-alt → .k-table-alt-row (k-alt removed from alternating row compound) - DockManager: .k-dockmanager .k-tabstrip.k-header → .k-dockmanager .k-tabstrip (k-header removed) - Grid popup: .k-window-content.k-popup-edit-form → .k-popup-edit-form (k-window-content removed from compound) - AIPrompt: .k-aiprompt .k-card-body.k-white-space-pre-line → .k-aiprompt .k-card-body (utility class removed) - TreeList: .k-treelist .k-treelist-group → .k-treelist .k-table-group-row (group row class renamed)`;