srcdev-nuxt-components 2.5.11 → 2.5.12

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.
@@ -253,6 +253,7 @@ watch(
253
253
  );
254
254
 
255
255
  onBeforeUnmount(() => {
256
+ showGallery.value = false;
256
257
  clearTimeout(runTimeOut);
257
258
  clearTimeout(runNextAuto);
258
259
  window.removeEventListener('keydown', handleKeyDown);
@@ -16,7 +16,7 @@
16
16
  :style="{ '--_main-navigation-item-width': mainNavigationState.clonedNavLinks?.[groupKey]?.[localIndex]?.config?.width + 'px' }"
17
17
  ref="mainNavigationItems" :data-group-key="groupKey" :data-local-index="localIndex">
18
18
  <details class="main-navigation-details" name="navigation-group" ref="navigationDetails">
19
- <summary @mouseover="handleSummaryHover($event)" @focusin="handleSummaryHover($event)"
19
+ <summary @mouseenter="handleSummaryHover($event)" @focusin="handleSummaryHover($event)"
20
20
  class="main-navigation-details-summary has-toggle-icon">
21
21
  <Icon name="mdi:chevron-down" class="icon" />
22
22
  {{ link.childLinksTitle }}
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "srcdev-nuxt-components",
3
3
  "type": "module",
4
- "version": "2.5.11",
4
+ "version": "2.5.12",
5
5
  "main": "nuxt.config.ts",
6
6
  "scripts": {
7
7
  "clean": "rm -rf .nuxt && rm -rf .output && rm -rf .playground/.nuxt && rm -rf .playground/.output",