summaryrefslogtreecommitdiffhomepage
path: root/src/features/views/index.ts
blob: c4e7f25e5f4c325231c72cdbf29eb09c89c4b23c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
export {
	addPanel,
	initialPanels,
	type PanelsState,
	removePanel,
	selectKind,
	type ViewPanel,
} from "./logic/panels";
export { default as ViewSidebar } from "./ui/ViewSidebar.svelte";

/** Public module manifest — aggregated by the shell's "Loaded Modules" view. */
export const manifest = {
	name: "views",
	description: "Sidebar view panels (dropdown picker + add / remove)",
} as const;