github SAP/fundamental-ngx v0.46.0-rc.2

latest releases: v0.52.2-rc.37, v0.52.2-rc.36, v0.52.2-rc.35...
pre-release13 months ago

Bug Fixes

BREAKING CHANGES

  • .fd-calendar__close-button--navigation button has been removed for landscape mode. Instead developers should implement own buttons for scenarios when calendar is used in dialog.
    Navigation
    Before:
<header class="fd-calendar__header">
    <div class="fd-calendar__navigation">
...
    </div>
</header>

After:

<header class="fd-calendar__navigation">
...
</header>

Calendar Day
Before:

<td role="gridcell" class="fd-calendar__item">
    <span class="fd-calendar__text" role="button">8</span>
</td>

After:

<td role="gridcell" class="fd-calendar__item">
    <div class="fd-calendar__text-wrapper">
        <span class="fd-calendar__text" role="button">8</span>
    </div>
</td>

Calendar Container
Before:

<div class="fd-calendar__content fd-calendar__content--dates" id="IO0cp341">
    <table class="fd-calendar__table" role="grid">
        <thead class="fd-calendar__group">
...
    </table>
</div>

After:

<table class="fd-calendar__content" id="IO0cp341" role="grid">
    <thead class="fd-calendar__group">
...
</table

Don't miss a new fundamental-ngx release

NewReleases is sending notifications on new releases.