sprintify-ui 0.0.75 → 0.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.
@@ -116,6 +116,7 @@ declare const _default: {
116
116
  }) => any;
117
117
  item: (_: {
118
118
  item: MenuItemInterface;
119
+ active: any;
119
120
  }) => any;
120
121
  };
121
122
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sprintify-ui",
3
- "version": "0.0.75",
3
+ "version": "0.0.76",
4
4
  "scripts": {
5
5
  "build": "rimraf dist && vue-tsc && vite build",
6
6
  "build-fast": "rimraf dist && vite build",
@@ -76,7 +76,7 @@
76
76
  class="w-full"
77
77
  @click="item.action"
78
78
  >
79
- <slot name="item" :item="item">
79
+ <slot name="item" :item="item" :active="active">
80
80
  <BaseMenuItem
81
81
  :label="item.label"
82
82
  :count="item.count"