ketekny-ui-kit 1.0.75 → 1.0.76

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.75",
4
+ "version": "1.0.76",
5
5
  "description": "A Vue 3 UI component library with Tailwind CSS styling",
6
6
  "main": "index.js",
7
7
  "files": [
@@ -77,10 +77,9 @@
77
77
  />
78
78
  </div>
79
79
  <div v-else-if="mainMenu.length" class="mx-2 mt-3 space-y-3">
80
- <component
80
+ <RouterLink
81
81
  v-for="item in normalizedMainMenu"
82
82
  :key="item.key"
83
- :is="menuItemTag(item)"
84
83
  v-bind="item.bindings"
85
84
  class="flex w-full items-start gap-3 rounded-2xl border px-4 py-4 text-left transition-all duration-200"
86
85
  :class="item.classes"
@@ -103,7 +102,7 @@
103
102
  {{ item.description }}
104
103
  </span>
105
104
  </span>
106
- </component>
105
+ </RouterLink>
107
106
  </div>
108
107
  </div>
109
108