Skip to content

chore(deps): update enable automerge for devdependencies (main) #16

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

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 11, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@pandacss/dev (source) ^0.47.0 -> ^0.53.0 age adoption passing confidence
@park-ui/panda-preset (source) ^0.42.0 -> ^0.43.0 age adoption passing confidence
vite-bundle-analyzer ^0.12.0 -> ^0.19.0 age adoption passing confidence

Release Notes

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

v0.53.4

Compare Source

Patch Changes

v0.53.3

Compare Source

Patch Changes

v0.53.2

Compare Source

Patch Changes

v0.53.1

Compare Source

Patch Changes

v0.53.0

Compare Source

Patch Changes

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
cschroeter/park-ui (@​park-ui/panda-preset)

v0.43.1

Compare Source

Fixed
  • NumberInput: Fixed an issue where the grid layout was not applied correctly.

v0.43.0

Compare Source

Changed
  • Color Tokens: The accent color concept has been removed. Components now rely on the built-in
    colorPalette prop for color customization. This change aligns with how Panda CSS envisions the
    use of its virtual color system..

Previously, color tokens were organized like this:

colorPalette.1  
 └── accent.1  
 └── amber.1  
 ├── amber.light.1  
 └── amber.dark.1

The accent layer was unnecessary and has been removed:

colorPalette.1  
 └── amber.1  
 ├── amber.light.1  
 └── amber.dark.1

Here's how this change impacts usage:

- <Box color="accent.default" />
+ <Box color="colorPalette.default" />
  • Improved consistency and scalability by refining the Park UI Preset setup in the Panda
    configuration. Learn more in the docs.
 import { defineConfig } from '@&#8203;pandacss/dev'

```diff
 import { defineConfig } from '@&#8203;pandacss/dev'
 import { createPreset } from '@&#8203;park-ui/panda-preset'
+import amber from '@&#8203;park-ui/panda-preset/colors/amber'
+import sand from '@&#8203;park-ui/panda-preset/colors/sand'

 export default defineConfig({
   preflight: true,
   presets: [
-    '@&#8203;pandacss/preset-base',
     createPreset({
-      accentColor: 'amber',
-      grayColor: 'sand',
-      borderRadius: 'sm',
+      accentColor: amber,
+      grayColor: sand,
+      radius: 'sm',
     }),
   ],
   include: ['./src/**/*.{js,jsx,ts,tsx,vue}'],
   jsxFramework: 'react', // or 'solid' or 'vue'
   outdir: 'styled-system',
 })
nonzzz/vite-bundle-analyzer (vite-bundle-analyzer)

v0.19.0

Compare Source

  • Static resources output.
  • The fileName option now supports passing a function to dynamically generate output filenames. This function receives the build metadata and should return a string.
  • Support Rolldown. (And Rolldown Vite)
import path from 'path'
analyzer({
  fileName: (outputDir) => path.join(outputDir, 'report.html')
})

v0.18.1

Compare Source

  • Reduce installer size.

v0.18.0

Compare Source

  • Use mri to replace commander.js

v0.17.3

Compare Source

  • Respect Cli parse.

v0.17.2

Compare Source

  • Fix cli wrong option passing.

v0.17.1

Compare Source

  • Fixed warning not showing as expected. #​58
  • Non-js files no need to record child nodes.
credits

@​urbnjamesmi1

v0.17.0

Compare Source

  • Cli add default config path (vite.config.ts)
credits

@​kricsleo

v0.16.3

Compare Source

  • Increase color brightness (Client)
  • Improve the smoothness of events (Client)

v0.16.2

Compare Source

  • Fix Safari render crash.

v0.16.1

Compare Source

  • Update Client UI.

v0.16.0

Compare Source

  • Better custom integrate.
  • Fix adapter type error.
  • Support view brotli size.
  • Display no-js file.

v0.15.2

Compare Source

Expose render and other methods to better integrate into custom tools.

v0.15.1

Compare Source

  • Revert the recent change to avoid bundling crash. (This usually happends when running mulitple instances.)

v0.15.0

Compare Source

v0.14.3

Compare Source

Bump client deps.

v0.14.2

Compare Source

v0.14.1

Compare Source

v0.14.0

Compare Source

v0.13.1

Compare Source

v0.13.0

Compare Source


Configuration

📅 Schedule: Branch creation - Between 12:00 AM and 03:59 AM ( * 0-3 * * * ) in timezone Asia/Tokyo, Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • 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 added the deps label Nov 11, 2024
@renovate renovate bot requested a review from a team November 11, 2024 19:22
@renovate renovate bot force-pushed the renovate/main-enable-automerge-for-devdependencies branch from 67463be to 5c93ef3 Compare November 17, 2024 04:47
@renovate renovate bot changed the title chore(deps): update dependency vite-bundle-analyzer to ^0.13.0 (main) chore(deps): update enable automerge for devdependencies (main) Nov 17, 2024
@renovate renovate bot force-pushed the renovate/main-enable-automerge-for-devdependencies branch 2 times, most recently from a3df9b0 to ea8ad17 Compare November 27, 2024 08:01
@renovate renovate bot force-pushed the renovate/main-enable-automerge-for-devdependencies branch from ea8ad17 to 29854dd Compare December 1, 2024 03:05
@renovate renovate bot force-pushed the renovate/main-enable-automerge-for-devdependencies branch from 29854dd to e970cba Compare December 12, 2024 01:12
@renovate renovate bot force-pushed the renovate/main-enable-automerge-for-devdependencies branch 2 times, most recently from 9a30bb0 to 7ef27c9 Compare January 3, 2025 20:03
@renovate renovate bot force-pushed the renovate/main-enable-automerge-for-devdependencies branch from 7ef27c9 to 604bb16 Compare January 10, 2025 06:37
@renovate renovate bot force-pushed the renovate/main-enable-automerge-for-devdependencies branch 2 times, most recently from 7003f6f to 49d0c47 Compare February 10, 2025 13:13
@renovate renovate bot force-pushed the renovate/main-enable-automerge-for-devdependencies branch from 49d0c47 to d398697 Compare February 13, 2025 05:59
@renovate renovate bot force-pushed the renovate/main-enable-automerge-for-devdependencies branch from d398697 to 47fd1f8 Compare March 18, 2025 15:25
@renovate renovate bot force-pushed the renovate/main-enable-automerge-for-devdependencies branch from 47fd1f8 to 8376d91 Compare April 21, 2025 02:47
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants