Fixed #4905 - wrong type appendTo props

pull/5049/head
tugcekucukoglu 2024-01-08 12:33:05 +03:00
parent 30b717348d
commit 6d07500c64
15 changed files with 15 additions and 15 deletions

View File

@ -66,7 +66,7 @@ export default {
default: 300 default: 300
}, },
appendTo: { appendTo: {
type: String, type: [String, Object],
default: 'body' default: 'body'
}, },
forceSelection: { forceSelection: {

View File

@ -173,7 +173,7 @@ export default {
default: true default: true
}, },
appendTo: { appendTo: {
type: String, type: [String, Object],
default: 'body' default: 'body'
}, },
disabled: { disabled: {

View File

@ -45,7 +45,7 @@ export default {
default: null default: null
}, },
appendTo: { appendTo: {
type: String, type: [String, Object],
default: 'body' default: 'body'
}, },
loading: { loading: {

View File

@ -39,7 +39,7 @@ export default {
default: 0 default: 0
}, },
appendTo: { appendTo: {
type: String, type: [String, Object],
default: 'body' default: 'body'
}, },
panelClass: null panelClass: null

View File

@ -11,7 +11,7 @@ export default {
default: null default: null
}, },
appendTo: { appendTo: {
type: String, type: [String, Object],
default: 'body' default: 'body'
}, },
autoZIndex: { autoZIndex: {

View File

@ -95,7 +95,7 @@ export default {
default: 0 default: 0
}, },
appendTo: { appendTo: {
type: String, type: [String, Object],
default: 'body' default: 'body'
}, },
closeIcon: { closeIcon: {

View File

@ -79,7 +79,7 @@ export default {
default: null default: null
}, },
appendTo: { appendTo: {
type: String, type: [String, Object],
default: 'body' default: 'body'
}, },
loading: { loading: {

View File

@ -15,7 +15,7 @@ export default {
default: null default: null
}, },
appendTo: { appendTo: {
type: String, type: [String, Object],
default: 'body' default: 'body'
}, },
autoZIndex: { autoZIndex: {

View File

@ -60,7 +60,7 @@ export default {
default: null default: null
}, },
appendTo: { appendTo: {
type: String, type: [String, Object],
default: 'body' default: 'body'
}, },
display: { display: {

View File

@ -15,7 +15,7 @@ export default {
default: false default: false
}, },
appendTo: { appendTo: {
type: String, type: [String, Object],
default: 'body' default: 'body'
}, },
baseZIndex: { baseZIndex: {

View File

@ -36,7 +36,7 @@ export default {
default: true default: true
}, },
appendTo: { appendTo: {
type: String, type: [String, Object],
default: 'body' default: 'body'
}, },
toggleMask: { toggleMask: {

View File

@ -16,7 +16,7 @@ export default {
name: 'Portal', name: 'Portal',
props: { props: {
appendTo: { appendTo: {
type: String, type: [String, Object],
default: 'body' default: 'body'
}, },
disabled: { disabled: {

View File

@ -27,7 +27,7 @@ export default {
default: 0 default: 0
}, },
appendTo: { appendTo: {
type: String, type: [String, Object],
default: 'body' default: 'body'
}, },
disabled: { disabled: {

View File

@ -15,7 +15,7 @@ export default {
default: null default: null
}, },
appendTo: { appendTo: {
type: String, type: [String, Object],
default: 'body' default: 'body'
}, },
autoZIndex: { autoZIndex: {

View File

@ -29,7 +29,7 @@ export default {
default: 'single' default: 'single'
}, },
appendTo: { appendTo: {
type: String, type: [String, Object],
default: 'body' default: 'body'
}, },
emptyMessage: { emptyMessage: {