From a634b7550dc06366373a412338830e88d4543e99 Mon Sep 17 00:00:00 2001 From: Ashish Pal Date: Tue, 14 May 2024 15:37:30 +0530 Subject: [PATCH 1/5] Dev Done --- package.json | 4 ++-- src/core/RecyclerListView.tsx | 5 +++++ 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index e11df4d6..1b902065 100644 --- a/package.json +++ b/package.json @@ -47,9 +47,9 @@ "devDependencies": { "@types/lodash.debounce": "4.0.3", "@types/prop-types": "15.5.2", - "@types/react-native": "0.49.5", "@types/react": "16.4.7", - "@types/resize-observer-browser": "0.1.7", + "@types/react-native": "0.49.5", + "@types/resize-observer-browser": "^0.1.11", "file-directives": "1.4.6", "tslint": "5.11.0", "typescript": "3.3.1" diff --git a/src/core/RecyclerListView.tsx b/src/core/RecyclerListView.tsx index e9c23802..cf1b9b28 100644 --- a/src/core/RecyclerListView.tsx +++ b/src/core/RecyclerListView.tsx @@ -334,6 +334,11 @@ export default class RecyclerListView

Date: Tue, 14 May 2024 15:55:31 +0530 Subject: [PATCH 2/5] clean --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 1b902065..cd4405e8 100644 --- a/package.json +++ b/package.json @@ -49,7 +49,7 @@ "@types/prop-types": "15.5.2", "@types/react": "16.4.7", "@types/react-native": "0.49.5", - "@types/resize-observer-browser": "^0.1.11", + "@types/resize-observer-browser": "0.1.7", "file-directives": "1.4.6", "tslint": "5.11.0", "typescript": "3.3.1" From 6ee94ff24dd5cae8c38fade1874864f118c9972b Mon Sep 17 00:00:00 2001 From: Vithik Shah Date: Thu, 20 Jun 2024 19:05:31 +0530 Subject: [PATCH 3/5] scrollview --- src/core/RecyclerListView.tsx | 11 ++++++++++- src/core/scrollcomponent/BaseScrollComponent.tsx | 6 ++++++ .../reactnative/scrollcomponent/ScrollComponent.tsx | 4 ++++ 3 files changed, 20 insertions(+), 1 deletion(-) diff --git a/src/core/RecyclerListView.tsx b/src/core/RecyclerListView.tsx index e9c23802..eb21bb9f 100644 --- a/src/core/RecyclerListView.tsx +++ b/src/core/RecyclerListView.tsx @@ -41,7 +41,7 @@ import { ComponentCompat } from "../utils/ComponentCompat"; import ScrollComponent from "../platform/reactnative/scrollcomponent/ScrollComponent"; import ViewRenderer from "../platform/reactnative/viewrenderer/ViewRenderer"; import { DefaultJSItemAnimator as DefaultItemAnimator } from "../platform/reactnative/itemanimators/defaultjsanimator/DefaultJSItemAnimator"; -import { Platform } from "react-native"; +import { Platform, ScrollView } from "react-native"; const IS_WEB = !Platform || Platform.OS === "web"; //#endif @@ -54,6 +54,7 @@ const IS_WEB = !Platform || Platform.OS === "web"; //import ViewRenderer from "../platform/web/viewrenderer/ViewRenderer"; //import { DefaultWebItemAnimator as DefaultItemAnimator } from "../platform/web/itemanimators/DefaultWebItemAnimator"; //const IS_WEB = true; +//type ScrollView = unknown; //#endif /*** @@ -398,6 +399,14 @@ export default class RecyclerListView

(this.props.externalScrollView); //TSI const renderContentContainer = this.props.renderContentContainer ? this.props.renderContentContainer : this._defaultContainer; From 1221e1ecf23de07d5067da8268ae5018c76f1253 Mon Sep 17 00:00:00 2001 From: Vithik Shah Date: Thu, 20 Jun 2024 19:11:06 +0530 Subject: [PATCH 4/5] recycler --- src/core/RecyclerListView.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/src/core/RecyclerListView.tsx b/src/core/RecyclerListView.tsx index eb21bb9f..94eff6bf 100644 --- a/src/core/RecyclerListView.tsx +++ b/src/core/RecyclerListView.tsx @@ -406,7 +406,6 @@ export default class RecyclerListView

Date: Thu, 20 Jun 2024 22:53:03 +0530 Subject: [PATCH 5/5] scroll --- src/core/scrollcomponent/BaseScrollComponent.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core/scrollcomponent/BaseScrollComponent.tsx b/src/core/scrollcomponent/BaseScrollComponent.tsx index 8999d862..5bcd4762 100644 --- a/src/core/scrollcomponent/BaseScrollComponent.tsx +++ b/src/core/scrollcomponent/BaseScrollComponent.tsx @@ -26,8 +26,8 @@ export default abstract class BaseScrollComponent extends React.Component