Skip to content

Commit

Permalink
Merge pull request #4852 from GeekyAnts/release/3.4.0-rc.1
Browse files Browse the repository at this point in the history
Release/3.4.0 rc.1
  • Loading branch information
surajahmed authored Mar 31, 2022
2 parents c0cbd28 + efc93b1 commit 2c0275e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
8 changes: 6 additions & 2 deletions src/components/primitives/Input/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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<IInputProps>,
Omit<TextInputProps, 'textAlign'>,
StyledProps {
Expand Down Expand Up @@ -114,3 +116,5 @@ export interface IInputGroupProps extends IBoxProps<IInputGroupProps> {
*/
size?: ResponsiveValue<ISizes | (string & {}) | number>;
}

export type IInputProps = InterfaceInputProps | CustomProps<'Input'>;

1 comment on commit 2c0275e

@vercel
Copy link

@vercel vercel bot commented on 2c0275e Mar 31, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.