Changelog
3.0.0 (2021-03-28)
import { h } from 'snabbdom/h'
import { VNode } from 'snabbdom/vnode'
Now, the main snabbdom package exports all of the public API like
import { h, VNode } from 'snabbdom'
This means consumers of the snabbdom package need to update their
imports. The change makes the use of the exports
field in
package.json
unnecessary, which caused issues for TypeScript users
All notable changes to this project will be documented in this file. See standard-version for commit guidelines.
Changelog
2.0.0 (2020-09-10)
Changelog
1.0.0 (2020-06-18)
init
.snabbdom/snabbdom.bundle
is removed.Element.setAttribute
and Element.setAttributeNS
to
accept number
and boolean
for the value
parameter. This
change removes that re-declaration and thus the only valid value is
string
. If your code provides number
and/or boolean
, then it
may now fail to compile.