diff --git a/src/Umbraco.Web.UI.Client/src/backoffice/property-actions/property-action-clear.element.ts b/src/Umbraco.Web.UI.Client/src/backoffice/property-actions/property-action-clear.element.ts index 62fef898d0..aa1a052b6a 100644 --- a/src/Umbraco.Web.UI.Client/src/backoffice/property-actions/property-action-clear.element.ts +++ b/src/Umbraco.Web.UI.Client/src/backoffice/property-actions/property-action-clear.element.ts @@ -2,7 +2,7 @@ import { html, LitElement } from 'lit'; import { customElement, property } from 'lit/decorators.js'; import { UmbContextConsumerMixin } from '../../core/context'; import { UmbPropertyActionMenuContext } from './property-action-menu/property-action-menu.context'; -import { UmbPropertyAction } from './property-action-element.model'; +import { UmbPropertyAction } from './property-action/property-action.model'; @customElement('umb-property-action-clear') export default class UmbPropertyActionClearElement extends UmbContextConsumerMixin(LitElement) implements UmbPropertyAction { diff --git a/src/Umbraco.Web.UI.Client/src/backoffice/property-actions/property-action-copy.element.ts b/src/Umbraco.Web.UI.Client/src/backoffice/property-actions/property-action-copy.element.ts index c971caca3a..9648d93be2 100644 --- a/src/Umbraco.Web.UI.Client/src/backoffice/property-actions/property-action-copy.element.ts +++ b/src/Umbraco.Web.UI.Client/src/backoffice/property-actions/property-action-copy.element.ts @@ -2,7 +2,7 @@ import { html, LitElement } from 'lit'; import { customElement, property } from 'lit/decorators.js'; import { UmbContextConsumerMixin } from '../../core/context'; import { UmbNotificationService } from '../../core/services/notification.service'; -import type { UmbPropertyAction } from './property-action-element.model'; +import type { UmbPropertyAction } from './property-action/property-action.model'; @customElement('umb-property-action-copy') export default class UmbPropertyActionCopyElement extends UmbContextConsumerMixin(LitElement) implements UmbPropertyAction { diff --git a/src/Umbraco.Web.UI.Client/src/backoffice/property-actions/property-action-menu/property-action-menu.element.ts b/src/Umbraco.Web.UI.Client/src/backoffice/property-actions/property-action-menu/property-action-menu.element.ts index db6b8d0537..e092b0839a 100644 --- a/src/Umbraco.Web.UI.Client/src/backoffice/property-actions/property-action-menu/property-action-menu.element.ts +++ b/src/Umbraco.Web.UI.Client/src/backoffice/property-actions/property-action-menu/property-action-menu.element.ts @@ -6,7 +6,7 @@ import { UmbContextProviderMixin, UmbContextConsumerMixin } from '../../../core/ import { UmbExtensionManifestPropertyAction, UmbExtensionRegistry } from '../../../core/extension'; import { UmbPropertyActionMenuContext } from './property-action-menu.context'; -import './property-action.element'; +import '../property-action/property-action.element'; @customElement('umb-property-action-menu') export class UmbPropertyActionMenuElement extends UmbContextProviderMixin(UmbContextConsumerMixin(LitElement)) { diff --git a/src/Umbraco.Web.UI.Client/src/backoffice/property-actions/property-action-menu/property-action.element.ts b/src/Umbraco.Web.UI.Client/src/backoffice/property-actions/property-action/property-action.element.ts similarity index 95% rename from src/Umbraco.Web.UI.Client/src/backoffice/property-actions/property-action-menu/property-action.element.ts rename to src/Umbraco.Web.UI.Client/src/backoffice/property-actions/property-action/property-action.element.ts index 7571139b23..09c23f51c8 100644 --- a/src/Umbraco.Web.UI.Client/src/backoffice/property-actions/property-action-menu/property-action.element.ts +++ b/src/Umbraco.Web.UI.Client/src/backoffice/property-actions/property-action/property-action.element.ts @@ -2,7 +2,7 @@ import { UUITextStyles } from '@umbraco-ui/uui'; import { CSSResultGroup, html, LitElement } from 'lit'; import { customElement, property, state } from 'lit/decorators.js'; import { createExtensionElement, UmbExtensionManifestPropertyAction } from '../../../core/extension'; -import type { UmbPropertyAction } from '../property-action-element.model'; +import type { UmbPropertyAction } from './property-action.model'; @customElement('umb-property-action') export class UmbPropertyActionElement extends LitElement implements UmbPropertyAction { diff --git a/src/Umbraco.Web.UI.Client/src/backoffice/property-actions/property-action-element.model.ts b/src/Umbraco.Web.UI.Client/src/backoffice/property-actions/property-action/property-action.model.ts similarity index 100% rename from src/Umbraco.Web.UI.Client/src/backoffice/property-actions/property-action-element.model.ts rename to src/Umbraco.Web.UI.Client/src/backoffice/property-actions/property-action/property-action.model.ts