From 77023f49418ae7887319308187b325db43b2732f Mon Sep 17 00:00:00 2001 From: Denny Lubitz Date: Tue, 2 Jul 2024 17:20:54 +0200 Subject: [PATCH 1/2] TASK: Update textarea docs to latest version --- .../References/PropertyEditorReference.rst | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/Neos.Neos/Documentation/References/PropertyEditorReference.rst b/Neos.Neos/Documentation/References/PropertyEditorReference.rst index 161a1e2dd57..9ca15081314 100644 --- a/Neos.Neos/Documentation/References/PropertyEditorReference.rst +++ b/Neos.Neos/Documentation/References/PropertyEditorReference.rst @@ -92,12 +92,18 @@ In case the text input should span multiple lines, a ``TextAreaEditor`` should b group: 'document' editor: 'Neos.Neos/Inspector/Editors/TextAreaEditor' editorOptions: - rows: 7 + minRows: 5 + expandedRows: 10 + maxRows: 20 Options Reference: -``rows`` (integer) - Number of lines this textarea should have; Default ``5``. +``minRows`` (integer) + Optional number to set the minRows of the TextArea if not expanded; Default ``2``. +``maxRows`` (integer) + Optional number to set the maxRows of the TextArea if expanded; Default ``24``. +``expandedRows`` (integer) + Optional number to set the expandedRows of the TextArea if expanded; Default ``6``. ** and all options from Text Field Editor -- see above** From 40a1738375e97dcc0fa5ffb87c1e656d96289c2e Mon Sep 17 00:00:00 2001 From: Denny Lubitz Date: Thu, 4 Jul 2024 09:03:42 +0200 Subject: [PATCH 2/2] TASK: Update textarea docs to latest version --- Neos.Neos/Documentation/References/PropertyEditorReference.rst | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Neos.Neos/Documentation/References/PropertyEditorReference.rst b/Neos.Neos/Documentation/References/PropertyEditorReference.rst index 9ca15081314..7931f574c9b 100644 --- a/Neos.Neos/Documentation/References/PropertyEditorReference.rst +++ b/Neos.Neos/Documentation/References/PropertyEditorReference.rst @@ -100,8 +100,10 @@ Options Reference: ``minRows`` (integer) Optional number to set the minRows of the TextArea if not expanded; Default ``2``. + ``maxRows`` (integer) Optional number to set the maxRows of the TextArea if expanded; Default ``24``. + ``expandedRows`` (integer) Optional number to set the expandedRows of the TextArea if expanded; Default ``6``.