Minor Changes
-
e18eeb3: Add
theme.viewTransitionsso a preset can name shared view-transition bags. CallviewTransition('slide')
and Panda inlines"vt_slide". Unused names stay out of the CSS. -
2d5d152: Add
globalVarsto utility definitions, so a variable's@propertyregistration lives next to the utility
that writes it. Registrations merge into the config-levelglobalVarsand are pruned when unused.utilities: { blur: { className: 'blur', globalVars: { '--blur': { syntax: '*', inherits: false } }, transform: (value) => ({ '--blur': `blur(${value})` }), }, }
Putting a plain value on a name a utility registered warns during CSS emit, but only when your stylesheet actually
reads that variable, since the value drops the registration and starts the variable inheriting. Pass a full
@propertyobject to retune one instead. Two utilities registering the same name with different definitions is a
config error.