@lightningjs/ui
Advanced tools
Comparing version 1.3.13 to 1.3.14
# Changelog | ||
*5 juli 2023* | ||
*17 jul 2023* | ||
## v1.3.14 | ||
- fixes scrolltransition resetting when not running. | ||
*5 jul 2023* | ||
## v1.3.13 | ||
- fixes the navigation getting stuck when the onRequestItems callback takes a while to resolve | ||
*3 juli 2023* | ||
*3 jul 2023* | ||
@@ -13,3 +17,3 @@ ## v1.3.12 | ||
*june 2023* | ||
*jun 2023* | ||
@@ -16,0 +20,0 @@ ## v1.3.11 |
{ | ||
"name": "@lightningjs/ui", | ||
"version": "1.3.13", | ||
"version": "1.3.14", | ||
"description": "Standard UI components for Lightning", | ||
@@ -5,0 +5,0 @@ "scripts": { |
@@ -179,3 +179,3 @@ /* | ||
this._index = 0; | ||
if (this._scrollTransition) { | ||
if (this._scrollTransition && this._scrollTransition.isRunning()) { | ||
this._scrollTransition.reset(0, 1); | ||
@@ -248,5 +248,5 @@ } | ||
reload(item) { | ||
reload(item, options = {}) { | ||
this.clear(); | ||
this.add(item) | ||
this.add(item, options) | ||
} | ||
@@ -253,0 +253,0 @@ |
220859