fix: import the element so it shows up in the property editor

This commit is contained in:
Jacob Overgaard
2024-07-09 10:56:09 +02:00
parent d45bef652c
commit 61ce7fd9cf

View File

@@ -1,5 +1,5 @@
import type { UmbLinkPickerLink } from '../link-picker-modal/types.js';
import type { UmbInputMultiUrlElement } from '../components/input-multi-url/input-multi-url.element.js';
import type { UmbInputMultiUrlElement } from '../components/input-multi-url/index.js';
import { customElement, html, property, state } from '@umbraco-cms/backoffice/external/lit';
import { UmbLitElement } from '@umbraco-cms/backoffice/lit-element';
import { UmbPropertyValueChangeEvent } from '@umbraco-cms/backoffice/property-editor';
@@ -8,6 +8,8 @@ import type { UmbPropertyEditorConfigCollection } from '@umbraco-cms/backoffice/
import type { UmbPropertyEditorUiElement } from '@umbraco-cms/backoffice/extension-registry';
import type { UUIModalSidebarSize } from '@umbraco-cms/backoffice/external/uui';
import '../components/input-multi-url/index.js';
/**
* @element umb-property-editor-ui-multi-url-picker
*/