@wyxos/vibe 1.6.13 → 1.6.14
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.
- package/lib/index.js +808 -713
- package/lib/vibe.css +1 -1
- package/package.json +1 -2
- package/src/Masonry.vue +1233 -1195
- package/src/components/MasonryItem.vue +431 -346
- package/src/components/examples/HeaderFooterExample.vue +78 -0
- package/src/useMasonryScroll.ts +60 -60
- package/src/views/Examples.vue +28 -0
- package/src/views/Home.vue +236 -208
package/lib/vibe.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
.masonry-container[data-v-
|
|
1
|
+
.masonry-container[data-v-0764371c]{overflow-anchor:none}.masonry-item[data-v-0764371c]{will-change:transform,opacity;contain:layout paint;transition:transform var(--masonry-duration, .45s) var(--masonry-ease, cubic-bezier(.22, .61, .36, 1)),opacity var(--masonry-leave-duration, .16s) ease-out var(--masonry-opacity-delay, 0ms);backface-visibility:hidden}.masonry-move[data-v-0764371c]{transition:transform var(--masonry-duration, .45s) var(--masonry-ease, cubic-bezier(.22, .61, .36, 1))}@media (prefers-reduced-motion: reduce){.masonry-container:not(.force-motion) .masonry-item[data-v-0764371c],.masonry-container:not(.force-motion) .masonry-move[data-v-0764371c]{transition-duration:1ms!important}}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wyxos/vibe",
|
|
3
|
-
"version": "1.6.
|
|
3
|
+
"version": "1.6.14",
|
|
4
4
|
"description": "A high-performance, responsive masonry layout engine for Vue 3 with built-in infinite scrolling and virtualization.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"vue",
|
|
@@ -86,7 +86,6 @@
|
|
|
86
86
|
"typescript": "^5.9.2",
|
|
87
87
|
"uuid": "^11.1.0",
|
|
88
88
|
"vite": "^6.2.0",
|
|
89
|
-
"vite-plugin-vue-mcp": "^0.3.2",
|
|
90
89
|
"vitest": "^3.0.9",
|
|
91
90
|
"vue-tsc": "^3.1.0"
|
|
92
91
|
}
|