Skip to content

v0.14.0

Compare
Choose a tag to compare
@gius gius released this 30 May 16:42
· 203 commits to develop since this release

@frui.ts/cra-template

  • Added a Create React App template.

@frui.ts/Screens

  • Added Router.
  • IHasNavigationName deleted, NavigationName moved to IScreen.
  • IHasNavigationParams deleted, get navigationParams() is now directly in ScreenBase. You can handle incoming params in navigate() function (move your logic from applyNavigationParams()).
  • Added INavigationParent.
  • Current screens and conductors updated according to the changes above.

@frui.ts/Views

  • [BREAKING] Ordering of the generic parameters of BindingComponent changed to conform with other components: BindingComponent<TProps, TTarget> changed to BindingComponent<TTarget, TProps>.