Skip to content
This repository has been archived by the owner on Jul 20, 2024. It is now read-only.

Bump the pandacss group with 2 updates #358

Merged
merged 1 commit into from
Apr 3, 2024

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Apr 3, 2024

Bumps the pandacss group with 2 updates: @pandacss/dev and @pandacss/types.

Updates @pandacss/dev from 0.37.0 to 0.37.1

Release notes

Sourced from @​pandacss/dev's releases.

@​pandacss/dev@​0.37.1

Patch Changes

  • Updated dependencies [93dc9f5]
  • Updated dependencies [88049c5]
  • Updated dependencies [885963c]
  • Updated dependencies [99870bb]
    • @​pandacss/token-dictionary@​0.37.1
    • @​pandacss/config@​0.37.1
    • @​pandacss/types@​0.37.1
    • @​pandacss/shared@​0.37.1
    • @​pandacss/node@​0.37.1
    • @​pandacss/logger@​0.37.1
    • @​pandacss/preset-panda@​0.37.1
    • @​pandacss/postcss@​0.37.1
Changelog

Sourced from @​pandacss/dev's changelog.

0.37.1

Patch Changes

  • Updated dependencies [93dc9f5]
  • Updated dependencies [88049c5]
  • Updated dependencies [885963c]
  • Updated dependencies [99870bb]
    • @​pandacss/token-dictionary@​0.37.1
    • @​pandacss/config@​0.37.1
    • @​pandacss/types@​0.37.1
    • @​pandacss/shared@​0.37.1
    • @​pandacss/node@​0.37.1
    • @​pandacss/logger@​0.37.1
    • @​pandacss/preset-panda@​0.37.1
    • @​pandacss/postcss@​0.37.1
Commits

Updates @pandacss/types from 0.37.0 to 0.37.1

Release notes

Sourced from @​pandacss/types's releases.

@​pandacss/types@​0.37.1

Patch Changes

  • 885963c: - Fix an issue where the compoundVariants classes would not be present at runtime when using config recipes

    // panda.config.ts
    import { defineConfig } from '@pandacss/dev'
    export default defineConfig({
    theme: {
    extend: {
    recipes: {
    button: {
    // ...
    variants: {
    size: {
    sm: {
    fontSize: 'sm',
    },
    // ...
    },
    },
    compoundVariants: [
    {
    size: 'sm',
    css: { color: 'blue.100'},
    },
    ],
    },
    },
    },
    },
    })
    // app.tsx
    const Button = styled('button', button)
    const App = () => {
    return (
    // ❌ this would only have the classes button button--size_sm
    // the text_blue was missing
    // ✅ it's now fixed -> button button--size_sm text_blue
    <Button size="sm">Click me</Button>
    )
    }

    • Add a getVariantProps helper to the recipes API (cva and config recipes)

... (truncated)

Changelog

Sourced from @​pandacss/types's changelog.

0.37.1

Patch Changes

  • 885963c: - Fix an issue where the compoundVariants classes would not be present at runtime when using config recipes

    // panda.config.ts
    import { defineConfig } from '@pandacss/dev'
    export default defineConfig({
    theme: {
    extend: {
    recipes: {
    button: {
    // ...
    variants: {
    size: {
    sm: {
    fontSize: 'sm',
    },
    // ...
    },
    },
    compoundVariants: [
    {
    size: 'sm',
    css: { color: 'blue.100'},
    },
    ],
    },
    },
    },
    },
    })
    // app.tsx
    const Button = styled('button', button)
    const App = () => {
    return (
    // ❌ this would only have the classes button button--size_sm
    // the text_blue was missing
    // ✅ it's now fixed -> button button--size_sm text_blue
    <Button size="sm">Click me</Button>
    )
    }

... (truncated)

Commits

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the pandacss group with 2 updates: [@pandacss/dev](https://github.com/chakra-ui/panda/tree/HEAD/packages/cli) and [@pandacss/types](https://github.com/chakra-ui/panda/tree/HEAD/packages/types).


Updates `@pandacss/dev` from 0.37.0 to 0.37.1
- [Release notes](https://github.com/chakra-ui/panda/releases)
- [Changelog](https://github.com/chakra-ui/panda/blob/main/packages/cli/CHANGELOG.md)
- [Commits](https://github.com/chakra-ui/panda/commits/@pandacss/[email protected]/packages/cli)

Updates `@pandacss/types` from 0.37.0 to 0.37.1
- [Release notes](https://github.com/chakra-ui/panda/releases)
- [Changelog](https://github.com/chakra-ui/panda/blob/main/packages/types/CHANGELOG.md)
- [Commits](https://github.com/chakra-ui/panda/commits/@pandacss/[email protected]/packages/types)

---
updated-dependencies:
- dependency-name: "@pandacss/dev"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: pandacss
- dependency-name: "@pandacss/types"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: pandacss
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file ignore-for-release Exclude from Release Notes. labels Apr 3, 2024
@albelium-bot albelium-bot bot enabled auto-merge April 3, 2024 05:23
@albelium-bot albelium-bot bot merged commit 9c88019 into main Apr 3, 2024
9 checks passed
@albelium-bot albelium-bot bot deleted the dependabot/npm_and_yarn/pandacss-bd28f4d753 branch April 3, 2024 05:24
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
@apps/frontend dependencies Pull requests that update a dependency file ignore-for-release Exclude from Release Notes. @packages/ui
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants