sprintify-ui 0.0.65 → 0.0.66

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.
@@ -10768,13 +10768,16 @@ const np = { class: "relative flex space-x-3" }, rp = { class: "text-sm leading-
10768
10768
  U(ln, {
10769
10769
  item: c,
10770
10770
  dark: e.dark,
10771
- "item-class": "flex w-full hover:text-slate-600"
10771
+ "item-class": [
10772
+ "flex w-full",
10773
+ e.dark ? "text-slate-300 hover:text-white" : "text-slate-900 hover:text-slate-600"
10774
+ ]
10772
10775
  }, {
10773
10776
  default: H(() => [
10774
10777
  ze(W(c.label), 1)
10775
10778
  ]),
10776
10779
  _: 2
10777
- }, 1032, ["item", "dark"])
10780
+ }, 1032, ["item", "dark", "item-class"])
10778
10781
  ]))), 128))
10779
10782
  ])) : Q("", !0)
10780
10783
  ]));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sprintify-ui",
3
- "version": "0.0.65",
3
+ "version": "0.0.66",
4
4
  "scripts": {
5
5
  "build": "rimraf dist && vue-tsc && vite build",
6
6
  "build-fast": "rimraf dist && vite build",
@@ -25,7 +25,12 @@
25
25
  <BaseActionItem
26
26
  :item="subItem"
27
27
  :dark="dark"
28
- item-class="flex w-full hover:text-slate-600"
28
+ :item-class="[
29
+ 'flex w-full',
30
+ dark
31
+ ? 'text-slate-300 hover:text-white'
32
+ : 'text-slate-900 hover:text-slate-600',
33
+ ]"
29
34
  >
30
35
  {{ subItem.label }}
31
36
  </BaseActionItem>