update references

This commit is contained in:
Mads Rasmussen
2022-08-24 18:08:48 +02:00
parent 01f62d1bb9
commit a84313e82b
3 changed files with 9 additions and 9 deletions

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

View File

@@ -1,9 +1,9 @@
import { html, LitElement } from 'lit';
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 { 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';
@customElement('umb-property-action-copy')
export default class UmbPropertyActionCopyElement

View File

@@ -215,7 +215,7 @@ export const internalManifests: Array<UmbExtensionManifestCore> = [
alias: 'Umb.PropertyAction.Copy',
name: 'Copy',
elementName: 'umb-property-action-copy',
js: () => import('./backoffice/property-actions/property-action-copy.element'),
js: () => import('./backoffice/property-actions/copy/property-action-copy.element'),
meta: {
propertyEditors: ['Umb.PropertyEditorUI.Text'],
},
@@ -225,7 +225,7 @@ export const internalManifests: Array<UmbExtensionManifestCore> = [
alias: 'Umb.PropertyAction.Clear',
name: 'Clear',
elementName: 'umb-property-action-clear',
js: () => import('./backoffice/property-actions/property-action-clear.element'),
js: () => import('./backoffice/property-actions/clear/property-action-clear.element'),
meta: {
propertyEditors: ['Umb.PropertyEditorUI.Text'],
},