github varabyte/kobweb v0.13.10

latest releases: v0.24.0, v0.23.3, v0.23.2...
2 years ago

Frontend

  • Fixed a bug with the hueRotate CSS function generating invalid CSS
  • Added implementation for Color.rgba(value: Int)
    • This was originally incorrectly implemented as argb but, after several versions emitting a warning, this is now fixed.
    • e.g. rgba(0xFFFF00FF) will create yellow (red = 255, green = 255, and alpha = 255)
  • All scope functions now marked with @DslMarker.
    • This helps the compiler prevent you from making errors related to using stuff that leaked from an outside scope (e.g. using a parent Column modifier within a child Row).

Silk

  • rememberColorMode is now ColorMode.currentState, and getColorMode is now ColorMode.current
    • This method has been named incorrectly forever, so it's nice to finally address it with a more Compose-idiomatic API
  • ColorMode.isLight(), isDark(), and opposite() methods are now properties (i.e. isLight, isDark, and opposite).
  • Added a modifier for the border-collapse CSS property.

Markdown

  • You can now use markdown syntax to create tables
  • Fixed a bug when generating code for deeply nested html output.
    • This was easy to hit if you tried to declare a <table> element.

Backend

  • Logging now defaults to DEBUG, not TRACE.
    • TRACE is great for local debugging, but it's too noisy for production servers.

Full Changelog: v0.13.9...v0.13.10

Don't miss a new kobweb release

NewReleases is sending notifications on new releases.