Skip to content

Commit

Permalink
Merge pull request #17082 from primefaces/issue-17014
Browse files Browse the repository at this point in the history
Fixed #17014 | DynamicDialog: Docs of autoZIndex map not its implemen…
  • Loading branch information
mehmetcetin01140 authored Dec 17, 2024
2 parents 690c6a6 + 136a802 commit dd92f22
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions packages/primeng/src/dynamicdialog/dynamicdialog-config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export class DynamicDialogConfig<T = any> {
* Specifies if pressing escape key should hide the dialog.
* @group Props
*/
closeOnEscape?: boolean;
closeOnEscape?: boolean = false;
/**
* Specifies if autofocus should happen on show.
* @group Props
Expand All @@ -59,17 +59,17 @@ export class DynamicDialogConfig<T = any> {
* Whether to automatically manage layering.
* @group Props
*/
autoZIndex?: boolean;
autoZIndex?: boolean = false;
/**
* Specifies if clicking the modal background should hide the dialog.
* @group Props
*/
dismissableMask?: boolean;
dismissableMask?: boolean = false;
/**
* Inline style of the component.
* @group Props
*/
rtl?: boolean;
rtl?: boolean = false;
/**
* Inline style of the comopnent.
* @group Props
Expand All @@ -94,17 +94,17 @@ export class DynamicDialogConfig<T = any> {
* Adds a close icon to the header to hide the dialog.
* @group Props
*/
closable?: boolean;
closable?: boolean = false;
/**
* Whether to show the header or not.
* @group Props
*/
showHeader?: boolean;
showHeader?: boolean = false;
/**
* Defines if background should be blocked when dialog is displayed.
* @group Props
*/
modal?: boolean;
modal?: boolean = false;
/**
* Style class of the mask.
* @group Props
Expand All @@ -114,17 +114,17 @@ export class DynamicDialogConfig<T = any> {
* Enables resizing of the content.
* @group Props
*/
resizable?: boolean;
resizable?: boolean = false;
/**
* Enables dragging to change the position using header.
* @group Props
*/
draggable?: boolean;
draggable?: boolean = false;
/**
* Keeps dialog in the viewport.
* @group Props
*/
keepInViewport?: boolean;
keepInViewport?: boolean = false;
/**
* Minimum value for the left coordinate of dialog in dragging.
* @group Props
Expand All @@ -139,7 +139,7 @@ export class DynamicDialogConfig<T = any> {
* Whether the dialog can be displayed full screen.
* @group Props
*/
maximizable?: boolean;
maximizable?: boolean = false;
/**
* Name of the maximize icon.
* @group Props
Expand Down Expand Up @@ -169,7 +169,7 @@ export class DynamicDialogConfig<T = any> {
* A boolean to determine if it can be duplicate.
* @group Props
*/
duplicate?: boolean;
duplicate?: boolean = false;
/**
* Object literal to define widths per screen size.
* @group Props
Expand Down

0 comments on commit dd92f22

Please sign in to comment.