summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* 99% line coverage - BAAAAMUlrich-Matthias Schäfer2020-05-037-714/+1919
|
* added specs for animation files except runner, fixed a few thingsUlrich-Matthias Schäfer2020-05-0113-101/+1098
|
* finish tests for SVGNumberUlrich-Matthias Schäfer2020-04-291-2/+43
|
* finished tests for Point, PointArray, PathArray and SVGArrayUlrich-Matthias Schäfer2020-04-298-108/+362
|
* finish tests for Matrix.jsUlrich-Matthias Schäfer2020-04-293-51/+193
|
* added tests for List.jsUlrich-Matthias Schäfer2020-04-293-2/+88
|
* finish color testsUlrich-Matthias Schäfer2020-04-294-17/+199
|
* finished specs for Box.js and made zoom handle level 0 correctly + make it ↵Ulrich-Matthias Schäfer2020-04-293-124/+272
| | | | more clear when zoom cannot zoom because it cant get width and height of the element
* added tests for transform.js, migrated tests for v3 of types to esm testsUlrich-Matthias Schäfer2020-04-2820-1006/+1580
|
* added tests for sugar.jsUlrich-Matthias Schäfer2020-04-263-14/+437
|
* added tests for data.js and memory.js, enhanced data function to work like ↵Ulrich-Matthias Schäfer2020-04-265-13/+183
| | | | css and attr
* added tests for css.jsUlrich-Matthias Schäfer2020-04-262-1/+108
|
* added tests for class.jsUlrich-Matthias Schäfer2020-04-261-0/+82
|
* add tests for selector and arrange, simplifed front() and back()Ulrich-Matthias Schäfer2020-04-263-9/+300
|
* sort out unused regex, add parser and regex tests, fix textable testsUlrich-Matthias Schäfer2020-04-258-28/+291
|
* renamed svg namespace to svgUlrich-Matthias Schäfer2020-04-236-55/+63
|
* make tests svgdom readyUlrich-Matthias Schäfer2020-04-168-45/+51
|
* added tests for pointed.js and poly.jsUlrich-Matthias Schäfer2020-04-115-8/+206
|
* added tests for circled.js and gradiented.jsUlrich-Matthias Schäfer2020-04-113-6/+139
|
* added tests for attr()Ulrich-Matthias Schäfer2020-04-112-1/+128
|
* added tests to cover all branchesUlrich-Matthias Schäfer2020-04-109-1/+132
|
* added even more testsUlrich-Matthias Schäfer2020-04-1011-9/+315
|
* added tests for Polygon and PolylineUlrich-Matthias Schäfer2020-04-102-0/+70
|
* added tests for PatternUlrich-Matthias Schäfer2020-04-102-19/+96
|
* remove targets from Path because its in TextPath alreadyUlrich-Matthias Schäfer2020-04-103-15/+1
|
* added tests for PathUlrich-Matthias Schäfer2020-04-104-35/+248
|
* added tests for MaskUlrich-Matthias Schäfer2020-04-103-5/+100
|
* added tests for LineUlrich-Matthias Schäfer2020-04-103-3/+107
|
* added tests for ImageUlrich-Matthias Schäfer2020-04-093-2/+119
|
* added test for GradientUlrich-Matthias Schäfer2020-04-096-68/+156
|
* added tests for ellipseUlrich-Matthias Schäfer2020-04-091-0/+60
|
* added tests for DefsUlrich-Matthias Schäfer2020-04-091-0/+31
|
* fixes and testsUlrich-Matthias Schäfer2020-04-098-38/+187
| | | | | | - fixed flatten and ungroup - added position argument to ungroup, toParent and toRoot - added tests for Container
* 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
|