update references
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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'],
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user