Skip to content

4.3.0

Latest
Compare
Choose a tag to compare
@omikron-fp omikron-fp released this 14 Oct 09:32
7966b2f

ℹ️ Note that this version does not contain any changes from the 4.3.0-beta.3 release. Development of that branch is on hold and is to be released under a different version.

ADD

  • Auto-fetch
    • The auto-fetch feature allows you to globally define how Web Components shall behave when added to the DOM.
      They may do nothing or immediately render relevant data from the last request.
  • core
    • Introduced globalCommunicationParameter.autoFetch enum property with 3 possible values: SsrOnly (default), AlwaysOn and AlwaysOff.
      • Available under factfinder.enums.AutoFetch.
    • Introduced ResultDispatcher.dispatchSSR(response, topics) function that provides reliable SSR rendering on both regular pages and pages with modular rendering.

FIX

  • ff-slider-control
    • Hitting the ENTER key in an input element now reads both min and max values to build the request.

DEPRECATION

Usage of these features is no longer recommended. They are going to be removed in a future version.

  • ResultDispatcher.dispatchRaw(response, topics), use the new ResultDispatcher.dispatchSSR(response, topics) instead.