move property-editor-config element to property editors folder

This commit is contained in:
Mads Rasmussen
2022-09-27 11:05:23 +02:00
parent 1c5603f57d
commit 58a41b3733
2 changed files with 6 additions and 6 deletions

View File

@@ -12,7 +12,7 @@ import type { UmbExtensionRegistry } from '../../../../../core/extension';
import type { UmbPropertyEditorStore } from '../../../../../core/stores/property-editor/property-editor.store';
import type { ManifestPropertyEditorUI } from '../../../../../core/models';
import '../../shared/property-editor-config.element';
import '../../../../property-editors/shared/property-editor-config.element';
@customElement('umb-editor-view-data-type-edit')
export class UmbEditorViewDataTypeEditElement extends UmbContextConsumerMixin(LitElement) {

View File

@@ -3,13 +3,13 @@ import { html, LitElement } from 'lit';
import { customElement, property, state } from 'lit/decorators.js';
import { ifDefined } from 'lit-html/directives/if-defined.js';
import { Subscription } from 'rxjs';
import { UmbContextConsumerMixin } from '../../../../core/context';
import { UmbExtensionRegistry } from '../../../../core/extension';
import { UmbPropertyEditorConfigStore } from '../../../../core/stores/property-editor-config/property-editor-config.store';
import { UmbContextConsumerMixin } from '../../../core/context';
import { UmbExtensionRegistry } from '../../../core/extension';
import { UmbPropertyEditorConfigStore } from '../../../core/stores/property-editor-config/property-editor-config.store';
import type { PropertyEditorConfigProperty } from '../../../../core/models';
import type { PropertyEditorConfigProperty } from '../../../core/models';
import '../../../components/entity-property/entity-property.element';
import '../../components/entity-property/entity-property.element';
@customElement('umb-property-editor-config')
export class UmbPropertyEditorConfigElement extends UmbContextConsumerMixin(LitElement) {