-
Notifications
You must be signed in to change notification settings - Fork 138
0.35.0 Breaking changes
Platon Rov edited this page Apr 15, 2022
·
12 revisions
Message Toast global config (Core) #7957
Added ability to define global configuration via withConfig method of the MessageToastModule
Smart Filter Bar (Platform) #7954
filterable input property is now available only for fdp-column. To make Smart filter bar item as filterable, please use smartFilterBarFilterable input property. Now this value is true by default.
Carousel (Core) #7949
Carousel now supports auto value of the visibleSlidesCount input property. It will automatically calculate how many items are possible to fit into current carousel viewport.
Toolbar, Table (Core) #7987
- Toolbar: Toolbar title now requires
fd-toolbar__titleclass
Before:
<h4> Toolbar Title </h4>
After:
<h4 class="fd-title fd-title--h4 fd-toolbar__title">Toolbar Title</h4>
- Table: Wrap text in table cell in
fd-table-textdirective to have the text-shadow
Before:
<td fd-table-cell>
Text
</td>
After:
<td fd-table-cell>
<span fd-table-text>Text</span>
</td>