New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More

@busy-web/ember-date-time

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@busy-web/ember-date-time - npm Package Compare versions

Comparing version

to
2.1.11

@@ -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