fix storybook build

This commit is contained in:
Jacob Overgaard
2023-06-01 11:49:30 +02:00
parent 7b0f07094c
commit d2a8024c42
7 changed files with 9 additions and 9 deletions

View File

@@ -0,0 +1,3 @@
export const DATA_TYPE_ROOT_ENTITY_TYPE = 'data-type-root';
export const DATA_TYPE_ENTITY_TYPE = 'data-type';
export const DATA_TYPE_FOLDER_ENTITY_TYPE = 'data-type-folder';

View File

@@ -1,4 +1,4 @@
import { DATA_TYPE_ENTITY_TYPE } from '../../index.js';
import { DATA_TYPE_ENTITY_TYPE } from '../../entities.js';
import { DATA_TYPE_REPOSITORY_ALIAS } from '../../repository/manifests.js';
import { UmbCopyDataTypeEntityAction } from './copy.action.js';
import { ManifestTypes } from '@umbraco-cms/backoffice/extension-registry';

View File

@@ -1,4 +1,4 @@
import { DATA_TYPE_ENTITY_TYPE, DATA_TYPE_FOLDER_ENTITY_TYPE, DATA_TYPE_ROOT_ENTITY_TYPE } from '../../index.js';
import { DATA_TYPE_ENTITY_TYPE, DATA_TYPE_FOLDER_ENTITY_TYPE, DATA_TYPE_ROOT_ENTITY_TYPE } from '../../entities.js';
import { DATA_TYPE_REPOSITORY_ALIAS } from '../../repository/manifests.js';
import { UmbCreateDataTypeEntityAction } from './create.action.js';
import { ManifestTypes } from '@umbraco-cms/backoffice/extension-registry';

View File

@@ -1,4 +1,4 @@
import { DATA_TYPE_FOLDER_ENTITY_TYPE, DATA_TYPE_ENTITY_TYPE } from '../index.js';
import { DATA_TYPE_FOLDER_ENTITY_TYPE, DATA_TYPE_ENTITY_TYPE } from '../entities.js';
import { DATA_TYPE_REPOSITORY_ALIAS } from '../repository/manifests.js';
import { manifests as createManifests } from './create/manifests.js';
import { manifests as moveManifests } from './move/manifests.js';

View File

@@ -1,4 +1,4 @@
import { DATA_TYPE_ENTITY_TYPE } from '../../index.js';
import { DATA_TYPE_ENTITY_TYPE } from '../../entities.js';
import { DATA_TYPE_REPOSITORY_ALIAS } from '../../repository/manifests.js';
import { UmbMoveDataTypeEntityAction } from './move.action.js';
import { ManifestTypes } from '@umbraco-cms/backoffice/extension-registry';

View File

@@ -1,8 +1,5 @@
import './components/index.js';
export const DATA_TYPE_ROOT_ENTITY_TYPE = 'data-type-root';
export const DATA_TYPE_ENTITY_TYPE = 'data-type';
export const DATA_TYPE_FOLDER_ENTITY_TYPE = 'data-type-folder';
export type { UmbDataTypeModel } from './models.js';
export * from './entities.js';
export * from './repository/index.js';

View File

@@ -1,4 +1,4 @@
import { DATA_TYPE_ROOT_ENTITY_TYPE } from '../index.js';
import { DATA_TYPE_ROOT_ENTITY_TYPE } from '../entities.js';
import { UmbDataTypeTreeServerDataSource } from './sources/data-type.tree.server.data.js';
import { UmbDataTypeMoveServerDataSource } from './sources/data-type-move.server.data.js';
import { UmbDataTypeStore, UMB_DATA_TYPE_STORE_CONTEXT_TOKEN } from './data-type.store.js';