move collection view

This commit is contained in:
Mads Rasmussen
2024-04-23 12:41:44 +02:00
parent 489b0045df
commit df2ccb212c
21 changed files with 4 additions and 4 deletions

View File

@@ -18,7 +18,7 @@ import { manifest as textArea } from './textarea/manifests.js';
import { manifest as toggle } from './toggle/manifests.js';
import { manifest as uploadField } from './upload-field/manifests.js';
import { manifest as valueType } from './value-type/manifests.js';
import { manifests as collectionView } from './collection-view/manifests.js';
import { manifests as collectionView } from '../../../property-editors/collection-view/manifests.js';
import { manifests as numbers } from './number/manifests.js';
import { manifests as textBoxes } from './text-box/manifests.js';
import { manifests as treePicker } from './tree-picker/manifests.js';

View File

@@ -1,4 +1,4 @@
import type { UmbCollectionBulkActionPermissions } from '../../../../../collection/types.js';
import type { UmbCollectionBulkActionPermissions } from '../../../../core/collection/types.js';
import type { UmbPropertyEditorUiElement } from '@umbraco-cms/backoffice/extension-registry';
import { html, customElement, property, css } from '@umbraco-cms/backoffice/external/lit';
import type { UUIBooleanInputEvent } from '@umbraco-cms/backoffice/external/uui';

View File

@@ -1,4 +1,4 @@
import type { UmbCollectionColumnConfiguration } from '../../../../../collection/types.js';
import type { UmbCollectionColumnConfiguration } from '../../../../core/collection/types.js';
import { html, customElement, property, repeat, css, state, nothing } from '@umbraco-cms/backoffice/external/lit';
import { UmbLitElement } from '@umbraco-cms/backoffice/lit-element';
import { UmbPropertyValueChangeEvent } from '@umbraco-cms/backoffice/property-editor';

View File

@@ -1,4 +1,4 @@
import type { UmbPropertyEditorConfigCollection } from '../../config/index.js';
import type { UmbPropertyEditorConfigCollection } from '../../core/property-editor/config/index.js';
import { html, customElement, property, state } from '@umbraco-cms/backoffice/external/lit';
import { UmbLitElement } from '@umbraco-cms/backoffice/lit-element';
import { UMB_DOCUMENT_COLLECTION_ALIAS } from '@umbraco-cms/backoffice/document';