@progress/kendo-ui
Version:
This package is part of the [Kendo UI for jQuery](http://www.telerik.com/kendo-ui) suite.
21 lines (14 loc) • 591 B
JavaScript
;
const { applySplitContainerRename } = require('../_shared.cjs');
module.exports = function transformer(fileInfo) {
if (!/\.(css|scss|sass|less)$/i.test(fileInfo.path)) {
return undefined;
}
const result = applySplitContainerRename(fileInfo.source);
return result !== fileInfo.source ? result : undefined;
};
module.exports.aiInstructions = `The Toolbar SplitButton popup container class was renamed from k-split-container to k-split-wrapper in Kendo UI 2022 R2 SP1.
Before:
.k-split-container { z-index: 100; }
After:
.k-split-wrapper { z-index: 100; }`;