sprintify-ui 0.0.25 → 0.0.26

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.
@@ -10991,12 +10991,12 @@ const Xf = Ko.exports, em = ["innerHTML"], tm = {
10991
10991
  return S(), oe(xt, {
10992
10992
  class: "inline-block",
10993
10993
  position: x(l) ? "custom" : "bottom-left",
10994
- "menu-class": ["sm:w-[320px] w-[280px]", x(l) ? "right-4" : ""],
10995
- onClick: a
10994
+ "menu-class": ["sm:w-[320px] w-[280px]", x(l) ? "right-4" : ""]
10996
10995
  }, {
10997
10996
  button: K(({ open: p }) => [
10998
10997
  v("div", {
10999
- class: U(["relative flex items-center rounded-full p-1.5", [""]])
10998
+ class: U(["relative flex items-center rounded-full p-1.5", [""]]),
10999
+ onClick: a
11000
11000
  }, [
11001
11001
  z(x(Me), {
11002
11002
  icon: "heroicons:bell",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sprintify-ui",
3
- "version": "0.0.25",
3
+ "version": "0.0.26",
4
4
  "scripts": {
5
5
  "build": "rimraf dist && vue-tsc && vite build",
6
6
  "build-fast": "rimraf dist && vite build",
@@ -3,12 +3,12 @@
3
3
  class="inline-block"
4
4
  :position="mobile ? 'custom' : 'bottom-left'"
5
5
  :menu-class="['sm:w-[320px] w-[280px]', mobile ? 'right-4' : '']"
6
- @click="onOpen"
7
6
  >
8
7
  <template #button="{ open }">
9
8
  <div
10
9
  class="relative flex items-center rounded-full p-1.5"
11
10
  :class="[open ? '' : '']"
11
+ @click="onOpen"
12
12
  >
13
13
  <BaseIcon
14
14
  icon="heroicons:bell"