This repository has been archived by the owner on Jun 1, 2024. It is now read-only.
Release v1.7.0
- Fixes problem where the action setContext wouldn’t update a value in the context if the new data type was different than the previous.
- Navigation actions can now recover the context state when navigating back in the history.
- Navigation actions can now further specify aspects of the request to retrieve the view. The new property
httpAdditionalData
lets the backend specify the http method, headers and body of the request. Furthermore, now that the navigation can completely describe a request, the parameternetworkOptions
for creating a Beagle View is no longer required and has been deprecated. - Beagle’s main component,
BeagleRemoteView
, now, besides acceptingroute
as a string (url), also acceptsroute
as an object, which represents a full request, including url, headers, body and method. This also makes the parameternetworkOptions
redundant, so it has been deprecated. CornerRadius
, in the component’s style, now correctly interprets null values.- The component
Text
will now correctly serialize objects and arrays to strings. - Fixes the
z-index
of the componentModal
, which, sometimes, appeared behind other components. - Remote views can now be loaded from endpoints different than the one set in the property
baseUrl
of the configuration. - Fixes problem in the script
beagle init
where the directorysrc
wouldn’t be created if it didn’t previously existed. Also fixed a problem where the script would ask to replace an existing file even if the file didn’t exist.