2525 " customEditorOutline"
2626 ],
2727 "contributes" : {
28+ "submenus" : [
29+ {
30+ "id" : " designer.outline.editSubmenu" ,
31+ "label" : " Edit"
32+ },
33+ {
34+ "id" : " designer.outline.modifySubmenu" ,
35+ "label" : " Modify"
36+ },
37+ {
38+ "id" : " designer.outline.viewSubmenu" ,
39+ "label" : " View"
40+ }
41+ ],
2842 "menus" : {
2943 "editor/title" : [
3044 {
3953 "when" : " true" ,
4054 "group" : " navigation"
4155 }
56+ ],
57+ "customEditor/outline/toolbar" : [
58+ {
59+ "command" : " designer.outline.toggleLock" ,
60+ "group" : " inline" ,
61+ "when" : " true"
62+ },
63+ {
64+ "command" : " designer.outline.toggleHideInDesigner" ,
65+ "group" : " inline" ,
66+ "when" : " true"
67+ },
68+ {
69+ "command" : " designer.outline.toggleHideAtRuntime" ,
70+ "group" : " inline" ,
71+ "when" : " true"
72+ }
73+ ],
74+ "customEditor/outline/context" : [
75+ {
76+ "submenu" : " designer.outline.editSubmenu" ,
77+ "group" : " 1_edit"
78+ },
79+ {
80+ "submenu" : " designer.outline.modifySubmenu" ,
81+ "group" : " 2_modify"
82+ },
83+ {
84+ "submenu" : " designer.outline.viewSubmenu" ,
85+ "group" : " 3_view"
86+ },
87+ {
88+ "command" : " designer.outline.expandChildren" ,
89+ "group" : " 4_expandCollapse@1"
90+ },
91+ {
92+ "command" : " designer.outline.collapseChildren" ,
93+ "group" : " 4_expandCollapse@2"
94+ }
95+ ],
96+ "designer.outline.editSubmenu" : [
97+ {
98+ "command" : " designer.outline.copy" ,
99+ "group" : " 1_clipboard@1"
100+ },
101+ {
102+ "command" : " designer.outline.cut" ,
103+ "group" : " 1_clipboard@2"
104+ },
105+ {
106+ "command" : " designer.outline.paste" ,
107+ "group" : " 1_clipboard@3"
108+ },
109+ {
110+ "command" : " designer.outline.delete" ,
111+ "group" : " 2_delete@1"
112+ }
113+ ],
114+ "designer.outline.modifySubmenu" : [
115+ {
116+ "command" : " designer.outline.rotateLeft" ,
117+ "group" : " 1_rotate@1"
118+ },
119+ {
120+ "command" : " designer.outline.rotateRight" ,
121+ "group" : " 1_rotate@2"
122+ },
123+ {
124+ "command" : " designer.outline.toFront" ,
125+ "group" : " 2_order@1"
126+ },
127+ {
128+ "command" : " designer.outline.moveForward" ,
129+ "group" : " 2_order@2"
130+ },
131+ {
132+ "command" : " designer.outline.moveBackward" ,
133+ "group" : " 2_order@3"
134+ },
135+ {
136+ "command" : " designer.outline.toBack" ,
137+ "group" : " 2_order@4"
138+ }
139+ ],
140+ "designer.outline.viewSubmenu" : [
141+ {
142+ "command" : " designer.outline.moveTo" ,
143+ "group" : " 1_navigation@1"
144+ },
145+ {
146+ "command" : " designer.outline.jumpTo" ,
147+ "group" : " 1_navigation@2"
148+ }
42149 ]
43150 },
44151 "commands" : [
49156 "light" : " resources/light/editor.svg" ,
50157 "dark" : " resources/dark/editor.svg"
51158 }
159+ },
160+ {
161+ "command" : " designer.outline.toggleLock" ,
162+ "title" : " Toggle Lock" ,
163+ "icon" : " $(lock)"
164+ },
165+ {
166+ "command" : " designer.outline.toggleHideInDesigner" ,
167+ "title" : " Toggle Hide in Designer" ,
168+ "icon" : " $(eye)"
169+ },
170+ {
171+ "command" : " designer.outline.toggleHideAtRuntime" ,
172+ "title" : " Toggle Hide at Runtime" ,
173+ "icon" : " $(eye-closed)"
174+ },
175+ {
176+ "command" : " designer.outline.copy" ,
177+ "title" : " Copy"
178+ },
179+ {
180+ "command" : " designer.outline.cut" ,
181+ "title" : " Cut"
182+ },
183+ {
184+ "command" : " designer.outline.paste" ,
185+ "title" : " Paste"
186+ },
187+ {
188+ "command" : " designer.outline.delete" ,
189+ "title" : " Delete"
190+ },
191+ {
192+ "command" : " designer.outline.rotateLeft" ,
193+ "title" : " Rotate Left"
194+ },
195+ {
196+ "command" : " designer.outline.rotateRight" ,
197+ "title" : " Rotate Right"
198+ },
199+ {
200+ "command" : " designer.outline.toFront" ,
201+ "title" : " To Front"
202+ },
203+ {
204+ "command" : " designer.outline.moveForward" ,
205+ "title" : " Move Forward"
206+ },
207+ {
208+ "command" : " designer.outline.moveBackward" ,
209+ "title" : " Move Backward"
210+ },
211+ {
212+ "command" : " designer.outline.toBack" ,
213+ "title" : " To Back"
214+ },
215+ {
216+ "command" : " designer.outline.moveTo" ,
217+ "title" : " Move To"
218+ },
219+ {
220+ "command" : " designer.outline.jumpTo" ,
221+ "title" : " Jump To"
222+ },
223+ {
224+ "command" : " designer.outline.expandChildren" ,
225+ "title" : " Expand Children"
226+ },
227+ {
228+ "command" : " designer.outline.collapseChildren" ,
229+ "title" : " Collapse Children"
52230 }
53231 ],
54232 "customEditors" : [
119297 "es-module-shims" : " ^2.8.0" ,
120298 "typescript" : " ^5.8.3"
121299 }
122- }
300+ }
0 commit comments