Releases: BigJk/ImHTML
Releases · BigJk/ImHTML
v0.4.0
- #6 Fix
emunits regression - Improve handling of custom components
- Allow styling to be applied directly to custom component
- Support drawing of css border and background around/behind the custom component
- Rework the layout of the example (
main.cpp) - Refactor naming conventions
Example
Custom Components
<!-- before: Had to wrap with div -->
<div style="border: 1px solid green; height: 100px; width: 100px; padding: 15px; flex-shrink: 0"
<custom-button
text="Click me"
tooltip="Tooltip"
></custom-button>
</div>
<!-- after: Style works directly on the component -->
<custom-button
style="border: 1px solid green; height: 100px; width: 100px; padding: 15px; flex-shrink: 0"
text="Click me"
tooltip="Tooltip"
></custom-button>v0.3.0
Improvements by @woollybah:
v0.2.0
Improvements by @KaruroChori:
- #1 Header re-ordering
- #2 Removed explicit dependency from litehtml in header
- #4 Fix border, background, list icons, background color of body not working
Thanks to this borders and border radius work a lot better now!
v0.1.0
docs: added some more info
v0.0.2
fix: css loading
v0.0.1
feat: release workflow