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

chore(deps): update dependency @pandacss/dev to v0.52.0 #517

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Nov 14, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@pandacss/dev (source) 0.47.1 -> 0.52.0 age adoption passing confidence

Release Notes

chakra-ui/panda (@​pandacss/dev)

v0.52.0

Compare Source

Patch Changes

v0.51.1

Compare Source

Patch Changes
  • 9c1327e: Redesigned the recipe report to be more readable and easier to understand. We simplified the JSX and
    Function columns to be more concise.

    BEFORE

    ╔════════════════════════╤══════════════════════╤═════════╤═══════╤════════════╤═══════════════════╤══════════╗
    ║ Recipe                 │ Variant Combinations │ Usage % │ JSX % │ Function % │ Most Used         │ Found in ║
    ╟────────────────────────┼──────────────────────┼─────────┼───────┼────────────┼───────────────────┼──────────╢
    ║ someRecipe (1 variant) │ 1 / 1                │ 100%    │ 100%  │ 0%         │ size.small        │ 1 file   ║
    ╟────────────────────────┼──────────────────────┼─────────┼───────┼────────────┼───────────────────┼──────────╢
    ║ button (4 variants)    │ 7 / 9                │ 77.78%  │ 63%   │ 38%        │ size.md, size.sm, │ 2 files  ║
    ║                        │                      │         │       │            │ state.focused,    │          ║
    ║                        │                      │         │       │            │ variant.danger,   │          ║
    ║                        │                      │         │       │            │ variant.primary   │          ║
    ╚════════════════════════╧══════════════════════╧═════════╧═══════╧════════════╧═══════════════════╧══════════╝

    AFTER

    ╔════════════════════════╤════════════════╤═══════════════════╤═══════════════════╤══════════╤═══════════╗
    ║ Recipe                 │ Variant values │ Usage %           │ Most used         │ Found in │ Used as   ║
    ╟────────────────────────┼────────────────┼───────────────────┼───────────────────┼──────────┼───────────╢
    ║ someRecipe (1 variant) │ 1 value        │ 100% (1 value)    │ size.small        │ 1 file   │ jsx: 100% ║
    ║                        │                │                   │                   │          │ fn: 0%    ║
    ╟────────────────────────┼────────────────┼───────────────────┼───────────────────┼──────────┼───────────╢
    ║ button (4 variants)    │ 9 values       │ 77.78% (7 values) │ size.md, size.sm, │ 2 files  │ jsx: 63%  ║
    ║                        │                │                   │ state.focused,    │          │ fn: 38%   ║
    ║                        │                │                   │ variant.danger,   │          │           ║
    ║                        │                │                   │ variant.primary   │          │           ║
    ╚════════════════════════╧════════════════╧═══════════════════╧═══════════════════╧══════════╧═══════════╝

v0.51.0

Compare Source

Patch Changes

v0.50.0

Compare Source

Minor Changes
  • fea78c7: Adds support for static analysis of used tokens and recipe variants. It helps to get a birds-eye view of how
    your design system is used and answers the following questions:

    • What tokens are most used?
    • What recipe variants are most used?
    • How many hardcoded values vs tokens do we have?
    panda analyze --scope=<token|recipe>

    Still work in progress but we're excited to get your feedback!

Patch Changes

v0.49.0

Compare Source

Minor Changes
  • 97a0e4d: Add support for animation styles. Animation styles focus solely on animations, allowing you to orchestrate
    animation properties.

    Pairing animation styles with text styles and layer styles can make your styles a lot cleaner.

    Here's an example of this:

    import { defineAnimationStyles } from '@&#8203;pandacss/dev'
    
    export const animationStyles = defineAnimationStyles({
      'slide-fade-in': {
        value: {
          transformOrigin: 'var(--transform-origin)',
          animationDuration: 'fast',
          '&[data-placement^=top]': {
            animationName: 'slide-from-top, fade-in',
          },
          '&[data-placement^=bottom]': {
            animationName: 'slide-from-bottom, fade-in',
          },
          '&[data-placement^=left]': {
            animationName: 'slide-from-left, fade-in',
          },
          '&[data-placement^=right]': {
            animationName: 'slide-from-right, fade-in',
          },
        },
      },
    })

    With that defined, I can use it in my recipe or css like so:

    export const popoverSlotRecipe = defineSlotRecipe({
      slots: anatomy.keys(),
      base: {
        content: {
          _open: {
            animationStyle: 'scale-fade-in',
          },
          _closed: {
            animationStyle: 'scale-fade-out',
          },
        },
      },
    })

    This feature will drive consumers to lean in towards CSS for animations rather than JS. Composing animation names is a
    powerful feature we should encourage consumers to use.

Patch Changes

v0.48.1

Compare Source

Patch Changes

v0.48.0

Compare Source

