ketekny-ui-kit 1.0.81 → 1.0.82

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,7 +1,7 @@
1
1
  {
2
2
  "name": "ketekny-ui-kit",
3
3
  "type": "module",
4
- "version": "1.0.81",
4
+ "version": "1.0.82",
5
5
  "description": "A Vue 3 UI component library with Tailwind CSS styling",
6
6
  "main": "index.js",
7
7
  "files": [
@@ -273,7 +273,7 @@ export default {
273
273
  const onLeave = () => hide()
274
274
  const onScrollOrResize = () => {
275
275
  // If visible, keep it clamped while scrolling/resizing
276
- if (bubble.classList.contains('opacity-100')) positionAndShow()
276
+ if (state.nodes?.bubble?.classList.contains('opacity-100')) positionAndShow()
277
277
  }
278
278
 
279
279
  el.addEventListener('mouseenter', onEnter)