How to use styletron-core - 2 common examples

To help you get started, we’ve selected a few styletron-core examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github styletron / styletron / packages / styletron-client / src / index.js View on Github external
hydrateCacheFromCssString(css, media) {
    let decl;
    // {
    //  1: className,
    //  2: pseudo,
    //  3: block,
    // }
    while ((decl = DECL_REGEX.exec(css))) {
      super.incrementVirtualCount();
      StyletronCore.assignDecl(
        this.cache,
        {
          block: decl[3],
          pseudo: decl[2],
          media,
        },
        decl[1]
      );
    }
  }
github fluid-notion / minimal-web-clipper / src / js / Clipper.js View on Github external
async clip(target) {
        if (target.length === 0) {
            return;
        }
        this.styles = new StyletronCore();
        const selector = selectorQuery(target[0]);
        const clone = await this.visitNode(target);
        await downloadAsFile(this.buildFinalHTML(clone, selector));
    },

styletron-core

Universal, high-performance JavaScript styles

MIT
Latest version published 6 years ago

Package Health Score

53 / 100
Full package analysis

Popular styletron-core functions

Similar packages