@nativescript-community/ui-pager 14.1.31 → 14.1.32
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.
- package/index.android.js +2 -2
- package/package.json +2 -2
package/index.android.js
CHANGED
@@ -361,9 +361,9 @@ export class Pager extends PagerBase {
|
|
361
361
|
nativeView.setCurrentItem(index, animate);
|
362
362
|
if (!animate) {
|
363
363
|
// without animate we wont go through the delegate
|
364
|
-
selectedIndexProperty.nativeValueChange(this,
|
364
|
+
selectedIndexProperty.nativeValueChange(this, value);
|
365
365
|
if (this.indicator) {
|
366
|
-
this.indicator.setSelection(
|
366
|
+
this.indicator.setSelection(value, false);
|
367
367
|
}
|
368
368
|
}
|
369
369
|
if (requestTransform) {
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@nativescript-community/ui-pager",
|
3
|
-
"version": "14.1.
|
3
|
+
"version": "14.1.32",
|
4
4
|
"description": "A NativeScript Pager / Carousel component that allows the user to swipe left and right through pages of data. ",
|
5
5
|
"main": "index",
|
6
6
|
"typings": "index.d.ts",
|
@@ -67,5 +67,5 @@
|
|
67
67
|
},
|
68
68
|
"license": "Apache-2.0",
|
69
69
|
"readmeFilename": "README.md",
|
70
|
-
"gitHead": "
|
70
|
+
"gitHead": "0c4a3b98f445147c7c596656fa3a60d0f5750f2c"
|
71
71
|
}
|