
Security News
Risky Biz Podcast: Making Reachability Analysis Work in Real-World Codebases
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
@pandacss/logger
Advanced tools
[0.54.0] - 2025-06-12
borderWidth
token reference adds an extra px
to the generated css valuestrict: true
is settinyglobally
to fast-glob
change to fix issues with glob matchingaria
attributes to conditions for better accessibility and styling hooks:
[aria-disabled=true]
was added to disabled
, peerDisabled
, and groupDisabled
conditions[aria-readonly=true]
was added to the readOnly
condition[aria-invalid=true]
was added to invalid
and groupInvalid
conditionsImprove algorithm for deterministic property order:
padding
, margin
, inset
)padding-inline
, margin-inline
)padding-inline-start
, margin-inline-start
)css({
p: '4',
pr: '2',
px: '10',
})
Will result in the following css regardless of the order of the properties:
.p-4 {
padding: 4px;
}
.px-10 {
padding-left: 10px;
padding-right: 10px;
}
.pr-2 {
padding-right: 2px;
}
Reduce the size of the generated Token
type by referencing category tokens
Before:
export type Token = 'colors.green.400' | 'colors.red.400'
export type ColorToken = 'green.400' | 'red.400'
After:
export type Token = `colors.${ColorToken}`
export type ColorToken = 'green.400' | 'red.400'
FAQs
The core css panda library
The npm package @pandacss/logger receives a total of 96,205 weekly downloads. As such, @pandacss/logger popularity was classified as popular.
We found that @pandacss/logger demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
Security News
/Research
Malicious Nx npm versions stole secrets and wallet info using AI CLI tools; Socket’s AI scanner detected the supply chain attack and flagged the malware.
Security News
CISA’s 2025 draft SBOM guidance adds new fields like hashes, licenses, and tool metadata to make software inventories more actionable.