From 0d553c8426b40e8b19dc23fad5c7f2099e678c7c Mon Sep 17 00:00:00 2001 From: Erik-Jan Westendorp Date: Wed, 29 Jan 2025 14:19:13 +0100 Subject: [PATCH 1/2] Typescript to TypeScript --- .../extending-overview/extension-types/section-view.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/14/umbraco-cms/customizing/extending-overview/extension-types/section-view.md b/14/umbraco-cms/customizing/extending-overview/extension-types/section-view.md index 3b1d0d1ff90..e3b71638b23 100644 --- a/14/umbraco-cms/customizing/extending-overview/extension-types/section-view.md +++ b/14/umbraco-cms/customizing/extending-overview/extension-types/section-view.md @@ -18,7 +18,7 @@ In this section, you can learn how to register and create a custom Section View ### Manifest -The manifest file can be created using either JSON or Typescript. Both methods are shown below. +The manifest file can be created using either JSON or TypeScript. Both methods are shown below. {% tabs %} @@ -48,12 +48,12 @@ We can create the manifest using json in the `umbraco-package.json`. {% endtab %} -{% tab title="Typescript" %} +{% tab title="TypeScript" %} The manifest can also be written in TypeScript. -For this typescript example we used a [Backoffice Entry Point](../../extending-overview/extension-types/backoffice-entry-point) extension to register the manifests. +For this TypeScript example we used a [Backoffice Entry Point](../../extending-overview/extension-types/backoffice-entry-point) extension to register the manifests. ```typescript import { ManifestSectionView } from "@umbraco-cms/backoffice/extension-registry"; From 00035ac16bf7548e0d9bbdccee1b1230fbb1dbf8 Mon Sep 17 00:00:00 2001 From: Erik-Jan Westendorp Date: Wed, 29 Jan 2025 14:24:17 +0100 Subject: [PATCH 2/2] Update v15 --- .../extension-types/sections/section-view.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/15/umbraco-cms/customizing/extending-overview/extension-types/sections/section-view.md b/15/umbraco-cms/customizing/extending-overview/extension-types/sections/section-view.md index 89d0c3d4d10..cdb7b0950f4 100644 --- a/15/umbraco-cms/customizing/extending-overview/extension-types/sections/section-view.md +++ b/15/umbraco-cms/customizing/extending-overview/extension-types/sections/section-view.md @@ -18,7 +18,7 @@ In this section, you can learn how to register and create a custom Section View ### Manifest -The manifest file can be created using either JSON or Typescript. Both methods are shown below. +The manifest file can be created using either JSON or TypeScript. Both methods are shown below. {% tabs %} {% tab title="Json" %} @@ -45,10 +45,10 @@ We can create the manifest using json in the `umbraco-package.json`. ``` {% endtab %} -{% tab title="Typescript" %} +{% tab title="TypeScript" %} The manifest can also be written in TypeScript. -For this typescript example we used a [Backoffice Entry Point](../backoffice-entry-point/) extension to register the manifests. +For this TypeScript example we used a [Backoffice Entry Point](../backoffice-entry-point/) extension to register the manifests. ```typescript import { ManifestSectionView } from "@umbraco-cms/backoffice/extension-registry";