Fixed #4905 - wrong type appendTo props
parent
30b717348d
commit
6d07500c64
|
@ -66,7 +66,7 @@ export default {
|
|||
default: 300
|
||||
},
|
||||
appendTo: {
|
||||
type: String,
|
||||
type: [String, Object],
|
||||
default: 'body'
|
||||
},
|
||||
forceSelection: {
|
||||
|
|
|
@ -173,7 +173,7 @@ export default {
|
|||
default: true
|
||||
},
|
||||
appendTo: {
|
||||
type: String,
|
||||
type: [String, Object],
|
||||
default: 'body'
|
||||
},
|
||||
disabled: {
|
||||
|
|
|
@ -45,7 +45,7 @@ export default {
|
|||
default: null
|
||||
},
|
||||
appendTo: {
|
||||
type: String,
|
||||
type: [String, Object],
|
||||
default: 'body'
|
||||
},
|
||||
loading: {
|
||||
|
|
|
@ -39,7 +39,7 @@ export default {
|
|||
default: 0
|
||||
},
|
||||
appendTo: {
|
||||
type: String,
|
||||
type: [String, Object],
|
||||
default: 'body'
|
||||
},
|
||||
panelClass: null
|
||||
|
|
|
@ -11,7 +11,7 @@ export default {
|
|||
default: null
|
||||
},
|
||||
appendTo: {
|
||||
type: String,
|
||||
type: [String, Object],
|
||||
default: 'body'
|
||||
},
|
||||
autoZIndex: {
|
||||
|
|
|
@ -95,7 +95,7 @@ export default {
|
|||
default: 0
|
||||
},
|
||||
appendTo: {
|
||||
type: String,
|
||||
type: [String, Object],
|
||||
default: 'body'
|
||||
},
|
||||
closeIcon: {
|
||||
|
|
|
@ -79,7 +79,7 @@ export default {
|
|||
default: null
|
||||
},
|
||||
appendTo: {
|
||||
type: String,
|
||||
type: [String, Object],
|
||||
default: 'body'
|
||||
},
|
||||
loading: {
|
||||
|
|
|
@ -15,7 +15,7 @@ export default {
|
|||
default: null
|
||||
},
|
||||
appendTo: {
|
||||
type: String,
|
||||
type: [String, Object],
|
||||
default: 'body'
|
||||
},
|
||||
autoZIndex: {
|
||||
|
|
|
@ -60,7 +60,7 @@ export default {
|
|||
default: null
|
||||
},
|
||||
appendTo: {
|
||||
type: String,
|
||||
type: [String, Object],
|
||||
default: 'body'
|
||||
},
|
||||
display: {
|
||||
|
|
|
@ -15,7 +15,7 @@ export default {
|
|||
default: false
|
||||
},
|
||||
appendTo: {
|
||||
type: String,
|
||||
type: [String, Object],
|
||||
default: 'body'
|
||||
},
|
||||
baseZIndex: {
|
||||
|
|
|
@ -36,7 +36,7 @@ export default {
|
|||
default: true
|
||||
},
|
||||
appendTo: {
|
||||
type: String,
|
||||
type: [String, Object],
|
||||
default: 'body'
|
||||
},
|
||||
toggleMask: {
|
||||
|
|
|
@ -16,7 +16,7 @@ export default {
|
|||
name: 'Portal',
|
||||
props: {
|
||||
appendTo: {
|
||||
type: String,
|
||||
type: [String, Object],
|
||||
default: 'body'
|
||||
},
|
||||
disabled: {
|
||||
|
|
|
@ -27,7 +27,7 @@ export default {
|
|||
default: 0
|
||||
},
|
||||
appendTo: {
|
||||
type: String,
|
||||
type: [String, Object],
|
||||
default: 'body'
|
||||
},
|
||||
disabled: {
|
||||
|
|
|
@ -15,7 +15,7 @@ export default {
|
|||
default: null
|
||||
},
|
||||
appendTo: {
|
||||
type: String,
|
||||
type: [String, Object],
|
||||
default: 'body'
|
||||
},
|
||||
autoZIndex: {
|
||||
|
|
|
@ -29,7 +29,7 @@ export default {
|
|||
default: 'single'
|
||||
},
|
||||
appendTo: {
|
||||
type: String,
|
||||
type: [String, Object],
|
||||
default: 'body'
|
||||
},
|
||||
emptyMessage: {
|
||||
|
|
Loading…
Reference in New Issue