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

@wordpress/style-engine

v1.39.0

Published

A suite of parsers and compilers for WordPress styles.

Downloads

267,280

Readme

Style Engine

The Style Engine aims to provide a consistent API for rendering styling for blocks across both client-side and server-side applications.

Initially, it will offer a single, centralized agent responsible for generating block styles, and, in later phases, it will also assume the responsibility of processing and rendering optimized frontend CSS.

Please note

This package is new as of WordPress 6.1 and therefore in its infancy.

Upcoming tasks on the roadmap include, but are not limited to, the following:

  • Consolidate global and block style rendering and enqueuing (ongoing)
  • Explore pre-render CSS rule processing with the intention of deduplicating other common and/or repetitive block styles. (ongoing)
  • Extend the scope of semantic class names and/or design token expression, and encapsulate rules into stable utility classes.
  • Explore pre-render CSS rule processing with the intention of deduplicating other common and/or repetitive block styles.
  • Propose a way to control hierarchy and specificity, and make the style hierarchy cascade accessible and predictable. This might include preparing for CSS cascade layers until they become more widely supported, and allowing for opt-in support in Gutenberg via theme.json.
  • Refactor all blocks to consistently use the "style" attribute for all customizations, that is, deprecate preset-specific attributes such as attributes.fontSize.

For more information about the roadmap, please refer to Block editor styles: initiatives and goals and the Github project board.

If you're making changes or additions to the Style Engine, please take a moment to read the notes on contributing.

Backend API

wp_style_engine_get_styles()

Global public function to generate styles from a single style object, e.g., the value of a block's attributes.style object or the top level styles in theme.json.

See also Using the Style Engine to generate block supports styles.

Parameters

  • $block_styles array A block's attributes.style object or the top level styles in theme.json
  • $options array<string|boolean> An array of options to determine the output.
    • context string An identifier describing the origin of the style object, e.g., 'block-supports' or 'global-styles'. Default is 'block-supports'. When both context and selector are set, the Style Engine will store the CSS rules using the context as a key.
    • convert_vars_to_classnames boolean Whether to skip converting CSS var:? values to var( --wp--preset--* ) values. Default is false.
    • selector string When a selector is passed, generate() will return a full CSS rule $selector { ...rules }, otherwise a concatenated string of properties and values.

Returns array<string|array>|null

array(
    'css'           => (string) A CSS ruleset or declarations block formatted to be placed in an HTML `style` attribute or tag.
    'declarations'  => (array) An array of property/value pairs representing parsed CSS declarations.
    'classnames'    => (string) Classnames separated by a space.
);

It will return compiled CSS declarations for inline styles, or, where a selector is provided, a complete CSS rule.

To enqueue a style for rendering in the site's frontend, the $options array requires the following:

  1. selector (string) - this is the CSS selector for your block style CSS declarations.
  2. context (string) - this tells the Style Engine where to store the styles. Styles in the same context will be stored together.

wp_style_engine_get_styles will return the compiled CSS and CSS declarations array.

Usage

As mentioned, wp_style_engine_get_styles() is useful whenever you wish to generate CSS and/or classnames from a block's style object. A good example is using the Style Engine to generate block supports styles.

In the following snippet, we're taking the style object from a block's attributes and passing it to the Style Engine to get the styles. By passing a context in the options, the Style Engine will store the styles for later retrieval, for example, should you wish to batch enqueue a set of CSS rules.

$block_attributes =  array(
     'style' => array(
        'spacing' => array( 'padding' => '100px' ),
     ),
);

$styles = wp_style_engine_get_styles(
    $block_attributes['style'],
    array(
        'selector' => '.a-selector',
        'context'  => 'block-supports',
    )
);
print_r( $styles );

/*
array(
    'css'          => '.a-selector{padding:100px}'
    'declarations' => array( 'padding' => '100px' )
)
*/

wp_style_engine_get_stylesheet_from_css_rules()

Use this function to compile and return a stylesheet for any CSS rules. The Style Engine will automatically merge declarations and combine selectors.

This function acts as a CSS compiler, but will also register the styles in a store where a context string is passed in the options.

Parameters

  • $css_rules array<array>
  • $options array<string|bool> An array of options to determine the output.
    • context string An identifier describing the origin of the style object, e.g., 'block-supports' or 'global-styles'. Default is 'block-supports'. When set, the Style Engine will attempt to store the CSS rules.
    • prettify bool Whether to add new lines and indents to output. Default is to inherit the value of the global constant SCRIPT_DEBUG, if it is defined.
    • optimize bool Whether to optimize the CSS output, e.g., combine rules. Default is false.

Returns string A compiled CSS string based on $css_rules.

