sprintify-ui 0.10.31 → 0.10.33

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.
@@ -10429,7 +10429,7 @@ const Dc = /* @__PURE__ */ Uo(Gv, [["render", Zv]]), Qv = { class: "relative w-f
10429
10429
  () => {
10430
10430
  r("scrollBottom");
10431
10431
  },
10432
- { distance: 100 }
10432
+ { distance: 100, interval: 1e3 }
10433
10433
  );
10434
10434
  function v() {
10435
10435
  if (!a.value)
@@ -10479,7 +10479,10 @@ const Dc = /* @__PURE__ */ Uo(Gv, [["render", Zv]]), Qv = { class: "relative w-f
10479
10479
  ref_key: "drawerRef",
10480
10480
  ref: a,
10481
10481
  "data-scroll-lock-scrollable": "",
10482
- class: "max-h-[214px] w-full overflow-y-auto"
10482
+ style: {
10483
+ height: "214px"
10484
+ },
10485
+ class: "w-full overflow-y-auto"
10483
10486
  }, [
10484
10487
  t.options.length == 0 ? ce(S.$slots, "empty", { key: 0 }, () => [
10485
10488
  E("div", Jv, re(c(ye)("sui.nothing_found")), 1)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sprintify-ui",
3
- "version": "0.10.31",
3
+ "version": "0.10.33",
4
4
  "type": "module",
5
5
  "scripts": {
6
6
  "build": "rimraf dist && vue-tsc && vite build",
@@ -3,7 +3,10 @@
3
3
  <div
4
4
  ref="drawerRef"
5
5
  data-scroll-lock-scrollable
6
- class="max-h-[214px] w-full overflow-y-auto"
6
+ :style="{
7
+ height: '214px',
8
+ }"
9
+ class="w-full overflow-y-auto"
7
10
  >
8
11
  <!-- Slot empty -->
9
12
  <slot
@@ -271,7 +274,7 @@ useInfiniteScroll(
271
274
  () => {
272
275
  emit('scrollBottom');
273
276
  },
274
- { distance: 100 }
277
+ { distance: 100, interval: 1000 }
275
278
  );
276
279
 
277
280
  function scrollToFocus() {