@wyxos/vibe 1.6.27 → 1.6.29

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.
@@ -107,7 +107,7 @@ export function useMasonryVirtualization(options: UseMasonryVirtualizationOption
107
107
  // Gate transitions for virtualization-only DOM changes
108
108
  virtualizing.value = true
109
109
  await nextTick()
110
- await new Promise<void>(r => requestAnimationFrame(() => r()))
110
+ await nextTick()
111
111
  virtualizing.value = false
112
112
 
113
113
  const heights = calculateColumnHeights(masonry.value as any, columns.value)
@@ -293,8 +293,8 @@ watch(() => items.value, () => {
293
293
  :class="{ 'bg-slate-200/50': deviceMode !== 'auto' }">
294
294
  <div :style="containerStyle" class="transition-all duration-500 ease-in-out bg-slate-50 shadow-sm relative">
295
295
  <masonry v-model:items="items" :get-page="getPage" :load-at-page="1" :layout="layout"
296
- :layout-mode="deviceMode === 'phone' || deviceMode === 'tablet' ? 'swipe' : 'auto'" ref="masonry"
297
- init="auto" class="demo-masonry">
296
+ :layout-mode="deviceMode === 'phone' || deviceMode === 'tablet' ? 'swipe' : 'auto'" ref="masonry" init="auto"
297
+ class="demo-masonry">
298
298
  <template #item-footer="{ item, remove }">
299
299
  <div class="h-full flex items-center justify-between px-3">
300
300
  <button v-if="remove"