Usage

Useful for when you wish to compile a bespoke set of CSS rules from a series of selector + declaration items.

The Style Engine will return a sanitized stylesheet. By passing a context identifier in the options, the Style Engine will store the styles for later retrieval, for example, should you wish to batch enqueue a set of CSS rules.

You can call wp_style_engine_get_stylesheet_from_css_rules() multiple times, and, so long as your styles use the same context identifier, they will be stored together.

$styles = array(
    array(
        'selector'     => '.wp-pumpkin',
        'declarations' => array( 'color' => 'orange' )
    ),
    array(
        'selector'     => '.wp-tomato',
        'declarations' => array( 'color' => 'red' )
    ),
    array(
        'selector'     => '.wp-tomato',
        'declarations' => array( 'padding' => '100px' )
    ),
);

$stylesheet = wp_style_engine_get_stylesheet_from_css_rules(
    $styles,
    array(
        'context' => 'block-supports', // Indicates that these styles should be stored with block supports CSS.
    )
);
print_r( $stylesheet ); // .wp-pumpkin{color:orange}.wp-tomato{color:red;padding:100px}

It's also possible to build simple, nested CSS rules using the rules_group key.

$styles = array(
    array(
        'rules_group'  => '@media (min-width: 80rem)',
        'selector'     => '.wp-carrot',
        'declarations' => array( 'color' => 'orange' )
    ),
    array(
        'rules_group'  => '@media (min-width: 80rem)',
        'selector'     => '.wp-tomato',
        'declarations' => array( 'color' => 'red' )
    ),
);

$stylesheet = wp_style_engine_get_stylesheet_from_css_rules(
    $styles,
    array(
        'context' => 'block-supports', // Indicates that these styles should be stored with block supports CSS.
    )
);
print_r( $stylesheet ); // @media (min-width: 80rem){.wp-carrot{color:orange}}@media (min-width: 80rem){.wp-tomato{color:red;}}

wp_style_engine_get_stylesheet_from_context()

Returns compiled CSS from a stored context, if found.

Parameters

  • $store_name string An identifier describing the origin of the style object, e.g., 'block-supports' or ' global-styles'. Default is 'block-supports'.
  • $options array<bool> An array of options to determine the output.
    • prettify bool Whether to add new lines and indents to output. Default is to inherit the value of the global constant SCRIPT_DEBUG, if it is defined.
    • optimize bool Whether to optimize the CSS output, e.g., combine rules. Default is false.

Returns string A compiled CSS string from the stored CSS rules.

Usage

Use this function to generate a stylesheet using all the styles stored under a specific context identifier.

A use case would be when you wish to enqueue all stored styles for rendering to the frontend. The Style Engine will merge and deduplicate styles upon retrieval.

// First, let's gather and register our styles.
$styles = array(
    array(
        'selector'     => '.wp-apple',
        'declarations' => array( 'color' => 'green' )
    ),
);

wp_style_engine_get_stylesheet_from_css_rules(
    $styles,
    array(
        'context' => 'fruit-styles',
    )
);

// Later, we fetch compiled rules from context store.
$stylesheet = wp_style_engine_get_stylesheet_from_context( 'fruit-styles' );

print_r( $stylesheet ); // .wp-apple{color:green;}

if ( ! empty( $stylesheet ) ) {
    wp_register_style( 'my-stylesheet', false, array(), true, true );
    wp_add_inline_style( 'my-stylesheet', $stylesheet );
    wp_enqueue_style( 'my-stylesheet' );
}

Installation (JS only)

Install the module

npm install @wordpress/style-engine --save

This package assumes that your code will run in an ES2015+ environment. If you're using an environment that has limited or no support for such language features and APIs, you should include the polyfill shipped in @wordpress/babel-preset-default in your code.

Usage

compileCSS

Generates a stylesheet for a given style object and selector.

Parameters

  • style Style: Style object, for example, the value of a block's attributes.style object or the top level styles in theme.json
  • options StyleOptions: Options object with settings to adjust how the styles are generated.

Returns

  • string: A generated stylesheet or inline style declarations.

Changelog

6.1.0 Introduced in WordPress core.

getCSSRules

Returns a JSON representation of the generated CSS rules.

Parameters

  • style Style: Style object, for example, the value of a block's attributes.style object or the top level styles in theme.json
  • options StyleOptions: Options object with settings to adjust how the styles are generated.

Returns

  • GeneratedCSSRule[]: A collection of objects containing the selector, if any, the CSS property key (camelcase) and parsed CSS value.

Changelog

6.1.0 Introduced in WordPress core.

Glossary

A guide to the terms and variable names referenced by the Style Engine package.