From d8e5bf2bf09f02b4baa8e8a375bb29d860d7d213 Mon Sep 17 00:00:00 2001 From: Suraj Ahmed Date: Thu, 31 Mar 2022 11:52:51 +0530 Subject: [PATCH 1/2] fix: input type fixes: --- src/components/primitives/Input/types.ts | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/components/primitives/Input/types.ts b/src/components/primitives/Input/types.ts index 21cd16b6e..4120279fb 100644 --- a/src/components/primitives/Input/types.ts +++ b/src/components/primitives/Input/types.ts @@ -4,8 +4,10 @@ import type { CombinedSizeType, PlatformProps, VariantType } from '../../types'; import type { IBoxProps } from '../Box'; import type { ResponsiveValue } from '../../../components/types'; import type { ISizes } from '../../../theme/base/sizes'; -import type { IStackProps } from '../../primitives/Stack'; -export interface IInputProps +import type { CustomProps } from '../../types'; +import type { IStackProps } from '../Stack/Stack'; + +export interface InterfaceInputProps extends PlatformProps, Omit, StyledProps { @@ -114,3 +116,5 @@ export interface IInputGroupProps extends IBoxProps { */ size?: ResponsiveValue; } + +export type IInputProps = InterfaceInputProps | CustomProps<'Input'>; From efc93b1046652752ffa707ccdf325d41dae864c3 Mon Sep 17 00:00:00 2001 From: Suraj Ahmed Date: Thu, 31 Mar 2022 11:53:19 +0530 Subject: [PATCH 2/2] v3.4.0-rc.1 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 14adfadf0..1abc2bc43 100644 --- a/package.json +++ b/package.json @@ -36,7 +36,7 @@ "prettier --write" ] }, - "version": "3.4.0-rc.0", + "version": "3.4.0-rc.1", "license": "MIT", "private": false, "main": "lib/commonjs/index",