diff --git a/src/Umbraco.Web.UI.Client/src/backoffice/property-editors/content-picker/property-editor-content-picker.element.ts b/src/Umbraco.Web.UI.Client/src/backoffice/property-editors/content-picker/property-editor-content-picker.element.ts index 826b3e7b10..35325101f2 100644 --- a/src/Umbraco.Web.UI.Client/src/backoffice/property-editors/content-picker/property-editor-content-picker.element.ts +++ b/src/Umbraco.Web.UI.Client/src/backoffice/property-editors/content-picker/property-editor-content-picker.element.ts @@ -37,6 +37,9 @@ export class UmbPropertyEditorContentPickerElement extends UmbContextConsumerMix @property({ type: Array }) public value: Array = []; + @property({ type: Array, attribute: false }) + public config = []; + @state() private _items: Array = []; diff --git a/src/Umbraco.Web.UI.Client/src/backoffice/property-editors/number/property-editor-number.element.ts b/src/Umbraco.Web.UI.Client/src/backoffice/property-editors/number/property-editor-number.element.ts index 2bff931e5c..a979e6ef9f 100644 --- a/src/Umbraco.Web.UI.Client/src/backoffice/property-editors/number/property-editor-number.element.ts +++ b/src/Umbraco.Web.UI.Client/src/backoffice/property-editors/number/property-editor-number.element.ts @@ -16,6 +16,9 @@ export class UmbPropertyEditorNumberElement extends LitElement { @property() value = ''; + @property({ type: Array, attribute: false }) + public config = []; + private onInput(e: InputEvent) { this.value = (e.target as HTMLInputElement).value; this.dispatchEvent(new CustomEvent('property-editor-change', { bubbles: true, composed: true })); diff --git a/src/Umbraco.Web.UI.Client/src/backoffice/property-editors/text/property-editor-text.element.ts b/src/Umbraco.Web.UI.Client/src/backoffice/property-editors/text/property-editor-text.element.ts index c57fb44386..c67cc20595 100644 --- a/src/Umbraco.Web.UI.Client/src/backoffice/property-editors/text/property-editor-text.element.ts +++ b/src/Umbraco.Web.UI.Client/src/backoffice/property-editors/text/property-editor-text.element.ts @@ -16,6 +16,9 @@ export class UmbPropertyEditorTextElement extends LitElement { @property() value = ''; + @property({ type: Array, attribute: false }) + public config = []; + private onInput(e: InputEvent) { this.value = (e.target as HTMLInputElement).value; this.dispatchEvent(new CustomEvent('property-editor-change', { bubbles: true, composed: true }));