chore(deps): update enable automerge for devdependencies (main) (major) #18
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
^0.47.0→^1.0.0^4.26.1→^5.0.0^6.19.8→^7.0.0^0.12.0→^1.0.0^3.78.7→^4.0.0Release Notes
chakra-ui/panda (@pandacss/dev)
v1.8.0Compare Source
Minor Changes
d7e46e0: MCP Server [NEW]: Added MCP server that exposes tools for AI agents.Available tools:
get_tokens,get_semantic_tokens,get_recipes,get_patterns,get_conditions,get_text_styles,get_layer_styles,get_keyframes,get_config,get_usage_report.Patch Changes
d7e46e0]v1.7.3Compare Source
Patch Changes
ac2fb5c]v1.7.2Compare Source
Patch Changes
af2d06b]v1.7.1Compare Source
Patch Changes
cc04ebf]b6e9646]v1.7.0Compare Source
Minor Changes
86b30b1: Addpanda speccommand to generate specification files for your theme (useful for documentation). Thiscommand generates JSON specification files containing metadata, examples, and usage information.
Token Spec Structure:
{ "type": "tokens", "data": [ { "type": "aspectRatios", "values": [{ "name": "square", "value": "1 / 1", "cssVar": "var(--aspect-ratios-square)" }], "tokenFunctionExamples": ["token('aspectRatios.square')"], "functionExamples": ["css({ aspectRatio: 'square' })"], "jsxExamples": ["<Box aspectRatio=\"square\" />"] } ] }Spec Usage:
Patch Changes
86b30b1]v1.6.1Compare Source
Patch Changes
v1.6.0Compare Source
Minor Changes
8aa3c64: Add--splittingflag tocssgencommand for per-layer CSS output.When enabled, CSS is emitted as separate files instead of a single
styles.css:Usage:
Patch Changes
8aa3c64]v1.5.1Compare Source
Patch Changes
v1.5.0Compare Source
Patch Changes
91c65ff]v1.4.3Compare Source
Patch Changes
65aed7b: FixCannot find module '@​pandacss/preset-base'error when using Bun or other package managers that use flatnode_modulesstructures.bb32028]84a0de9]v1.4.2Compare Source
Patch Changes
1290a27: Only log errors that are instances ofPandaError, preventing test framework and other non-Panda errors frombeing logged during development.
0679f6f]1290a27]70420dd]v1.4.1Compare Source
Patch Changes
v1.4.0Compare Source
Patch Changes
29cf719]v1.3.1Compare Source
Patch Changes
v1.3.0Compare Source
Patch Changes
70efd73]v1.2.0Compare Source
Patch Changes
ae7cc8d]v1.1.0Compare Source
Patch Changes
47a0011]e8ec0aa]v1.0.1Compare Source
Patch Changes
v1.0.0Compare Source
Major Changes
a3bcbea: Stable release of PandaCSSStyle Context
Add
createStyleContextfunction to framework artifacts for React, Preact, Solid, and Vue frameworksThen, use like this:
Patch Changes
a3bcbea]v0.54.0Compare Source
Patch Changes
76c4e61]efa060d]d2aede5]fdf5142]v0.53.7Compare Source
Patch Changes
v0.53.6Compare Source
Patch Changes
v0.53.5Compare Source
Patch Changes
v0.53.4Compare Source
Patch Changes
v0.53.3Compare Source
Patch Changes
v0.53.2Compare Source
Patch Changes
cde9a0b]v0.53.1Compare Source
Patch Changes
b67a2a5]v0.53.0Compare Source
Patch Changes
5286731]v0.52.0Compare Source
Patch Changes
2f1165c]v0.51.1Compare Source
Patch Changes
9c1327e: Redesigned the recipe report to be more readable and easier to understand. We simplified theJSXandFunctioncolumns 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.0Compare Source
Patch Changes
d68ad1f]v0.50.0Compare Source
Minor Changes
fea78c7: Adds support for static analysis of used tokens and recipe variants. It helps to get a birds-eye view of howyour design system is used and answers the following questions:
Patch Changes
fea78c7]ad89b90]v0.49.0Compare Source
Minor Changes
97a0e4d: Add support for animation styles. Animation styles focus solely on animations, allowing you to orchestrateanimation properties.
Here's an example of this:
With that defined, I can use it in my recipe or css like so:
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
97a0e4d]v0.48.1Compare Source
Patch Changes
fd87f3a]v0.48.0Compare Source
Patch Changes
sindresorhus/type-fest (type-fest)
v5.3.1Compare Source
PackageJson: Fix key type forDependencyOverrides(#1307)0430f56v5.3.0Compare Source
Improvements
PackageJson: Addoverrides(#1287)8beaa89Fixes
IsEqual: Fix generic inference (#1306)f7b2667ConditionalPickDeep/SimplifyDeep: Prevent mapping over built-ins (#1293)f14a75aArraySlice/StringSlice: Fix behavior with unions (#1291)133258bv5.2.0Compare Source
v5.1.0Compare Source
New types
TupleOf(#1247)7fb2f75Xor(#1254)ad04bc5SplitOnRestElement(#1166)34b8fadExtractRestElement(#1166)34b8fadExcludeRestElement(#1166)34b8fadImprovements
ReadonlyTuple: Deprecate in favor ofTupleOf(#1256)af4bebcTsConfigJson: Add missing lib enum values (#1263)72f491fTsConfigJson: AddrewriteRelativeImportExtensions(#1262)7d011ceFixes
PartialDeep: Fix behavior with functions containing multiple call signatures (#1259)3bd9de6IsEqual: Fix behaviour when instantiated withneverandunknown(#1251)785549fFixedLengthArray: Fix element type (#1246)ee29ef7is-equal: Fix handling with intersecting wrapped types (#1231)5af60a1v5.0.1Compare Source
4f9c248v5.0.0Compare Source
Breaking
b5b0214cc2b0f2type-festrequiresstrict: truein your tsconfig.StringKeyOf: Rename toKeyAsStringe492c9cArrayTail: EnablepreserveReadonlyby default and remove the optionb34b1d8CamelCase/CamelCasedProperties/CamelCasedPropertiesDeep/PascalCase/PascalCasedProperties/PascalCasedPropertiesDeep: DisablepreserveConsecutiveUppercaseby default8226c1bPartialDeep: DisableallowUndefinedInNonTupleArraysby defaultb3c4524Split: EnablestrictLiteralChecksby default544a846Paths: DefaultmaxRecursionDepth5 (was 10)2ab5decObservableLike: Move to sub-export2a1072eIf*types in favor of a singleIf[4c2151a](https://redirect.github.com/sindresorhus/type-fest/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.
This PR was generated by Mend Renovate. View the repository job log.