Added
- Tailwind support (internal rust-only, and external node-based) #353
js!
macro which allows to evaluate simple JavaScript expressions. #372- Added
v-css
andv-component
attributes in rendered DOM to help debugging (added only in debug mode) #367
Changed
-
Value::set
now doesn't trigger graph update if new value is the same as the old one. #368This means,
T
should now implementPartialEq
.
Value::set_force
was introduced forT
which doesn't implementPartialEq
but this method always updates graph just as the oldset
method. -
on_click
attribute now providesClickEvent
to allow preventing default or stopping propagation.
Fixed
DomElement::get_ref()
#375
Removed
window!
anddocument!
macros (replaced byjs!
).