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 🙏

© 2026 – Pkg Stats / Ryan Hefner

@wix/builder-presets-polyfill-wrapper

v1.0.1

Published

Builder public package: presets polyfill React wrapper (CSR-only hosts)

Readme

@wix/builder-presets-polyfill-wrapper

A React wrapper component that polyfills CSS Container Style Queries for presets. It is designed to close the gap between browsers without native container style query support, ensuring consistent visual layouts.

Design & Browser Compatibility

Native CSS Container Style Queries (CSQ) are a powerful mechanism to style elements depending on custom property state on parent container elements. However, global browser support is not yet uniform.

This package provides a lightweight React wrapper (PresetsPolyfillWrapper) that:

  • Uses feature detection via supportsContainerStyleQueries() to determine if the client's browser natively supports CSS Container Style Queries.
  • If native support is present, the wrapper transparently returns a zero-overhead passthrough fragment (<>{children}</>).
  • If native support is missing, it dynamically applies a robust JS-based polyfill to emulate container style query behavior.

Implementation Details

1. Reusing Core Engine Logic

Rather than re-implementing CSS parser and selector evaluation logic, this package imports and wraps the proven, high-performance polyfill engine from @wix/builder-presets-polyfill (the same logic that powers native site viewer environments in Thunderbolt).

2. Preventing Visual Flashing (useLayoutEffect)

To avoid a visual flash of unstyled/un-polyfilled elements (FOUC) when a page mounts, the polyfill logic is initialized inside a React useLayoutEffect hook.

Because useLayoutEffect fires synchronously after all DOM mutations but before the browser paints the screen, the initial polyfill stamp occurs instantly. This guarantees that elements appear in their final, fully-styled state upon their very first visible paint.

3. Dynamic Maintenance (Observers)

To ensure that polyfilled presets remain synchronized and accurate during the lifecycle of the component, two observers are registered:

  • ResizeObserver (builderComponentPolyfillResizeObserver): Monitors component resize events and re-evaluates container style rules accordingly, maintaining accurate layouts on dimension changes.
  • MutationObserver (builderComponentPresetsPolyfillMutationObserver): Monitors the widget DOM subtree to detect late-mounted or dynamically injected child elements, polyfilling them on the fly.

Both observers are automatically disposed of during the cleanup phase of the hook to prevent any potential memory leaks.

Usage

import React from 'react'
import { createPresetsPolyfillWrapper } from '@wix/builder-presets-polyfill-wrapper'

const PresetsPolyfillWrapper = createPresetsPolyfillWrapper(
  widgetRootId,
  presetsPolyfillConfig
)

export default function MyWidget({ children }) {
  return (
    <PresetsPolyfillWrapper>
      {children}
    </PresetsPolyfillWrapper>
  )
}