From 624ceba2e128bb13a3afe4c35883f603f5488d0e Mon Sep 17 00:00:00 2001 From: filifunk <68165894+filifunk@users.noreply.github.com> Date: Fri, 31 May 2024 18:30:50 -0400 Subject: [PATCH] refactor(react): export InputInputEventDetail type (#29512) Issue number: resolves #29518 --------- ## What is the current behavior? IonInput in React apps can't import the correct type for typescript. ## What is the new behavior? Since it is in the file exported, people using IonInput can import the correct type. - - - ## Does this introduce a breaking change? - [ ] Yes - [x ] No ## Other information Liam DeBeasi told me it was a bug a couple days ago and pointed out to where it needed to be added. --- packages/react/src/components/index.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/react/src/components/index.ts b/packages/react/src/components/index.ts index 89313f23c8..9b1ab3d26c 100644 --- a/packages/react/src/components/index.ts +++ b/packages/react/src/components/index.ts @@ -42,6 +42,7 @@ export { InfiniteScrollCustomEvent, InputCustomEvent, InputChangeEventDetail, + InputInputEventDetail, ItemReorderEventDetail, ItemReorderCustomEvent, ItemSlidingCustomEvent,