![Maven Central Adds Sigstore Signature Validation](https://cdn.sanity.io/images/cgdhsj6q/production/7da3bc8a946cfb5df15d7fcf49767faedc72b483-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Maven Central Adds Sigstore Signature Validation
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.
@asyarb/goobed
Advanced tools
Very opinionated light abstractions for CSS-in-JS styling built on top of [`goober`](https://github.com/cristianbote/goober).
Very opinionated light abstractions for CSS-in-JS styling built
on top of goober
.
# Install package and required `goober` peer-dependency:
yarn install @asyarb/goobed goober
# If you plan on using <Box />, install the required `clsx` peer-dependency.
yarn install clsx
import { createSx } from '@asyarb/goobed';
const breakpoints = {
sm: '48rem',
md: '75rem',
};
const sx = createSx(breakpoints);
// Use it inline to create styles:
const Example = () => <div className={sx({ display: 'block' })} />;
// sx() just returns a valid className, so it's usage is straightforward:
const redClassName = sx({ color: 'red' });
const PlainClassExample = () => <div className={redColor} />;
// Define mobile-first, responsive styles with auto-complete for breakpoints:
const responsiveClassName = sx({ color: 'red', sm: { color: 'blue' } });
import { createBox } from '@asyarb/goobed';
const { Box, sx } = createBox(breakpoints); // => sx() is also available!
// <Box /> supports a convenience `sx` prop for styling:
const BoxSXExample = () => <Box sx={{ display: 'block' }} />;
// <Box /> supports polymorphism via the `as` prop with full TypeScript support:
const BoxAsExample = () => <Box as="img" src="..." sx={{ width: '300px' }} />;
const TypeSafetyExample = () => <Box as="a" loading="lazy" />; // => 'loading' is not a property of HTMLAnchorElement.
// <Box /> supports auto-completed responsive styling too:
const BoxResponsive = () => (
<Box sx={{ color: 'red', sm: { color: 'blue' } }} />
);
Creating components with sx
support can be done like the following:
import { BoxProps } from '@asyarb/goobed';
import { Box, breakpoints } from '../path/to/Box-And-Breakpoints';
// Define your component's props as a union of BoxProps.
type StackProps<T extends React.ElementType = 'div'> = BoxProps<
typeof breakpoints,
T
> & {
space: string;
};
// Extending React.ElementType is required for type-safe polymorphism.
const Stack = <T extends React.ElementType = 'div'>({
as,
sx,
space,
...props
}: StackProps<T>) => (
<Box
as={as as React.ElementType}
sx={{ display: 'flex', flexDirection: 'column', gap: space, ...sx }}
{...props}
/>
);
const Usage = () => <Stack space="1rem" />;
See goober
's documentation on
setting up SSR. For NextJS example, check their examples repo.
Goober (imo) provides a nice balance of performance, flexibility and performance size for css-in-js. This library just provides mostly type-level and responsive helpers for authoring styles without sacrificing run-time performance.
FAQs
Very opinionated light abstractions for CSS-in-JS styling built on top of [`goober`](https://github.com/cristianbote/goober).
We found that @asyarb/goobed demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.
Security News
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.