Changes since 24.0.0.alpha12
Fixes
-
Apply variant when using default theme
Commit · Pull request · IssueIf Theme annotation specifies a variant but not theme name or class, the production build applies the default Lumo theme but without the variant. This change makes the variant work even when theme name or class are not specified.
-
Use uiId instead of appId to find an element
Commit · Pull requestAn appId only identifies a servlet and does not identify which UI instance connected to that servlet to use. A UI id uniquely identifies the UI and app id is not needed at all
-
Replace any 'Frontend/' with './'
Commit · Pull requestStats.json records some handled files as Frontend/... where as the requested file may be in the format ./... Use each Frontend/ always as ./
-
Do not use stack trace elements in public API
Commit · Pull requestEnables updating the location from code later on if needed
-
Do not register anonymous classes with Spring aot
Commit · Pull requestIt is not needed, and causes a null pointer exception. See spring-projects/spring-framework#29774
-
Do not start watching theme if no theme is used
Commit · Pull request