From 808a30f3a073793b96bdd88e50a07fb4d1b789a4 Mon Sep 17 00:00:00 2001 From: Andy Butland Date: Sat, 2 Nov 2024 19:43:59 +0100 Subject: [PATCH 1/7] Added release notes and details for block list labels. --- 14/umbraco-forms/SUMMARY.md | 2 +- .../developer/blocklistfilters.md | 21 --------------- 14/umbraco-forms/developer/blocklistlabels.md | 27 +++++++++++++++++++ 14/umbraco-forms/release-notes.md | 5 ++++ .../developer/blocklistfilters.md | 21 --------------- 15/umbraco-forms/developer/blocklistlabels.md | 27 +++++++++++++++++++ 6 files changed, 60 insertions(+), 43 deletions(-) delete mode 100644 14/umbraco-forms/developer/blocklistfilters.md create mode 100644 14/umbraco-forms/developer/blocklistlabels.md delete mode 100644 15/umbraco-forms/developer/blocklistfilters.md create mode 100644 15/umbraco-forms/developer/blocklistlabels.md diff --git a/14/umbraco-forms/SUMMARY.md b/14/umbraco-forms/SUMMARY.md index ec400c6ca2f..381087f2662 100644 --- a/14/umbraco-forms/SUMMARY.md +++ b/14/umbraco-forms/SUMMARY.md @@ -65,7 +65,7 @@ * [Apply keys and indexes for forms in the database](developer/healthchecks/forms-in-the-database-apply-keys.md) * [Localization](developer/localization.md) * [Headless/AJAX Forms](developer/ajaxforms.md) -* [Block List Filters](developer/blocklistfilters.md) +* [Block List Labels](developer/blocklistlabels.md) * [Field Types](developer/field-types.md) * [Storing Prevalue Text Files With IPreValueTextFileStorage](developer/iprevaluetextfilestorage.md) diff --git a/14/umbraco-forms/developer/blocklistfilters.md b/14/umbraco-forms/developer/blocklistfilters.md deleted file mode 100644 index b493cc3a8c8..00000000000 --- a/14/umbraco-forms/developer/blocklistfilters.md +++ /dev/null @@ -1,21 +0,0 @@ -# Block List Filters - -When working with the Block List editor, [the editor experience is enhanced](https://docs.umbraco.com/umbraco-cms/fundamentals/backoffice/property-editors/built-in-umbraco-property-editors/block-editor/block-list-editor#editor-appearance) by defining a label for the appearance of the Block. - -These labels can contain AngularJS filters. - -A filter `umbFormsFormName` is available for use. - -If you add a reference to a property containing a form to the block's label, it will render with the form's Id. - -For example, assuming a property containing a picked form with an alias of `contactForm`: - -``` -{{contactForm}} -``` - -By using the filter as follows, the form's name will be displayed instead. - -``` -{{contactForm | umbFormsFormName}} -``` diff --git a/14/umbraco-forms/developer/blocklistlabels.md b/14/umbraco-forms/developer/blocklistlabels.md new file mode 100644 index 00000000000..4ea33b429e4 --- /dev/null +++ b/14/umbraco-forms/developer/blocklistlabels.md @@ -0,0 +1,27 @@ +# Block List Labels + +When working with the Block List editor, [the editor experience is enhanced](https://docs.umbraco.com/umbraco-cms/fundamentals/backoffice/property-editors/built-in-umbraco-property-editors/block-editor/block-list-editor#editor-appearance) by defining a label for the appearance of the Block. + +These labels can use [Umbraco Flavored Markdown (UFM)](https://docs.umbraco.com/umbraco-cms/reference/umbraco-flavored-markdown). + +An option that allows for display of a forms name - `umbFormName` - is available for use. + +It should be rendered as follows, with a reference to the property alias on the block element that uses a form picker. + +``` +{umbFormName: } +``` + +If you add a reference to a property containing a form to the block's label, it will render with the form's Id. + +For example, assuming a property containing a picked form with an alias of `contactForm`: + +``` +{=contactForm} +``` + +By using the markdown as follows, the form's name will be displayed instead. + +``` +{umbFormName: contactForm} +``` diff --git a/14/umbraco-forms/release-notes.md b/14/umbraco-forms/release-notes.md index 0202dcd6dcf..602571703d4 100644 --- a/14/umbraco-forms/release-notes.md +++ b/14/umbraco-forms/release-notes.md @@ -18,6 +18,11 @@ If you are upgrading to a new major version, you can find information about the This section contains the release notes for Umbraco Forms 14 including all changes for this version. +#### [**14.2.0-rc2**](https://github.com/umbraco/Umbraco.Forms.Issues/issues?q=is%3Aissue+is%3Aclosed+label%3Arelease%2F14.2.0) **November 3rd 2024** + +* Updated dependency on Umbraco CMS to 14.3.0. +* Added a replacement for the AngularJs [block list label filter we provide for Forms 13](../../13/umbraco-forms/developer/blocklistfilters). The new implementations uses [Umbraco Flavored Markdown (UFM)](https://docs.umbraco.com/umbraco-cms/reference/umbraco-flavored-markdown) and is [documented here](./developer/blocklistlabels.md). + #### [**14.2.0-rc1**](https://github.com/umbraco/Umbraco.Forms.Issues/issues?q=is%3Aissue+is%3Aclosed+label%3Arelease%2F14.2.0) **October 25th 2024** ##### Multi-step forms diff --git a/15/umbraco-forms/developer/blocklistfilters.md b/15/umbraco-forms/developer/blocklistfilters.md deleted file mode 100644 index b493cc3a8c8..00000000000 --- a/15/umbraco-forms/developer/blocklistfilters.md +++ /dev/null @@ -1,21 +0,0 @@ -# Block List Filters - -When working with the Block List editor, [the editor experience is enhanced](https://docs.umbraco.com/umbraco-cms/fundamentals/backoffice/property-editors/built-in-umbraco-property-editors/block-editor/block-list-editor#editor-appearance) by defining a label for the appearance of the Block. - -These labels can contain AngularJS filters. - -A filter `umbFormsFormName` is available for use. - -If you add a reference to a property containing a form to the block's label, it will render with the form's Id. - -For example, assuming a property containing a picked form with an alias of `contactForm`: - -``` -{{contactForm}} -``` - -By using the filter as follows, the form's name will be displayed instead. - -``` -{{contactForm | umbFormsFormName}} -``` diff --git a/15/umbraco-forms/developer/blocklistlabels.md b/15/umbraco-forms/developer/blocklistlabels.md new file mode 100644 index 00000000000..4ea33b429e4 --- /dev/null +++ b/15/umbraco-forms/developer/blocklistlabels.md @@ -0,0 +1,27 @@ +# Block List Labels + +When working with the Block List editor, [the editor experience is enhanced](https://docs.umbraco.com/umbraco-cms/fundamentals/backoffice/property-editors/built-in-umbraco-property-editors/block-editor/block-list-editor#editor-appearance) by defining a label for the appearance of the Block. + +These labels can use [Umbraco Flavored Markdown (UFM)](https://docs.umbraco.com/umbraco-cms/reference/umbraco-flavored-markdown). + +An option that allows for display of a forms name - `umbFormName` - is available for use. + +It should be rendered as follows, with a reference to the property alias on the block element that uses a form picker. + +``` +{umbFormName: } +``` + +If you add a reference to a property containing a form to the block's label, it will render with the form's Id. + +For example, assuming a property containing a picked form with an alias of `contactForm`: + +``` +{=contactForm} +``` + +By using the markdown as follows, the form's name will be displayed instead. + +``` +{umbFormName: contactForm} +``` From 2fcbc5fcc91d7e9a0e1ff107bb833adf03db2396 Mon Sep 17 00:00:00 2001 From: Andy Butland Date: Sat, 2 Nov 2024 19:47:00 +0100 Subject: [PATCH 2/7] Restored original file names. --- 14/umbraco-forms/SUMMARY.md | 2 +- .../developer/{blocklistlabels.md => blocklistfilters.md} | 0 14/umbraco-forms/release-notes.md | 2 +- .../developer/{blocklistlabels.md => blocklistfilters.md} | 0 4 files changed, 2 insertions(+), 2 deletions(-) rename 14/umbraco-forms/developer/{blocklistlabels.md => blocklistfilters.md} (100%) rename 15/umbraco-forms/developer/{blocklistlabels.md => blocklistfilters.md} (100%) diff --git a/14/umbraco-forms/SUMMARY.md b/14/umbraco-forms/SUMMARY.md index 381087f2662..711c3dfbb64 100644 --- a/14/umbraco-forms/SUMMARY.md +++ b/14/umbraco-forms/SUMMARY.md @@ -65,7 +65,7 @@ * [Apply keys and indexes for forms in the database](developer/healthchecks/forms-in-the-database-apply-keys.md) * [Localization](developer/localization.md) * [Headless/AJAX Forms](developer/ajaxforms.md) -* [Block List Labels](developer/blocklistlabels.md) +* [Block List Labels](developer/blocklistfilters.md) * [Field Types](developer/field-types.md) * [Storing Prevalue Text Files With IPreValueTextFileStorage](developer/iprevaluetextfilestorage.md) diff --git a/14/umbraco-forms/developer/blocklistlabels.md b/14/umbraco-forms/developer/blocklistfilters.md similarity index 100% rename from 14/umbraco-forms/developer/blocklistlabels.md rename to 14/umbraco-forms/developer/blocklistfilters.md diff --git a/14/umbraco-forms/release-notes.md b/14/umbraco-forms/release-notes.md index 602571703d4..be634167766 100644 --- a/14/umbraco-forms/release-notes.md +++ b/14/umbraco-forms/release-notes.md @@ -21,7 +21,7 @@ This section contains the release notes for Umbraco Forms 14 including all chang #### [**14.2.0-rc2**](https://github.com/umbraco/Umbraco.Forms.Issues/issues?q=is%3Aissue+is%3Aclosed+label%3Arelease%2F14.2.0) **November 3rd 2024** * Updated dependency on Umbraco CMS to 14.3.0. -* Added a replacement for the AngularJs [block list label filter we provide for Forms 13](../../13/umbraco-forms/developer/blocklistfilters). The new implementations uses [Umbraco Flavored Markdown (UFM)](https://docs.umbraco.com/umbraco-cms/reference/umbraco-flavored-markdown) and is [documented here](./developer/blocklistlabels.md). +* Added a replacement for the AngularJs [block list label filter we provide for Forms 13](../../13/umbraco-forms/developer/blocklistfilters). The new implementations uses [Umbraco Flavored Markdown (UFM)](https://docs.umbraco.com/umbraco-cms/reference/umbraco-flavored-markdown) and is [documented here](./developer/blocklistfilters.md). #### [**14.2.0-rc1**](https://github.com/umbraco/Umbraco.Forms.Issues/issues?q=is%3Aissue+is%3Aclosed+label%3Arelease%2F14.2.0) **October 25th 2024** diff --git a/15/umbraco-forms/developer/blocklistlabels.md b/15/umbraco-forms/developer/blocklistfilters.md similarity index 100% rename from 15/umbraco-forms/developer/blocklistlabels.md rename to 15/umbraco-forms/developer/blocklistfilters.md From 51a09e1caa01a65fdbcb974ae9a46a7effc97e69 Mon Sep 17 00:00:00 2001 From: Andy Butland Date: Sat, 2 Nov 2024 19:49:21 +0100 Subject: [PATCH 3/7] Linting. --- 14/umbraco-forms/release-notes.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/14/umbraco-forms/release-notes.md b/14/umbraco-forms/release-notes.md index be634167766..1783d015741 100644 --- a/14/umbraco-forms/release-notes.md +++ b/14/umbraco-forms/release-notes.md @@ -21,7 +21,7 @@ This section contains the release notes for Umbraco Forms 14 including all chang #### [**14.2.0-rc2**](https://github.com/umbraco/Umbraco.Forms.Issues/issues?q=is%3Aissue+is%3Aclosed+label%3Arelease%2F14.2.0) **November 3rd 2024** * Updated dependency on Umbraco CMS to 14.3.0. -* Added a replacement for the AngularJs [block list label filter we provide for Forms 13](../../13/umbraco-forms/developer/blocklistfilters). The new implementations uses [Umbraco Flavored Markdown (UFM)](https://docs.umbraco.com/umbraco-cms/reference/umbraco-flavored-markdown) and is [documented here](./developer/blocklistfilters.md). +* Added a replacement for the AngularJS [block list label filter we provide for Forms 13](../../13/umbraco-forms/developer/blocklistfilters). The new implementations uses [Umbraco Flavored Markdown (UFM)](https://docs.umbraco.com/umbraco-cms/reference/umbraco-flavored-markdown) and is [documented here](./developer/blocklistfilters.md). #### [**14.2.0-rc1**](https://github.com/umbraco/Umbraco.Forms.Issues/issues?q=is%3Aissue+is%3Aclosed+label%3Arelease%2F14.2.0) **October 25th 2024** From be4d44433632a5e51a64d466ac8d7b0c0024c44b Mon Sep 17 00:00:00 2001 From: Esha Noronha <82437098+eshanrnh@users.noreply.github.com> Date: Mon, 4 Nov 2024 09:37:50 +0100 Subject: [PATCH 4/7] Update 14/umbraco-forms/developer/blocklistfilters.md --- 14/umbraco-forms/developer/blocklistfilters.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/14/umbraco-forms/developer/blocklistfilters.md b/14/umbraco-forms/developer/blocklistfilters.md index 4ea33b429e4..c522271a943 100644 --- a/14/umbraco-forms/developer/blocklistfilters.md +++ b/14/umbraco-forms/developer/blocklistfilters.md @@ -4,7 +4,7 @@ When working with the Block List editor, [the editor experience is enhanced](htt These labels can use [Umbraco Flavored Markdown (UFM)](https://docs.umbraco.com/umbraco-cms/reference/umbraco-flavored-markdown). -An option that allows for display of a forms name - `umbFormName` - is available for use. +An option is available to display a form's name - `umbFormName`. It should be rendered as follows, with a reference to the property alias on the block element that uses a form picker. From 0f3820db85391a74e87ae4440f1a2fb29434c521 Mon Sep 17 00:00:00 2001 From: Esha Noronha <82437098+eshanrnh@users.noreply.github.com> Date: Mon, 4 Nov 2024 09:37:58 +0100 Subject: [PATCH 5/7] Update 14/umbraco-forms/release-notes.md --- 14/umbraco-forms/release-notes.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/14/umbraco-forms/release-notes.md b/14/umbraco-forms/release-notes.md index 1783d015741..98019e8ecf8 100644 --- a/14/umbraco-forms/release-notes.md +++ b/14/umbraco-forms/release-notes.md @@ -21,7 +21,7 @@ This section contains the release notes for Umbraco Forms 14 including all chang #### [**14.2.0-rc2**](https://github.com/umbraco/Umbraco.Forms.Issues/issues?q=is%3Aissue+is%3Aclosed+label%3Arelease%2F14.2.0) **November 3rd 2024** * Updated dependency on Umbraco CMS to 14.3.0. -* Added a replacement for the AngularJS [block list label filter we provide for Forms 13](../../13/umbraco-forms/developer/blocklistfilters). The new implementations uses [Umbraco Flavored Markdown (UFM)](https://docs.umbraco.com/umbraco-cms/reference/umbraco-flavored-markdown) and is [documented here](./developer/blocklistfilters.md). +* Added a replacement for the AngularJS [block list label filter we provide for Forms 13](../../13/umbraco-forms/developer/blocklistfilters). The new implementations use [Umbraco Flavored Markdown (UFM)](https://docs.umbraco.com/umbraco-cms/reference/umbraco-flavored-markdown) and are [documented here](./developer/blocklistfilters.md). #### [**14.2.0-rc1**](https://github.com/umbraco/Umbraco.Forms.Issues/issues?q=is%3Aissue+is%3Aclosed+label%3Arelease%2F14.2.0) **October 25th 2024** From 68978d48812e90802ea5deb3197754c04d483482 Mon Sep 17 00:00:00 2001 From: Esha Noronha <82437098+eshanrnh@users.noreply.github.com> Date: Mon, 4 Nov 2024 09:38:03 +0100 Subject: [PATCH 6/7] Update 15/umbraco-forms/developer/blocklistfilters.md --- 15/umbraco-forms/developer/blocklistfilters.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/15/umbraco-forms/developer/blocklistfilters.md b/15/umbraco-forms/developer/blocklistfilters.md index 4ea33b429e4..c522271a943 100644 --- a/15/umbraco-forms/developer/blocklistfilters.md +++ b/15/umbraco-forms/developer/blocklistfilters.md @@ -4,7 +4,7 @@ When working with the Block List editor, [the editor experience is enhanced](htt These labels can use [Umbraco Flavored Markdown (UFM)](https://docs.umbraco.com/umbraco-cms/reference/umbraco-flavored-markdown). -An option that allows for display of a forms name - `umbFormName` - is available for use. +An option is available to display a form's name - `umbFormName`. It should be rendered as follows, with a reference to the property alias on the block element that uses a form picker. From 292ada8526a373ee9a3a66ad8631ec070f1bcf9c Mon Sep 17 00:00:00 2001 From: Esha Noronha <82437098+eshanrnh@users.noreply.github.com> Date: Mon, 4 Nov 2024 09:40:49 +0100 Subject: [PATCH 7/7] Update 14/umbraco-forms/release-notes.md --- 14/umbraco-forms/release-notes.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/14/umbraco-forms/release-notes.md b/14/umbraco-forms/release-notes.md index 98019e8ecf8..3445664f994 100644 --- a/14/umbraco-forms/release-notes.md +++ b/14/umbraco-forms/release-notes.md @@ -21,7 +21,7 @@ This section contains the release notes for Umbraco Forms 14 including all chang #### [**14.2.0-rc2**](https://github.com/umbraco/Umbraco.Forms.Issues/issues?q=is%3Aissue+is%3Aclosed+label%3Arelease%2F14.2.0) **November 3rd 2024** * Updated dependency on Umbraco CMS to 14.3.0. -* Added a replacement for the AngularJS [block list label filter we provide for Forms 13](../../13/umbraco-forms/developer/blocklistfilters). The new implementations use [Umbraco Flavored Markdown (UFM)](https://docs.umbraco.com/umbraco-cms/reference/umbraco-flavored-markdown) and are [documented here](./developer/blocklistfilters.md). +* Added a replacement for the AngularJS [block list label filter we provide for Forms 13](../../13/umbraco-forms/developer/blocklistfilters.md). The new implementations use [Umbraco Flavored Markdown (UFM)](https://docs.umbraco.com/umbraco-cms/reference/umbraco-flavored-markdown) and are [documented here](./developer/blocklistfilters.md). #### [**14.2.0-rc1**](https://github.com/umbraco/Umbraco.Forms.Issues/issues?q=is%3Aissue+is%3Aclosed+label%3Arelease%2F14.2.0) **October 25th 2024**