npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@stylexjs/stylex

v0.6.1

Published

A library for defining styles for optimized user interfaces.

Downloads

42,104

Readme

@stylexjs/stylex

StyleX is a JavaScript library for defining styles for optimized user interfaces.

Installation

To start playing with StyleX without having to set up any build settings you can install just two packages:

npm install --save @stylexjs/stylex

Compiler

StyleX is designed to extract styles to a static CSS style sheet during an app's build process. StyleX provides a Babel plugin along with plugin integrations for Webpack, Rollup and NextJS.

npm install --save-dev @stylexjs/babel-plugin

For more information on working with the compiler, please see the documentation for @stylexjs/babel-plugin.

Runtime compiler

The runtime compiler should only be used for development and testing purposes.

npm install --save-dev @stylexjs/dev-runtime

Import @stylexjs/dev-runtime in your JS entry-point to set everything up.

import inject from '@stylexjs/dev-runtime';

if (process.env.NODE_ENV !== 'production') {
  inject({
    // configuration options
    classNamePrefix: 'x-',
    dev: true,
    test: false,
  });
}

For more information on working with the compiler, please see the documentation for @stylexjs/dev-runtime.

API

stylex.create()

Styles are defined as a map of CSS rules using stylex.create(). In the example below, there are 2 different CSS rules. The names "root" and "highlighted" are arbitrary names given to the rules.

import * as stylex from '@stylexjs/stylex';

const styles = stylex.create({
  root: {
    width: '100%',
    color: 'rgb(60,60,60)',
  },
  highlighted: {
    color: 'yellow',
  },
});

Pseudo-classes and Media Queries can be nested within style definitions:

import * as stylex from '@stylexjs/stylex';

const styles = stylex.create({
  root: {
    width: '100%',
    color: 'rgb(60,60,60)',
    maxWidth: {
      '@media (min-width: 800px)': '800px',
    },
  },
  highlighted: {
    color: 'yellow',
    opacity: {
      ':hover': '0.9',
    },
  },
});

The compiler will extract the rules to CSS and replace the rules in the source code with a "compiled style" object.

stylex.props()

Applying style rules to specific elements is done using stylex.props. Each argument to this function must be a reference to a compiled style object, or an array of compiled style objects. The function merges styles from left to right.

<div {...stylex.props(styles.root, styles.highlighted)} />

The stylex.props function returns React props as required to render an element. StyleX styles can still be passed to other components via props, but only the components rendering host platform elements will use stylex.props(). For example:

const styles = stylex.create({
  internalRoot: {
    padding: 10,
  },
  exportedRoot: {
    position: 'relative',
  },
});

function InternalComponent(props) {
  return (
    <div {...props} {...stylex.props(styles.internalRoot, props.style)} />
  );
}

export function ExportedComponent(props) {
  return <InternalComponent style={[styles.exportedRoot, props.style]} />;
}

Styles can be conditionally included using standard JavaScript.

<div {...stylex.props(styles.root, isHighlighted && styles.highlighted)} />

And the local merging of styles can be used to control the relative priority of rules. For example, to allow a component's local styles to take priority over style property values passed in via props.

<div {...stylex.props(props.style, styles.root)} />

stylex.firstThatWorks()

Defining fallback styles is done with stylex.firstThatWorks(). This is useful for engines that may not support a specific style property.

import * as stylex from '@stylexjs/stylex';

const styles = stylex.create({
  header: {
    position: stylex.firstThatWorks('sticky', '-webkit-sticky', 'fixed'),
  },
});

This is equivalent to defining CSS as follows:

.header {
  position: fixed;
  position: -webkit-sticky;
  position: sticky;
}

Types

StyleX comes with full support for Static Types.

StyleXStyles<>

The most common type you might need to use is StyleXStyles<>. This lets you accept an object of arbitrary StyleX styles.

type Props = {
  ...
  style?: StyleXStyles<>,
};

function MyComponent({style, ...}: Props) {
  return (
    <div {...stylex.props(localStyles.foo, localStyles.bar, style)} />
  );
}

StyleXStylesWithout<>

To disallow specific style properties, use the StyleXStylesWithout<> type.

type Props = {
  // ...
  style?: StyleXStylesWithout<{
    position: unknown;
    display: unknown;
  }>;
};

StaticStyles<>

To constrain the styles to specific properties and values, use the StaticStyles<> type. For example, if a component should accept marginTop but only accept one of 0, 4, or 8 pixels as values.

type Props = {
  ...
  style?: StaticStyles<{
    marginTop?: 0 | 4 | 8;
  }>,
};

How StyleX works

StyleX produces atomic styles, which means that each CSS rule contains only a single declaration and uses a unique class name. For example:

import * as stylex from '@stylexjs/stylex';

const styles = stylex.create({
  root: {
    width: '100%',
    color: 'red',
  }
}

From this code, StyleX will generate 2 classes. One for the width: '100%' declaration, and one for the color: 'red' declaration. If you use the declaration width: '100%' anywhere else in your application, it will reuse the same CSS class rather than creating a new one.

One of the benefits of this approach is that the generated CSS file grows logarithmically as you add new styled components to your app. As more style declarations are added to components, they are more likely to already be in use elsewhere in the app. As a result of this CSS optimization, the generated CSS style sheet for an app is usually small enough to be contained in a single file and used across routes, avoiding style recalculation and layout thrashing as users navigate through your app.