feat(frontend): système de plugins — runtime, menus, layouts custom (#43)
Lots F1-F4 : runtime de chargement/registre plugin, extension des menus existants, panneau de gestion des plugins, types de layout custom (sélecteur, fallback, cellule dédiée) branchés sur le port plugin. Suite npm typecheck/test verte (947/947). Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
This commit is contained in:
13
frontend/src/features/plugins/index.ts
Normal file
13
frontend/src/features/plugins/index.ts
Normal file
@ -0,0 +1,13 @@
|
||||
export { PluginRuntimeProvider, usePluginRuntime, type PluginRuntimeContextValue } from "./PluginRuntimeProvider";
|
||||
export { PluginsPanel } from "./PluginsPanel";
|
||||
export { usePlugins, type PluginsViewModel } from "./usePlugins";
|
||||
export { resolveMenuItems, resolveTopLevelMenus, type ResolvedTopLevelMenu } from "./menus";
|
||||
export { usePluginMenus, type UsePluginMenusResult } from "./usePluginMenus";
|
||||
export { resolvePluginLayoutAvailability } from "./layoutAvailability";
|
||||
export { PluginLayoutFallback } from "./PluginLayoutFallback";
|
||||
export { PluginLayoutCellView } from "./PluginLayoutCellView";
|
||||
export {
|
||||
PluginLayoutSelectorSection,
|
||||
listPluginLayoutChoices,
|
||||
type PluginLayoutChoice,
|
||||
} from "./PluginLayoutSelectorSection";
|
||||
Reference in New Issue
Block a user