Skip to content

Commit

Permalink
Fixed #4905 - wrong type appendTo props
Browse files Browse the repository at this point in the history
  • Loading branch information
tugcekucukoglu committed Jan 8, 2024
1 parent 30b7173 commit 6d07500
Show file tree
Hide file tree
Showing 15 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion components/lib/autocomplete/BaseAutoComplete.vue
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ export default {
default: 300
},
appendTo: {
type: String,
type: [String, Object],
default: 'body'
},
forceSelection: {
Expand Down
2 changes: 1 addition & 1 deletion components/lib/calendar/BaseCalendar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ export default {
default: true
},
appendTo: {
type: String,
type: [String, Object],
default: 'body'
},
disabled: {
Expand Down
2 changes: 1 addition & 1 deletion components/lib/cascadeselect/BaseCascadeSelect.vue
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export default {
default: null
},
appendTo: {
type: String,
type: [String, Object],
default: 'body'
},
loading: {
Expand Down
2 changes: 1 addition & 1 deletion components/lib/colorpicker/BaseColorPicker.vue
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export default {
default: 0
},
appendTo: {
type: String,
type: [String, Object],
default: 'body'
},
panelClass: null
Expand Down
2 changes: 1 addition & 1 deletion components/lib/contextmenu/BaseContextMenu.vue
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export default {
default: null
},
appendTo: {
type: String,
type: [String, Object],
default: 'body'
},
autoZIndex: {
Expand Down
2 changes: 1 addition & 1 deletion components/lib/dialog/BaseDialog.vue
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ export default {
default: 0
},
appendTo: {
type: String,
type: [String, Object],
default: 'body'
},
closeIcon: {
Expand Down
2 changes: 1 addition & 1 deletion components/lib/dropdown/BaseDropdown.vue
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ export default {
default: null
},
appendTo: {
type: String,
type: [String, Object],
default: 'body'
},
loading: {
Expand Down
2 changes: 1 addition & 1 deletion components/lib/menu/BaseMenu.vue
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export default {
default: null
},
appendTo: {
type: String,
type: [String, Object],
default: 'body'
},
autoZIndex: {
Expand Down
2 changes: 1 addition & 1 deletion components/lib/multiselect/BaseMultiSelect.vue
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ export default {
default: null
},
appendTo: {
type: String,
type: [String, Object],
default: 'body'
},
display: {
Expand Down
2 changes: 1 addition & 1 deletion components/lib/overlaypanel/BaseOverlayPanel.vue
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export default {
default: false
},
appendTo: {
type: String,
type: [String, Object],
default: 'body'
},
baseZIndex: {
Expand Down
2 changes: 1 addition & 1 deletion components/lib/password/BasePassword.vue
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ export default {
default: true
},
appendTo: {
type: String,
type: [String, Object],
default: 'body'
},
toggleMask: {
Expand Down
2 changes: 1 addition & 1 deletion components/lib/portal/Portal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export default {
name: 'Portal',
props: {
appendTo: {
type: String,
type: [String, Object],
default: 'body'
},
disabled: {
Expand Down
2 changes: 1 addition & 1 deletion components/lib/splitbutton/BaseSplitButton.vue
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export default {
default: 0
},
appendTo: {
type: String,
type: [String, Object],
default: 'body'
},
disabled: {
Expand Down
2 changes: 1 addition & 1 deletion components/lib/tieredmenu/BaseTieredMenu.vue
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export default {
default: null
},
appendTo: {
type: String,
type: [String, Object],
default: 'body'
},
autoZIndex: {
Expand Down
2 changes: 1 addition & 1 deletion components/lib/treeselect/BaseTreeSelect.vue
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export default {
default: 'single'
},
appendTo: {
type: String,
type: [String, Object],
default: 'body'
},
emptyMessage: {
Expand Down

0 comments on commit 6d07500

Please sign in to comment.