@fiscozen/composables 0.1.35-beta → 0.1.35

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fiscozen/composables",
3
- "version": "0.1.35-beta",
3
+ "version": "0.1.35",
4
4
  "description": "Design System utility composables",
5
5
  "main": "src/index.ts",
6
6
  "type": "module",
@@ -40,7 +40,6 @@ export const useFloating = (
40
40
 
41
41
  const setPosition = () =>
42
42
  nextTick(() => {
43
- console.log("ENTRO")
44
43
  actualPosition.value = args.position ? args.position.value : 'auto'
45
44
  safeElementDomRef.value = (
46
45
  typeof args.element.value.domRef.value === 'string'
@@ -300,7 +299,7 @@ export const useFloating = (
300
299
 
301
300
  if(float.position.y < 0) float.position.y = 0
302
301
  if(float.position.x < 0) float.position.x = 0
303
-
302
+
304
303
  safeElementDomRef.value.style.top = `${float.position.y}px`
305
304
  safeElementDomRef.value.style.left = `${float.position.x}px`
306
305
  safeElementDomRef.value.style.position = 'fixed'