move shared property action components into a shared folder
This commit is contained in:
@@ -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) {
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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';
|
||||
@@ -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')
|
||||
Reference in New Issue
Block a user