clean up
This commit is contained in:
@@ -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 {
|
||||
|
||||
@@ -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 {
|
||||
|
||||
@@ -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)) {
|
||||
|
||||
@@ -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 {
|
||||
Reference in New Issue
Block a user