correct file names

This commit is contained in:
Mads Rasmussen
2023-12-07 21:06:43 +01:00
parent 680d318c5f
commit c843e10a35
5 changed files with 7 additions and 7 deletions

View File

@@ -1,9 +1,9 @@
export { UmbPartialViewTreeRepository } from './script-tree.repository.js'; export { UmbPartialViewTreeRepository } from './partial-view-tree.repository.js';
export { export {
UMB_PARTIAL_VIEW_TREE_REPOSITORY_ALIAS, UMB_PARTIAL_VIEW_TREE_REPOSITORY_ALIAS,
UMB_PARTIAL_VIEW_TREE_STORE_ALIAS, UMB_PARTIAL_VIEW_TREE_STORE_ALIAS,
UMB_PARTIAL_VIEW_TREE_ALIAS, UMB_PARTIAL_VIEW_TREE_ALIAS,
} from './manifests.js'; } from './manifests.js';
export { UMB_PARTIAL_VIEW_TREE_STORE_CONTEXT } from './script-tree.store.js'; export { UMB_PARTIAL_VIEW_TREE_STORE_CONTEXT } from './partial-view-tree.store.js';
export { type UmbPartialViewTreeStore } from './script-tree.store.js'; export { type UmbPartialViewTreeStore } from './partial-view-tree.store.js';
export * from './types.js'; export * from './types.js';

View File

@@ -1,6 +1,6 @@
import { UMB_PARTIAL_VIEW_ENTITY_TYPE, UMB_PARTIAL_VIEW_ROOT_ENTITY_TYPE } from '../entity.js'; import { UMB_PARTIAL_VIEW_ENTITY_TYPE, UMB_PARTIAL_VIEW_ROOT_ENTITY_TYPE } from '../entity.js';
import { UmbPartialViewTreeRepository } from './script-tree.repository.js'; import { UmbPartialViewTreeRepository } from './partial-view-tree.repository.js';
import { UmbPartialViewTreeStore } from './script-tree.store.js'; import { UmbPartialViewTreeStore } from './partial-view-tree.store.js';
import type { import type {
ManifestRepository, ManifestRepository,
ManifestTree, ManifestTree,

View File

@@ -1,7 +1,7 @@
import { UMB_PARTIAL_VIEW_ROOT_ENTITY_TYPE } from '../entity.js'; import { UMB_PARTIAL_VIEW_ROOT_ENTITY_TYPE } from '../entity.js';
import { UmbPartialViewTreeServerDataSource } from './script-tree.server.data-source.js'; import { UmbPartialViewTreeServerDataSource } from './partial-view-tree.server.data-source.js';
import { UmbPartialViewTreeItemModel, UmbPartialViewTreeRootModel } from './types.js'; import { UmbPartialViewTreeItemModel, UmbPartialViewTreeRootModel } from './types.js';
import { UMB_PARTIAL_VIEW_TREE_STORE_CONTEXT } from './script-tree.store.js'; import { UMB_PARTIAL_VIEW_TREE_STORE_CONTEXT } from './partial-view-tree.store.js';
import { UmbTreeRepositoryBase } from '@umbraco-cms/backoffice/tree'; import { UmbTreeRepositoryBase } from '@umbraco-cms/backoffice/tree';
import { type UmbControllerHost } from '@umbraco-cms/backoffice/controller-api'; import { type UmbControllerHost } from '@umbraco-cms/backoffice/controller-api';
import { UmbApi } from '@umbraco-cms/backoffice/extension-api'; import { UmbApi } from '@umbraco-cms/backoffice/extension-api';