@easyv/react-components 0.3.7 → 0.3.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/Input/index.d.ts +3 -2
- package/package.json +1 -1
package/dist/Input/index.d.ts
CHANGED
|
@@ -1,15 +1,16 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { Input } from '@arco-design/web-react';
|
|
3
|
-
import type { InputProps, InputSearchProps, RefInputType } from './interface';
|
|
3
|
+
import type { InputProps, InputSearchProps, RefInputType, RefTextAreaType, TextAreaProps } from './interface';
|
|
4
4
|
import './index.less';
|
|
5
5
|
declare type XInputType = React.ForwardRefExoticComponent<InputProps & React.RefAttributes<RefInputType>> & {
|
|
6
6
|
Search: typeof InputSearch;
|
|
7
|
-
TextArea: typeof
|
|
7
|
+
TextArea: typeof InputTextArea;
|
|
8
8
|
Password: typeof Input.Password;
|
|
9
9
|
Group: typeof Input.Group;
|
|
10
10
|
};
|
|
11
11
|
declare const XInput: XInputType;
|
|
12
12
|
declare const InputSearch: React.ForwardRefExoticComponent<InputSearchProps & React.RefAttributes<RefInputType>>;
|
|
13
|
+
declare const InputTextArea: React.ForwardRefExoticComponent<TextAreaProps & React.RefAttributes<RefTextAreaType>>;
|
|
13
14
|
export default XInput;
|
|
14
15
|
export { InputProps, InputSearchProps, RefInputType };
|
|
15
16
|
export type * from './interface';
|