@tivio/sdk-react 3.2.1 → 3.2.2

Sign up to get free protection for your applications and to get access to all the features.
package/README.md CHANGED
@@ -2,6 +2,11 @@
2
2
 
3
3
  ## Changelog
4
4
 
5
+ * v3.2.2
6
+ * minor: useRowsInScreen, useItemsInRow, useTaggedVideos - hasNextPage and loading added to pagination
7
+ * minor: useRowsInScreen, useItemsInRow, useTaggedVideos - implementation moved to remote bundle
8
+ * patch: Fixed Tivio startup on Tizen 6
9
+ * minor: Added `forceCloudFnResolver` option
5
10
  * v3.2.1
6
11
  * patch: fix of @tivio/common version
7
12
  * v3.2.0
package/README.md.bak CHANGED
@@ -2,6 +2,11 @@
2
2
 
3
3
  ## Changelog
4
4
 
5
+ * v3.2.2
6
+ * minor: useRowsInScreen, useItemsInRow, useTaggedVideos - hasNextPage and loading added to pagination
7
+ * minor: useRowsInScreen, useItemsInRow, useTaggedVideos - implementation moved to remote bundle
8
+ * patch: Fixed Tivio startup on Tizen 6
9
+ * minor: Added `forceCloudFnResolver` option
5
10
  * v3.2.1
6
11
  * patch: fix of @tivio/common version
7
12
  * v3.2.0
@@ -0,0 +1,7 @@
1
+ export declare const getTizenApi: any;
2
+ export declare const getTizenVersion: () => {
3
+ version: string;
4
+ major: number;
5
+ minor: number;
6
+ } | null;
7
+ export declare const isTizenVersionGreaterThan: (minVersion: number) => boolean;