feat(client/bundle): respect position for TSX widgets

This commit is contained in:
Elian Doran
2025-12-21 10:02:13 +02:00
parent f8bf301d12
commit f3f491d141
3 changed files with 19 additions and 8 deletions

View File

@@ -6,7 +6,8 @@ import RightPanelWidget from "../widgets/sidebar/RightPanelWidget";
export interface WidgetDefinition {
parent: "right-pane",
render: () => VNode
render: () => VNode,
position?: number,
}
export interface WidgetDefinitionWithType extends WidgetDefinition {