Replies: 2 comments 3 replies
-
@rudeayelo I'm not sure I understand what you mean. |
Beta Was this translation helpful? Give feedback.
3 replies
-
Here's an idea: would it be possible to include the information in |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi, I'm developing a component library using workspaces in a monorepo structure, the tree looks pretty standard
The problem I'm finding is that
keyframes
are supposed to be specified in thepanda.config.ts
file, but I want to keep some animations scoped to a singular package. If I put thekeyframes
definition in thecomponent
'spanda.config.ts
, the generatedkeyframes.css
doesn't make it to theapp-using-preset-and-component
.To make it work, I have to add the
keyframes
definition in the app that's consuming the components using the animation, which definitely breaks separation of concerns.Is there anything I can do to define the
keyframes
from the scoped package?Beta Was this translation helpful? Give feedback.
All reactions