@ceriousdevtech/vue-cerious-scroll 1.1.0 → 1.1.2

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 +14 -0
  2. package/package.json +2 -2
package/CHANGELOG.md CHANGED
@@ -5,6 +5,20 @@ 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.2] - 2026-08-23
9
+
10
+ ### Fixed
11
+ - Raised `@ceriousdevtech/cerious-scroll` to `^1.1.2`, which repairs importing this package in plain Node. Core 1.1.1 shipped an extensionless re-export in `dist/types/index.js`; Node's ESM resolver does not add file extensions, so any import of this wrapper failed with `ERR_MODULE_NOT_FOUND`. The wrapper's own bundle was never at fault — it inherited the failure through the dependency. The previous `^1.1.1` range still permitted the broken version, so the floor is raised rather than relying on resolution picking the newer release.
12
+
13
+ ## [1.1.1] - 2026-08-23
14
+
15
+ ### Added
16
+ - 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.
17
+ - 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.
18
+
19
+ ### Changed
20
+ - Updated `@ceriousdevtech/cerious-scroll` to `^1.1.1`.
21
+
8
22
  ## [1.1.0] - 2026-08-22
9
23
 
10
24
  ### 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.2",
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.2"
62
62
  },
63
63
  "peerDependencies": {
64
64
  "vue": "^3.3.0"