You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the 'custom property editor' instructions, in the 'Creating a Web Component' section, there is an example .ts file with an incorrect import.
The example shows import { UmbPropertyEditorUiElement } from "@umbraco-cms/backoffice/extension-registry";
I couldn't get that to build in v15 until I changed it to import type { UmbPropertyEditorUiElement } from '@umbraco-cms/backoffice/property-editor';
The text was updated successfully, but these errors were encountered:
What type of issue is it?
Wrong documentation
What article/section is this about?
https://docs.umbraco.com/umbraco-cms/tutorials/creating-a-property-editor
Describe the issue
In the 'custom property editor' instructions, in the 'Creating a Web Component' section, there is an example .ts file with an incorrect import.
The example shows
import { UmbPropertyEditorUiElement } from "@umbraco-cms/backoffice/extension-registry";
I couldn't get that to build in v15 until I changed it to
import type { UmbPropertyEditorUiElement } from '@umbraco-cms/backoffice/property-editor';
The text was updated successfully, but these errors were encountered: