Merge branch 'v4' of https://github.com/primefaces/primevue into v4
commit
c5c6db1fe1
|
@ -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',
|
||||
|
|
|
@ -34,10 +34,6 @@ export default {
|
|||
type: null,
|
||||
default: null
|
||||
},
|
||||
rtl: {
|
||||
type: Boolean,
|
||||
default: null
|
||||
},
|
||||
maximizable: {
|
||||
type: Boolean,
|
||||
default: false
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
}
|
||||
],
|
||||
|
|
Loading…
Reference in New Issue