I noticed breaking style changes in our code and realized that some html has changed, and some class assignments may have been removed in the latest Kendo version 2020.2.513.
For example, in 2020.1.406, the windows have the k-header class:
<div class="k-window-titlebar k-header" style="margin-top: -42px;"><span class="k-window-title">Table Wizard</span><div class="k-window-actions">
But in 2020.2.513, this class is gone:
<div class="k-window-titlebar" style="margin-top: -42px;"><span class="k-window-title">Table Wizard</span><div class="k-window-actions">
Another example, the editor toolbar buttons have changed from anchors to buttons:
2020.1.406:
<a tabindex="0" role="button" class="k-tool k-group-start k-group-end k-state-hover" unselectable="on" title="Table Wizard" aria-label="Table Wizard"><span unselectable="on" class="k-tool-icon k-icon k-i-table-properties"></span></a>2020.2.513:
<button tabindex="0" role="button" class="k-button k-tool k-group-start k-group-end k-state-hover" title="Table Wizard" aria-label="Table Wizard" unselectable="on"><span class="k-icon k-i-table-properties"></span><span class="k-tool-text k-button-text">Table Wizard</span></button>
As this is causing many display issues with our code and automation testing, is there a list of these breaking changes somewhere?
Thanks, Bob