remove exports from core/index
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
import { UMB_DEFAULT_COLLECTION_CONTEXT } from '../default/collection-default.context.js';
|
||||
import type { MetaEntityBulkAction, ManifestEntityBulkAction } from '../../index.js';
|
||||
import type { ManifestEntityBulkAction, MetaEntityBulkAction } from '../../extension-registry/models/index.js';
|
||||
import type { UmbActionExecutedEvent } from '@umbraco-cms/backoffice/event';
|
||||
import { UmbTextStyles } from '@umbraco-cms/backoffice/style';
|
||||
import { css, html, nothing, customElement, state } from '@umbraco-cms/backoffice/external/lit';
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
import type { UmbTreeItemContext, UmbTreeItemModelBase } from '../../index.js';
|
||||
import type { UmbTreeItemModelBase } from '../../tree/types.js';
|
||||
import type { UmbTreeItemContext } from '../../tree/tree-item/index.js';
|
||||
import type { UmbControllerHostElement } from '@umbraco-cms/backoffice/controller-api';
|
||||
import type { ManifestElementAndApi } from '@umbraco-cms/backoffice/extension-api';
|
||||
|
||||
|
||||
@@ -5,30 +5,6 @@ import { UmbNotificationContext } from '@umbraco-cms/backoffice/notification';
|
||||
import { UmbModalManagerContext } from '@umbraco-cms/backoffice/modal';
|
||||
import { UmbExtensionsApiInitializer, type UmbEntryPointOnInit } from '@umbraco-cms/backoffice/extension-api';
|
||||
|
||||
export * from './collection/index.js';
|
||||
export * from './localization/index.js';
|
||||
export * from './action/index.js';
|
||||
export * from './components/index.js';
|
||||
export * from './content-type/index.js';
|
||||
export * from './debug/index.js';
|
||||
export * from './entity-action/index.js';
|
||||
export * from './entity-bulk-action/index.js';
|
||||
export * from './extension-registry/index.js';
|
||||
export * from './id/index.js';
|
||||
export * from './menu/index.js';
|
||||
export * from './modal/index.js';
|
||||
export * from './notification/index.js';
|
||||
export * from './picker-input/index.js';
|
||||
export * from './property-action/index.js';
|
||||
export * from './property-editor/index.js';
|
||||
export * from './section/index.js';
|
||||
export * from './store/index.js';
|
||||
export * from './tree/index.js';
|
||||
export * from './variant/index.js';
|
||||
export * from './workspace/index.js';
|
||||
export * from './culture/index.js';
|
||||
export * from './temporary-file/index.js';
|
||||
|
||||
export const onInit: UmbEntryPointOnInit = (host, extensionRegistry) => {
|
||||
new UmbExtensionsApiInitializer(host, extensionRegistry, 'globalContext', [host]);
|
||||
new UmbExtensionsApiInitializer(host, extensionRegistry, 'store', [host]);
|
||||
|
||||
@@ -17,19 +17,19 @@ import { manifests as workspaceManifests } from './workspace/manifests.js';
|
||||
import type { ManifestTypes, UmbBackofficeManifestKind } from './extension-registry/index.js';
|
||||
|
||||
export const manifests: Array<ManifestTypes | UmbBackofficeManifestKind> = [
|
||||
...collectionManifests,
|
||||
...cultureManifests,
|
||||
...contentTypeManifests,
|
||||
...debugManifests,
|
||||
...entityActionManifests,
|
||||
...extensionManifests,
|
||||
...cultureManifests,
|
||||
...localizationManifests,
|
||||
...modalManifests,
|
||||
...propertyActionManifests,
|
||||
...propertyEditorManifests,
|
||||
...sectionManifests,
|
||||
...settingsManifests,
|
||||
...themeManifests,
|
||||
...sectionManifests,
|
||||
...treeManifests,
|
||||
...collectionManifests,
|
||||
...workspaceManifests,
|
||||
...contentTypeManifests,
|
||||
...propertyEditorManifests,
|
||||
...settingsManifests,
|
||||
...modalManifests,
|
||||
...entityActionManifests,
|
||||
...propertyActionManifests,
|
||||
...debugManifests,
|
||||
];
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
import type { UmbWorkspaceAction } from '../../../../index.js';
|
||||
import { UmbActionExecutedEvent } from '@umbraco-cms/backoffice/event';
|
||||
import { html, customElement, property, state } from '@umbraco-cms/backoffice/external/lit';
|
||||
import type { UUIButtonState } from '@umbraco-cms/backoffice/external/uui';
|
||||
import { UmbLitElement } from '@umbraco-cms/backoffice/lit-element';
|
||||
import type { UmbWorkspaceAction } from '@umbraco-cms/backoffice/workspace';
|
||||
import type {
|
||||
ManifestWorkspaceAction,
|
||||
MetaWorkspaceActionDefaultKind,
|
||||
|
||||
Reference in New Issue
Block a user