Describe the bug
/subj
To Reproduce
Steps to reproduce the behavior:
- try importing
@kobalte/core/dismissable-layer
- see error
Additional context
judging by the tsup.config.ts, this most likely happens bc only src/*/index.tsx files are configured as entrypoints, and dismissable-layer has an index.ts (not tsx).
a fix would be to either make it a .tsx file or (probably better) update the tsup config to include index.{ts,tsx}
i need the component because i'm vendoring the tooltip (kobalte implementation is not customizable enough) and it uses it internally and i don't want to vendor it as well 😭
Describe the bug
/subj
To Reproduce
Steps to reproduce the behavior:
@kobalte/core/dismissable-layerAdditional context
judging by the
tsup.config.ts, this most likely happens bc onlysrc/*/index.tsxfiles are configured as entrypoints, anddismissable-layerhas anindex.ts(not tsx).a fix would be to either make it a .tsx file or (probably better) update the tsup config to include
index.{ts,tsx}i need the component because i'm vendoring the tooltip (kobalte implementation is not customizable enough) and it uses it internally and i don't want to vendor it as well 😭