This commit is contained in:
Mads Rasmussen
2022-07-04 13:30:55 +02:00
parent eba57d92e3
commit e8e21ef9a3
5 changed files with 4 additions and 4 deletions

View File

@@ -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 {

View File

@@ -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 {

View File

@@ -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)) {

View File

@@ -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 {