do the exporting dance
This commit is contained in:
@@ -1,2 +1,3 @@
|
||||
export type * from './content-workspace-context.interface.js';
|
||||
export * from './content-workspace.context-token.js';
|
||||
export * from './views/edit/index.js';
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
import { contentEditorManifest } from './views/edit/manifest.js';
|
||||
import { manifests as contentEditorManifests } from './views/edit/manifests.js';
|
||||
|
||||
export const manifests = [contentEditorManifest];
|
||||
export const manifests = [...contentEditorManifests];
|
||||
|
||||
@@ -0,0 +1,3 @@
|
||||
import { manifest as hasPropertiesManifest } from './has-properties/content-has-properties.condition.manifest.js';
|
||||
|
||||
export const manifests = [hasPropertiesManifest];
|
||||
@@ -0,0 +1 @@
|
||||
export * from './conditions/has-properties/index.js';
|
||||
@@ -1,6 +1,7 @@
|
||||
import { manifests as conditionsManifests } from './conditions/manifests.js';
|
||||
import type { UmbBackofficeManifestKind } from '@umbraco-cms/backoffice/extension-registry';
|
||||
|
||||
export const contentEditorManifest: UmbBackofficeManifestKind = {
|
||||
const contentEditorManifest: UmbBackofficeManifestKind = {
|
||||
type: 'kind',
|
||||
alias: 'Umb.Kind.WorkspaceView.ContentEditor',
|
||||
matchKind: 'contentEditor',
|
||||
@@ -17,3 +18,5 @@ export const contentEditorManifest: UmbBackofficeManifestKind = {
|
||||
},
|
||||
},
|
||||
};
|
||||
|
||||
export const manifests = [contentEditorManifest, ...conditionsManifests];
|
||||
Reference in New Issue
Block a user