-
Notifications
You must be signed in to change notification settings - Fork 137
0.35.0 Breaking changes
N1XUS edited this page Apr 20, 2022
·
12 revisions
Form Generator/Wizard generator global config (Core) #8000
Added ability to define global configuration via withConfig method of the PlatformFormGeneratorModule and PlatformWizardGeneratorModule
strict angularCompilerOptions refactoring #7998
-
ListGroupPipeandGroupFunctioninterface were moved from@fundamental-ngx/core/utilsto@fundamental-ngx/core/comboboxas it is the only place where it's needed. - core-checkbox’s
checkedChangeoutput now emits plain value -
NumberStepInputChangeEventfrom@fundamental-ngx/platform/number-step-inputhas been removed in favour of baseStepInputChangeEvent -
isValidControlStatehas been moved from@fundamental-ngx/platform/sharedto@fundamental-ngx/core/utils -
FdSelectChangefrom@fundamental-ngx/core/selecthas been removed as it was never in use
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>