Skip to content

Commit d1eb24e

Browse files
authored
(4/n) shadcn: fix handling of sidebar colors (#6515)
* fix(shadcn): background, foreground and sidebar colors * chore: changeset * ci: update artifact
1 parent 9a14c1d commit d1eb24e

File tree

4 files changed

+89
-21
lines changed

4 files changed

+89
-21
lines changed

.changeset/nine-llamas-sell.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"shadcn": minor
3+
---
4+
5+
fix handling of sidebar colors

.github/workflows/prerelease.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
path: packages/shadcn
5555

5656
- name: Upload packaged artifact
57-
uses: actions/upload-artifact@v3
57+
uses: actions/upload-artifact@v4
5858
with:
5959
name: npm-package-shadcn@${{ steps.package-version.outputs.current-version }}-pr-${{ github.event.number }} # encode the PR number into the artifact name
6060
path: packages/shadcn/dist/index.js

packages/shadcn/src/utils/updaters/update-css-vars.ts

+33-15
Original file line numberDiff line numberDiff line change
@@ -78,12 +78,19 @@ export async function transformCssVars(
7878

7979
let plugins = [updateCssVarsPlugin(cssVars)]
8080

81+
if (options.cleanupDefaultNextStyles) {
82+
plugins.push(cleanupDefaultNextStylesPlugin())
83+
}
84+
8185
if (options.tailwindVersion === "v4") {
82-
plugins = [
83-
addCustomVariant({ params: "dark (&:is(.dark *))" }),
84-
updateCssVarsPluginV4(cssVars),
85-
updateThemePlugin(cssVars),
86-
]
86+
plugins = [addCustomVariant({ params: "dark (&:is(.dark *))" })]
87+
88+
if (options.cleanupDefaultNextStyles) {
89+
plugins.push(cleanupDefaultNextStylesPlugin())
90+
}
91+
92+
plugins.push(updateCssVarsPluginV4(cssVars))
93+
plugins.push(updateThemePlugin(cssVars))
8794

8895
if (options.tailwindConfig) {
8996
plugins.push(updateTailwindConfigPlugin(options.tailwindConfig))
@@ -92,10 +99,6 @@ export async function transformCssVars(
9299
}
93100
}
94101

95-
if (options.cleanupDefaultNextStyles) {
96-
plugins.push(cleanupDefaultNextStylesPlugin())
97-
}
98-
99102
if (config.tailwind.cssVariables) {
100103
plugins.push(updateBaseLayerPlugin())
101104
}
@@ -367,7 +370,12 @@ function updateCssVarsPluginV4(
367370
}
368371

369372
Object.entries(vars).forEach(([key, value]) => {
370-
const prop = `--${key.replace(/^--/, "")}`
373+
let prop = `--${key.replace(/^--/, "")}`
374+
375+
// Special case for sidebar-background.
376+
if (prop === "--sidebar-background") {
377+
prop = "--sidebar"
378+
}
371379

372380
if (isLocalHSLValue(value)) {
373381
value = `hsl(${value})`
@@ -450,12 +458,22 @@ function updateThemePlugin(cssVars: z.infer<typeof registryItemCssVarsSchema>) {
450458
break
451459
}
452460

461+
let prop =
462+
isLocalHSLValue(value) || isColorValue(value)
463+
? `--color-${variable.replace(/^--/, "")}`
464+
: `--${variable.replace(/^--/, "")}`
465+
if (prop === "--color-sidebar-background") {
466+
prop = "--color-sidebar"
467+
}
468+
469+
let propValue = `var(--${variable})`
470+
if (prop === "--color-sidebar") {
471+
propValue = "var(--sidebar)"
472+
}
473+
453474
const cssVarNode = postcss.decl({
454-
prop:
455-
isLocalHSLValue(value) || isColorValue(value)
456-
? `--color-${variable.replace(/^--/, "")}`
457-
: `--${variable.replace(/^--/, "")}`,
458-
value: `var(--${variable})`,
475+
prop,
476+
value: propValue,
459477
raws: { semicolon: true },
460478
})
461479
const existingDecl = themeNode?.nodes?.find(

packages/shadcn/test/utils/updaters/update-css-vars.test.ts

+50-5
Original file line numberDiff line numberDiff line change
@@ -729,7 +729,7 @@ describe("transformCssVarsV4", () => {
729729
--radius-lg: var(--radius);
730730
--radius-xl: calc(var(--radius) + 4px);
731731
}
732-
732+
733733
@layer base {
734734
* {
735735
@apply border-border;
@@ -742,6 +742,51 @@ describe("transformCssVarsV4", () => {
742742
`)
743743
})
744744

745+
test("should use --sidebar for --sidebar-background", async () => {
746+
expect(
747+
await transformCssVars(
748+
`@import "tailwindcss";
749+
`,
750+
{
751+
light: {
752+
"sidebar-background": "hsl(0 0% 98%)",
753+
},
754+
dark: {
755+
"sidebar-background": "hsl(0 0% 10%)",
756+
},
757+
},
758+
{ tailwind: { cssVariables: true } },
759+
{ tailwindVersion: "v4" }
760+
)
761+
).toMatchInlineSnapshot(`
762+
"@import "tailwindcss";
763+
764+
@custom-variant dark (&:is(.dark *));
765+
766+
:root {
767+
--sidebar: hsl(0 0% 98%);
768+
}
769+
770+
.dark {
771+
--sidebar: hsl(0 0% 10%);
772+
}
773+
774+
@theme inline {
775+
--color-sidebar: var(--sidebar);
776+
}
777+
778+
@layer base {
779+
* {
780+
@apply border-border;
781+
}
782+
body {
783+
@apply bg-background text-foreground;
784+
}
785+
}
786+
"
787+
`)
788+
})
789+
745790
test("should add plugin if not present", async () => {
746791
expect(
747792
await transformCssVars(
@@ -882,7 +927,7 @@ describe("transformCssVarsV4", () => {
882927
@custom-variant dark (&:is(.dark *));
883928
884929
@theme inline {
885-
930+
886931
@keyframes accordion-down {
887932
from {
888933
height: 0;
@@ -891,7 +936,7 @@ describe("transformCssVarsV4", () => {
891936
height: var(--radix-accordion-content-height);
892937
}
893938
}
894-
939+
895940
@keyframes accordion-up {
896941
from {
897942
height: var(--radix-accordion-content-height);
@@ -1028,7 +1073,7 @@ describe("transformCssVarsV4", () => {
10281073
@theme inline {
10291074
--animate-accordion-down: accordion-down 0.2s ease-out;
10301075
--animate-accordion-up: accordion-up 0.2s ease-out;
1031-
1076+
10321077
@keyframes accordion-down {
10331078
from {
10341079
height: 0;
@@ -1037,7 +1082,7 @@ describe("transformCssVarsV4", () => {
10371082
height: var(--radix-accordion-content-height);
10381083
}
10391084
}
1040-
1085+
10411086
@keyframes accordion-up {
10421087
from {
10431088
height: var(--radix-accordion-content-height);

0 commit comments

Comments
 (0)