@ceriousdevtech/vue-cerious-scroll 1.1.0 → 1.1.1

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +9 -0
  2. package/package.json +2 -2
package/CHANGELOG.md CHANGED
@@ -5,6 +5,15 @@ All notable changes to vue-cerious-scroll will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [1.1.1] - 2026-08-23
9
+
10
+ ### Added
11
+ - Masonry real-content demo: network images, composed Vue card components, and a per-card carousel over 50,000 items. Demonstrates the three constraints recycled cards impose — media space reserved from intrinsic dimensions, card height enforced rather than estimated, and per-card UI state held outside component state and keyed by card index so it survives a card leaving the window.
12
+ - Demo image handling shows the practices that matter with virtualization: no `loading="lazy"` (the window is already the lazy loader), an instant placeholder colour behind each reserved box, a bounded low-priority prefetch window, and bucketed request widths so a resizing CDN can cache them.
13
+
14
+ ### Changed
15
+ - Updated `@ceriousdevtech/cerious-scroll` to `^1.1.1`.
16
+
8
17
  ## [1.1.0] - 2026-08-22
9
18
 
10
19
  ### Added
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ceriousdevtech/vue-cerious-scroll",
3
- "version": "1.1.0",
3
+ "version": "1.1.1",
4
4
  "description": "Vue 3 bindings for CeriousScroll — virtualized lists, native tables, and Masonry grids",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",
@@ -58,7 +58,7 @@
58
58
  "demo:build": "vite build --config demo/vite.config.ts"
59
59
  },
60
60
  "dependencies": {
61
- "@ceriousdevtech/cerious-scroll": "^1.1.0"
61
+ "@ceriousdevtech/cerious-scroll": "^1.1.1"
62
62
  },
63
63
  "peerDependencies": {
64
64
  "vue": "^3.3.0"