Skip to content

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

Open
renovate[bot] wants to merge 1 commit intomainfrom
renovate/main-enable-automerge-for-devdependencies
Open

chore(deps): update enable automerge for devdependencies (main)#16
renovate[bot] wants to merge 1 commit intomainfrom
renovate/main-enable-automerge-for-devdependencies

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Nov 11, 2024

This PR contains the following updates:

Package Change Age Confidence
@pandacss/dev (source) ^0.47.0^0.54.0 age confidence
@park-ui/panda-preset (source) ^0.42.0^0.43.0 age confidence
vite-bundle-analyzer ^0.12.0^0.23.0 age confidence

Release Notes

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

v0.54.0

Compare Source

Patch Changes

v0.53.7

Compare Source

Patch Changes

v0.53.6

Compare Source

Patch Changes

v0.53.5

Compare Source

Patch Changes

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.23.0

Compare Source

  • Better client UX.
  • Use parsed to replace the original stat

v0.22.3

Compare Source

  • Fix cli can't work.

v0.22.2

Compare Source

  • Update squarified dependency and add support for Magic Trackpad two fingers action.

v0.22.1

Compare Source

  • Update dependencies.
  • Optimize context menu rendering position.

v0.22.0

Compare Source

Break Changes
  • Removed the click on a module to scale the viewport. (use context menu instead)
Note
  • Upgrade squarified versions
  • Improve client to generate module dependency graph
  • Added context menu

v0.21.0

Compare Source

  • Added new enable option to control plugin workflow.
  • Add new option include and exclude to filter generated content from the analysis server.
Note

This is one of the final minor releases before the v1.0 launch. We're focusing on polishing core functionality and enhancing stability in preparation for the upcoming major release.

credits

@​kricsleo

v0.20.2

Compare Source

Prevent server from running in CI environment.

credits

@​kricsleo

v0.20.1

Compare Source

  • Remove unnecessary logic.

v0.20.0

Compare Source

  • Add rolldown adapter
// rolldown.config.mts
import { analyzer, unstableRolldownAdapter } from 'vite-bundle-analyzer'

unstableRolldownAdapter(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
@renovate renovate bot force-pushed the renovate/main-enable-automerge-for-devdependencies branch from 8376d91 to ad4d3a7 Compare May 2, 2025 11:57
@renovate renovate bot force-pushed the renovate/main-enable-automerge-for-devdependencies branch from ad4d3a7 to 80e0a81 Compare May 22, 2025 11:43
@renovate renovate bot force-pushed the renovate/main-enable-automerge-for-devdependencies branch from 80e0a81 to c7b5a7e Compare May 30, 2025 18:50
@renovate renovate bot force-pushed the renovate/main-enable-automerge-for-devdependencies branch from c7b5a7e to 64b937f Compare June 16, 2025 02:55
@renovate renovate bot force-pushed the renovate/main-enable-automerge-for-devdependencies branch from 64b937f to 64d29b9 Compare June 27, 2025 11:10
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