File tree Expand file tree Collapse file tree 3 files changed +9
-2
lines changed
src/Umbraco.Web.UI.Client/src/packages/templating/partial-views Expand file tree Collapse file tree 3 files changed +9
-2
lines changed Original file line number Diff line number Diff line change 11export * from './entity-actions/constants.js' ;
2+ export * from './entity.js' ;
3+ export * from './menu/constants.js' ;
24export * from './repository/constants.js' ;
35export * from './tree/constants.js' ;
46export * from './workspace/constants.js' ;
5- export * from './entity.js' ;
Original file line number Diff line number Diff line change 1+ export const UMB_PARTIAL_VIEW_MENU_ITEM_ALIAS = 'Umb.MenuItem.PartialView' ;
Original file line number Diff line number Diff line change 11import { UMB_PARTIAL_VIEW_TREE_ALIAS } from '../tree/index.js' ;
2+ import { UMB_PARTIAL_VIEW_MENU_ITEM_ALIAS } from './constants.js' ;
23import { UMB_WORKSPACE_CONDITION_ALIAS } from '@umbraco-cms/backoffice/workspace' ;
34
45export const manifests : Array < UmbExtensionManifest > = [
56 {
67 type : 'menuItem' ,
78 kind : 'tree' ,
8- alias : 'Umb.MenuItem.PartialView' ,
9+ alias : UMB_PARTIAL_VIEW_MENU_ITEM_ALIAS ,
910 name : 'Partial View Menu Item' ,
1011 weight : 40 ,
1112 meta : {
@@ -16,9 +17,13 @@ export const manifests: Array<UmbExtensionManifest> = [
1617 } ,
1718 {
1819 type : 'workspaceContext' ,
20+ kind : 'menuStructure' ,
1921 name : 'Partial View Menu Structure Workspace Context' ,
2022 alias : 'Umb.Context.PartialView.Menu.Structure' ,
2123 api : ( ) => import ( './partial-view-menu-structure.context.js' ) ,
24+ meta : {
25+ menuItemAlias : UMB_PARTIAL_VIEW_MENU_ITEM_ALIAS ,
26+ } ,
2227 conditions : [
2328 {
2429 alias : UMB_WORKSPACE_CONDITION_ALIAS ,
You can’t perform that action at this time.
0 commit comments