File tree Expand file tree Collapse file tree 5 files changed +11
-3
lines changed
src/packages/core/content/workspace Expand file tree Collapse file tree 5 files changed +11
-3
lines changed Original file line number Diff line number Diff line change 1
1
export type * from './content-workspace-context.interface.js' ;
2
2
export * from './content-workspace.context-token.js' ;
3
+ export * from './views/edit/index.js' ;
Original file line number Diff line number Diff line change 1
- import { contentEditorManifest } from './views/edit/manifest .js' ;
1
+ import { manifests as contentEditorManifests } from './views/edit/manifests .js' ;
2
2
3
- export const manifests = [ contentEditorManifest ] ;
3
+ export const manifests = [ ... contentEditorManifests ] ;
Original file line number Diff line number Diff line change
1
+ import { manifest as hasPropertiesManifest } from './has-properties/content-has-properties.condition.manifest.js' ;
2
+
3
+ export const manifests = [ hasPropertiesManifest ] ;
Original file line number Diff line number Diff line change
1
+ export * from './conditions/has-properties/index.js' ;
Original file line number Diff line number Diff line change
1
+ import { manifests as conditionsManifests } from './conditions/manifests.js' ;
1
2
import type { UmbBackofficeManifestKind } from '@umbraco-cms/backoffice/extension-registry' ;
2
3
3
- export const contentEditorManifest : UmbBackofficeManifestKind = {
4
+ const contentEditorManifest : UmbBackofficeManifestKind = {
4
5
type : 'kind' ,
5
6
alias : 'Umb.Kind.WorkspaceView.ContentEditor' ,
6
7
matchKind : 'contentEditor' ,
@@ -17,3 +18,5 @@ export const contentEditorManifest: UmbBackofficeManifestKind = {
17
18
} ,
18
19
} ,
19
20
} ;
21
+
22
+ export const manifests = [ contentEditorManifest , ...conditionsManifests ] ;
You can’t perform that action at this time.
0 commit comments