@icvdeveloper/common-module 2.2.1 → 2.2.3

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/CHANGELOG.md CHANGED
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## Unreleased
9
9
 
10
+ ## 2.2.3 - 2024-10-05
11
+
12
+ ## 2.2.2 - 2024-10-04
13
+
10
14
  ## 2.2.1 - 2024-10-04
11
15
 
12
16
  ## 2.2.0 - 2024-10-03
package/dist/module.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "v3plus-common-module",
3
3
  "configKey": "v3plusCommonModule",
4
- "version": "2.2.1"
4
+ "version": "2.2.3"
5
5
  }
@@ -204,17 +204,26 @@ const emitStreamTest = (): void => {
204
204
  <nuxt-link
205
205
  v-if="item.slug == 'stream-test'"
206
206
  :class="['cursor-pointer', classBinding(classObject, 'navigationItemLink', 'nav-link')]"
207
- @click.enter="emitSearchModal"
207
+ @click.enter="emitStreamTest"
208
208
  >
209
209
  {{ item.label }}
210
210
  </nuxt-link>
211
211
  <nuxt-link
212
- v-if="isSearchEnabled && item.slug == 'search'"
212
+ v-else-if="item.slug == 'search' && isSearchEnabled"
213
213
  :class="['cursor-pointer', classBinding(classObject, 'navigationItemLink', 'nav-link')]"
214
214
  @click.enter="emitSearchModal"
215
215
  >
216
216
  {{ item.label }}
217
217
  </nuxt-link>
218
+ <nuxt-link
219
+ v-else
220
+ :to="formatLink(item)"
221
+ exact
222
+ :class="classBinding(classObject, 'navigationItemLink', 'nav-link')"
223
+ @click.enter="toggleMenu"
224
+ >
225
+ {{ item.label }}
226
+ </nuxt-link>
218
227
  </template>
219
228
  <nuxt-link
220
229
  v-else
@@ -1,4 +1,6 @@
1
1
  <script setup lang="ts">
2
+ import { computed, toRefs } from 'vue';
3
+
2
4
  interface Props {
3
5
  success?: boolean;
4
6
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@icvdeveloper/common-module",
3
- "version": "2.2.1",
3
+ "version": "2.2.3",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "exports": {