Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@pandacss/error

Package Overview
Dependencies
Maintainers
1
Versions
922
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@pandacss/error - npm Package Versions

1
93

0.0.0-dev-20231121125037

Diff

segunadebayo
published 0.0.0-dev-20231121120209 •

segunadebayo
published 0.18.3 •

Changelog

Source

[0.18.3] - 2023-11-15

Fixed

  • Fix issue with forceConsistentTypeExtension where the composition.d.mts had an incorrect type import
  • Fix issue in studio here userland @ark-ui/react version could interfere with studio version
segunadebayo
published 0.0.0-dev-20231115170809 •

segunadebayo
published 0.0.0-dev-20231115170405 •

segunadebayo
published 0.0.0-dev-20231115164010 •

segunadebayo
published 0.18.2 •

Changelog

Source

[0.18.2] - 2023-11-10

Fixed

  • Fix regression in grid pattern where columns doesn't not work as expected.
segunadebayo
published 0.0.0-dev-20231110170330 •

segunadebayo
published 0.18.1 •

Changelog

Source

[0.18.1] - 2023-11-09

Fixed

  • Fix issue where virtual color does not apply DEFAULT color in palette
  • Fix issue where composite tokens (shadows, border, etc) generated incorrect css when using the object syntax in semantic tokens.
  • Fix issue where hideBelow breakpoints are inclusive of the specified breakpoints
  • Fix an issue with the grid pattern from @pandacss/preset-base (included by default), setting a minChildWidth wasn't interpreted as a token value

Before:

<div className={grid({ minChildWidth: '80px', gap: 8 })} />
// ✅ grid-template-columns: repeat(auto-fit, minmax(80px, 1fr))

<div className={grid({ minChildWidth: '20', gap: 8 })} />
// ❌ grid-template-columns: repeat(auto-fit, minmax(20, 1fr))
//                                                  ^^^

After:

<div className={grid({ minChildWidth: '80px', gap: 8 })} />
// ✅ grid-template-columns: repeat(auto-fit, minmax(80px, 1fr))

<div className={grid({ minChildWidth: '20', gap: 8 })} />
// ✅ grid-template-columns: repeat(auto-fit, minmax(var(--sizes-20, 20), 1fr))
//                                                  ^^^^^^^^^^^^^^^^^^^
css({ hideBelow: 'lg' })
// => @media screen and (max-width: 63.9975em) { background: red; }

Added

  • Support arbitrary breakpoints in hideBelow and hideFrom utilities
css({ hideFrom: '800px' })
// => @media screen and (min-width: 800px) { background: red; }

Changed

  • Make _requiredcondition target [data-required] and [aria-required=true] attributes
segunadebayo
published 0.0.0-dev-20231109134121 •

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc