Skip to content

fix(deps): update dependency @vanilla-extract/css to v1.17.2#35

Open
renovate[bot] wants to merge 1 commit intomainfrom
renovate/vanilla-extract-css-1.x-lockfile
Open

fix(deps): update dependency @vanilla-extract/css to v1.17.2#35
renovate[bot] wants to merge 1 commit intomainfrom
renovate/vanilla-extract-css-1.x-lockfile

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate bot commented Jan 27, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@vanilla-extract/css (source) 1.14.0 -> 1.17.2 age adoption passing confidence

Release Notes

vanilla-extract-css/vanilla-extract (@​vanilla-extract/css)

v1.17.2

Compare Source

Patch Changes

v1.17.1

Compare Source

Patch Changes

v1.17.0

Compare Source

Minor Changes
  • #​1092 fd673f6 Thanks @​z4o4z! - keyframes: Add support for a vars property to steps within keyframes declarations

    Example usage:

    import {
      createVar,
      keyframes
    } from '@​vanilla-extract/css';
    
    const angle = createVar({
      syntax: '<angle>',
      inherits: false,
      initialValue: '0deg'
    });
    
    export const angleKeyframes = keyframes({
      '0%': {
        vars: {
          [angle]: '0deg'
        }
      },
      '100%': {
        vars: {
          [angle]: '360deg'
        }
      }
    });
  • #​1512 4abfc0b Thanks @​askoufis! - createTheme, createGlobalTheme: Add support for assigning themes to a layer

    Themes can now be assigned to a layer by name using the @layer key at the top-level of the theme definition.

    EXAMPLE USAGE:

    // themes.css.ts
    import {
      createTheme,
      createGlobalTheme,
      layer
    } from '@&#8203;vanilla-extract/css';
    
    export const themeLayer = layer();
    
    export const [themeA, vars] = createTheme({
      '@&#8203;layer': themeLayer,
      color: {
        brand: 'blue'
      },
      font: {
        body: 'arial'
      }
    });
    
    export const vars2 = createGlobalTheme(':root', {
      '@&#8203;layer': themeLayer,
      space: {
        small: '10px',
        large: '20px'
      }
    });

    This will generate the following CSS:

    @&#8203;layer themes_themeLayer__1k6oxph0;
    @&#8203;layer themes_themeLayer__1k6oxph0 {
      .themes_themeA__1k6oxph1 {
        --color-brand__1k6oxph2: blue;
        --font-body__1k6oxph3: arial;
      }
    
      :root {
        --space-small__z05zdf1: 10px;
        --space-large__z05zdf2: 20px;
      }
    }
  • #​1092 fd673f6 Thanks @​z4o4z! - createVar: Add support for defining [@property][@​property] rules

    Example usage:

    import { createVar } from '@&#8203;vanilla-extract/css';
    
    export const myVar = createVar({
      syntax: '<number>',
      inherits: false,
      initialValue: '0.5'
    });

    This will generate the following CSS:

    @&#8203;property --myVar__jteyb14 {
      syntax: '<number>';
      inherits: false;
      initial-value: 0.5;
    }

v1.16.1

Compare Source

Patch Changes
  • #​1505 103ce57 Thanks @​askoufis! - Fixes a bug that caused invalid selectors to be generated when adjacent classnames contained a substring equal to another local classname

v1.16.0

Compare Source

Minor Changes
  • #​1475 cd9d8b2 Thanks @​corradopetrelli! - Add ::-webkit-calendar-picker-indicator as a valid pseudo-element

  • #​1450 7b256d2 Thanks @​wuz! - Add createViewTransition API

    createViewTransition creates a single scoped view transition name for use with CSS View Transitions. This avoids potential naming collisions with other view transitions.

    import {
      style,
      createViewTransition
    } from '@&#8203;vanilla-extract/css';
    
    export const titleViewTransition = createViewTransition();
    
    export const pageTitle = style({
      viewTransitionName: titleViewTransition
    });

v1.15.5

Compare Source

Patch Changes

v1.15.4

Compare Source

Patch Changes

v1.15.3

Compare Source

Patch Changes

v1.15.2

Compare Source

Patch Changes

v1.15.1

Compare Source

Patch Changes

v1.15.0

Compare Source

Minor Changes
  • #​1379 df9fe3ee3fc0057bc14a2333a405f8229f80c214 Thanks @​ronci! - Add support for passing multiple font face rules to globalFontFace

    EXAMPLE USAGE:

    const gentium = 'GlobalGentium';
    
    globalFontFace(gentium, [
      {
        src: 'local("Gentium")',
        fontWeight: 'normal'
      },
      {
        src: 'local("Gentium Bold")',
        fontWeight: 'bold'
      }
    ]);

v1.14.2

Compare Source

Patch Changes

v1.14.1

Compare Source

Patch Changes

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@vercel
Copy link
Copy Markdown

vercel bot commented Jan 27, 2024

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
custodians-dapp ✅ Ready (Inspect) Visit Preview 💬 Add feedback Jan 27, 2024 0:50am

@renovate renovate bot changed the title fix(deps): update dependency @vanilla-extract/css to v1.14.1 fix(deps): update dependency @vanilla-extract/css to v1.14.2 Mar 29, 2024
@renovate
Copy link
Copy Markdown
Contributor Author

renovate bot commented Mar 29, 2024

⚠ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: yarn.lock
/opt/containerbase/tools/corepack/0.28.0/18.16.1/node_modules/corepack/dist/lib/corepack.cjs:23250
  const isURL = URL.canParse(range);
                    ^

TypeError: URL.canParse is not a function
    at parseSpec (/opt/containerbase/tools/corepack/0.28.0/18.16.1/node_modules/corepack/dist/lib/corepack.cjs:23250:21)
    at loadSpec (/opt/containerbase/tools/corepack/0.28.0/18.16.1/node_modules/corepack/dist/lib/corepack.cjs:23313:11)
    at async Engine.findProjectSpec (/opt/containerbase/tools/corepack/0.28.0/18.16.1/node_modules/corepack/dist/lib/corepack.cjs:23487:22)
    at async Engine.executePackageManagerRequest (/opt/containerbase/tools/corepack/0.28.0/18.16.1/node_modules/corepack/dist/lib/corepack.cjs:23539:24)
    at async Object.runMain (/opt/containerbase/tools/corepack/0.28.0/18.16.1/node_modules/corepack/dist/lib/corepack.cjs:24232:5)

Node.js v18.16.1

@renovate renovate bot changed the title fix(deps): update dependency @vanilla-extract/css to v1.14.2 fix(deps): update dependency @vanilla-extract/css to v1.15.0 Apr 29, 2024
@renovate renovate bot changed the title fix(deps): update dependency @vanilla-extract/css to v1.15.0 fix(deps): update dependency @vanilla-extract/css to v1.15.1 Apr 29, 2024
@renovate renovate bot changed the title fix(deps): update dependency @vanilla-extract/css to v1.15.1 fix(deps): update dependency @vanilla-extract/css to v1.15.2 May 22, 2024
@renovate
Copy link
Copy Markdown
Contributor Author

renovate bot commented May 22, 2024

⚠️ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: yarn.lock
/opt/containerbase/tools/corepack/0.32.0/18.16.1/node_modules/corepack/dist/lib/corepack.cjs:22546
  const isURL = URL.canParse(range);
                    ^

TypeError: URL.canParse is not a function
    at parseSpec (/opt/containerbase/tools/corepack/0.32.0/18.16.1/node_modules/corepack/dist/lib/corepack.cjs:22546:21)
    at Object.getSpec (/opt/containerbase/tools/corepack/0.32.0/18.16.1/node_modules/corepack/dist/lib/corepack.cjs:22695:20)
    at Engine.findProjectSpec (/opt/containerbase/tools/corepack/0.32.0/18.16.1/node_modules/corepack/dist/lib/corepack.cjs:22913:31)
    at async Engine.executePackageManagerRequest (/opt/containerbase/tools/corepack/0.32.0/18.16.1/node_modules/corepack/dist/lib/corepack.cjs:22952:24)
    at async Object.runMain (/opt/containerbase/tools/corepack/0.32.0/18.16.1/node_modules/corepack/dist/lib/corepack.cjs:23648:7)

Node.js v18.16.1

@renovate renovate bot changed the title fix(deps): update dependency @vanilla-extract/css to v1.15.2 fix(deps): update dependency @vanilla-extract/css to v1.15.3 Jun 14, 2024
@renovate renovate bot changed the title fix(deps): update dependency @vanilla-extract/css to v1.15.3 fix(deps): update dependency @vanilla-extract/css to v1.15.4 Aug 20, 2024
@renovate renovate bot changed the title fix(deps): update dependency @vanilla-extract/css to v1.15.4 fix(deps): update dependency @vanilla-extract/css to v1.15.5 Aug 21, 2024
@renovate renovate bot changed the title fix(deps): update dependency @vanilla-extract/css to v1.15.5 fix(deps): update dependency @vanilla-extract/css to v1.16.0 Oct 1, 2024
@renovate renovate bot changed the title fix(deps): update dependency @vanilla-extract/css to v1.16.0 fix(deps): update dependency @vanilla-extract/css to v1.16.1 Nov 24, 2024
@renovate renovate bot changed the title fix(deps): update dependency @vanilla-extract/css to v1.16.1 fix(deps): update dependency @vanilla-extract/css to v1.17.0 Dec 20, 2024
@renovate renovate bot changed the title fix(deps): update dependency @vanilla-extract/css to v1.17.0 fix(deps): update dependency @vanilla-extract/css to v1.17.1 Jan 30, 2025
@renovate renovate bot changed the title fix(deps): update dependency @vanilla-extract/css to v1.17.1 fix(deps): update dependency @vanilla-extract/css to v1.17.2 May 17, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants