prop section fix

pull/1196/head^2
Tuğçe Küçükoğlu 2021-05-05 17:33:56 +03:00
parent fb3e7136ab
commit 21b59efdc2
6 changed files with 7 additions and 7 deletions

View File

@ -128,7 +128,7 @@ myUploader(event) {
<tr>
<td>accept</td>
<td>string</td>
<td>false</td>
<td>null</td>
<td>Pattern to restrict the allowed file types such as "image/*".</td>
</tr>
<tr>

View File

@ -113,7 +113,7 @@ data() {
</tr>
<tr>
<td>rangeColor</td>
<td>number</td>
<td>string</td>
<td>null</td>
<td>Background color of the range.</td>
</tr>

View File

@ -178,7 +178,7 @@ export default {
<tr>
<td>dataKey</td>
<td>string</td>
<td>false</td>
<td>null</td>
<td>A property to uniquely identify an option.</td>
</tr>
<tr>

View File

@ -98,7 +98,7 @@ import InlineMessage from 'primevue/inlinemessage';
</tr>
<tr>
<td>sticky</td>
<td>element</td>
<td>boolean</td>
<td>null</td>
<td>When enabled, message is not removed automatically.</td>
</tr>

View File

@ -364,7 +364,7 @@ export default {
<tbody>
<tr>
<td>value</td>
<td>OrganizationChartNode</td>
<td>any</td>
<td>null</td>
<td>Value of the component.</td>
</tr>

View File

@ -84,14 +84,14 @@ import Password from 'primevue/password';
<tr>
<td>mediumRegex</td>
<td>string</td>
<td>^(((?=.*[a-z])(?=.*[A-Z]))|((?=.*[a-z])(?=.*[0-9]))|((?=.*[A-Z])(?=.*[0-9])))(?=.{6,})</td>
<td>Regex for a medium level password.</td>
<td>^(((?=.*[a-z])(?=.*[A-Z]))|((?=.*[a-z])(?=.*[0-9]))|((?=.*[A-Z])(?=.*[0-9])))(?=.{6,}).</td>
</tr>
<tr>
<td>strongRegex</td>
<td>string</td>
<td>Regex for a strong level password.</td>
<td>^(?=.*[a-z])(?=.*[A-Z])(?=.*[0-9])(?=.{8,})</td>
<td>Regex for a strong level password.</td>
</tr>
<tr>
<td>weakLabel</td>