pull/5806/head
Cagatay Civici 2024-05-20 14:17:57 +03:00
commit c5c6db1fe1
4 changed files with 0 additions and 16 deletions

View File

@ -53,12 +53,6 @@ const DialogProps = [
default: 'null',
description: 'Style class of the content section.'
},
{
name: 'rtl',
type: 'boolean',
default: 'null',
description: 'When enabled dialog is displayed in RTL direction.'
},
{
name: 'closable',
type: 'boolean',

View File

@ -34,10 +34,6 @@ export default {
type: null,
default: null
},
rtl: {
type: Boolean,
default: null
},
maximizable: {
type: Boolean,
default: false

View File

@ -190,11 +190,6 @@ export interface DialogProps {
* Used to pass all properties of the HTMLDivElement to the overlay Dialog inside the component.
*/
contentProps?: HTMLAttributes | undefined;
/**
* When enabled dialog is displayed in RTL direction.
* @defaultValue false
*/
rtl?: boolean | undefined;
/**
* Adds a close icon to the header to hide the dialog.
* @defaultValue true

View File

@ -166,7 +166,6 @@ const classes = {
root: ({ props, instance }) => [
'p-dialog p-component',
{
'p-dialog-rtl': props.rtl,
'p-dialog-maximized': props.maximizable && instance.maximized
}
],