types(PasswordInput): add PasswordInputProps type (#9820)

This commit is contained in:
neverland 2021-11-06 15:49:00 +08:00 committed by GitHub
parent a21de07919
commit c34754bd62
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 32 additions and 11 deletions

View File

@ -1,4 +1,4 @@
import { defineComponent } from 'vue';
import { defineComponent, ExtractPropTypes } from 'vue';
import {
addUnit,
truthProp,
@ -12,18 +12,22 @@ import {
const [name, bem] = createNamespace('password-input');
const passwordInputProps = {
info: String,
mask: truthProp,
value: makeStringProp(''),
gutter: numericProp,
length: makeNumericProp(6),
focused: Boolean,
errorInfo: String,
};
export type PasswordInputProps = ExtractPropTypes<typeof passwordInputProps>;
export default defineComponent({
name,
props: {
info: String,
mask: truthProp,
value: makeStringProp(''),
gutter: numericProp,
length: makeNumericProp(6),
focused: Boolean,
errorInfo: String,
},
props: passwordInputProps,
emits: ['focus'],

View File

@ -2,7 +2,7 @@
### Intro
The passwordinput component is usually used with [NumberKeyboard](#/en-US/number-keyboard) Component.
The PasswordInput component is usually used with [NumberKeyboard](#/en-US/number-keyboard) Component.
### Install
@ -148,6 +148,14 @@ export default {
| ----- | ----------------------------- | --------- |
| focus | Emitted when input is focused | - |
### Types
The component exports the following type definitions:
```ts
import type { PasswordInputProps } from 'vant';
```
## Theming
### CSS Variables

View File

@ -158,6 +158,14 @@ export default {
| ------ | ---------------- | -------- |
| focus | 输入框聚焦时触发 | - |
### 类型定义
组件导出以下类型定义:
```ts
import type { PasswordInputProps } from 'vant';
```
## 主题定制
### 样式变量

View File

@ -3,3 +3,4 @@ import _PasswordInput from './PasswordInput';
export const PasswordInput = withInstall(_PasswordInput);
export default PasswordInput;
export type { PasswordInputProps } from './PasswordInput';