aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* added tests for ClipPathUlrich-Matthias Schäfer2020-04-082-4/+98
|
* added tests for CircleUlrich-Matthias Schäfer2020-04-084-7/+72
|
* fix defs and reference, tests for ElementUlrich-Matthias Schäfer2020-04-085-14/+302
|
* tests for EventTargetUlrich-Matthias Schäfer2020-04-084-11/+138
|
* added Fragment, completed Dom Tests, fixed `matches()` for document fragmentsUlrich-Matthias Schäfer2020-04-089-21/+443
|
* added second parameter to `addTo` and `putIn`. Added deep clone parameter to ↵Ulrich-Matthias Schäfer2020-04-052-17/+261
| | | | `clone`. Tests for Dom
* renamed removeNamespace()Ulrich-Matthias Schäfer2020-04-044-8/+8
|
* - fixed `put()` which correctly creates an svgjs object from the passed ↵Ulrich-Matthias Schäfer2020-04-038-103/+273
| | | | | | | | element now before returning - fixed `parent()` which correctly returns null if direct parent is the document or a 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 put and adopter, added tests to cover itUlrich-Matthias Schäfer2020-03-297-106/+156
|
* fix travis configUlrich-Matthias Schäfer2020-03-281-17/+11
|
* This is a big one...Ulrich-Matthias Schäfer2020-03-2865-1338/+2551
| | | | | | | | | | | | | | | | | | | | ### Fixed - fixed `zoom()` method of runner which was passed a wrong parameter - fixed positioning methods of `TSpan` to position them by its bounding box - fixed `flip()` method which flips correctly by center by default now and accepts correct arguments - fixed a case in `rbox()` where not always all values of the box were updated - fixed `getOrigin()` function used by `transform()` so that all origin (#1085) popssibilities specified in the docs are working - fixed positioning of text by its baseline when using `amove()` - fixed tons of typings in the svg.d.ts file ### Added - added second Parameter to `SVG(el, isHTML)` which allows to explicitely create elements in the HTML namespace (#1058) - added `unlink()` and `linker()` to hyperlinked elements to remove or access the underling `<a>` element - added `wrap()` method to `Dom` which lets you wrap an element by another one - added `orient()` method to `Marker` - 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
* Merge pull request #1096 from LumaKernel/types-for-mouse-eventsUlrich-Matthias Schäfer2020-03-231-0/+2
|\ | | | | Add mouseenter()/mouseleave() function definition to types.
| * Add mouseenter()/mouseleave() function definition to types.Luma2020-03-231-0/+2
|/
* Merge pull request #1065 from mradcliffe/1064-fix-element-animate-typingUlrich-Matthias Schäfer2019-12-191-3/+2
|\ | | | | Fixes Element.animate typing
| * Changes animate duration argument to TimeLikeMatthew Radcliffe2019-12-161-2/+2
| |
| * Fixes Element.animate typingMatthew Radcliffe2019-12-121-2/+1
|/
* fixed build of polyfills which was broken because of core-js update3.0.16Ulrich-Matthias Schäfer2019-11-123-9/+15
|
* bump version3.0.15Ulrich-Matthias Schäfer2019-11-084-7/+20
| | | | | | | | ### Fixed - allow object input of `when` and `delay` to `animate()` ### Added - added missing dmove function to runner
* Updated dependencies to newest version, new linter fixed stuffUlrich-Matthias Schäfer2019-11-0131-4475/+3522
|
* bump version3.0.14Ulrich-Matthias Schäfer2019-10-313-22/+33
|
* Merge pull request #1026 from lenzls/1023-hide-from-screen-readersUlrich-Matthias Schäfer2019-07-272-35/+59
|\ | | | | #1023 - hide parser from screen readers
| * 1023 - update package-lock.jsonSimon Lenz2019-07-271-35/+58
| |
| * 1023 - hide parser from screen readersSimon Lenz2019-07-271-0/+1
|/
* bump version3.0.13Ulrich-Matthias Schäfer2019-06-122-1/+9
|
* Merge pull request #1004 from maxailloud/typescript-definition-file-cleaningUlrich-Matthias Schäfer2019-05-241-16/+16
|\ | | | | Typescript definition file cleaning
| * PathArray parse method's parameter should be optional to comply with the ↵Maxime AILLOUD2019-05-241-1/+1
| | | | | | | | parent class
| * Typescript definition file: add null as possible parameter for event binding ↵Maxime AILLOUD2019-05-241-15/+15
|/ | | | methods in Element class
* Merge pull request #992 from valentinradu/masterUlrich-Matthias Schäfer2019-05-092-0/+14
|\ | | | | Fixed path transformation when box width or height is 0
| * Added tests for 0 value width/height wrong path scalingValentin2019-05-092-1/+10
| |
| * Fixed path transformation when box width or height is 0Valentin2019-05-061-0/+5
|/
* fix transform getter when something is 0. Make sure only needed files are ↵Ulrich-Matthias Schäfer2019-04-262-1/+6
| | | | uploaded to npm
* Merge pull request #985 from JanMisker/patch-1Ulrich-Matthias Schäfer2019-04-111-1/+1
|\ | | | | Update CHANGELOG.md
| * Update CHANGELOG.mdJanMisker2019-04-111-1/+1
|/ | | Back to the future... (sorry couldn't help to correct a minor typo in the date of 3.0.5)
* Merge pull request #966 from michAtEl/issue-964Ulrich-Matthias Schäfer2019-04-013-1/+128
|\ | | | | bugfix for issue #964
| * bugfix for issue 964Michael Becker2019-02-233-1/+128
| |
* | Merge pull request #974 from cmidt-veasna/update-typescript-definitionUlrich-Matthias Schäfer2019-03-011-86/+133
|\ \ | | | | | | Update typescript definition file.
| * | Update typescript definition file.Veasna Sreng2019-03-011-86/+133
|/ /
* / Register classes explicitly instead of relying on `Function.name` because ↵Ulrich-Matthias Schäfer2019-02-2732-32/+32
|/ | | | classes could be renamed
* bump version number3.0.12Ulrich-Matthias Schäfer2019-02-192-2/+3
|
* cleanup of .d.ts (#960)kabentley2019-02-191-322/+1145
| | | | Big kudos to @kabentley for fixing the d.ts file
* added foreignObject to the coreUlrich-Matthias Schäfer2019-02-186-2/+78
|
* Merge pull request #957 from kabentley/use-umdUlrich-Matthias Schäfer2019-02-121-227/+190
|\ | | | | cleanup of d.ts
| * fix SVGNumber and SVGArrayKeith Bentley2019-02-121-181/+127
| |
| * Merge branch 'master' into use-umdKeith Bentley2019-02-120-0/+0
| |\
| | * Merge pull request #1 from svgdotjs/masterkabentley2019-02-112-524/+319
| | |\ | |_|/ |/| | sync
* | | Merge pull request #956 from kabentley/use-umdUlrich-Matthias Schäfer2019-02-112-524/+319
|\ \ \ | |_|/ |/| | Update .d.ts file with changes for 3.0, fix browser key in package.json
| | * Cleanup of d.tsKeith Bentley2019-02-121-62/+79
| |/
| * two constructors for PathArrayKeith Bentley2019-02-111-2/+1
| |
| * missed constructors on Matrix and PathArrayKeith Bentley2019-02-111-0/+2
| |
| * revert to iife for bundle. Set "browser" to src/main.js in package.jsonKeith Bentley2019-02-113-448/+291
| |