mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-10 17:32:36 +00:00
Fixed #5664 - [v4 beta1: InputMask] Placeholder attribute does not work
This commit is contained in:
parent
a25418eef3
commit
9e428a1a15
3 changed files with 9 additions and 0 deletions
|
@ -15,6 +15,10 @@ export default {
|
|||
type: String,
|
||||
default: null
|
||||
},
|
||||
placeholder: {
|
||||
type: String,
|
||||
default: null
|
||||
},
|
||||
autoClear: {
|
||||
type: Boolean,
|
||||
default: true
|
||||
|
|
4
components/lib/inputmask/InputMask.d.ts
vendored
4
components/lib/inputmask/InputMask.d.ts
vendored
|
@ -111,6 +111,10 @@ export interface InputMaskProps {
|
|||
* Mask pattern.
|
||||
*/
|
||||
mask?: string | undefined;
|
||||
/**
|
||||
* Placeholder text for the input.
|
||||
*/
|
||||
placeholder?: string | undefined;
|
||||
/**
|
||||
* Clears the incomplete value on blur.
|
||||
* @defaultValue true
|
||||
|
|
|
@ -6,6 +6,7 @@
|
|||
:disabled="disabled"
|
||||
:invalid="invalid"
|
||||
:variant="variant"
|
||||
:placeholder="placeholder"
|
||||
:unstyled="unstyled"
|
||||
@input="onInput"
|
||||
@focus="onFocus"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue