diff options
author | Ulrich-Matthias Schäfer <ulima.ums@googlemail.com> | 2020-04-08 07:32:38 +1000 |
---|---|---|
committer | Ulrich-Matthias Schäfer <ulima.ums@googlemail.com> | 2020-04-08 07:32:38 +1000 |
commit | d927f2d225d74fd3b3f41b298a19f6ba075702cf (patch) | |
tree | f53da1457a2a2df4685367a4184bf244fbd83378 /CHANGELOG.md | |
parent | 099bf6efad9c9971d805c8496a63314d91a71692 (diff) | |
download | svg.js-d927f2d225d74fd3b3f41b298a19f6ba075702cf.tar.gz svg.js-d927f2d225d74fd3b3f41b298a19f6ba075702cf.zip |
added Fragment, completed Dom Tests, fixed `matches()` for document fragments
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r-- | CHANGELOG.md | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 1152156..83af8ea 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -19,9 +19,10 @@ The document follows the conventions described in [“Keep a CHANGELOG”](http: - fixed tons of typings in the svg.d.ts file and relaxed type requirements for `put()` and `parent()` - fixed adopter when adopting an svg/html string. It had still its wrapper as parentNode attached - fixed `put()` which correctly creates an svgjs object from the passed element now before returning - - fixed `parent()` which correctly returns null if direct parent is the document or a document-fragment + - fixed `parent()` which correctly returns a Dom instance when parent is the document or document-fragment - fixed `add()` which correctly removes namespaces of non-root svg elements now when added to another svg element (#1086) - fixed `isRoot()` which correctly returns false, if the element is in a document-fragment + - fixed `replace()` which works without a parent now, too ### Added - added second Parameter to `SVG(el, isHTML)` which allows to explicitely create elements in the HTML namespace (#1058) @@ -31,6 +32,7 @@ The document follows the conventions described in [“Keep a CHANGELOG”](http: - added `options` parameter to `dispatch()` and `fire()` to allow for more special needs - added `newLine()` constructor to `Text` to create a tspan marked as new line (#1088) - added lots of tests in es6 format + - added `Fragment` as a wrapper for document-fragment ## [3.0.16] - 2019-11-12 |