web/lib/opal/README.md
A Typescript component library for Onyx.
import { Button } from "@opal/components";
function MyComponent() {
return <Button onClick={() => console.log("Clicked!")}>Click me</Button>;
}
Opal is built in such a way that it reuses the /web/node_modules directory.
Therefore, builds don't incur duplicate space-costs (i.e., what would have happened if Opal had its own node_modules).
If you want to add dependencies to Opal, define that dependency inside of /web/lib/opal/package.json under peerDependencies.
Then, go to /web and run the install:
npm i
# Or, if you prefer `bun`
bun i
Those dependencies will then install inside of /web/node_modules and be available to Opal.
/web/lib/opal/
├── src/
│ ├── core/ # Low-level primitives (Interactive, Hoverable)
│ ├── components/ # High-level React components (Button, SelectButton, OpenButton, Tag)
│ ├── layouts/ # Layout primitives (Content, ContentAction, IllustrationContent)
│ └── index.ts # Main export file
├── package.json
├── tsconfig.json
└── README.md
select-button/, open-button/, content-action/)components.tsx, styles.css (if needed), and README.md@opal/ path aliases (e.g. @opal/components, @opal/core)