mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
types(PasswordInput): add PasswordInputProps type (#9820)
This commit is contained in:
parent
a21de07919
commit
c34754bd62
@ -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'],
|
||||
|
||||
|
@ -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
|
||||
|
@ -158,6 +158,14 @@ export default {
|
||||
| ------ | ---------------- | -------- |
|
||||
| focus | 输入框聚焦时触发 | - |
|
||||
|
||||
### 类型定义
|
||||
|
||||
组件导出以下类型定义:
|
||||
|
||||
```ts
|
||||
import type { PasswordInputProps } from 'vant';
|
||||
```
|
||||
|
||||
## 主题定制
|
||||
|
||||
### 样式变量
|
||||
|
@ -3,3 +3,4 @@ import _PasswordInput from './PasswordInput';
|
||||
|
||||
export const PasswordInput = withInstall(_PasswordInput);
|
||||
export default PasswordInput;
|
||||
export type { PasswordInputProps } from './PasswordInput';
|
||||
|
Loading…
x
Reference in New Issue
Block a user