@@ -216,10 +216,6 @@ export default {
type: String,
default: null
},
- panelClass: {
- type: String,
- default: null
- },
minDate: {
type: Date,
value: null
@@ -312,12 +308,6 @@ export default {
type: String,
default: 'body'
},
- id: null,
- inputId: null,
- inputClass: null,
- inputStyle: null,
- inputProps: null,
- panelProps: null,
disabled: {
type: Boolean,
default: false
@@ -326,6 +316,14 @@ export default {
type: Boolean,
default: false
},
+ id: null,
+ inputId: null,
+ inputClass: null,
+ inputStyle: null,
+ inputProps: null,
+ panelClass: null,
+ panelStyle: null,
+ panelProps: null,
'aria-labelledby': {
type: String,
default: null
diff --git a/src/views/calendar/CalendarDoc.vue b/src/views/calendar/CalendarDoc.vue
index 97b81f173..d9d7ca7ef 100755
--- a/src/views/calendar/CalendarDoc.vue
+++ b/src/views/calendar/CalendarDoc.vue
@@ -459,6 +459,12 @@ export default {
null |
Style class of the datetimepicker panel. |
+
+ panelStyle |
+ string |
+ null |
+ Inline style of the overlay panel. |
+
diff --git a/src/views/password/PasswordDoc.vue b/src/views/password/PasswordDoc.vue
index 31a6ae31a..181fe346b 100755
--- a/src/views/password/PasswordDoc.vue
+++ b/src/views/password/PasswordDoc.vue
@@ -156,10 +156,10 @@ import Password from 'primevue/password';
Icon to show displaying the password as plain text. |
- inputStyle |
- any |
+ inputId |
+ string |
null |
- Inline style of the input field. |
+ Style class of the component input field. |
inputClass |
@@ -167,11 +167,23 @@ import Password from 'primevue/password';
null |
Style class of the input field. |
+
+ inputStyle |
+ any |
+ null |
+ Inline style of the input field. |
+
panelClass |
string |
null |
Style class of the overlay panel. |
+
+
+ panelStyle |
+ string |
+ null |
+ Inline style of the overlay panel. |