All Versions
31
Latest Version
Avg Release Cycle
54 days
Latest Release
-
Changelog History
Page 3
Changelog History
Page 3
-
v0.2.9 Changes
- โ Added a
RenderThen
option toUpdate
, which allows chaining update messages - โ Added a
.model
method toUpdate
, allowing for cleaner recursion in updates - ๐ Improved controlled-component (sync fields with model) logic
- โ Added a
-
v0.2.8 Changes
- Reflowed
El::from_html
andEl::from_markdown
to returnVec
s ofEl
s, instead of wrapping them in a single span. - ๐ Improved support for SVG and namespaces
- โ Added
set_timeout
wrapper
- Reflowed
-
v0.2.7 Changes
- ๐ Fixed a bug where
line!
macro interfered with builtin - ๐ Fixed a bug with routing search (ie
?
)
- ๐ Fixed a bug where
-
v0.2.6 Changes
- ๐ Fixed a bug where children would render out-of-order
- ๐ Improved vdom diffing logic
-
v0.2.5 Changes
- Attributes and Events now can use
At
andEv
enums - Routing overhauled; modelled after react-reason. Cleaner syntax, and more flexible
- Input, Textarea, and Select elements are now "controlled" - they always stay in sync with the model
- โก๏ธ index.html file updated in examples and quickstart to use relative paths, which fixes landing-page routing
- Attributes and Events now can use
-
v0.2.4 Changes
- ๐ Changed render func to use a new pattern (Breaking)
- 0๏ธโฃ Default mount point added: \"app\" for element id
- View func now takes a ref to the model instead of the model itself
- ๐จ Routing refactored; now works dynamically
- โก๏ธ Update function now returns an enum that returns Render or Skip, to allow conditional rendering (Breaking)
- Elements can now store more than 1 text node
-
v0.2.3 Changes
- ๐ Fixed a bug where initially-empty text won't update
- โ Added more tests
- ๐ฆ Exposed web_sys Document and Window in top level of Seed create, with .expect
- ๐ Modified build scripts to keep the wasm output name fixed at 'package', simplifying example/quickstart renames
- โก๏ธ Tests now work in Windows due to update in wasm-pack
-
v0.2.2 Changes
- Overhaul of fetch module
- โ Added server-integration example
-
v0.2.1 Changes
- โ Added support for custom tags
- โ Added
class!
andid!
convenience macros for setting style
-
v0.2.0 Changes
- โ Added high-level fetch api
- โ Added routing
- Added element lifecycles (did_mount, did_update, will_unmount)
- โ Added support for updating state outside events
- โ Added server_interaction, and homepage (this site) examples