Files
jitsi-meet/react/features/custom-panel/components/web/CustomPanelContent.tsx
Hristo Terezov e672aaa35a feat(custom-panel): add resizable panel width with drag handle and persistence
Allow users to resize the custom panel by dragging a handle on its left
edge, matching the chat panel's resize UX. The panel width is persisted
via PersistenceRegistry so it survives page reloads.

Architectural changes:
- Split CustomPanel into container (resize/close) + CustomPanelContent (branding override)
- Split functions.ts into core functions + functions.custom.ts (branding override)
- Split middleware.web.ts into orchestrator + middleware.custom.web.ts (branding override)
- Chat max size now accounts for custom panel width for mutual awareness

	test-localStorage1.html
2026-03-30 13:36:29 -05:00

12 lines
302 B
TypeScript

/**
* Custom panel content placeholder component.
* This file is overridden by jitsi-meet-branding at build time
* to provide the actual panel content (e.g. iframe).
*
* @returns {null} This placeholder renders nothing.
*/
export default function CustomPanelContent(): null {
return null;
}