From 7b318e2bbd0a0b5d0500da875566d797eb0068e4 Mon Sep 17 00:00:00 2001 From: Erik-Jan Westendorp Date: Tue, 25 Jun 2024 16:01:30 +0200 Subject: [PATCH 1/2] Add TypeScript to the "Names" style guide --- .github/styles/UmbracoDocs/Names.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/styles/UmbracoDocs/Names.yml b/.github/styles/UmbracoDocs/Names.yml index 0198ef178e0..d8321e846c5 100644 --- a/.github/styles/UmbracoDocs/Names.yml +++ b/.github/styles/UmbracoDocs/Names.yml @@ -6,6 +6,7 @@ swap: '(?:(? Date: Tue, 25 Jun 2024 16:12:39 +0200 Subject: [PATCH 2/2] Change ts/typescript to TypeScript --- .../extending/backoffice-setup/extension-types/header-apps.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/14/umbraco-cms/extending/backoffice-setup/extension-types/header-apps.md b/14/umbraco-cms/extending/backoffice-setup/extension-types/header-apps.md index 8b406600f63..cbb3369ce46 100644 --- a/14/umbraco-cms/extending/backoffice-setup/extension-types/header-apps.md +++ b/14/umbraco-cms/extending/backoffice-setup/extension-types/header-apps.md @@ -13,7 +13,7 @@ A header app appears next to the user profile and global search icon on the top- In this article, you can find an example of an extension registry. This example details the creation of a Header App in two ways, similar to how the extension registry can be created: 1. [Using a manifest file](header-apps.md#button-header-app-with-manifest). -2. [Using the JavaScript/typescript file](header-apps.md#button-header-app-with-js-ts). +2. [Using the JavaScript/TypeScript file](header-apps.md#button-header-app-with-js-ts).

Header Apps

@@ -59,7 +59,7 @@ Below you can find an example of how to setup a Header App using the manifest fi ## **Button Header App with JS/TS** -Below you can find an example of how to setup a Header App using the ts file. +Below you can find an example of how to setup a Header App using the TypeScript file. This is a continuation of the above steps from the **Button Header App with Manifest** example. We will register a new Header App directly from the .ts file.