mirror of
https://github.com/element-plus/element-plus.git
synced 2025-01-12 10:45:10 +08:00
feat(input) Removed validator for autocomplete attribute (#2757)
* [input] Removed validator for autocomplete attribute * [input] fixed wrong dash used in docs * [input] Docs update in zh-CN/es/fr/jp
This commit is contained in:
parent
8ccbf7b82e
commit
731209e140
@ -171,7 +171,6 @@ export default defineComponent({
|
||||
autocomplete: {
|
||||
type: String,
|
||||
default: 'off',
|
||||
validator: (val: string) => ['on', 'off'].includes(val),
|
||||
},
|
||||
placeholder: {
|
||||
type: String,
|
||||
|
@ -621,7 +621,7 @@ export default defineComponent ({
|
||||
| suffix-icon | suffix icon class | string | — | — |
|
||||
|rows | number of rows of textarea, only works when `type` is 'textarea' | number | — | 2 |
|
||||
|autosize | whether textarea has an adaptive height, only works when `type` is 'textarea'. Can accept an object, e.g. { minRows: 2, maxRows: 6 } | boolean / object | — | false |
|
||||
|autocomplete | same as `autocomplete` in native input | string | on/off | off |
|
||||
|autocomplete | same as `autocomplete` in native input | string | — | off |
|
||||
|name | same as `name` in native input | string | — | — |
|
||||
| readonly | same as `readonly` in native input | boolean | — | false |
|
||||
|max | same as `max` in native input | — | — | — |
|
||||
|
@ -635,7 +635,7 @@ export default defineComponent ({
|
||||
| suffix-icon | clase del icono de sufijo | string | — | — |
|
||||
| rows | número de filas, sólo funciona cuando `type` es `textarea`. | number | — | 2 |
|
||||
| autosize | si textarea tiene una altura adaptativa, sólo funciona cuando el`type` es `textarea`. Puede aceptar un objeto, p. ej. { minRows: 2, maxRows: 6 } | boolean / object | — | false |
|
||||
| autocomplete | igual que `autocomplete` en el input nativo | string | on/off | off |
|
||||
| autocomplete | igual que `autocomplete` en el input nativo | string | — | off |
|
||||
| name | igual que `name` en el input nativo | string | — | — |
|
||||
| readonly | igual que `readonly` en el input nativo | boolean | — | false |
|
||||
| max | igual que `max` en el input nativo | — | — | — |
|
||||
|
@ -620,7 +620,7 @@ export default defineComponent ({
|
||||
| suffix-icon | Classe de l'iĉone de suffixe. | string | — | — |
|
||||
| rows | Nombre de ligne pour une zone de texte, ne marche que si `type` est 'textarea'. | number | — | 2 |
|
||||
| autosize | Si la zone de texte à une hauteur adaptative, ne marche que si `type` est 'textarea'. Peut accepter un objet, e.g. { minRows: 2, maxRows: 6 } | boolean / object | — | false |
|
||||
| autocomplete | Identique à `autocomplete` dans l'input natif. | string | on / off | off |
|
||||
| autocomplete | Identique à `autocomplete` dans l'input natif. | string | — | off |
|
||||
| name | Identique à `name` dans l'input natif. | string | — | — |
|
||||
| readonly | Identique à `readonly` dans l'input natif. | boolean | — | false |
|
||||
| max | Identique à `max` dans l'input natif. | — | — | — |
|
||||
|
@ -621,7 +621,7 @@ export default defineComponent ({
|
||||
| suffix-icon | サフィックスアイコンクラス | string | — | — |
|
||||
|rows | textareaの行数、`type`が'textarea'の場合にのみ動作します。 | number | — | 2 |
|
||||
|autosize | textareaが適応的な高さを持つかどうか、`type`が'textarea'の場合にのみ動作します。オブジェクトを受け取ることができます。 e.g. { minRows: 2, maxRows: 6 } | boolean / object | — | false |
|
||||
|autocomplete | ネイティブインプットの `autocomplete` と同じ | string | on/off | off |
|
||||
|autocomplete | ネイティブインプットの `autocomplete` と同じ | string | — | off |
|
||||
|name | ネイティブインプットの `name` と同じ | string | — | — |
|
||||
| readonly | ネイティブインプットの `readonly` と同じ | boolean | — | false |
|
||||
|max | ネイティブインプットの `max` と同じ | — | — | — |
|
||||
|
@ -963,7 +963,7 @@ export default defineComponent ({
|
||||
| suffix-icon | 输入框尾部图标 | string | — | — |
|
||||
| rows | 输入框行数,只对 `type="textarea"` 有效 | number | — | 2 |
|
||||
| autosize | 自适应内容高度,只对 `type="textarea"` 有效,可传入对象,如,{ minRows: 2, maxRows: 6 } | boolean / object | — | false |
|
||||
| autocomplete | 原生属性,自动补全 | string | on, off | off |
|
||||
| autocomplete | 原生属性,自动补全 | string | — | off |
|
||||
| name | 原生属性 | string | — | — |
|
||||
| readonly | 原生属性,是否只读 | boolean | — | false |
|
||||
| max | 原生属性,设置最大值 | — | — | — |
|
||||
|
Loading…
Reference in New Issue
Block a user