Skip to content

Commit 2c0275e

Browse files
authored
Merge pull request #4852 from GeekyAnts/release/3.4.0-rc.1
Release/3.4.0 rc.1
2 parents c0cbd28 + efc93b1 commit 2c0275e

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
"prettier --write"
3737
]
3838
},
39-
"version": "3.4.0-rc.0",
39+
"version": "3.4.0-rc.1",
4040
"license": "MIT",
4141
"private": false,
4242
"main": "lib/commonjs/index",

src/components/primitives/Input/types.ts

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,10 @@ import type { CombinedSizeType, PlatformProps, VariantType } from '../../types';
44
import type { IBoxProps } from '../Box';
55
import type { ResponsiveValue } from '../../../components/types';
66
import type { ISizes } from '../../../theme/base/sizes';
7-
import type { IStackProps } from '../../primitives/Stack';
8-
export interface IInputProps
7+
import type { CustomProps } from '../../types';
8+
import type { IStackProps } from '../Stack/Stack';
9+
10+
export interface InterfaceInputProps
911
extends PlatformProps<IInputProps>,
1012
Omit<TextInputProps, 'textAlign'>,
1113
StyledProps {
@@ -114,3 +116,5 @@ export interface IInputGroupProps extends IBoxProps<IInputGroupProps> {
114116
*/
115117
size?: ResponsiveValue<ISizes | (string & {}) | number>;
116118
}
119+
120+
export type IInputProps = InterfaceInputProps | CustomProps<'Input'>;

0 commit comments

Comments
 (0)