move shared property action components into a shared folder

This commit is contained in:
Mads Rasmussen
2022-08-24 18:20:21 +02:00
parent a84313e82b
commit f85ad18fca
7 changed files with 7 additions and 7 deletions

View File

@@ -7,7 +7,7 @@ import { createExtensionElement, UmbExtensionManifest, UmbExtensionRegistry } fr
import { UmbDataTypeStore } from '../../core/stores/data-type.store';
import { DataTypeEntity } from '../../mocks/data/data-type.data';
import '../property-actions/property-action-menu/property-action-menu.element';
import '../property-actions/shared/property-action-menu/property-action-menu.element';
@customElement('umb-node-property')
class UmbNodeProperty extends UmbContextConsumerMixin(LitElement) {

View File

@@ -1,8 +1,8 @@
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/property-action.model';
import { UmbPropertyActionMenuContext } from '../shared/property-action-menu/property-action-menu.context';
import { UmbPropertyAction } from '../shared/property-action/property-action.model';
@customElement('umb-property-action-clear')
export default class UmbPropertyActionClearElement

View File

@@ -3,7 +3,7 @@ import { customElement, property } from 'lit/decorators.js';
import { UmbContextConsumerMixin } from '../../../core/context';
import type { UmbNotificationDefaultData } from '../../../core/services/notification/layouts/default';
import type { UmbNotificationService } from '../../../core/services/notification';
import type { UmbPropertyAction } from '../property-action/property-action.model';
import type { UmbPropertyAction } from '../shared/property-action/property-action.model';
@customElement('umb-property-action-copy')
export default class UmbPropertyActionCopyElement

View File

@@ -2,8 +2,8 @@ import { UUITextStyles } from '@umbraco-ui/uui';
import { css, CSSResultGroup, html, LitElement } from 'lit';
import { customElement, property, state } from 'lit/decorators.js';
import { Subscription, map } from 'rxjs';
import { UmbContextProviderMixin, UmbContextConsumerMixin } from '../../../core/context';
import { UmbExtensionManifestPropertyAction, UmbExtensionRegistry } from '../../../core/extension';
import { UmbContextProviderMixin, UmbContextConsumerMixin } from '../../../../core/context';
import { UmbExtensionManifestPropertyAction, UmbExtensionRegistry } from '../../../../core/extension';
import { UmbPropertyActionMenuContext } from './property-action-menu.context';
import '../property-action/property-action.element';

View File

@@ -1,7 +1,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 { createExtensionElement, UmbExtensionManifestPropertyAction } from '../../../../core/extension';
import type { UmbPropertyAction } from './property-action.model';
@customElement('umb-property-action')