@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) • 612 B
JavaScript
;
const { applyExpansionPanelHiddenClass } = require('../_shared.cjs');
module.exports = function transformer(fileInfo) {
if (!/\.(css|scss|sass|less)$/i.test(fileInfo.path)) {
return undefined;
}
const updated = applyExpansionPanelHiddenClass(fileInfo.source);
return updated !== fileInfo.source ? updated : undefined;
};
module.exports.aiInstructions = `The ExpansionPanel hidden state class changed from k-d-none to k-hidden on the content wrapper in Kendo UI 2025 Q2.
Before:
.k-expander-content-wrapper.k-d-none { ... }
After:
.k-expander-content-wrapper.k-hidden { ... }`;