Files
bknd/app/src/ui/index.ts
dswbx 560379bd89 docs: added basic Admin UI configuration documentation
Added a new `BkndAdminConfig` type to streamline Admin UI configuration options, consolidating properties for base path, logo return path, theme, entities, and app shell settings. Updated `BkndAdminProps` to utilize this new configuration type. Additionally, introduced a new documentation section for extending the Admin UI, detailing customization options and providing examples for advanced usage.
2025-09-25 10:45:10 +02:00

13 lines
581 B
TypeScript

export { default as Admin, type BkndAdminProps, type BkndAdminConfig } from "./Admin";
export * from "./components/form/json-schema-form";
export { JsonViewer } from "./components/code/JsonViewer";
export type * from "./options";
// bknd admin ui
export { Button } from "./components/buttons/Button";
export { IconButton } from "./components/buttons/IconButton";
export * as Formy from "./components/form/Formy";
export * as AppShell from "./layouts/AppShell/AppShell";
export { Logo } from "./components/display/Logo";
export * as Form from "./components/form/json-schema-form";