Skip to content

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Oct 16, 2024

This PR contains the following updates:

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

Release Notes

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

v1.17.4

Compare Source

Patch Changes

v1.17.3

Compare Source

Patch Changes

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'
      }
    ]);

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 these updates again.


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

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

Copy link

vercel bot commented Oct 16, 2024

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

Name Status Preview Comments Updated (UTC)
blog ✅ Ready (Inspect) Visit Preview 💬 Add feedback Jun 12, 2025 3:11am

@renovate renovate bot changed the title chore(deps): update dependency @vanilla-extract/css to v1.16.0 chore(deps): update dependency @vanilla-extract/css to v1.16.1 Nov 24, 2024
@renovate renovate bot force-pushed the renovate/vanilla-extract-css-1.x branch from bd917ca to 278657c Compare November 24, 2024 07:25
@renovate renovate bot changed the title chore(deps): update dependency @vanilla-extract/css to v1.16.1 fix(deps): update dependency @vanilla-extract/css to v1.16.1 Dec 10, 2024
@renovate renovate bot force-pushed the renovate/vanilla-extract-css-1.x branch from 278657c to 1f36201 Compare December 20, 2024 05:38
@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 force-pushed the renovate/vanilla-extract-css-1.x branch from 1f36201 to 15dd745 Compare January 1, 2025 16:38
@renovate renovate bot force-pushed the renovate/vanilla-extract-css-1.x branch from 15dd745 to 5174026 Compare January 30, 2025 02:07
@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 force-pushed the renovate/vanilla-extract-css-1.x branch from 5174026 to 2ba7d81 Compare May 13, 2025 10:55
@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 13, 2025
@renovate renovate bot force-pushed the renovate/vanilla-extract-css-1.x branch from 2ba7d81 to 62d0dc6 Compare June 7, 2025 14:46
@renovate renovate bot changed the title fix(deps): update dependency @vanilla-extract/css to v1.17.2 fix(deps): update dependency @vanilla-extract/css to v1.17.3 Jun 7, 2025
@renovate renovate bot force-pushed the renovate/vanilla-extract-css-1.x branch from 62d0dc6 to 37a6480 Compare June 12, 2025 03:07
@renovate renovate bot changed the title fix(deps): update dependency @vanilla-extract/css to v1.17.3 fix(deps): update dependency @vanilla-extract/css to v1.17.4 Jun 12, 2025
@renovate renovate bot changed the title fix(deps): update dependency @vanilla-extract/css to v1.17.4 fix(deps): update dependency @vanilla-extract/css to v1.17.4 - abandoned Jun 18, 2025
Copy link
Contributor Author

renovate bot commented Jun 18, 2025

Autoclosing Skipped

This PR has been flagged for autoclosing. However, it is being skipped due to the branch being already modified. Please close/delete it manually or report a bug if you think this is in error.

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