itube-specs 0.0.547 → 0.0.548

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.
@@ -31,7 +31,7 @@
31
31
  />
32
32
  {{ name }}
33
33
  <SIcon
34
- v-if="(isActive && !mini && item.resetPath) || withClose"
34
+ v-if="((isActive && !alphabet) && !mini && item.resetPath) || withClose"
35
35
  class="s-chips__close"
36
36
  name="close"
37
37
  size="16"
@@ -93,7 +93,7 @@ function checkPosition() {
93
93
 
94
94
  function openDropdown() {
95
95
  open.value = !open.value
96
- if (open.value) checkPosition()
96
+ if (open.value) nextTick(() => checkPosition())
97
97
 
98
98
  if (isMobileWidth(breakpoints).value) {
99
99
  nextTick(() => {
@@ -123,8 +123,8 @@ function mouseHandler(event: boolean) {
123
123
  if (hoverTimeout) clearTimeout(hoverTimeout)
124
124
 
125
125
  if (event) {
126
- checkPosition()
127
126
  open.value = true
127
+ nextTick(() => checkPosition())
128
128
  } else {
129
129
  hoverTimeout = setTimeout(() => {
130
130
  open.value = false
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "itube-specs",
3
3
  "type": "module",
4
- "version": "0.0.547",
4
+ "version": "0.0.548",
5
5
  "main": "./nuxt.config.ts",
6
6
  "types": "./types/index.d.ts",
7
7
  "scripts": {