@progress/kendo-ui
Version:
This package is part of the [Kendo UI for jQuery](http://www.telerik.com/kendo-ui) suite.
24 lines (17 loc) • 974 B
JavaScript
;
module.exports = {
description: `As of Kendo UI 2021 R2 SP1, the TileLayout widget header text element has changed from <h5> to <div>.
This codemod automatically updates CSS and JavaScript selectors from:
.k-tilelayout-header h5 → .k-tilelayout-header div
This is a simple element replacement - no functionality changes, just CSS targeting adjustments.`,
instructions: [
'The .k-tilelayout-header h5 selector has been automatically updated to .k-tilelayout-header div',
'Review any custom CSS that targets TileLayout headers to verify the transformation',
'If you have pseudo-elements like ::before or ::after on headers, they will continue to work',
'Test TileLayout header rendering in your application to ensure styling is preserved'
],
affectedComponents: [
'TileLayout'
],
backwardsCompatibilityLink: 'https://docs.telerik.com/kendo-ui/backwards-compatibility/2021-backward-compatibility#kendo-ui-2021-r2-sp1'
};