mirror of
https://github.com/shishantbiswas/bknd.git
synced 2026-03-16 04:27:21 +00:00
Enhanced `FieldLabel` to support tooltips and additional props. Refactored form field components for better customizability and ensured compatibility with new `CustomField`. Updated `onChange` handlers to include context for improved flexibility. Added exports for UI components.
12 lines
527 B
TypeScript
12 lines
527 B
TypeScript
export { default as Admin, type BkndAdminProps } from "./Admin";
|
|
export * from "./components/form/json-schema-form";
|
|
export { JsonViewer } from "./components/code/JsonViewer";
|
|
|
|
// 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";
|