@progress/kendo-ui
Version:
This package is part of the [Kendo UI for jQuery](http://www.telerik.com/kendo-ui) suite.
25 lines (19 loc) • 966 B
JavaScript
;
const { applyWindowDialogClassRenames } = require('../_shared.cjs');
module.exports = function transformer(fileInfo) {
if (!/\.(css|scss|sass|less)$/i.test(fileInfo.path)) {
return undefined;
}
const updated = applyWindowDialogClassRenames(fileInfo.source);
return updated !== fileInfo.source ? updated : undefined;
};
module.exports.aiInstructions = `Window and Dialog CSS classes were restructured in Kendo UI 2023 R1 SP1:
Window:
- k-window-actions (old titlebar actions) renamed to k-window-titlebar-actions
- k-window-buttongroup (footer buttons) renamed to k-window-actions
- k-window-buttons (footer buttons) renamed to k-window-actions
- k-window-titleless stripped from compound selectors (class removed)
Dialog:
- k-dialog-actions (old titlebar actions) renamed to k-dialog-titlebar-actions
- k-dialog-buttongroup (footer buttons) renamed to k-dialog-actions
- k-dialog-buttons (footer buttons) renamed to k-dialog-actions`;