From 49762c888cc89ef91ea4919dee7dd693cc3b5ac5 Mon Sep 17 00:00:00 2001 From: zakafk <140996295+zakafk@users.noreply.github.com> Date: Sat, 8 Jun 2024 05:42:59 +0400 Subject: [PATCH 1/3] Update index.tsx Fix jumping animation effect. --- src/index.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/index.tsx b/src/index.tsx index 68586a5e..2d168e69 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -225,6 +225,7 @@ const ModalizeBase = ( alwaysOpenValue: number | undefined, dest: TOpen = 'default', ): void => { + dragY.setValue(0); const { timing, spring } = openAnimationConfig; (backButtonListenerRef as any).current = BackHandler.addEventListener( From d5297df84e2e1017eb03951427e81ffa5e2cfbd7 Mon Sep 17 00:00:00 2001 From: zakafk <140996295+zakafk@users.noreply.github.com> Date: Sat, 8 Jun 2024 05:52:10 +0400 Subject: [PATCH 2/3] Update package.json --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 2d7a11c6..fd3927cf 100644 --- a/package.json +++ b/package.json @@ -5,7 +5,7 @@ "main": "lib/index.js", "types": "./lib/index.d.ts", "scripts": { - "build": "rm -rf ./lib/* && yarn lint && tsc", + "build": "rm -rf ./lib/* && tsc", "prepare": "yarn build", "lint": "eslint 'src/**/*.ts?(x)' && prettier --list-different \"**/*.{json,md,js,jsx,ts,tsx}\"", "prettier": "prettier --write \"{docs,examples,src}/**/*.{json,md,js,jsx,ts,tsx}\"", From 543c3ab2e207af19c5a0a5d8d883247d06384f0b Mon Sep 17 00:00:00 2001 From: zakafk <140996295+zakafk@users.noreply.github.com> Date: Thu, 9 Jan 2025 02:22:10 +0400 Subject: [PATCH 3/3] Update package.json fix: rimraf --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index fd3927cf..4cc8a1ef 100644 --- a/package.json +++ b/package.json @@ -5,7 +5,7 @@ "main": "lib/index.js", "types": "./lib/index.d.ts", "scripts": { - "build": "rm -rf ./lib/* && tsc", + "build": "rimraf ./lib/* && tsc", "prepare": "yarn build", "lint": "eslint 'src/**/*.ts?(x)' && prettier --list-different \"**/*.{json,md,js,jsx,ts,tsx}\"", "prettier": "prettier --write \"{docs,examples,src}/**/*.{json,md,js,jsx,ts,tsx}\"",