Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update section view #6828

Merged
merged 2 commits into from
Jan 29, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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 %}

Expand Down Expand Up @@ -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";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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" %}
Expand All @@ -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";
Expand Down