@progress/kendo-ui
Version:
This package is part of the [Kendo UI for jQuery](http://www.telerik.com/kendo-ui) suite.
34 lines (27 loc) • 1.01 kB
JavaScript
;
module.exports = {
description: `Badge configuration option names have changed in Kendo UI 2020 R3.
The following automatic transformations are applied:
- appearance → shape
- badgeStyle → fill
- color → themeColor
- look → fill
- placement → position
- position → align
- value → text (in config and method calls)
Special case: overlay property requires manual transformation.`,
instructions: [
'Search for "overlay:" in Badge configurations',
'For each occurrence, replace with two properties:',
' position: "edge"',
' align: "top end"',
'Review the placement context to ensure "top end" is the correct alignment for your use case',
'Adjust align value if needed (options: "top start", "top center", "top end", "bottom start", etc.)'
],
affectedComponents: [
'Badge',
'Chip',
'ChipList'
],
backwardsCompatibilityLink: 'https://docs.telerik.com/kendo-ui/backwards-compatibility/2020-backward-compatibility#kendo-ui-2020-r3'
};