@busy-web/ember-date-time
Advanced tools
@@ -126,3 +126,6 @@ /** | ||
setBounds(minX, minY, width, height) { | ||
this.svg.snap.attr({viewBox: `${minX} ${minY} ${width} ${height}`}); | ||
// hide box until calculations have been made | ||
// safari fix | ||
this.svg.__el.style.display = "none"; | ||
this.svg.snap.attr({ viewBox: `${minX} ${minY} ${width} ${height}` }); | ||
@@ -150,4 +153,10 @@ const faceCoords = getBoundsCenter(width, height); | ||
if (!isNone(text)) { | ||
// show box long enough to get text box size | ||
this.svg.__el.style.display = ""; | ||
const bounds = text.node.getBBox(); | ||
let tAttr = `translate(${(armCoords.x2 - (bounds.width / 2))}, ${(armCoords.y2 + (bounds.height / 3))})`; | ||
this.svg.__el.style.display = "none"; | ||
let tx = (armCoords.x2 - (bounds.width / 2)); | ||
let ty = (armCoords.y2 + (bounds.height / 3)); | ||
let tAttr = `translate(${tx}, ${ty})`; | ||
text.attr('transform', tAttr); | ||
@@ -163,2 +172,4 @@ } | ||
}); | ||
// show box | ||
this.svg.__el.style.display = ""; | ||
} | ||
@@ -165,0 +176,0 @@ |
{ | ||
"name": "@busy-web/ember-date-time", | ||
"version": "2.1.10", | ||
"version": "2.1.11", | ||
"description": "Date time & and range picker for ember addon", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
Sorry, the diff of this file is not supported yet
New author
Supply chain riskA new npm collaborator published a version of the package for the first time. New collaborators are usually benign additions to a project, but do indicate a change to the security surface area of a package.
Found 1 instance in 1 package
439645
0.08%4688
0.21%0
-100%