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) FESM2015
3
- * Version: 1.8.2 (2026-02-08T22:44:34.534Z)
3
+ * Version: 1.8.3 (2026-02-15T20:53:40.583Z)
4
4
  * Author: Denis Hilt
5
5
  * License: MIT
6
6
  */
@@ -362,7 +362,7 @@ const reactiveConfigStorage = new Map();
362
362
 
363
363
  var core = {
364
364
  name: 'vscroll',
365
- version: '1.8.2'
365
+ version: '1.8.3'
366
366
  };
367
367
 
368
368
  const getBox = (id) => {
@@ -1583,6 +1583,12 @@ class Reload extends BaseAdapterProcessFactory(AdapterProcess.reload) {
1583
1583
  }
1584
1584
 
1585
1585
  class Item {
1586
+ get uid() {
1587
+ return this.container.uid;
1588
+ }
1589
+ set uid(value) {
1590
+ this.container.uid = value;
1591
+ }
1586
1592
  get $index() {
1587
1593
  return this.container.$index;
1588
1594
  }
@@ -1603,6 +1609,7 @@ class Item {
1603
1609
  }
1604
1610
  constructor($index, data, routines) {
1605
1611
  this.container = {
1612
+ uid: Item.nextUid++,
1606
1613
  $index,
1607
1614
  data
1608
1615
  };
@@ -1643,6 +1650,7 @@ class Item {
1643
1650
  return this.container;
1644
1651
  }
1645
1652
  }
1653
+ Item.nextUid = 1;
1646
1654
 
1647
1655
  class Update extends BaseAdapterProcessFactory(AdapterProcess.update) {
1648
1656
  static run(scroller, options) {