Patch Changes

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 is behind base branch, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


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

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

@renovate renovate bot requested a review from re-taro as a code owner November 14, 2024 04:20
Copy link

changeset-bot bot commented Nov 14, 2024

⚠️ No Changeset found

Latest commit: d1ce26e

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

Copy link
Contributor

github-actions bot commented Nov 14, 2024

🚧 Deploy Preview building...

Name Link
🔨 Latest commit a4716e3
🔍 Latest deploy log https://github.com/re-taro/blog.re-taro.dev/actions/runs/13102398426

Copy link
Contributor

github-actions bot commented Nov 14, 2024

Deploy Preview ready!

Name Link
🔨 Latest commit 3ad49e6
🔍 Latest deploy log https://github.com/re-taro/blog.re-taro.dev/actions/runs/13100841691
😎 Deploy Preview Url https://29660e7e.blog-1wr.pages.dev

@re-taro-bot
Copy link
Contributor

re-taro-bot bot commented Nov 14, 2024

Size Change: +48 B (+0.01%)

Total Size: 747 kB

Filename Size Change
dist/_build/assets/Article-CP4pUJgb.js 0 B -1.12 kB (removed) 🏆
dist/_build/assets/client-VDqdpCEj.js 0 B -9.25 kB (removed) 🏆
dist/_build/assets/components-vnVyIb4h.js 0 B -3.82 kB (removed) 🏆
dist/_build/assets/css-CJduM0DN.js 0 B -15.4 kB (removed) 🏆
dist/_build/assets/Footer-CEgBg8LZ.js 0 B -852 B (removed) 🏆
dist/_build/assets/Footnote-BzOUCowo.js 0 B -1.03 kB (removed) 🏆
dist/_build/assets/Header-BsQp_aEc.js 0 B -1.03 kB (removed) 🏆
dist/_build/assets/Heading-Co1t3VjE.js 0 B -89 kB (removed) 🏆
dist/_build/assets/index-B8xhFmZP.js 0 B -1.36 kB (removed) 🏆
dist/_build/assets/index-D4_c06nY.js 0 B -1.63 kB (removed) 🏆
dist/_build/assets/index-DBBptomo.js 0 B -1 kB (removed) 🏆
dist/_build/assets/Meta-BhH_8umg.js 0 B -651 B (removed) 🏆
dist/_build/assets/og-Bf2lf0U-.js 0 B -3.03 kB (removed) 🏆
dist/_build/assets/privacy-CyO63omg.js 0 B -651 B (removed) 🏆
dist/_build/assets/server-runtime-D8WCSPD7.js 0 B -7.17 kB (removed) 🏆
dist/_build/assets/Tags-BZYAFEV_.js 0 B -471 B (removed) 🏆
dist/_build/assets/tags-C_-957SG.js 0 B -1.58 kB (removed) 🏆
dist/_build/assets/Tags-VToArNIx.js 0 B -470 B (removed) 🏆
dist/_build/assets/Toc-De27z0C3.js 0 B -1.06 kB (removed) 🏆
dist/_routes.json 939 B -2 B (-0.21%)
dist/index.html 156 kB -3 B (0%)
dist/nitro.json 187 B -1 B (-0.53%)
dist/p/01HXEV0G1DXQR91W6G90M7CKGR.html 53 kB -6 B (-0.01%)
dist/p/01HYDY4ANBK11SCFE0K2K3DV5A.html 42.9 kB -2 B (0%)
dist/p/01HZCA49PAZZ1RKK05NV4XZATQ.html 32.5 kB +2 B (+0.01%)
dist/p/01J030HYBQ9T8NW4Q1GYH6NHHV.html 29.2 kB -2 B (-0.01%)
dist/p/01J21VVAH0AW64ZS4SGGE83R0C.html 24.5 kB -1 B (0%)
dist/p/01JC5CTQW9WVSPP08F4EB4GXF7.html 24.2 kB -2 B (-0.01%)
dist/p/01JC8KNP7H6T9K7DDGPQ7AW398.html 9.21 kB -4 B (-0.04%)
dist/p/01JDJ06793Q65CFFYBTTSRDWBS.html 13.4 kB -2 B (-0.01%)
dist/p/01JJPCQXJEF4YTQTCZZPXBF69E.html 22.1 kB -1 B (0%)
dist/privacy.html 3.71 kB -6 B (-0.16%)
dist/tags.html 157 kB -1 B (0%)
dist/_build/assets/Article-DtgsfiP-.js 1.12 kB +1.12 kB (new file) 🆕
dist/_build/assets/client-9e-YeGfh.js 9.25 kB +9.25 kB (new file) 🆕
dist/_build/assets/components-7BiVKp7C.js 3.82 kB +3.82 kB (new file) 🆕
dist/_build/assets/css-Cksxhpvv.js 15.5 kB +15.5 kB (new file) 🆕
dist/_build/assets/Footer-DaCha28U.js 850 B +850 B (new file) 🆕
dist/_build/assets/Footnote-DtHoTQWN.js 1.03 kB +1.03 kB (new file) 🆕
dist/_build/assets/Header-BZjzA_8y.js 1.03 kB +1.03 kB (new file) 🆕
dist/_build/assets/Heading-CiIXjWQq.js 89 kB +89 kB (new file) 🆕
dist/_build/assets/index-BMWC-BIE.js 1.63 kB +1.63 kB (new file) 🆕
dist/_build/assets/index-Du1TT-az.js 1 kB +1 kB (new file) 🆕
dist/_build/assets/index-L64PDPR-.js 1.36 kB +1.36 kB (new file) 🆕
dist/_build/assets/Meta-hqpuSSnX.js 651 B +651 B (new file) 🆕
dist/_build/assets/og-BTfjjCFw.js 3.04 kB +3.04 kB (new file) 🆕
dist/_build/assets/privacy-BEwRu83_.js 650 B +650 B (new file) 🆕
dist/_build/assets/server-runtime-86TLiDOw.js 7.17 kB +7.17 kB (new file) 🆕
dist/_build/assets/Tags-B-b6J91E.js 468 B +468 B (new file) 🆕
dist/_build/assets/Tags-BGC6KpEg.js 471 B +471 B (new file) 🆕
dist/_build/assets/tags-Cd_BPd69.js 1.58 kB +1.58 kB (new file) 🆕
dist/_build/assets/Toc-C-qLRGLN.js 1.06 kB +1.06 kB (new file) 🆕
ℹ️ View Unchanged
Filename Size Change
dist/_build/assets/classApi-Ox9s7r4Y.js 21.7 kB 0 B
dist/_build/assets/client-5mh4vx1C.css 5.09 kB 0 B
dist/_build/assets/cx-BFURdk0p.js 133 B 0 B
dist/_build/assets/helper-Dbdmnfkh.js 208 B 0 B
dist/_build/server-functions-manifest.json 152 B 0 B
dist/_server/assets/app-5mh4vx1C.css 5.09 kB 0 B
dist/_worker.js 0 B 0 B 🆕
dist/_worker.js/index.js 144 B 0 B
dist/assets/global-5mh4vx1C.css 5.09 kB 0 B

