Skip to content

Releases: vanilla-extract-css/vanilla-extract

@vanilla-extract/[email protected]

24 Oct 22:32
729f209
Compare
Choose a tag to compare

Patch Changes

  • #1492 1fd348a Thanks @kube! - Filter out react-router Vite plugin when creating the vite-node compiler

@vanilla-extract/[email protected]

01 Oct 05:23
284098c
Compare
Choose a tag to compare

Patch Changes

@vanilla-extract/[email protected]

01 Oct 05:23
284098c
Compare
Choose a tag to compare

Patch Changes

  • #1482 30c0305 Thanks @askoufis! - Fixes a bug where Vanilla Extract files with extensions other than css.ts were not being invalidated during HMR

  • Updated dependencies []:

@vanilla-extract/[email protected]

01 Oct 05:23
284098c
Compare
Choose a tag to compare

Patch Changes

@vanilla-extract/[email protected]

01 Oct 05:23
284098c
Compare
Choose a tag to compare

Patch Changes

@vanilla-extract/[email protected]

01 Oct 05:23
284098c
Compare
Choose a tag to compare

Patch Changes

@vanilla-extract/[email protected]

01 Oct 05:23
284098c
Compare
Choose a tag to compare

Patch Changes

@vanilla-extract/[email protected]

01 Oct 05:23
284098c
Compare
Choose a tag to compare

Patch Changes

@vanilla-extract/[email protected]

01 Oct 05:23
284098c
Compare
Choose a tag to compare

Patch Changes

@vanilla-extract/[email protected]

01 Oct 05:23
284098c
Compare
Choose a tag to compare

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 '@vanilla-extract/css';
    
    export const titleViewTransition = createViewTransition();
    
    export const pageTitle = style({
      viewTransitionName: titleViewTransition
    });