Skip to content

Commit 0393c99

Browse files
authored
fix(clerk-js): Remove the fontSmoothing variable (clerk#2734)
1 parent be99136 commit 0393c99

File tree

7 files changed

+3
-25
lines changed

7 files changed

+3
-25
lines changed

.changeset/ninety-planets-lick.md

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
---
2+
---

packages/clerk-js/src/ui/customizables/__tests__/parseAppearance.test.tsx

-5
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ const themeA = {
2828
fontFamilyButtons: 'Comic Sans',
2929
fontSize: '1rem',
3030
fontWeight: { normal: 600 },
31-
fontSmoothing: 'antialiased',
3231
spacingUnit: 'px',
3332
},
3433
} as const;
@@ -54,7 +53,6 @@ const themeB = {
5453
fontFamilyButtons: 'Arial',
5554
fontSize: '2rem',
5655
fontWeight: { normal: 700 },
57-
fontSmoothing: 'never',
5856
spacingUnit: 'px',
5957
},
6058
} as const;
@@ -97,7 +95,6 @@ describe('AppearanceProvider internalTheme flows', () => {
9795
expect(result.current.parsedInternalTheme.fonts.$buttons).toBe(themeA.variables.fontFamily);
9896
expect(result.current.parsedInternalTheme.fontSizes.$md).toBe('1rem');
9997
expect(result.current.parsedInternalTheme.fontWeights.$normal).toBe(themeA.variables.fontWeight.normal);
100-
expect(result.current.parsedInternalTheme.options.$fontSmoothing).toBe(themeA.variables.fontSmoothing);
10198
expect(result.current.parsedInternalTheme.space.$1).toContain(themeA.variables.spacingUnit);
10299
});
103100

@@ -128,7 +125,6 @@ describe('AppearanceProvider internalTheme flows', () => {
128125
expect(result.current.parsedInternalTheme.fonts.$buttons).toBe(themeB.variables.fontFamily);
129126
expect(result.current.parsedInternalTheme.fontSizes.$md).toBe('2rem');
130127
expect(result.current.parsedInternalTheme.fontWeights.$normal).toBe(themeB.variables.fontWeight.normal);
131-
expect(result.current.parsedInternalTheme.options.$fontSmoothing).toBe(themeB.variables.fontSmoothing);
132128
expect(result.current.parsedInternalTheme.space.$1).toContain(themeB.variables.spacingUnit);
133129
});
134130

@@ -160,7 +156,6 @@ describe('AppearanceProvider internalTheme flows', () => {
160156
expect(result.current.parsedInternalTheme.fonts.$buttons).toBe(themeB.variables.fontFamily);
161157
expect(result.current.parsedInternalTheme.fontSizes.$md).toBe('2rem');
162158
expect(result.current.parsedInternalTheme.fontWeights.$normal).toBe(themeB.variables.fontWeight.normal);
163-
expect(result.current.parsedInternalTheme.options.$fontSmoothing).toBe(themeB.variables.fontSmoothing);
164159
expect(result.current.parsedInternalTheme.space.$1).toContain(themeB.variables.spacingUnit);
165160
});
166161
});

packages/clerk-js/src/ui/customizables/parseAppearance.ts

+1-3
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ import {
1111
createRadiiUnits,
1212
createShadows,
1313
createSpaceScale,
14-
createThemeOptions,
1514
} from './parseVariables';
1615

1716
export type ParsedElements = Elements[];
@@ -112,7 +111,6 @@ const createInternalThemeFromVariables = (theme: Theme | undefined): DeepPartial
112111
const fontSizes = { ...createFontSizeScale(theme) };
113112
const fontWeights = { ...createFontWeightScale(theme) };
114113
const fonts = { ...createFonts(theme) };
115-
const options = { ...createThemeOptions(theme) };
116114
const shadows = { ...createShadows(theme) };
117-
return createInternalTheme({ colors, radii, space, fontSizes, fontWeights, fonts, options, shadows } as any);
115+
return createInternalTheme({ colors, radii, space, fontSizes, fontWeights, fonts, shadows } as any);
118116
};

packages/clerk-js/src/ui/customizables/parseVariables.ts

-5
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,6 @@ export const createColorScales = (theme: Theme) => {
4040
});
4141
};
4242

43-
export const createThemeOptions = (theme: Theme) => {
44-
const { fontSmoothing } = theme.variables || {};
45-
return removeUndefinedProps({ fontSmoothing });
46-
};
47-
4843
export const toHSLA = (str: string | undefined) => {
4944
return str ? colors.toHslaString(str) : undefined;
5045
};

packages/clerk-js/src/ui/foundations/defaultFoundations.ts

-5
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,6 @@ import { transitionDuration, transitionProperty, transitionTiming } from './tran
77
import { fonts, fontSizes, fontStyles, fontWeights, letterSpacings, lineHeights } from './typography';
88
import { zIndices } from './zIndices';
99

10-
const options = {
11-
fontSmoothing: undefined,
12-
} as const;
13-
1410
const defaultInternalThemeFoundations = Object.freeze({
1511
colors,
1612
fonts,
@@ -29,7 +25,6 @@ const defaultInternalThemeFoundations = Object.freeze({
2925
opacity,
3026
borders,
3127
zIndices,
32-
options,
3328
} as const);
3429

3530
type InternalThemeFoundations = typeof defaultInternalThemeFoundations;

packages/clerk-js/src/ui/styledSystem/common.ts

-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ import type { InternalTheme } from './types';
22

33
const textVariants = (t: InternalTheme) => {
44
const base = {
5-
WebkitFontSmoothing: t.options.$fontSmoothing,
65
fontFamily: 'inherit',
76
letterSpacing: t.letterSpacings.$normal,
87
};

packages/types/src/appearance.ts

-6
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,6 @@ export type CssColorOrScale = string | ColorScaleWithRequiredBase;
4949
export type CssColorOrAlphaScale = string | AlphaColorScale;
5050
type CssColor = string | TransparentColor | BuiltInColors;
5151
type CssLengthUnit = string;
52-
type FontSmoothing = 'auto' | 'antialiased' | 'never';
5352

5453
type FontWeightNamedValue = CSS.Properties['fontWeight'];
5554
type FontWeightNumericValue = 100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900;
@@ -489,11 +488,6 @@ export type Variables = {
489488
* @default 1rem;
490489
*/
491490
fontSize?: CssLengthUnit;
492-
/**
493-
* What text anti-aliasing strategy the components will use by default. You can set it to `auto`, `antialiased` or `never`
494-
* @default auto;
495-
*/
496-
fontSmoothing?: FontSmoothing;
497491
/**
498492
* The font weight the components will use. By default, the components will use the 400, 500 and 600 weights for normal, medium and bold
499493
* text respectively. You can override the default weights by passing a {@FontWeightScale} object

0 commit comments

Comments
 (0)