Releases: hal/elemento
Releases · hal/elemento
Elemento 1.4.6
Added
- Added
sources
classifier in BOM
Elemento 1.4.5
Fixed
- Added missing dependency definitions for packaging
gwt-lib
in BOM
Elemento 1.4.4
Changed
- Migrate from
jar
togwt-lib
packaging
Elemento 1.4.3
Added
- Add parameter
routes.package
for the routes annotation processor to specify the package name of the generatedRoutes
implementation. If not specified, the package name defaults toorg.jboss.elemento.router
.
Elemento 1.4.2
Fixed
- Fix API doc issues
Elemento 1.4.0
Added
- New module
elemento-flow
- Samples are now part of Elemento
Elemento 1.3.3
Added
- Inverted link selector for place manager
Elemento 1.3.2
Fixed
- Fix 404 handling in place manager
Elemento 1.3.1
Added
- Add
PlaceManager.base(String)
to set a base URL for the place manager.
Elemento 1.3.0
Added
Router
Elemento now contains a very basic place manager. The place manager is minimal invasive and built around a few simple concepts:
Route
: Annotation that can be used to decorate pages. An annotation processor collects all classes annotated with@Route
and generates an implementation ofRoutes
.Routes
: Provides a collection of places and their corresponding pages.Place
: Class that represents a place in an application. A place is identified by a route, and can have an optional title and a custom root element.Page
: Interface that represents a collection of HTML elements.PlaceManager
: Class responsible for managing the routing and navigation within an application.