Fixed #4463 - Dialog: new blockScroll property

pull/4468/head
Tuğçe Küçükoğlu 2023-09-18 12:14:52 +03:00
parent aa34254aa7
commit d9aeaec5e7
4 changed files with 17 additions and 2 deletions

View File

@ -71,6 +71,12 @@ const DialogProps = [
default: 'true',
description: 'Whether to show the header or not.'
},
{
name: 'blockScroll',
type: 'boolean',
default: 'false',
description: 'Whether background scroll should be blocked when dialog is visible.'
},
{
name: 'baseZIndex',
type: 'number',

View File

@ -247,6 +247,10 @@ export default {
type: Boolean,
default: true
},
blockScroll: {
type: Boolean,
default: false
},
baseZIndex: {
type: Number,
default: 0

View File

@ -202,6 +202,11 @@ export interface DialogProps {
* @defaultValue true
*/
showHeader?: boolean | undefined;
/**
* Whether background scroll should be blocked when dialog is visible.
* @defaultValue false
*/
blockScroll?: boolean | undefined;
/**
* Base zIndex value to use in layering.
* @defaultValue 0

View File

@ -208,12 +208,12 @@ export default {
}
},
enableDocumentSettings() {
if (this.modal || (this.maximizable && this.maximized)) {
if (this.modal || (!this.modal && this.blockScroll) || (this.maximizable && this.maximized)) {
DomHandler.addClass(document.body, 'p-overflow-hidden');
}
},
unbindDocumentState() {
if (this.modal || (this.maximizable && this.maximized)) {
if (this.modal || (!this.modal && this.blockScroll) || (this.maximizable && this.maximized)) {
DomHandler.removeClass(document.body, 'p-overflow-hidden');
}
},