Skip to content

Commit b4b45b2

Browse files
authored
Merge pull request #6616 from AndyButland/forms/release-notes-14.2.0-rc2
Added release notes and details for block list labels included in Forms 14.2.0-rc2.
2 parents 8188a9e + 292ada8 commit b4b45b2

File tree

4 files changed

+30
-13
lines changed

4 files changed

+30
-13
lines changed

14/umbraco-forms/SUMMARY.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@
6565
* [Apply keys and indexes for forms in the database](developer/healthchecks/forms-in-the-database-apply-keys.md)
6666
* [Localization](developer/localization.md)
6767
* [Headless/AJAX Forms](developer/ajaxforms.md)
68-
* [Block List Filters](developer/blocklistfilters.md)
68+
* [Block List Labels](developer/blocklistfilters.md)
6969
* [Field Types](developer/field-types.md)
7070
* [Storing Prevalue Text Files With IPreValueTextFileStorage](developer/iprevaluetextfilestorage.md)
7171

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,27 @@
1-
# Block List Filters
1+
# Block List Labels
22

33
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.
44

5-
These labels can contain AngularJS filters.
5+
These labels can use [Umbraco Flavored Markdown (UFM)](https://docs.umbraco.com/umbraco-cms/reference/umbraco-flavored-markdown).
66

7-
A filter `umbFormsFormName` is available for use.
7+
An option is available to display a form's name - `umbFormName`.
8+
9+
It should be rendered as follows, with a reference to the property alias on the block element that uses a form picker.
10+
11+
```
12+
{umbFormName: <property-alias>}
13+
```
814

915
If you add a reference to a property containing a form to the block's label, it will render with the form's Id.
1016

1117
For example, assuming a property containing a picked form with an alias of `contactForm`:
1218

1319
```
14-
{{contactForm}}
20+
{=contactForm}
1521
```
1622

17-
By using the filter as follows, the form's name will be displayed instead.
23+
By using the markdown as follows, the form's name will be displayed instead.
1824

1925
```
20-
{{contactForm | umbFormsFormName}}
26+
{umbFormName: contactForm}
2127
```

14/umbraco-forms/release-notes.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,11 @@ If you are upgrading to a new major version, you can find information about the
1818

1919
This section contains the release notes for Umbraco Forms 14 including all changes for this version.
2020

21+
#### [**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**
22+
23+
* Updated dependency on Umbraco CMS to 14.3.0.
24+
* 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).
25+
2126
#### [**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**
2227

2328
##### Multi-step forms
Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,27 @@
1-
# Block List Filters
1+
# Block List Labels
22

33
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.
44

5-
These labels can contain AngularJS filters.
5+
These labels can use [Umbraco Flavored Markdown (UFM)](https://docs.umbraco.com/umbraco-cms/reference/umbraco-flavored-markdown).
66

7-
A filter `umbFormsFormName` is available for use.
7+
An option is available to display a form's name - `umbFormName`.
8+
9+
It should be rendered as follows, with a reference to the property alias on the block element that uses a form picker.
10+
11+
```
12+
{umbFormName: <property-alias>}
13+
```
814

915
If you add a reference to a property containing a form to the block's label, it will render with the form's Id.
1016

1117
For example, assuming a property containing a picked form with an alias of `contactForm`:
1218

1319
```
14-
{{contactForm}}
20+
{=contactForm}
1521
```
1622

17-
By using the filter as follows, the form's name will be displayed instead.
23+
By using the markdown as follows, the form's name will be displayed instead.
1824

1925
```
20-
{{contactForm | umbFormsFormName}}
26+
{umbFormName: contactForm}
2127
```

0 commit comments

Comments
 (0)