From 03aad9fcf82e140a7632154da21d474f9a8aaa21 Mon Sep 17 00:00:00 2001 From: Jacob Overgaard <752371+iOvergaard@users.noreply.github.com> Date: Wed, 3 Sep 2025 09:14:32 +0200 Subject: [PATCH 1/6] docs: adds explanation to tutorial on what the different block types are --- .../tutorials/creating-custom-views-for-blocklist.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/16/umbraco-cms/tutorials/creating-custom-views-for-blocklist.md b/16/umbraco-cms/tutorials/creating-custom-views-for-blocklist.md index 4a220cc1f58..2ae8f173e7c 100644 --- a/16/umbraco-cms/tutorials/creating-custom-views-for-blocklist.md +++ b/16/umbraco-cms/tutorials/creating-custom-views-for-blocklist.md @@ -133,12 +133,19 @@ Now that we have created our Web Component, let us register it to show up on our } ``` -While the `forContentTypeAlias` and `forBlockEditor` parameters are optional, they also accept arrays. They can therefore be used to declare a custom view for multiple blocks. The code snippet below shows an example of such an array: +While the `forContentTypeAlias` and `forBlockEditor` parameters are optional, they also accept arrays. They can therefore be used to declare a custom view for multiple blocks and block editors. The code snippet below shows an example of such an array: ```typescript forContentTypeAlias: ['product', 'anotherContentTypeAlias'], + forBlockEditor: ['block-list', 'block-grid', 'block-rte'], ``` +Depending on the values, the custom view is applied to the following data types: + +- **block-list** - The [Block List editor](../fundamentals/backoffice/property-editors/built-in-umbraco-property-editors/block-editor/block-list-editor.md) +- **block-grid** - The [Block Grid editor](../fundamentals/backoffice/property-editors/built-in-umbraco-property-editors/block-editor/block-grid-editor.md) +- **block-rte** - Blocks used inline in the [Rich Text editor](../fundamentals/backoffice/property-editors/built-in-umbraco-property-editors/rich-text-editor/blocks.md) + Read about [extension-manifest](../customizing/extending-overview/extension-registry/extension-manifest.md) to learn how to register an Extension Manifest. Once registered, the Block will be represented by the given Web Component. From b7b9393be39af08f8555e1ac49204f4127b927b4 Mon Sep 17 00:00:00 2001 From: Esha Noronha <82437098+eshanrnh@users.noreply.github.com> Date: Wed, 3 Sep 2025 10:00:06 +0200 Subject: [PATCH 2/6] Update 16/umbraco-cms/tutorials/creating-custom-views-for-blocklist.md --- 16/umbraco-cms/tutorials/creating-custom-views-for-blocklist.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/16/umbraco-cms/tutorials/creating-custom-views-for-blocklist.md b/16/umbraco-cms/tutorials/creating-custom-views-for-blocklist.md index 2ae8f173e7c..0ba270935f0 100644 --- a/16/umbraco-cms/tutorials/creating-custom-views-for-blocklist.md +++ b/16/umbraco-cms/tutorials/creating-custom-views-for-blocklist.md @@ -142,7 +142,7 @@ While the `forContentTypeAlias` and `forBlockEditor` parameters are optional, th Depending on the values, the custom view is applied to the following data types: -- **block-list** - The [Block List editor](../fundamentals/backoffice/property-editors/built-in-umbraco-property-editors/block-editor/block-list-editor.md) +- `block-list` - The [Block List editor](../fundamentals/backoffice/property-editors/built-in-umbraco-property-editors/block-editor/block-list-editor.md) - **block-grid** - The [Block Grid editor](../fundamentals/backoffice/property-editors/built-in-umbraco-property-editors/block-editor/block-grid-editor.md) - **block-rte** - Blocks used inline in the [Rich Text editor](../fundamentals/backoffice/property-editors/built-in-umbraco-property-editors/rich-text-editor/blocks.md) From c5b61676ee08dd93c2abd8b41bc1528d9ae05966 Mon Sep 17 00:00:00 2001 From: Esha Noronha <82437098+eshanrnh@users.noreply.github.com> Date: Wed, 3 Sep 2025 10:00:25 +0200 Subject: [PATCH 3/6] Update 16/umbraco-cms/tutorials/creating-custom-views-for-blocklist.md --- 16/umbraco-cms/tutorials/creating-custom-views-for-blocklist.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/16/umbraco-cms/tutorials/creating-custom-views-for-blocklist.md b/16/umbraco-cms/tutorials/creating-custom-views-for-blocklist.md index 0ba270935f0..514b392f572 100644 --- a/16/umbraco-cms/tutorials/creating-custom-views-for-blocklist.md +++ b/16/umbraco-cms/tutorials/creating-custom-views-for-blocklist.md @@ -143,7 +143,7 @@ While the `forContentTypeAlias` and `forBlockEditor` parameters are optional, th Depending on the values, the custom view is applied to the following data types: - `block-list` - The [Block List editor](../fundamentals/backoffice/property-editors/built-in-umbraco-property-editors/block-editor/block-list-editor.md) -- **block-grid** - The [Block Grid editor](../fundamentals/backoffice/property-editors/built-in-umbraco-property-editors/block-editor/block-grid-editor.md) +- `block-grid` - The [Block Grid editor](../fundamentals/backoffice/property-editors/built-in-umbraco-property-editors/block-editor/block-grid-editor.md) - **block-rte** - Blocks used inline in the [Rich Text editor](../fundamentals/backoffice/property-editors/built-in-umbraco-property-editors/rich-text-editor/blocks.md) Read about [extension-manifest](../customizing/extending-overview/extension-registry/extension-manifest.md) to learn how to register an Extension Manifest. From 6284a7dc4c41011b4777d2b80c381d9630ac1390 Mon Sep 17 00:00:00 2001 From: Esha Noronha <82437098+eshanrnh@users.noreply.github.com> Date: Wed, 3 Sep 2025 10:00:33 +0200 Subject: [PATCH 4/6] Update 16/umbraco-cms/tutorials/creating-custom-views-for-blocklist.md --- 16/umbraco-cms/tutorials/creating-custom-views-for-blocklist.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/16/umbraco-cms/tutorials/creating-custom-views-for-blocklist.md b/16/umbraco-cms/tutorials/creating-custom-views-for-blocklist.md index 514b392f572..d629fa0cf85 100644 --- a/16/umbraco-cms/tutorials/creating-custom-views-for-blocklist.md +++ b/16/umbraco-cms/tutorials/creating-custom-views-for-blocklist.md @@ -144,7 +144,7 @@ Depending on the values, the custom view is applied to the following data types: - `block-list` - The [Block List editor](../fundamentals/backoffice/property-editors/built-in-umbraco-property-editors/block-editor/block-list-editor.md) - `block-grid` - The [Block Grid editor](../fundamentals/backoffice/property-editors/built-in-umbraco-property-editors/block-editor/block-grid-editor.md) -- **block-rte** - Blocks used inline in the [Rich Text editor](../fundamentals/backoffice/property-editors/built-in-umbraco-property-editors/rich-text-editor/blocks.md) +- `block-rte` - Blocks used inline in the [Rich Text editor](../fundamentals/backoffice/property-editors/built-in-umbraco-property-editors/rich-text-editor/blocks.md) Read about [extension-manifest](../customizing/extending-overview/extension-registry/extension-manifest.md) to learn how to register an Extension Manifest. From c0ecb6793d25f3c3bdce28f89d74e0b2651b8b49 Mon Sep 17 00:00:00 2001 From: Esha Noronha <82437098+eshanrnh@users.noreply.github.com> Date: Wed, 3 Sep 2025 10:01:16 +0200 Subject: [PATCH 5/6] Update 16/umbraco-cms/tutorials/creating-custom-views-for-blocklist.md --- .../tutorials/creating-custom-views-for-blocklist.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/16/umbraco-cms/tutorials/creating-custom-views-for-blocklist.md b/16/umbraco-cms/tutorials/creating-custom-views-for-blocklist.md index d629fa0cf85..c2603a56eae 100644 --- a/16/umbraco-cms/tutorials/creating-custom-views-for-blocklist.md +++ b/16/umbraco-cms/tutorials/creating-custom-views-for-blocklist.md @@ -142,8 +142,8 @@ While the `forContentTypeAlias` and `forBlockEditor` parameters are optional, th Depending on the values, the custom view is applied to the following data types: -- `block-list` - The [Block List editor](../fundamentals/backoffice/property-editors/built-in-umbraco-property-editors/block-editor/block-list-editor.md) -- `block-grid` - The [Block Grid editor](../fundamentals/backoffice/property-editors/built-in-umbraco-property-editors/block-editor/block-grid-editor.md) +- `block-list` - For more information, see the [Block List editor](../fundamentals/backoffice/property-editors/built-in-umbraco-property-editors/block-editor/block-list-editor.md). +- `block-grid` - For more information, see the [Block Grid editor](../fundamentals/backoffice/property-editors/built-in-umbraco-property-editors/block-editor/block-grid-editor.md). - `block-rte` - Blocks used inline in the [Rich Text editor](../fundamentals/backoffice/property-editors/built-in-umbraco-property-editors/rich-text-editor/blocks.md) Read about [extension-manifest](../customizing/extending-overview/extension-registry/extension-manifest.md) to learn how to register an Extension Manifest. From 632d11e1a3fd5829eb8e9e11d8176cc5557b0e9f Mon Sep 17 00:00:00 2001 From: Esha Noronha <82437098+eshanrnh@users.noreply.github.com> Date: Wed, 3 Sep 2025 10:01:32 +0200 Subject: [PATCH 6/6] Update 16/umbraco-cms/tutorials/creating-custom-views-for-blocklist.md --- 16/umbraco-cms/tutorials/creating-custom-views-for-blocklist.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/16/umbraco-cms/tutorials/creating-custom-views-for-blocklist.md b/16/umbraco-cms/tutorials/creating-custom-views-for-blocklist.md index c2603a56eae..599fd17c885 100644 --- a/16/umbraco-cms/tutorials/creating-custom-views-for-blocklist.md +++ b/16/umbraco-cms/tutorials/creating-custom-views-for-blocklist.md @@ -144,7 +144,7 @@ Depending on the values, the custom view is applied to the following data types: - `block-list` - For more information, see the [Block List editor](../fundamentals/backoffice/property-editors/built-in-umbraco-property-editors/block-editor/block-list-editor.md). - `block-grid` - For more information, see the [Block Grid editor](../fundamentals/backoffice/property-editors/built-in-umbraco-property-editors/block-editor/block-grid-editor.md). -- `block-rte` - Blocks used inline in the [Rich Text editor](../fundamentals/backoffice/property-editors/built-in-umbraco-property-editors/rich-text-editor/blocks.md) +- `block-rte` - Blocks used inline in the [Rich Text editor](../fundamentals/backoffice/property-editors/built-in-umbraco-property-editors/rich-text-editor/blocks.md). Read about [extension-manifest](../customizing/extending-overview/extension-registry/extension-manifest.md) to learn how to register an Extension Manifest.