From 3feb3493d9d414802dcfb9c17025fc835a310f9e Mon Sep 17 00:00:00 2001 From: Marvin Petate <46154422+petatemarvin26@users.noreply.github.com> Date: Sat, 14 Sep 2024 00:57:28 +0800 Subject: [PATCH] release/2.0.5 (#64) --- package.json | 2 +- src/components/View/types.ts | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index f0a033a..33797e2 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "vin-react", - "version": "2.0.4", + "version": "2.0.5", "description": "This library is exclusive for react that utilize the flexbox.", "main": "./lib/index.js", "types": "./lib/index.d.ts", diff --git a/src/components/View/types.ts b/src/components/View/types.ts index 21f6a8a..7d6876b 100755 --- a/src/components/View/types.ts +++ b/src/components/View/types.ts @@ -12,7 +12,8 @@ type Props = { onMouseLeave?: MouseEventHandler; onClick?: MouseEventHandler; onScroll?: UIEventHandler; -} & ConnectStyleProps; +} & React.HTMLAttributes & + ConnectStyleProps; type States = {};