Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Version Packages #808

Merged
merged 1 commit into from
Sep 6, 2022
Merged

Version Packages #808

merged 1 commit into from
Sep 6, 2022

Conversation

seek-oss-ci
Copy link
Contributor

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/[email protected]

Minor Changes

@vanilla-extract/[email protected]

Minor Changes

  • #807 b0b3662 Thanks @mattcompiles! - Add createContainer API

    createContainer creates a single scoped container name for use with CSS Container Queries. This avoids potential naming collisions with other containers.

    import { style, createContainer } from '@vanilla-extract/css';
    
    export const sidebarContainer = createContainer();
    
    export const sidebar = style({
      containerName: sidebarContainer,
    });
    
    export const navigation = style({
      '@container': {
        [`${sidebarContainer} (min-width: 400px)`]: {
          display: 'flex',
        },
      },
    });
  • #807 b0b3662 Thanks @mattcompiles! - Add support for container queries via the new @container key.

    import { style } from '@vanilla-extract/css';
    
    export const myStyle = style({
      '@container': {
        '(min-width: 400px)': {
          display: 'flex',
        },
      },
    });

[email protected]

Patch Changes

@fixtures/[email protected]

Patch Changes

@fixtures/[email protected]

Patch Changes

@fixtures/[email protected]

Patch Changes

@fixtures/[email protected]

Patch Changes

@fixtures/[email protected]

Patch Changes

@fixtures/[email protected]

Patch Changes

@vanilla-extract-private/[email protected]

Patch Changes

@vanilla-extract-private/[email protected]

Patch Changes

@seek-oss-ci seek-oss-ci requested a review from a team September 5, 2022 23:39
@mattcompiles mattcompiles merged commit 5a9f2e2 into master Sep 6, 2022
@mattcompiles mattcompiles deleted the changeset-release/master branch September 6, 2022 00:04
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