compressed-size-action

@re-taro-bot
Copy link
Contributor

re-taro-bot bot commented Nov 14, 2024

⚡️ Lighthouse report for the deploy preview of this PR

URL Accessibility Best Practices Performance PWA SEO Report
/ 🟢 100 🟢 96 🟠 59 🔴 NaN 🟠 63 Report
/privacy 🟢 100 🟢 96 🟠 74 🔴 NaN 🟠 54 Report
/p/01HXEV0G1DXQR91W6G90M7CKGR 🟢 96 🟠 75 🟠 55 🔴 NaN 🟠 66 Report
/tags 🟢 100 🟢 96 🟠 59 🔴 NaN 🟠 63 Report

@renovate renovate bot force-pushed the renovate/panda-css-monorepo branch 15 times, most recently from 99e668e to 7242bf9 Compare November 21, 2024 21:12
@renovate renovate bot force-pushed the renovate/panda-css-monorepo branch 9 times, most recently from 37be1bd to 3f02ad2 Compare November 26, 2024 20:12
@renovate renovate bot changed the title chore(deps): update dependency @pandacss/dev to v0.51.0 chore(deps): update dependency @pandacss/dev to v0.51.1 Jan 1, 2025
@renovate renovate bot force-pushed the renovate/panda-css-monorepo branch 7 times, most recently from c96268e to d66827a Compare January 6, 2025 05:25
@renovate renovate bot force-pushed the renovate/panda-css-monorepo branch 7 times, most recently from f78613e to 10508fc Compare January 13, 2025 13:59
@renovate renovate bot force-pushed the renovate/panda-css-monorepo branch 2 times, most recently from 1d3404e to 38ad7bb Compare January 22, 2025 02:00
@renovate renovate bot force-pushed the renovate/panda-css-monorepo branch 5 times, most recently from 18d65dd to c6a8d9d Compare February 1, 2025 20:57
@renovate renovate bot changed the title chore(deps): update dependency @pandacss/dev to v0.51.1 chore(deps): update dependency @pandacss/dev to v0.52.0 Feb 2, 2025
@renovate renovate bot force-pushed the renovate/panda-css-monorepo branch 5 times, most recently from 973e61e to d1ce26e Compare February 2, 2025 17:13
@renovate renovate bot force-pushed the renovate/panda-css-monorepo branch from d1ce26e to 1102355 Compare February 2, 2025 20:57
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