vscroll 1.8.2 → 1.8.3

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.
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * vscroll (https://github.com/dhilt/vscroll) FESM5
3
- * Version: 1.8.2 (2026-02-08T22:44:31.613Z)
3
+ * Version: 1.8.3 (2026-02-15T20:53:37.540Z)
4
4
  * Author: Denis Hilt
5
5
  * License: MIT
6
6
  */
@@ -377,7 +377,7 @@ var reactiveConfigStorage = new Map();
377
377
 
378
378
  var core = {
379
379
  name: 'vscroll',
380
- version: '1.8.2'
380
+ version: '1.8.3'
381
381
  };
382
382
 
383
383
  var getBox = function (id) {
@@ -1690,6 +1690,7 @@ var Reload = /** @class */ (function (_super) {
1690
1690
  var Item = /** @class */ (function () {
1691
1691
  function Item($index, data, routines) {
1692
1692
  this.container = {
1693
+ uid: Item.nextUid++,
1693
1694
  $index: $index,
1694
1695
  data: data
1695
1696
  };
@@ -1699,6 +1700,16 @@ var Item = /** @class */ (function () {
1699
1700
  this.toRemove = false;
1700
1701
  this.toInsert = false;
1701
1702
  }
1703
+ Object.defineProperty(Item.prototype, "uid", {
1704
+ get: function () {
1705
+ return this.container.uid;
1706
+ },
1707
+ set: function (value) {
1708
+ this.container.uid = value;
1709
+ },
1710
+ enumerable: false,
1711
+ configurable: true
1712
+ });
1702
1713
  Object.defineProperty(Item.prototype, "$index", {
1703
1714
  get: function () {
1704
1715
  return this.container.$index;
@@ -1760,6 +1771,7 @@ var Item = /** @class */ (function () {
1760
1771
  Item.prototype.get = function () {
1761
1772
  return this.container;
1762
1773
  };
1774
+ Item.nextUid = 1;
1763
1775
  return Item;
1764
1776
  }());
1765
1777