-
Notifications
You must be signed in to change notification settings - Fork 293
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
css, integration: Replace outdent
dependency with dedent
#1386
Conversation
🦋 Changeset detectedLatest commit: 456545b The changes in this PR will be included in the next version bump. This PR includes changesets to release 19 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 |
outdent
dependency with dedent
outdent
dependency with dedent
I think this change broke something in how dedenting works when passing a multiline string in import { createGlobalTheme } from "@vanilla-extract/css";
const vars = createGlobalTheme(":root", {
focusWithin: {
highlightBoxShadow: `
0px 0px 0px 4px #DEEFFF
`,
},
}); This works fine in It might not be the change in this PR, but it who knows 🙂 It broke in the patch release this PR was included in at least |
Fair enough 😀 |
Really the only reason to move is that
dedent
seems much more actively maintained thanoutdent
.