-
Notifications
You must be signed in to change notification settings - Fork 436
feat(ui): export Appearance type from root entry #7836
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub. 1 Skipped Deployment
|
🦋 Changeset detectedLatest commit: 16399b1 The changes in this PR will be included in the next version bump. This PR includes changesets to release 3 packages
Not sure what this means? Click here to learn what changesets are. Click here if you're a maintainer who wants to add another changeset to this PR |
📝 WalkthroughWalkthroughExports the 🚥 Pre-merge checks | ✅ 3 | ❌ 1❌ Failed checks (1 warning)
✅ Passed checks (3 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. Comment |
@clerk/agent-toolkit
@clerk/astro
@clerk/backend
@clerk/chrome-extension
@clerk/clerk-js
@clerk/dev-cli
@clerk/expo
@clerk/expo-passkeys
@clerk/express
@clerk/fastify
@clerk/hono
@clerk/localizations
@clerk/nextjs
@clerk/nuxt
@clerk/react
@clerk/react-router
@clerk/shared
@clerk/tanstack-react-start
@clerk/testing
@clerk/ui
@clerk/upgrade
@clerk/vue
commit: |
Summary
Appearancetype from the@clerk/uiroot entry point, allowingimport type { Appearance } from '@clerk/ui'transform-clerk-types-to-shared-typescodemod that rewrites@clerk/typesimports to@clerk/shared/types, withAppearanceredirected to@clerk/uiclerk-types-deprecation.md) to direct users to importAppearancefrom@clerk/uiCodemod behavior
import type { UserResource } from '@clerk/types'import type { UserResource } from '@clerk/shared/types'import type { Appearance } from '@clerk/types'import type { Appearance } from '@clerk/ui'import type { Appearance, UserResource } from '@clerk/types'@clerk/shared/types+@clerk/uiAlso handles
require()calls with the same splitting logic.Test plan
pnpm build --filter @clerk/uipassesAppearanceappears inpackages/ui/dist/index.d.tsexportsgit diff main --statshows only intended changes