diff --git a/src/views/fileupload/FileUploadDoc.vue b/src/views/fileupload/FileUploadDoc.vue index 9c4674511..099388742 100755 --- a/src/views/fileupload/FileUploadDoc.vue +++ b/src/views/fileupload/FileUploadDoc.vue @@ -128,7 +128,7 @@ myUploader(event) { accept string - false + null Pattern to restrict the allowed file types such as "image/*". diff --git a/src/views/knob/KnobDoc.vue b/src/views/knob/KnobDoc.vue index 0df83ab07..d93d84055 100644 --- a/src/views/knob/KnobDoc.vue +++ b/src/views/knob/KnobDoc.vue @@ -113,7 +113,7 @@ data() { rangeColor - number + string null Background color of the range. diff --git a/src/views/listbox/ListboxDoc.vue b/src/views/listbox/ListboxDoc.vue index fa6c781c6..66e9884c3 100755 --- a/src/views/listbox/ListboxDoc.vue +++ b/src/views/listbox/ListboxDoc.vue @@ -178,7 +178,7 @@ export default { dataKey string - false + null A property to uniquely identify an option. diff --git a/src/views/message/MessageDoc.vue b/src/views/message/MessageDoc.vue index 97043d698..a3e67e1df 100755 --- a/src/views/message/MessageDoc.vue +++ b/src/views/message/MessageDoc.vue @@ -98,7 +98,7 @@ import InlineMessage from 'primevue/inlinemessage'; sticky - element + boolean null When enabled, message is not removed automatically. diff --git a/src/views/organizationchart/OrganizationChartDoc.vue b/src/views/organizationchart/OrganizationChartDoc.vue index 904cef9df..ad131ff0d 100755 --- a/src/views/organizationchart/OrganizationChartDoc.vue +++ b/src/views/organizationchart/OrganizationChartDoc.vue @@ -364,7 +364,7 @@ export default { value - OrganizationChartNode + any null Value of the component. diff --git a/src/views/password/PasswordDoc.vue b/src/views/password/PasswordDoc.vue index f17f01920..49c0855dc 100755 --- a/src/views/password/PasswordDoc.vue +++ b/src/views/password/PasswordDoc.vue @@ -84,14 +84,14 @@ import Password from 'primevue/password'; mediumRegex string + ^(((?=.*[a-z])(?=.*[A-Z]))|((?=.*[a-z])(?=.*[0-9]))|((?=.*[A-Z])(?=.*[0-9])))(?=.{6,}) Regex for a medium level password. - ^(((?=.*[a-z])(?=.*[A-Z]))|((?=.*[a-z])(?=.*[0-9]))|((?=.*[A-Z])(?=.*[0-9])))(?=.{6,}). strongRegex string - Regex for a strong level password. ^(?=.*[a-z])(?=.*[A-Z])(?=.*[0-9])(?=.{8,}) + Regex for a strong level password. weakLabel