@nativescript-community/ui-pulltorefresh 2.5.1 → 2.5.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.
package/CHANGELOG.md
CHANGED
@@ -3,6 +3,17 @@
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
5
5
|
|
6
|
+
## [2.5.2](https://github.com/nativescript-community/ui-pulltorefresh/compare/v2.5.1...v2.5.2) (2023-01-24)
|
7
|
+
|
8
|
+
|
9
|
+
### Bug Fixes
|
10
|
+
|
11
|
+
* **android:** native-api-usage fix ([bd540f7](https://github.com/nativescript-community/ui-pulltorefresh/commit/bd540f7e4fe87008fd90b3764c2ad9aa54cbf46a))
|
12
|
+
|
13
|
+
|
14
|
+
|
15
|
+
|
16
|
+
|
6
17
|
## [2.5.1](https://github.com/nativescript-community/ui-pulltorefresh/compare/v2.5.0...v2.5.1) (2022-05-09)
|
7
18
|
|
8
19
|
**Note:** Version bump only for package @nativescript-community/ui-pulltorefresh
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@nativescript-community/ui-pulltorefresh",
|
3
|
-
"version": "2.5.
|
3
|
+
"version": "2.5.2",
|
4
4
|
"description": "A NativeScript plugin to provide the Pull to Refresh control on any view.",
|
5
5
|
"main": "pulltorefresh",
|
6
6
|
"typings": "index.d.ts",
|
@@ -42,5 +42,5 @@
|
|
42
42
|
"readmeFilename": "README.md",
|
43
43
|
"bugs": "https://github.com/nativescript-community/ui-pulltorefresh/issues",
|
44
44
|
"homepage": "https://github.com/nativescript-community/ui-pulltorefresh",
|
45
|
-
"gitHead": "
|
45
|
+
"gitHead": "01db906ed4d4bc1476e0df4e0f673f7f2177bd38"
|
46
46
|
}
|
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"uses": [
|
3
|
-
"com.nativescript.swiperefreshlayout:CarouselFriendlySwipeRefreshLayout
|
4
|
-
"androidx.swiperefreshlayout.widget:SwipeRefreshLayout
|
5
|
-
"androidx.swiperefreshlayout.widget.
|
3
|
+
"com.nativescript.swiperefreshlayout:CarouselFriendlySwipeRefreshLayout",
|
4
|
+
"androidx.swiperefreshlayout.widget:SwipeRefreshLayout",
|
5
|
+
"androidx.swiperefreshlayout.widget:SwipeRefreshLayout.OnRefreshListener"
|
6
6
|
]
|
7
7
|
}
|
package/index.d.ts
DELETED
@@ -1,31 +0,0 @@
|
|
1
|
-
import { ContentView } from '@nativescript/core';
|
2
|
-
|
3
|
-
/**
|
4
|
-
* Contains the PullToRefresh class, which represents a Layout that contains the UI pattern for pull-to-refresh
|
5
|
-
*/
|
6
|
-
export class PullToRefresh extends ContentView {
|
7
|
-
/**
|
8
|
-
* String value used when hooking to the onRefresh event.
|
9
|
-
*/
|
10
|
-
public static refreshEvent: string;
|
11
|
-
|
12
|
-
/**
|
13
|
-
* Gets the native [android widget](http://developer.android.com/reference/android/support/v4/widget/SwipeRefreshLayout.html) that represents the user interface for this component. Valid only when running on Android OS.
|
14
|
-
*/
|
15
|
-
android: any /* android.support.v4.widget.SwipeRefreshLayout */;
|
16
|
-
|
17
|
-
/**
|
18
|
-
* Because of iOS specific this returns the basic UIView. In order to access UIRefreshControl use the refreshControl property!
|
19
|
-
*/
|
20
|
-
ios: any;
|
21
|
-
|
22
|
-
/**
|
23
|
-
* Returns the native iOS UIRefreshControl
|
24
|
-
*/
|
25
|
-
refreshControl?: any; /// UIRefreshControl
|
26
|
-
|
27
|
-
/*
|
28
|
-
* Gets or sets if the view is refreshing
|
29
|
-
*/
|
30
|
-
refreshing: boolean;
|
31
|
-
}
|
Binary file
|