Silk
- New widgets!
- Overlay: Render a full screen dark grey background (optionally, override the color by passing in a modifier). Any child of the overlay will render on top of it.
- Useful for creating your own modal dialog class, for example.
- Popup: Render content next to some other element when that element is mouse-overed.
- Tooltip: Like Popup, but wraps content in a black chat bubble. Well suited for text blurbs.
- Overlay: Render a full screen dark grey background (optionally, override the color by passing in a modifier). Any child of the overlay will render on top of it.
- Silk now supports deferred rendering via the
deferRenderutility method, which breaks normal composition flow and renders some target Composable after everything else is rendered. This lets you accomplish rendering elements globally on top of other elements without resorting to zIndex tricks.- Overlays and Popups use deferred rendering under the hood.
- ComponentStyle css selector builders now support using functional psuedo-classes
- For example, using the not psuedo-class here.
- Bumped SimpleGrid max size from 4 to 5.
Frontend
- Added
Modifiersupport for pointer-events
Gradle
- [Multimodule] Fixed an issue where public resources in dependent projects weren't getting copied into the final site's resources.