v6.0.1 - Major Update
Poseidon
This version and the others aim to primarily simplify and improve the previous version in terms of performance and consistency, adding important elements to maintain both, and removing elements that could impact these two pillars.
- Rewritten from scratch in Typescript.
- Improving Performance.
- Making
<template>
tags compatible with directives:html-for
,html-if
,html-inner
... - Adding
state.protected()
to avoid parent -> child prop overrides. - Hidding leaking abstractions on native node elements.
- Improving memory leak managment.
- Improving consistency over many rendering edge cases.
- Removing scope from html rendering and keeping it on memory ( Performance ).
- Removing
onupdate
function to keep simplicity and avoid inconsistency on rendering. - Simplifying way to get functionalities from jails by making them destructurable on import:
import { start, register } from 'jails-js'
- Model now accepts a
Function
that provideselm
element to provide data from html to be used on initial state.