This commit is contained in:
Niels Lyngsø
2024-10-25 10:43:56 +02:00
parent 2febbc5f4c
commit 64b7d1194c
5 changed files with 8 additions and 5 deletions

View File

@@ -1,4 +1,5 @@
import { UMB_BLOCK_GRID_TYPE, type UmbBlockGridTypeModel } from '../types.js';
import type { UmbBlockGridTypeModel } from '../types.js';
import { UMB_BLOCK_GRID_TYPE } from '../constants.js';
import type { UmbWorkspaceModalData, UmbWorkspaceModalValue } from '@umbraco-cms/backoffice/workspace';
import { UmbModalToken } from '@umbraco-cms/backoffice/modal';

View File

@@ -1,4 +1,4 @@
import { UMB_BLOCK_GRID } from '../../types.js';
import { UMB_BLOCK_GRID } from '../../constants.js';
import { css, html, customElement } from '@umbraco-cms/backoffice/external/lit';
import { UmbTextStyles } from '@umbraco-cms/backoffice/style';
import { UmbLitElement } from '@umbraco-cms/backoffice/lit-element';

View File

@@ -1,5 +1,6 @@
import { UmbBlockListEntryContext } from '../../context/block-list-entry.context.js';
import { UMB_BLOCK_LIST, type UmbBlockListLayoutModel } from '../../types.js';
import type { UmbBlockListLayoutModel } from '../../types.js';
import { UMB_BLOCK_LIST } from '../../constants.js';
import { UmbLitElement } from '@umbraco-cms/backoffice/lit-element';
import { html, css, customElement, property, state, nothing } from '@umbraco-cms/backoffice/external/lit';
import type { UmbPropertyEditorUiElement } from '@umbraco-cms/backoffice/property-editor';

View File

@@ -1,5 +1,5 @@
import '../../../block-type/components/input-block-type/index.js';
import { UMB_BLOCK_LIST_TYPE } from '../../types.js';
import { UMB_BLOCK_LIST_TYPE } from '../../constants.js';
import type { UmbBlockTypeBaseModel, UmbInputBlockTypeElement } from '@umbraco-cms/backoffice/block-type';
import {
type UmbPropertyEditorUiElement,

View File

@@ -1,4 +1,5 @@
import { UMB_BLOCK_RTE, type UmbBlockRteLayoutModel } from '../../types.js';
import type { UmbBlockRteLayoutModel } from '../../types.js';
import { UMB_BLOCK_RTE } from '../../constants.js';
import { UmbBlockRteEntryContext } from '../../context/block-rte-entry.context.js';
import { UmbLitElement } from '@umbraco-cms/backoffice/lit-element';
import { html, css, property, state, customElement } from '@umbraco-cms/backoffice/external/lit';