![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
@onbeam/styled-system
Advanced tools
Install the packages using your preferred package manager:
pnpm add @onbeam/styled-system@latest
pnpm add @pandacss/dev@latest --save-dev
To keep all @onbeam
packages updated, you can use the CLI:
npx @onbeam/cli update -d [directory]
Due to the component styles building just-in-time, you need to install and configure PandaCSS. This means that only the styles for the components you use will be generated, nothing more. When you decide to utilize PandaCSS in your own project, you will be able to use all design tokens and PandaCSS will combine the UI styles with your project styles before compiling the output.
Create a panda.config.ts
file in the root of your application and paste this snippet in there:
import { defineBeamUiConfig } from "@onbeam/styled-system/config";
export default defineBeamUiConfig({
include: [
"./node_modules/@onbeam/ui/dist/panda.buildinfo.json", // Only add this when you're using the @onbeam/ui package
// TODO: Configure this line to target your own files that utilize the component library and PandaCSS
"./src/**/*.{ts,tsx}",
],
});
Run npx panda init --postcss
. This will create a postcss.config.cjs
file in the root of your application with the following code:
module.exports = {
plugins: {
"@pandacss/dev/postcss": {},
},
};
To enable the styles, create a global CSS file, for example named "globals.css
" and paste the following snippet in there:
/* When adding libraries that could overwrite our styles, make sure to use css layers: */
/* https://panda-css.com/docs/overview/faq#how-can-i-prevent-other-libraries-from-overriding-my-styles */
@layer reset, base, tokens, recipes, utilities;
body {
font-family: var(--beam-fonts-main);
color: var(--beam-colors-mono-100);
}
/* TODO: These are all fonts used in the @onbeam/ui components, only add them if you are using @onbeam/ui. Add all your used fonts here */
@font-face {
font-family: "Suisse Intl";
font-style: normal;
font-display: swap;
font-weight: 400;
src: url("../node_modules/@onbeam/ui/dist/fonts/SuisseIntl-Regular.otf");
}
@font-face {
font-family: "Suisse Intl";
font-style: normal;
font-display: swap;
font-weight: 500;
src: url("../node_modules/@onbeam/ui/dist/fonts/SuisseIntl-Book.otf");
}
/* TODO: Remove this if you're not using the `ObjectTree` component */
@font-face {
font-family: "JetBrains Mono";
font-style: normal;
font-display: swap;
font-weight: 400;
src: url("../node_modules/@onbeam/ui/dist/fonts/JetBrainsMono-Regular.ttf");
}
In the root of your project code, for example layout.tsx
or _app.tsx
, import your created css file:
import "./globals.css";
To build the PandaCSS code, add the panda codegen
command to your package.json
's build script. For example:
"scripts": {
"build": "panda codegen && next build",
},
import { cx, css } from "@onbeam/styled-system/css";
const Component = ({ className }) => (
<div
className={cx(
css({ w: "full", mx: "4", background: "mono.1000" }),
className
)}
>
...
</div>
);
import { flex } from "@onbeam/styled-system/patterns";
const Component = ({ className }) => (
<div className={flex({ align: "center" })}>...</div>
);
import { token } from "@onbeam/styled-system/tokens";
const Component = ({ className }) => (
<SomeIcon fill={token("colors.mono.300")} />
);
@onbeam
packagesThat's it! Happy coding! 🌈
FAQs
## Table of Contents
We found that @onbeam/styled-system demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 6 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.