From 3db25b63c705bcfc2dd686df1e5de84160bbd49a Mon Sep 17 00:00:00 2001 From: Mert Sincan Date: Mon, 13 May 2024 10:19:03 +0100 Subject: [PATCH] Update SpeedDial.vue --- components/lib/speeddial/SpeedDial.vue | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/components/lib/speeddial/SpeedDial.vue b/components/lib/speeddial/SpeedDial.vue index cb5fb3f68..2ac7381c7 100644 --- a/components/lib/speeddial/SpeedDial.vue +++ b/components/lib/speeddial/SpeedDial.vue @@ -101,7 +101,7 @@ export default { this.id = this.id || UniqueComponentId(); if (this.type !== 'linear') { - const button = DomHandler.findSingle(this.container, '[data-pc-name="button"]'); + const button = DomHandler.findSingle(this.container, '[data-pc-name="pcbutton"]'); const firstItem = DomHandler.findSingle(this.list, '[data-pc-section="item"]'); if (button && firstItem) { @@ -365,14 +365,14 @@ export default { const step = (2 * Math.PI) / length; return { - left: `calc(${radius * Math.cos(step * index)}px + ${$dt('item.diff.x', '0px')})`, - top: `calc(${radius * Math.sin(step * index)}px + ${$dt('item.diff.y', '0px')})` + left: `calc(${radius * Math.cos(step * index)}px + ${$dt('item.diff.x', '0px').variable})`, + top: `calc(${radius * Math.sin(step * index)}px + ${$dt('item.diff.y', '0px').variable})` }; } else if (type === 'semi-circle') { const direction = this.direction; const step = Math.PI / (length - 1); - const x = `calc(${radius * Math.cos(step * index)}px + ${$dt('item.diff.x', '0px')})`; - const y = `calc(${radius * Math.sin(step * index)}px + ${$dt('item.diff.y', '0px')})`; + const x = `calc(${radius * Math.cos(step * index)}px + ${$dt('item.diff.x', '0px').variable})`; + const y = `calc(${radius * Math.sin(step * index)}px + ${$dt('item.diff.y', '0px').variable})`; if (direction === 'up') { return { left: x, bottom: y }; @@ -386,8 +386,8 @@ export default { } else if (type === 'quarter-circle') { const direction = this.direction; const step = Math.PI / (2 * (length - 1)); - const x = `calc(${radius * Math.cos(step * index)}px + ${$dt('item.diff.x', '0px')})`; - const y = `calc(${radius * Math.sin(step * index)}px + ${$dt('item.diff.y', '0px')})`; + const x = `calc(${radius * Math.cos(step * index)}px + ${$dt('item.diff.x', '0px').variable})`; + const y = `calc(${radius * Math.sin(step * index)}px + ${$dt('item.diff.y', '0px').variable})`; if (direction === 'up-left') { return { right: x, bottom: y };