mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-09 00:42:36 +00:00
Lint changes
This commit is contained in:
parent
eb2de5460c
commit
4d3a071e66
291 changed files with 28450 additions and 26621 deletions
|
@ -1,40 +1,40 @@
|
|||
const InputMaskProps = [
|
||||
{
|
||||
name: "modelValue",
|
||||
type: "any",
|
||||
default: "null",
|
||||
description: "Value of the component."
|
||||
name: 'modelValue',
|
||||
type: 'any',
|
||||
default: 'null',
|
||||
description: 'Value of the component.'
|
||||
},
|
||||
{
|
||||
name: "mask",
|
||||
type: "string",
|
||||
default: "null",
|
||||
description: "Mask pattern."
|
||||
name: 'mask',
|
||||
type: 'string',
|
||||
default: 'null',
|
||||
description: 'Mask pattern.'
|
||||
},
|
||||
{
|
||||
name: "slotChar",
|
||||
type: "string",
|
||||
default: "-",
|
||||
description: "Placeholder character in mask, default is underscore."
|
||||
name: 'slotChar',
|
||||
type: 'string',
|
||||
default: '-',
|
||||
description: 'Placeholder character in mask, default is underscore.'
|
||||
},
|
||||
{
|
||||
name: "autoClear",
|
||||
type: "boolean",
|
||||
default: "true",
|
||||
description: "Clears the incomplete value on blur."
|
||||
name: 'autoClear',
|
||||
type: 'boolean',
|
||||
default: 'true',
|
||||
description: 'Clears the incomplete value on blur.'
|
||||
},
|
||||
{
|
||||
name: "unmask",
|
||||
type: "boolean",
|
||||
default: "false",
|
||||
description: "Defines if model sets the raw unmasked value to bound value or the formatted mask value."
|
||||
name: 'unmask',
|
||||
type: 'boolean',
|
||||
default: 'false',
|
||||
description: 'Defines if model sets the raw unmasked value to bound value or the formatted mask value.'
|
||||
}
|
||||
];
|
||||
|
||||
module.exports = {
|
||||
inputmask: {
|
||||
name: "InputMask",
|
||||
description: "InputMask component is used to enter input in a certain format such as numeric, date, currency, email and phone.",
|
||||
name: 'InputMask',
|
||||
description: 'InputMask component is used to enter input in a certain format such as numeric, date, currency, email and phone.',
|
||||
props: InputMaskProps
|
||||
}
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue