Skip to content
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
@@ -1,6 +1,8 @@
import type { UmbPropertyEditorConfigCollection } from '../config/index.js';
import type { ManifestPropertyEditorUi } from './property-editor.extension.js';

export interface UmbPropertyEditorUiElement extends HTMLElement {
manifest?: ManifestPropertyEditorUi;
name?: string;
value?: unknown;
config?: UmbPropertyEditorConfigCollection;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -334,6 +334,7 @@ export class UmbPropertyElement extends UmbLitElement {
this._element.addEventListener('change', this._onPropertyEditorChange as any as EventListener);
this._element.addEventListener('property-value-change', this._onPropertyEditorChange as any as EventListener);
// No need to observe mandatory or label, as we already do so and set it on the _element if present: [NL]
this._element.manifest = manifest;
this._element.mandatory = this._mandatory;
this._element.name = this._label;

Expand Down
Loading