From babdfc4da700affd1d156734555453e078e2743b Mon Sep 17 00:00:00 2001 From: Richard Ockerby Date: Sat, 21 Sep 2024 18:36:40 +0100 Subject: [PATCH 1/3] Correct schema name In the example it references the incorrect `propertyEditorSchema`, it should be `propertyEditorSchemaAlias` --- .../property-editors/composition/property-editor-ui.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/14/umbraco-cms/customizing/property-editors/composition/property-editor-ui.md b/14/umbraco-cms/customizing/property-editors/composition/property-editor-ui.md index 49b6276e6dd..5a7948a86d3 100644 --- a/14/umbraco-cms/customizing/property-editors/composition/property-editor-ui.md +++ b/14/umbraco-cms/customizing/property-editors/composition/property-editor-ui.md @@ -23,7 +23,7 @@ The Property Editor UI is a pure front-end extension. This determines how the da "elementName": "my-text-box", "meta": { "label": "My Text Box", - "propertyEditorSchema": "Umbraco.TextBox", + "propertyEditorSchemaAlias": "Umbraco.TextBox", "icon": "icon-autofill", "group": "common" } From 5b7fb1b5b79a9cd92f22604e0e9a9179252a8ed4 Mon Sep 17 00:00:00 2001 From: sofietoft Date: Mon, 23 Sep 2024 21:07:46 +0200 Subject: [PATCH 2/3] Minor changes to re-run checks --- .../property-editors/composition/property-editor-ui.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/14/umbraco-cms/customizing/property-editors/composition/property-editor-ui.md b/14/umbraco-cms/customizing/property-editors/composition/property-editor-ui.md index 5a7948a86d3..4806cc011e9 100644 --- a/14/umbraco-cms/customizing/property-editors/composition/property-editor-ui.md +++ b/14/umbraco-cms/customizing/property-editors/composition/property-editor-ui.md @@ -73,14 +73,14 @@ The Property Editor UI inherits the Settings of its Property Editor Schema. Inherit the interface, to secure your Element live up to the requirements of this. -```ts +```typescript // TODO: get interface interface UmbPropertyEditorUIElement {} ``` **Example with LitElement** -```ts +```typescript import { LitElement, html, css, customElement, property } from '@umbraco-cms/backoffice/external/lit'; import { UmbElementMixin } from '@umbraco-cms/backoffice/element-api'; import { UmbPropertyValueChangeEvent } from '@umbraco-cms/backoffice/property-editor'; From 5ced621d8680bdc2a98fee14bfc25fbc8a3459cf Mon Sep 17 00:00:00 2001 From: sofietoft Date: Tue, 24 Sep 2024 08:50:05 +0200 Subject: [PATCH 3/3] Small changes to re-run GitBook checks --- .../property-editors/composition/property-editor-ui.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/14/umbraco-cms/customizing/property-editors/composition/property-editor-ui.md b/14/umbraco-cms/customizing/property-editors/composition/property-editor-ui.md index 4806cc011e9..08ba17b4e76 100644 --- a/14/umbraco-cms/customizing/property-editors/composition/property-editor-ui.md +++ b/14/umbraco-cms/customizing/property-editors/composition/property-editor-ui.md @@ -30,11 +30,11 @@ The Property Editor UI is a pure front-end extension. This determines how the da } ``` -If no Property Editor Schema is specified in the manifest, the Property Editor UI cannot be used for Content Types. However, it can still be utilized to manipulate JSON. A case of that could be a Settings property for another Property Editor UI or Schema. +The Property Editor UI cannot be used for Content Types if no Property Editor Schema is specified in the manifest. However, it can still be utilized to manipulate JSON. A case of that could be a Settings property for another Property Editor UI or Schema. ### Settings -The Property Editor UI settings are used for configuration that is related to rendering the UI in the backoffice. This is the same for Property Editor Schemas: +The Property Editor UI settings are used for configuration related to rendering the UI in the backoffice. This is the same for Property Editor Schemas: {% hint style="info" %} The Property Editor UI inherits the Settings of its Property Editor Schema.