Merge pull request #945 from Safelite/CSR-1023-update-with-iss-code
CSR-1023 update Concept code with code from ISS.
This commit is contained in:
commit
a75f6a0aa7
1 changed files with 8 additions and 1 deletions
|
|
@ -4,8 +4,15 @@ export const inputButtonProps = {
|
|||
required: true,
|
||||
},
|
||||
modelValue: {
|
||||
type: [Array, String, Number],
|
||||
required: true,
|
||||
validator: function (prop) {
|
||||
return (
|
||||
prop === null ||
|
||||
Array.isArray(prop) ||
|
||||
typeof prop === "string" ||
|
||||
(typeof prop === "number" && !Number.isNaN(prop))
|
||||
);
|
||||
},
|
||||
},
|
||||
isMultiSelect: Boolean,
|
||||
groupName: {
|
||||
|
|
|
|||
Loading…
Reference in a new issue