mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-09 00:42:36 +00:00
Fixed #2842 - Editor Quill: SSR error document is not defined
This commit is contained in:
parent
af8efc4c3a
commit
7bdbeecf69
6 changed files with 133 additions and 41 deletions
|
@ -28,6 +28,12 @@ const EditorProps = [
|
|||
type: "any",
|
||||
default: "null",
|
||||
description: "Inline style of the container."
|
||||
},
|
||||
{
|
||||
name: 'modules',
|
||||
type: 'object',
|
||||
default: 'null',
|
||||
description: 'Modules configuration, see <a href="http://quilljs.com/docs/modules/">here</a> for available options.'
|
||||
}
|
||||
];
|
||||
|
||||
|
@ -98,6 +104,17 @@ const EditorEvents = [
|
|||
description: "Text editor instance."
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
name: 'load',
|
||||
description: 'Callback to invoke when the quill modules are loaded.',
|
||||
arguments: [
|
||||
{
|
||||
name: 'event.instance',
|
||||
type: 'any',
|
||||
description: 'Quill instance'
|
||||
}
|
||||
]
|
||||
}
|
||||
];
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue