Back to jointjs.com.
CHANGELOG
-
ui.Widget - fix a too general input color CSS rule
Make sure that no
<input type="color">is affected unless it is inside a toolbar widget.
-
dia.Cell - fix
isEmbeddedIn()withdeepoption set tofalse// Assert: performs a shallow check i.e. `el1` is a direct child of `el2` el1.isEmbeddedIn(el2, { deep: false });
-
util.svg - support embedded expressions
Fix string interpolation in
svgtagged template.const selector = 'body'; const color = 'red'; const markup = util.svg`<rect @selector="${body}" fill="${color}"/>`
-
util.svg - prevent
classNameset tonullPrevent
<rect class="null"/>when noclassNameis provided.