diff --git a/src/packages/documents/documents/collection/views/grid/document-grid-collection-view.element.ts b/src/packages/documents/documents/collection/views/grid/document-grid-collection-view.element.ts index 54eb52989d..299ac47b67 100644 --- a/src/packages/documents/documents/collection/views/grid/document-grid-collection-view.element.ts +++ b/src/packages/documents/documents/collection/views/grid/document-grid-collection-view.element.ts @@ -1,6 +1,5 @@ import { getPropertyValueByAlias } from '../index.js'; import { UMB_EDIT_DOCUMENT_WORKSPACE_PATH_PATTERN } from '../../../paths.js'; -import type { UmbCollectionColumnConfiguration } from '../../../../../core/collection/types.js'; import type { UmbDocumentCollectionFilterModel, UmbDocumentCollectionItemModel } from '../../types.js'; import { UMB_DOCUMENT_COLLECTION_CONTEXT } from '../../document-collection.context-token.js'; import { css, customElement, html, nothing, repeat, state, when } from '@umbraco-cms/backoffice/external/lit'; @@ -9,7 +8,7 @@ import { UmbLitElement } from '@umbraco-cms/backoffice/lit-element'; import { UmbTextStyles } from '@umbraco-cms/backoffice/style'; import { UMB_WORKSPACE_MODAL } from '@umbraco-cms/backoffice/modal'; import { UmbModalRouteRegistrationController } from '@umbraco-cms/backoffice/router'; -import type { UmbDefaultCollectionContext } from '@umbraco-cms/backoffice/collection'; +import type { UmbDefaultCollectionContext, UmbCollectionColumnConfiguration } from '@umbraco-cms/backoffice/collection'; import type { UUIInterfaceColor } from '@umbraco-cms/backoffice/external/uui'; @customElement('umb-document-grid-collection-view') diff --git a/src/packages/documents/documents/entity-bulk-actions/manifests.ts b/src/packages/documents/documents/entity-bulk-actions/manifests.ts index 0799dfb4dd..553f5abfa1 100644 --- a/src/packages/documents/documents/entity-bulk-actions/manifests.ts +++ b/src/packages/documents/documents/entity-bulk-actions/manifests.ts @@ -1,4 +1,3 @@ -import type { UmbCollectionBulkActionPermissions } from '../../../core/collection/types.js'; import { UMB_DOCUMENT_COLLECTION_ALIAS } from '../collection/index.js'; import { UMB_DOCUMENT_ENTITY_TYPE } from '../entity.js'; import { UmbDocumentDuplicateEntityBulkAction } from './duplicate/duplicate.action.js'; @@ -6,6 +5,7 @@ import { UmbDocumentDeleteEntityBulkAction } from './delete/delete.action.js'; import { UmbMoveDocumentEntityBulkAction } from './move/move.action.js'; import { UmbDocumentPublishEntityBulkAction } from './publish/publish.action.js'; import { UmbDocumentUnpublishEntityBulkAction } from './unpublish/unpublish.action.js'; +import type { UmbCollectionBulkActionPermissions } from '@umbraco-cms/backoffice/collection'; import type { ManifestEntityBulkAction } from '@umbraco-cms/backoffice/extension-registry'; import { UMB_COLLECTION_ALIAS_CONDITION, diff --git a/src/packages/media/media/entity-bulk-actions/manifests.ts b/src/packages/media/media/entity-bulk-actions/manifests.ts index d7ea05ed49..ee082d07fe 100644 --- a/src/packages/media/media/entity-bulk-actions/manifests.ts +++ b/src/packages/media/media/entity-bulk-actions/manifests.ts @@ -1,8 +1,8 @@ -import type { UmbCollectionBulkActionPermissions } from '../../../core/collection/types.js'; import { UMB_MEDIA_COLLECTION_ALIAS } from '../collection/index.js'; import { UmbMediaMoveEntityBulkAction } from './move/move.action.js'; import { UmbDuplicateMediaEntityBulkAction } from './duplicate/duplicate.action.js'; import { UmbMediaDeleteEntityBulkAction } from './delete/delete.action.js'; +import type { UmbCollectionBulkActionPermissions } from '@umbraco-cms/backoffice/collection'; import type { ManifestTypes } from '@umbraco-cms/backoffice/extension-registry'; import { UMB_COLLECTION_ALIAS_CONDITION, diff --git a/src/packages/property-editors/collection/config/bulk-action-permissions/permissions.element.ts b/src/packages/property-editors/collection/config/bulk-action-permissions/permissions.element.ts index 4238983348..b813cd8524 100644 --- a/src/packages/property-editors/collection/config/bulk-action-permissions/permissions.element.ts +++ b/src/packages/property-editors/collection/config/bulk-action-permissions/permissions.element.ts @@ -1,4 +1,4 @@ -import type { UmbCollectionBulkActionPermissions } from '../../../../core/collection/types.js'; +import type { UmbCollectionBulkActionPermissions } from '@umbraco-cms/backoffice/collection'; 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'; diff --git a/src/packages/property-editors/collection/config/column/column-configuration.element.ts b/src/packages/property-editors/collection/config/column/column-configuration.element.ts index 0e21e79cf1..b13a1cae75 100644 --- a/src/packages/property-editors/collection/config/column/column-configuration.element.ts +++ b/src/packages/property-editors/collection/config/column/column-configuration.element.ts @@ -1,5 +1,5 @@ -import type { UmbCollectionColumnConfiguration } from '../../../../core/collection/types.js'; import type { UmbInputCollectionContentTypePropertyElement } from './components/index.js'; +import type { UmbCollectionColumnConfiguration } from '@umbraco-cms/backoffice/collection'; import { css, customElement, html, nothing, property, repeat, state } from '@umbraco-cms/backoffice/external/lit'; import { UmbLitElement } from '@umbraco-cms/backoffice/lit-element'; import { UmbPropertyValueChangeEvent } from '@umbraco-cms/backoffice/property-editor'; diff --git a/src/packages/property-editors/collection/config/order-by/order-by.element.ts b/src/packages/property-editors/collection/config/order-by/order-by.element.ts index 977830cf4c..661dbb4d03 100644 --- a/src/packages/property-editors/collection/config/order-by/order-by.element.ts +++ b/src/packages/property-editors/collection/config/order-by/order-by.element.ts @@ -1,4 +1,4 @@ -import type { UmbCollectionColumnConfiguration } from '../../../../core/collection/types.js'; +import type { UmbCollectionColumnConfiguration } from '@umbraco-cms/backoffice/collection'; import { customElement, html, property, state } from '@umbraco-cms/backoffice/external/lit'; import { UmbLitElement } from '@umbraco-cms/backoffice/lit-element'; import { UmbPropertyValueChangeEvent } from '@umbraco-cms/backoffice/property-editor';