Skip to content

Version Packages#1217

Merged
askoufis merged 1 commit intomasterfrom
changeset-release/master
Nov 10, 2023
Merged

Version Packages#1217
askoufis merged 1 commit intomasterfrom
changeset-release/master

Conversation

@vanilla-extract-ci
Copy link
Collaborator

@vanilla-extract-ci vanilla-extract-ci commented Nov 9, 2023

This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to master, this PR will be updated.

Releases

@vanilla-extract/css@1.14.0

Minor Changes

Patch Changes

@vanilla-extract/dynamic@2.1.0

Minor Changes

  • #1175 ca854f5 Thanks @youngkyo0504! - assignInlineVars now accepts null and undefined values

    Variables with a value of null or undefined will be omitted from the resulting inline style.

    NOTE: This only applies to the case where a theme contract is not provided.

    import { assignInlineVars } from '@vanilla-extract/dynamic';
    import { container, brandColor, textColor } from './styles.css.ts';
    
    // If `tone` is `undefined`, the following inline style becomes:
    // { '--brandColor__8uideo0': 'pink' }
    
    const MyComponent = ({ tone }: { tone?: critical }) => (
      <section
        className={container}
        style={assignInlineVars({
          [brandColor]: 'pink',
          [textColor]: tone === 'critical' ? 'red' : null,
        })}
      >
        ...
      </section>
    );
  • #1175 ca854f5 Thanks @youngkyo0504! - setElementVars now accepts null and undefined values

    Variables with a value of null or undefined will not be assigned a value.

    NOTE: This only applies to the case where a theme contract is not provided.

    import { setElementVars } from '@vanilla-extract/dynamic';
    import { brandColor, textColor } from './styles.css.ts';
    
    const el = document.getElementById('myElement');
    
    setElementVars(el, {
      [brandColor]: 'pink',
      [textColor]: null,
    });

@vanilla-extract/integration@6.2.3

Patch Changes

@vanilla-extract/next-plugin@2.3.2

Patch Changes

  • #1193 a22dd4d Thanks @syfxlin! - Fixes Next.js 13.5.x CSS output on Windows when using React Server Components

@vanilla-extract/recipes@0.5.1

Patch Changes

vanilla-extract-example-webpack-react@0.0.25

Patch Changes

  • Updated dependencies [906d288, 911c8b7]:
    • @vanilla-extract/css@1.14.0

@fixtures/features@0.0.23

Patch Changes

@fixtures/layers@0.0.6

Patch Changes

  • Updated dependencies [906d288, 911c8b7]:
    • @vanilla-extract/css@1.14.0

@fixtures/low-level@0.0.23

Patch Changes

  • Updated dependencies [906d288, 911c8b7]:
    • @vanilla-extract/css@1.14.0

@fixtures/recipes@0.0.26

Patch Changes

  • Updated dependencies [d16c22f, 906d288, 911c8b7]:
    • @vanilla-extract/recipes@0.5.1
    • @vanilla-extract/css@1.14.0

@fixtures/sprinkles@0.0.28

Patch Changes

  • Updated dependencies [906d288, 911c8b7]:
    • @vanilla-extract/css@1.14.0

@fixtures/themed@0.0.23

Patch Changes

@fixtures/unused-modules@1.0.23

Patch Changes

  • Updated dependencies [906d288, 911c8b7]:
    • @vanilla-extract/css@1.14.0

@vanilla-extract-ci vanilla-extract-ci force-pushed the changeset-release/master branch 5 times, most recently from adccde8 to 30ee54a Compare November 9, 2023 22:43
@askoufis askoufis merged commit c8358fd into master Nov 10, 2023
@askoufis askoufis deleted the changeset-release/master branch November 10, 2023 00:03
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.

2 participants