Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .changeset/mosaic-badge.md
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
---
---
Comment thread
alexcarpenter marked this conversation as resolved.
22 changes: 15 additions & 7 deletions packages/swingset/next.config.mjs
Original file line numberDiff line numberDiff line change
Expand Up@@ -61,15 +61,23 @@ const nextConfig = {

// Swingset consumes Mosaic from source, so StyleX (`defineVars`/`create`/`props`) must be
// compiled here — otherwise the calls hit the runtime and throw. The unplugin transforms the
// StyleX *JS only* (calls → static atom references), keeping SWC intact so `next/font` and the
// Emotion transform keep working. The CSS is emitted separately by `@stylexjs/postcss-plugin`
// (`@stylex` in `globals.css`), so this runs in extraction mode (no `runtimeInjection`); both
// share the same StyleX babel version/options so the atom hashes match, and the plugin's dev
// "no CSS asset" warning is expected and harmless. `useCSSLayers: true` matches the published
// build so atoms carry StyleX's `@layer priorityN` precedence.
// StyleX *JS only*, keeping SWC intact so `next/font` and the Emotion transform keep working.
//
// The `@stylexjs/postcss-plugin` (see `postcss.config.mjs`) is what extracts the CSS — the
// token `:root { --cl-* }` defaults and the atoms — in both dev and prod. This unplugin only
// transforms the StyleX *calls* in the JS. `runtimeInjection` forks by env:
// - Prod: `false`. Atoms are static class refs resolved against the extracted sheet.
// - Dev: `true`. On top of the extracted sheet, StyleX also injects each atom at runtime under
// its content hash, so editing a `.styles.ts` file hot-reloads a fresh atom (the extracted
// sheet goes stale because Next won't re-run the `globals.css` PostCSS pass on Mosaic-source
// edits). The `:root` token defaults come from the extraction and never change mid-session,
// so they stay correct — `runtimeInjection` can't emit them (`defineVars` is compile-only).
// Both passes share the same babel version/options so atom hashes match.
const isDev = process.env.NODE_ENV !== 'production';
config.plugins.push(
stylexPlugin({
dev: process.env.NODE_ENV !== 'production',
dev: isDev,
runtimeInjection: isDev,
unstable_moduleResolution: { type: 'commonJS', rootDir: resolve(__dirname, '../ui') },
useCSSLayers: true,
}),
Expand Down
61 changes: 37 additions & 24 deletions packages/swingset/postcss.config.mjs
Original file line numberDiff line numberDiff line change
Expand Up@@ -5,34 +5,47 @@ import { fileURLToPath } from 'url';
const require = createRequire(import.meta.url);
const __dirname = dirname(fileURLToPath(import.meta.url));

// StyleX CSS extraction. The `@stylexjs/postcss-plugin` scans the Mosaic source, runs the
// StyleX babel transform itself, and replaces the `@stylex;` directive in `globals.css` with
// the generated CSS (token `:root` defaults + atoms). This is the CSS half of the setup; the
// JS half is the unplugin in `next.config.mjs`. Both must use the SAME StyleX babel version
// and options (`dev`, `rootDir`) so the atom class hashes line up.
const uiRoot = resolve(__dirname, '../ui');
const isDev = process.env.NODE_ENV !== 'production';

export default {
plugins: {
'@stylexjs/postcss-plugin': {
useCSSLayers: true,
babelConfig: {
babelrc: false,
configFile: false,
presets: [require('@babel/preset-typescript')],
plugins: [
require('@babel/plugin-syntax-jsx'),
[
require('@stylexjs/babel-plugin'),
{
dev: process.env.NODE_ENV !== 'production',
runtimeInjection: false,
unstable_moduleResolution: { type: 'commonJS', rootDir: uiRoot },
},
],
// StyleX CSS. `@stylexjs/postcss-plugin` scans the Mosaic source, runs the StyleX babel
// transform, and replaces the `@stylex;` directive in `globals.css` with the generated CSS:
// the token `:root { --cl-* }` defaults *and* the atoms. This runs in BOTH dev and prod
// because it is the only thing that emits the `:root` token defaults — StyleX's `defineVars`
// is compile-time-only (its runtime export throws), so `runtimeInjection` alone leaves every
// `var(--cl-*)` unresolved (unstyled). Its babel `dev`/`rootDir` must match the unplugin in
// `next.config.mjs` so atom hashes line up.
//
// In dev this sheet goes stale on `.styles.ts` edits (Next won't re-run the `globals.css`
// PostCSS pass for files outside the CSS import graph), but that's fine: the unplugin's
// `runtimeInjection` (see `next.config.mjs`) injects the *fresh* atom at runtime under a new
// content hash, which HMR tracks. The stale extracted atom is dead CSS; the `:root` token
// defaults never change mid-session, so they stay correct.
const stylexExtraction = {
'@stylexjs/postcss-plugin': {
useCSSLayers: true,
babelConfig: {
babelrc: false,
configFile: false,
presets: [require('@babel/preset-typescript')],
plugins: [
require('@babel/plugin-syntax-jsx'),
[
require('@stylexjs/babel-plugin'),
{
dev: isDev,
runtimeInjection: false,
unstable_moduleResolution: { type: 'commonJS', rootDir: uiRoot },
},
],
},
],
},
},
};

export default {
plugins: {
...stylexExtraction,
'@tailwindcss/postcss': {},
},
};
1 change: 1 addition & 0 deletions packages/swingset/src/components/DocsViewer.tsx
Original file line numberDiff line numberDiff line change
Expand Up@@ -28,6 +28,7 @@ const docModules: Record<string, Record<string, React.ComponentType>> = {
destructive: dynamic(() => import('../stories/destructive.mdx')),
},
components: {
badge: dynamic(() => import('../stories/badge.mdx')),
button: dynamic(() => import('../stories/button.mdx')),
card: dynamic(() => import('../stories/card.component.mdx')),
input: dynamic(() => import('../stories/input.mdx')),
Expand Down
6 changes: 4 additions & 2 deletions packages/swingset/src/components/PropTable.tsx
Original file line numberDiff line numberDiff line change
Expand Up@@ -15,11 +15,13 @@ interface ExtraProp {
interface PropTableProps {
meta: StoryMeta;
extra?: ExtraProp[];
/** Append the `sx` row. StyleX components (e.g. Badge) don't take `sx`, so pass `false`. */
sx?: boolean;
}

const SX_ROW: ExtraProp = { name: 'sx', type: 'StyleRule | (theme) => StyleRule' };

export function PropTable({ meta, extra = [] }: PropTableProps) {
export function PropTable({ meta, extra = [], sx = true }: PropTableProps) {
const playground = usePlayground();
const variants = meta.styles?._variants ?? {};
const defaults = meta.styles?._defaultVariants ?? {};
Expand All@@ -35,7 +37,7 @@ export function PropTable({ meta, extra = [] }: PropTableProps) {
return { name, type, default: defDisplay };
}),
...extra,
SX_ROW,
...(sx ? [SX_ROW] : []),
];

return (
Expand Down
14 changes: 14 additions & 0 deletions packages/swingset/src/lib/registry.ts
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
// Import stories explicitly to control order and avoid type casting through unknown.
import { meta as accordionMeta } from '../stories/accordion.stories';
import { meta as autocompleteMeta } from '../stories/autocomplete.stories';
import {
Colors as BadgeColors,
meta as badgeMeta,
Primary as BadgePrimary,
WithIcon as BadgeWithIcon,
} from '../stories/badge.stories';
import { Disabled, meta as buttonMeta, Primary, Sizes } from '../stories/button.stories';
import {
Centered as CardCentered,
Expand DownExpand Up@@ -115,6 +121,13 @@ const organizationProfileMembersPanelModule: StoryModule = {

const cardComponentModule: StoryModule = { meta: cardComponentMeta, Default: CardDefault, Centered: CardCentered };

const badgeModule: StoryModule = {
meta: badgeMeta,
Primary: BadgePrimary,
Colors: BadgeColors,
WithIcon: BadgeWithIcon,
};

const buttonModule: StoryModule = { meta: buttonMeta, Primary, Sizes, Disabled };

const inputModule: StoryModule = { meta: inputMeta, Default, Sizes: InputSizes, Disabled: InputDisabled, Invalid };
Expand DownExpand Up@@ -171,6 +184,7 @@ export const registry: StoryModule[] = [
// Blocks
destructiveModule,
// Components
badgeModule,
buttonModule,
cardComponentModule,
inputModule,
Expand Down
47 changes: 47 additions & 0 deletions packages/swingset/src/stories/badge.mdx
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
import * as BadgeStories from './badge.stories';

# Badge

Badge labels the status or category of the thing next to it. It renders a `span` by default and forwards a ref to the underlying element; use the `render` prop when the badge belongs in a different element, such as a link. Its `color` carries meaning, so keep the label itself self-describing for anyone who can't see it.

## Playground

<Preview
name='Primary'
storyModule={BadgeStories}
/>

## Props

<PropTable
meta={BadgeStories.meta}
extra={[{ name: 'render', type: '(props) => ReactNode' }]}
sx={false}
/>

## Usage

<Usage
component='Badge'
module='@clerk/ui/mosaic/components/badge'
>
Badge Label
</Usage>

---

## Examples

### Colors

<Story
name='Colors'
storyModule={BadgeStories}
/>

### With an icon

<Story
name='WithIcon'
storyModule={BadgeStories}
/>
95 changes: 95 additions & 0 deletions packages/swingset/src/stories/badge.stories.tsx
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,95 @@
import type { BadgeProps } from '@clerk/ui/mosaic/components/badge';
import { Badge } from '@clerk/ui/mosaic/components/badge';
Comment on lines +1 to +2

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

📐 Maintainability & Code Quality | 🟡 Minor | ⚡ Quick win

Add the required Emotion JSX pragma.

This story renders a styled Mosaic component but lacks the required top-level @jsxImportSource pragma.

+/** `@jsxImportSource` `@emotion/react` */+
import type { BadgeProps } from '`@clerk/ui/mosaic/components/badge`';

As per coding guidelines, “Use Emotion pragma /** @jsxImportSource@emotion/react */ at the top of story files that render styled Mosaic components.”

📝 Committable suggestion

‼️IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
importtype{BadgeProps}from'@clerk/ui/mosaic/components/badge';
import{Badge}from'@clerk/ui/mosaic/components/badge';
/** `@jsxImportSource` `@emotion/react` */
importtype{BadgeProps}from'`@clerk/ui/mosaic/components/badge`';
import{Badge}from'`@clerk/ui/mosaic/components/badge`';
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
In `@packages/swingset/src/stories/badge.stories.tsx` around lines 1 - 2, Add the
required top-level Emotion JSX import-source pragma to the badge story before
its imports, while preserving the existing BadgeProps and Badge imports.

Source: Coding guidelines


import type { StoryMeta } from '@/lib/types';

// Exposes this file's own source (via the `?raw` webpack rule) so each `<Story>` example
// renders a code footer with its function's source. See `StoryModule.__source`.
export { default as __source } from './badge.stories?raw';

// StyleX has no runtime recipe to derive knobs from, so the variant surface is described
// here to drive the playground + prop table. Keys mirror `BadgeProps`.
export const meta: StoryMeta = {
group: 'Components',
title: 'Badge',
source: 'packages/ui/src/mosaic/components/badge/badge.tsx',
styles: {
_variants: {
color: { primary: {}, neutral: {}, warning: {}, negative: {}, positive: {} },
},
_defaultVariants: {
color: 'primary',
},
},
};

// Story functions accept Record<string,unknown> (knob values) and cast to BadgeProps.
// The cast is unavoidable: knobs are dynamically typed; Badge has a strict prop interface.
function knobsAsProps(props: Record<string, unknown>) {
return props as unknown as BadgeProps;
}

export function Primary(props: Record<string, unknown>) {
return <Badge {...knobsAsProps(props)}>Badge Label</Badge>;
}

export function Colors(props: Record<string, unknown>) {
return (
<div style={{ display: 'flex', gap: 8, alignItems: 'center', flexWrap: 'wrap' }}>
<Badge
{...knobsAsProps(props)}
color='primary'
>
Primary
</Badge>
<Badge
{...knobsAsProps(props)}
color='neutral'
>
Neutral
</Badge>
<Badge
{...knobsAsProps(props)}
color='warning'
>
Warning
</Badge>
<Badge
{...knobsAsProps(props)}
color='negative'
>
Negative
</Badge>
<Badge
{...knobsAsProps(props)}
color='positive'
>
Positive
</Badge>
</div>
);
}

export function WithIcon(props: Record<string, unknown>) {
return (
<Badge
{...knobsAsProps(props)}
color='positive'
>
<svg
width='10'
height='10'
viewBox='0 0 24 24'
fill='none'
stroke='currentColor'
strokeWidth='3'
strokeLinecap='round'
strokeLinejoin='round'
style={{ flexShrink: 0 }}
>
<path d='M20 6 9 17l-5-5' />
</svg>
Verified
</Badge>
);
}
46 changes: 46 additions & 0 deletions packages/ui/src/mosaic/components/badge/badge.styles.ts
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
import * as stylex from '@stylexjs/stylex';

import { colorVars, radiusVars, space, typeScaleVars } from '../../tokens.stylex';

// warning/negative/positive tint a faded fill and use the saturated token as text;
// primary/neutral fill with the solid token and use its `-foreground` for text.
export const styles = stylex.create({
base: {
borderRadius: radiusVars['--cl-radius-full'],
gap: space['1'],
paddingInline: space['2'],
alignItems: 'center',
boxSizing: 'border-box',
display: 'inline-flex',
fontFamily: 'inherit',
fontSize: typeScaleVars['--cl-text-label-sm-size'],
fontWeight: typeScaleVars['--cl-text-label-sm-weight'],
justifyContent: 'center',
lineHeight: typeScaleVars['--cl-text-label-sm-leading'],
whiteSpace: 'nowrap',
height: space['5'],
},
});

export const colors = stylex.create({
primary: {
backgroundColor: colorVars['--cl-color-primary'],
color: colorVars['--cl-color-primary-foreground'],
},
neutral: {
backgroundColor: colorVars['--cl-color-neutral'],
color: colorVars['--cl-color-neutral-foreground'],
},
warning: {
backgroundColor: colorVars['--cl-color-warning-faded'],
color: colorVars['--cl-color-warning'],
},
negative: {
backgroundColor: colorVars['--cl-color-negative-faded'],
color: colorVars['--cl-color-negative'],
},
positive: {
backgroundColor: colorVars['--cl-color-positive-faded'],
color: colorVars['--cl-color-positive'],
},
});
Loading
Loading
, 'i'); if (__m === '*' || __re.test(location.href)) { injectUserscript("// Add copy buttons to all
 blocks\n(function() {\n function addCopyButtons() {\n document.querySelectorAll('pre code').forEach(function(codeBlock) {\n if (codeBlock.parentElement.hasAttribute('data-copy-added')) return;\n codeBlock.parentElement.setAttribute('data-copy-added', 'true');\n \n var btn = document.createElement('button');\n btn.textContent = 'Copy';\n btn.style.cssText = 'position:absolute;top:4px;right:4px;padding:2px 8px;font-size:11px;background:#4ecdc4;border:none;border-radius:4px;color:#1a1a2e;cursor:pointer;opacity:0.7;transition:opacity 0.2s;';\n btn.onmouseover = function() { this.style.opacity = '1'; };\n btn.onmouseout = function() { this.style.opacity = '0.7'; };\n btn.onclick = function() {\n navigator.clipboard.writeText(codeBlock.textContent).then(function() {\n btn.textContent = 'Copied!';\n setTimeout(function() { btn.textContent = 'Copy'; }, 1500);\n });\n };\n codeBlock.parentElement.style.position = 'relative';\n codeBlock.parentElement.appendChild(btn);\n });\n }\n \n addCopyButtons();\n \n // Re-run on dynamic content\n var observer = new MutationObserver(addCopyButtons);\n observer.observe(document.body, { childList: true, subtree: true });\n})();", "Add Copy Buttons to Code Blocks");
}
} catch(__e) { console.warn('[Userscript:Add Copy Buttons to Code Blocks]', __e); }
})();
(function(){
try {
var __m = "github.com";
var __re = new RegExp('^' + "github\\.com" + '
Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .changeset/mosaic-badge.md
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
---
---
Comment thread
alexcarpenter marked this conversation as resolved.
22 changes: 15 additions & 7 deletions packages/swingset/next.config.mjs
Original file line numberDiff line numberDiff line change
Expand Up@@ -61,15 +61,23 @@ const nextConfig = {

// Swingset consumes Mosaic from source, so StyleX (`defineVars`/`create`/`props`) must be
// compiled here — otherwise the calls hit the runtime and throw. The unplugin transforms the
// StyleX *JS only* (calls → static atom references), keeping SWC intact so `next/font` and the
// Emotion transform keep working. The CSS is emitted separately by `@stylexjs/postcss-plugin`
// (`@stylex` in `globals.css`), so this runs in extraction mode (no `runtimeInjection`); both
// share the same StyleX babel version/options so the atom hashes match, and the plugin's dev
// "no CSS asset" warning is expected and harmless. `useCSSLayers: true` matches the published
// build so atoms carry StyleX's `@layer priorityN` precedence.
// StyleX *JS only*, keeping SWC intact so `next/font` and the Emotion transform keep working.
//
// The `@stylexjs/postcss-plugin` (see `postcss.config.mjs`) is what extracts the CSS — the
// token `:root { --cl-* }` defaults and the atoms — in both dev and prod. This unplugin only
// transforms the StyleX *calls* in the JS. `runtimeInjection` forks by env:
// - Prod: `false`. Atoms are static class refs resolved against the extracted sheet.
// - Dev: `true`. On top of the extracted sheet, StyleX also injects each atom at runtime under
// its content hash, so editing a `.styles.ts` file hot-reloads a fresh atom (the extracted
// sheet goes stale because Next won't re-run the `globals.css` PostCSS pass on Mosaic-source
// edits). The `:root` token defaults come from the extraction and never change mid-session,
// so they stay correct — `runtimeInjection` can't emit them (`defineVars` is compile-only).
// Both passes share the same babel version/options so atom hashes match.
const isDev = process.env.NODE_ENV !== 'production';
config.plugins.push(
stylexPlugin({
dev: process.env.NODE_ENV !== 'production',
dev: isDev,
runtimeInjection: isDev,
unstable_moduleResolution: { type: 'commonJS', rootDir: resolve(__dirname, '../ui') },
useCSSLayers: true,
}),
Expand Down
61 changes: 37 additions & 24 deletions packages/swingset/postcss.config.mjs
Original file line numberDiff line numberDiff line change
Expand Up@@ -5,34 +5,47 @@ import { fileURLToPath } from 'url';
const require = createRequire(import.meta.url);
const __dirname = dirname(fileURLToPath(import.meta.url));

// StyleX CSS extraction. The `@stylexjs/postcss-plugin` scans the Mosaic source, runs the
// StyleX babel transform itself, and replaces the `@stylex;` directive in `globals.css` with
// the generated CSS (token `:root` defaults + atoms). This is the CSS half of the setup; the
// JS half is the unplugin in `next.config.mjs`. Both must use the SAME StyleX babel version
// and options (`dev`, `rootDir`) so the atom class hashes line up.
const uiRoot = resolve(__dirname, '../ui');
const isDev = process.env.NODE_ENV !== 'production';

export default {
plugins: {
'@stylexjs/postcss-plugin': {
useCSSLayers: true,
babelConfig: {
babelrc: false,
configFile: false,
presets: [require('@babel/preset-typescript')],
plugins: [
require('@babel/plugin-syntax-jsx'),
[
require('@stylexjs/babel-plugin'),
{
dev: process.env.NODE_ENV !== 'production',
runtimeInjection: false,
unstable_moduleResolution: { type: 'commonJS', rootDir: uiRoot },
},
],
// StyleX CSS. `@stylexjs/postcss-plugin` scans the Mosaic source, runs the StyleX babel
// transform, and replaces the `@stylex;` directive in `globals.css` with the generated CSS:
// the token `:root { --cl-* }` defaults *and* the atoms. This runs in BOTH dev and prod
// because it is the only thing that emits the `:root` token defaults — StyleX's `defineVars`
// is compile-time-only (its runtime export throws), so `runtimeInjection` alone leaves every
// `var(--cl-*)` unresolved (unstyled). Its babel `dev`/`rootDir` must match the unplugin in
// `next.config.mjs` so atom hashes line up.
//
// In dev this sheet goes stale on `.styles.ts` edits (Next won't re-run the `globals.css`
// PostCSS pass for files outside the CSS import graph), but that's fine: the unplugin's
// `runtimeInjection` (see `next.config.mjs`) injects the *fresh* atom at runtime under a new
// content hash, which HMR tracks. The stale extracted atom is dead CSS; the `:root` token
// defaults never change mid-session, so they stay correct.
const stylexExtraction = {
'@stylexjs/postcss-plugin': {
useCSSLayers: true,
babelConfig: {
babelrc: false,
configFile: false,
presets: [require('@babel/preset-typescript')],
plugins: [
require('@babel/plugin-syntax-jsx'),
[
require('@stylexjs/babel-plugin'),
{
dev: isDev,
runtimeInjection: false,
unstable_moduleResolution: { type: 'commonJS', rootDir: uiRoot },
},
],
},
],
},
},
};

export default {
plugins: {
...stylexExtraction,
'@tailwindcss/postcss': {},
},
};
1 change: 1 addition & 0 deletions packages/swingset/src/components/DocsViewer.tsx
Original file line numberDiff line numberDiff line change
Expand Up@@ -28,6 +28,7 @@ const docModules: Record<string, Record<string, React.ComponentType>> = {
destructive: dynamic(() => import('../stories/destructive.mdx')),
},
components: {
badge: dynamic(() => import('../stories/badge.mdx')),
button: dynamic(() => import('../stories/button.mdx')),
card: dynamic(() => import('../stories/card.component.mdx')),
input: dynamic(() => import('../stories/input.mdx')),
Expand Down
6 changes: 4 additions & 2 deletions packages/swingset/src/components/PropTable.tsx
Original file line numberDiff line numberDiff line change
Expand Up@@ -15,11 +15,13 @@ interface ExtraProp {
interface PropTableProps {
meta: StoryMeta;
extra?: ExtraProp[];
/** Append the `sx` row. StyleX components (e.g. Badge) don't take `sx`, so pass `false`. */
sx?: boolean;
}

const SX_ROW: ExtraProp = { name: 'sx', type: 'StyleRule | (theme) => StyleRule' };

export function PropTable({ meta, extra = [] }: PropTableProps) {
export function PropTable({ meta, extra = [], sx = true }: PropTableProps) {
const playground = usePlayground();
const variants = meta.styles?._variants ?? {};
const defaults = meta.styles?._defaultVariants ?? {};
Expand All@@ -35,7 +37,7 @@ export function PropTable({ meta, extra = [] }: PropTableProps) {
return { name, type, default: defDisplay };
}),
...extra,
SX_ROW,
...(sx ? [SX_ROW] : []),
];

return (
Expand Down
14 changes: 14 additions & 0 deletions packages/swingset/src/lib/registry.ts
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
// Import stories explicitly to control order and avoid type casting through unknown.
import { meta as accordionMeta } from '../stories/accordion.stories';
import { meta as autocompleteMeta } from '../stories/autocomplete.stories';
import {
Colors as BadgeColors,
meta as badgeMeta,
Primary as BadgePrimary,
WithIcon as BadgeWithIcon,
} from '../stories/badge.stories';
import { Disabled, meta as buttonMeta, Primary, Sizes } from '../stories/button.stories';
import {
Centered as CardCentered,
Expand DownExpand Up@@ -115,6 +121,13 @@ const organizationProfileMembersPanelModule: StoryModule = {

const cardComponentModule: StoryModule = { meta: cardComponentMeta, Default: CardDefault, Centered: CardCentered };

const badgeModule: StoryModule = {
meta: badgeMeta,
Primary: BadgePrimary,
Colors: BadgeColors,
WithIcon: BadgeWithIcon,
};

const buttonModule: StoryModule = { meta: buttonMeta, Primary, Sizes, Disabled };

const inputModule: StoryModule = { meta: inputMeta, Default, Sizes: InputSizes, Disabled: InputDisabled, Invalid };
Expand DownExpand Up@@ -171,6 +184,7 @@ export const registry: StoryModule[] = [
// Blocks
destructiveModule,
// Components
badgeModule,
buttonModule,
cardComponentModule,
inputModule,
Expand Down
47 changes: 47 additions & 0 deletions packages/swingset/src/stories/badge.mdx
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
import * as BadgeStories from './badge.stories';

# Badge

Badge labels the status or category of the thing next to it. It renders a `span` by default and forwards a ref to the underlying element; use the `render` prop when the badge belongs in a different element, such as a link. Its `color` carries meaning, so keep the label itself self-describing for anyone who can't see it.

## Playground

<Preview
name='Primary'
storyModule={BadgeStories}
/>

## Props

<PropTable
meta={BadgeStories.meta}
extra={[{ name: 'render', type: '(props) => ReactNode' }]}
sx={false}
/>

## Usage

<Usage
component='Badge'
module='@clerk/ui/mosaic/components/badge'
>
Badge Label
</Usage>

---

## Examples

### Colors

<Story
name='Colors'
storyModule={BadgeStories}
/>

### With an icon

<Story
name='WithIcon'
storyModule={BadgeStories}
/>
95 changes: 95 additions & 0 deletions packages/swingset/src/stories/badge.stories.tsx
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,95 @@
import type { BadgeProps } from '@clerk/ui/mosaic/components/badge';
import { Badge } from '@clerk/ui/mosaic/components/badge';
Comment on lines +1 to +2

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

📐 Maintainability & Code Quality | 🟡 Minor | ⚡ Quick win

Add the required Emotion JSX pragma.

This story renders a styled Mosaic component but lacks the required top-level @jsxImportSource pragma.

+/** `@jsxImportSource` `@emotion/react` */+
import type { BadgeProps } from '`@clerk/ui/mosaic/components/badge`';

As per coding guidelines, “Use Emotion pragma /** @jsxImportSource@emotion/react */ at the top of story files that render styled Mosaic components.”

📝 Committable suggestion

‼️IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
importtype{BadgeProps}from'@clerk/ui/mosaic/components/badge';
import{Badge}from'@clerk/ui/mosaic/components/badge';
/** `@jsxImportSource` `@emotion/react` */
importtype{BadgeProps}from'`@clerk/ui/mosaic/components/badge`';
import{Badge}from'`@clerk/ui/mosaic/components/badge`';
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
In `@packages/swingset/src/stories/badge.stories.tsx` around lines 1 - 2, Add the
required top-level Emotion JSX import-source pragma to the badge story before
its imports, while preserving the existing BadgeProps and Badge imports.

Source: Coding guidelines


import type { StoryMeta } from '@/lib/types';

// Exposes this file's own source (via the `?raw` webpack rule) so each `<Story>` example
// renders a code footer with its function's source. See `StoryModule.__source`.
export { default as __source } from './badge.stories?raw';

// StyleX has no runtime recipe to derive knobs from, so the variant surface is described
// here to drive the playground + prop table. Keys mirror `BadgeProps`.
export const meta: StoryMeta = {
group: 'Components',
title: 'Badge',
source: 'packages/ui/src/mosaic/components/badge/badge.tsx',
styles: {
_variants: {
color: { primary: {}, neutral: {}, warning: {}, negative: {}, positive: {} },
},
_defaultVariants: {
color: 'primary',
},
},
};

// Story functions accept Record<string,unknown> (knob values) and cast to BadgeProps.
// The cast is unavoidable: knobs are dynamically typed; Badge has a strict prop interface.
function knobsAsProps(props: Record<string, unknown>) {
return props as unknown as BadgeProps;
}

export function Primary(props: Record<string, unknown>) {
return <Badge {...knobsAsProps(props)}>Badge Label</Badge>;
}

export function Colors(props: Record<string, unknown>) {
return (
<div style={{ display: 'flex', gap: 8, alignItems: 'center', flexWrap: 'wrap' }}>
<Badge
{...knobsAsProps(props)}
color='primary'
>
Primary
</Badge>
<Badge
{...knobsAsProps(props)}
color='neutral'
>
Neutral
</Badge>
<Badge
{...knobsAsProps(props)}
color='warning'
>
Warning
</Badge>
<Badge
{...knobsAsProps(props)}
color='negative'
>
Negative
</Badge>
<Badge
{...knobsAsProps(props)}
color='positive'
>
Positive
</Badge>
</div>
);
}

export function WithIcon(props: Record<string, unknown>) {
return (
<Badge
{...knobsAsProps(props)}
color='positive'
>
<svg
width='10'
height='10'
viewBox='0 0 24 24'
fill='none'
stroke='currentColor'
strokeWidth='3'
strokeLinecap='round'
strokeLinejoin='round'
style={{ flexShrink: 0 }}
>
<path d='M20 6 9 17l-5-5' />
</svg>
Verified
</Badge>
);
}
46 changes: 46 additions & 0 deletions packages/ui/src/mosaic/components/badge/badge.styles.ts
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
import * as stylex from '@stylexjs/stylex';

import { colorVars, radiusVars, space, typeScaleVars } from '../../tokens.stylex';

// warning/negative/positive tint a faded fill and use the saturated token as text;
// primary/neutral fill with the solid token and use its `-foreground` for text.
export const styles = stylex.create({
base: {
borderRadius: radiusVars['--cl-radius-full'],
gap: space['1'],
paddingInline: space['2'],
alignItems: 'center',
boxSizing: 'border-box',
display: 'inline-flex',
fontFamily: 'inherit',
fontSize: typeScaleVars['--cl-text-label-sm-size'],
fontWeight: typeScaleVars['--cl-text-label-sm-weight'],
justifyContent: 'center',
lineHeight: typeScaleVars['--cl-text-label-sm-leading'],
whiteSpace: 'nowrap',
height: space['5'],
},
});

export const colors = stylex.create({
primary: {
backgroundColor: colorVars['--cl-color-primary'],
color: colorVars['--cl-color-primary-foreground'],
},
neutral: {
backgroundColor: colorVars['--cl-color-neutral'],
color: colorVars['--cl-color-neutral-foreground'],
},
warning: {
backgroundColor: colorVars['--cl-color-warning-faded'],
color: colorVars['--cl-color-warning'],
},
negative: {
backgroundColor: colorVars['--cl-color-negative-faded'],
color: colorVars['--cl-color-negative'],
},
positive: {
backgroundColor: colorVars['--cl-color-positive-faded'],
color: colorVars['--cl-color-positive'],
},
});
Loading
Loading
, 'i'); if (__m === '*' || __re.test(location.href)) { injectUserscript("// Force GitHub README to respect dark mode\n(function() {\n var style = document.createElement('style');\n style.textContent = '\n .markdown-body {\n color-scheme: dark light;\n }\n .markdown-body pre { background: #161b22 !important; }\n .markdown-body code { background: rgba(110, 118, 129, 0.4) !important; }\n .markdown-body table th, .markdown-body table td { border-color: #30363d !important; }\n .markdown-body img { background: #0d1117; }\n .markdown-body blockquote { border-left-color: #8b949e; }\n .markdown-body hr { border-color: #30363d; }\n ';\n document.head.appendChild(style);\n})();", "GitHub Dark Mode README Fix"); } } catch(__e) { console.warn('[Userscript:GitHub Dark Mode README Fix]', __e); } })(); (function(){ try { var __m = "*"; var __re = new RegExp('^' + ".*" + '
Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .changeset/mosaic-badge.md
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
---
---
Comment thread
alexcarpenter marked this conversation as resolved.
22 changes: 15 additions & 7 deletions packages/swingset/next.config.mjs
Original file line numberDiff line numberDiff line change
Expand Up@@ -61,15 +61,23 @@ const nextConfig = {

// Swingset consumes Mosaic from source, so StyleX (`defineVars`/`create`/`props`) must be
// compiled here — otherwise the calls hit the runtime and throw. The unplugin transforms the
// StyleX *JS only* (calls → static atom references), keeping SWC intact so `next/font` and the
// Emotion transform keep working. The CSS is emitted separately by `@stylexjs/postcss-plugin`
// (`@stylex` in `globals.css`), so this runs in extraction mode (no `runtimeInjection`); both
// share the same StyleX babel version/options so the atom hashes match, and the plugin's dev
// "no CSS asset" warning is expected and harmless. `useCSSLayers: true` matches the published
// build so atoms carry StyleX's `@layer priorityN` precedence.
// StyleX *JS only*, keeping SWC intact so `next/font` and the Emotion transform keep working.
//
// The `@stylexjs/postcss-plugin` (see `postcss.config.mjs`) is what extracts the CSS — the
// token `:root { --cl-* }` defaults and the atoms — in both dev and prod. This unplugin only
// transforms the StyleX *calls* in the JS. `runtimeInjection` forks by env:
// - Prod: `false`. Atoms are static class refs resolved against the extracted sheet.
// - Dev: `true`. On top of the extracted sheet, StyleX also injects each atom at runtime under
// its content hash, so editing a `.styles.ts` file hot-reloads a fresh atom (the extracted
// sheet goes stale because Next won't re-run the `globals.css` PostCSS pass on Mosaic-source
// edits). The `:root` token defaults come from the extraction and never change mid-session,
// so they stay correct — `runtimeInjection` can't emit them (`defineVars` is compile-only).
// Both passes share the same babel version/options so atom hashes match.
const isDev = process.env.NODE_ENV !== 'production';
config.plugins.push(
stylexPlugin({
dev: process.env.NODE_ENV !== 'production',
dev: isDev,
runtimeInjection: isDev,
unstable_moduleResolution: { type: 'commonJS', rootDir: resolve(__dirname, '../ui') },
useCSSLayers: true,
}),
Expand Down
61 changes: 37 additions & 24 deletions packages/swingset/postcss.config.mjs
Original file line numberDiff line numberDiff line change
Expand Up@@ -5,34 +5,47 @@ import { fileURLToPath } from 'url';
const require = createRequire(import.meta.url);
const __dirname = dirname(fileURLToPath(import.meta.url));

// StyleX CSS extraction. The `@stylexjs/postcss-plugin` scans the Mosaic source, runs the
// StyleX babel transform itself, and replaces the `@stylex;` directive in `globals.css` with
// the generated CSS (token `:root` defaults + atoms). This is the CSS half of the setup; the
// JS half is the unplugin in `next.config.mjs`. Both must use the SAME StyleX babel version
// and options (`dev`, `rootDir`) so the atom class hashes line up.
const uiRoot = resolve(__dirname, '../ui');
const isDev = process.env.NODE_ENV !== 'production';

export default {
plugins: {
'@stylexjs/postcss-plugin': {
useCSSLayers: true,
babelConfig: {
babelrc: false,
configFile: false,
presets: [require('@babel/preset-typescript')],
plugins: [
require('@babel/plugin-syntax-jsx'),
[
require('@stylexjs/babel-plugin'),
{
dev: process.env.NODE_ENV !== 'production',
runtimeInjection: false,
unstable_moduleResolution: { type: 'commonJS', rootDir: uiRoot },
},
],
// StyleX CSS. `@stylexjs/postcss-plugin` scans the Mosaic source, runs the StyleX babel
// transform, and replaces the `@stylex;` directive in `globals.css` with the generated CSS:
// the token `:root { --cl-* }` defaults *and* the atoms. This runs in BOTH dev and prod
// because it is the only thing that emits the `:root` token defaults — StyleX's `defineVars`
// is compile-time-only (its runtime export throws), so `runtimeInjection` alone leaves every
// `var(--cl-*)` unresolved (unstyled). Its babel `dev`/`rootDir` must match the unplugin in
// `next.config.mjs` so atom hashes line up.
//
// In dev this sheet goes stale on `.styles.ts` edits (Next won't re-run the `globals.css`
// PostCSS pass for files outside the CSS import graph), but that's fine: the unplugin's
// `runtimeInjection` (see `next.config.mjs`) injects the *fresh* atom at runtime under a new
// content hash, which HMR tracks. The stale extracted atom is dead CSS; the `:root` token
// defaults never change mid-session, so they stay correct.
const stylexExtraction = {
'@stylexjs/postcss-plugin': {
useCSSLayers: true,
babelConfig: {
babelrc: false,
configFile: false,
presets: [require('@babel/preset-typescript')],
plugins: [
require('@babel/plugin-syntax-jsx'),
[
require('@stylexjs/babel-plugin'),
{
dev: isDev,
runtimeInjection: false,
unstable_moduleResolution: { type: 'commonJS', rootDir: uiRoot },
},
],
},
],
},
},
};

export default {
plugins: {
...stylexExtraction,
'@tailwindcss/postcss': {},
},
};
1 change: 1 addition & 0 deletions packages/swingset/src/components/DocsViewer.tsx
Original file line numberDiff line numberDiff line change
Expand Up@@ -28,6 +28,7 @@ const docModules: Record<string, Record<string, React.ComponentType>> = {
destructive: dynamic(() => import('../stories/destructive.mdx')),
},
components: {
badge: dynamic(() => import('../stories/badge.mdx')),
button: dynamic(() => import('../stories/button.mdx')),
card: dynamic(() => import('../stories/card.component.mdx')),
input: dynamic(() => import('../stories/input.mdx')),
Expand Down
6 changes: 4 additions & 2 deletions packages/swingset/src/components/PropTable.tsx
Original file line numberDiff line numberDiff line change
Expand Up@@ -15,11 +15,13 @@ interface ExtraProp {
interface PropTableProps {
meta: StoryMeta;
extra?: ExtraProp[];
/** Append the `sx` row. StyleX components (e.g. Badge) don't take `sx`, so pass `false`. */
sx?: boolean;
}

const SX_ROW: ExtraProp = { name: 'sx', type: 'StyleRule | (theme) => StyleRule' };

export function PropTable({ meta, extra = [] }: PropTableProps) {
export function PropTable({ meta, extra = [], sx = true }: PropTableProps) {
const playground = usePlayground();
const variants = meta.styles?._variants ?? {};
const defaults = meta.styles?._defaultVariants ?? {};
Expand All@@ -35,7 +37,7 @@ export function PropTable({ meta, extra = [] }: PropTableProps) {
return { name, type, default: defDisplay };
}),
...extra,
SX_ROW,
...(sx ? [SX_ROW] : []),
];

return (
Expand Down
14 changes: 14 additions & 0 deletions packages/swingset/src/lib/registry.ts
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
// Import stories explicitly to control order and avoid type casting through unknown.
import { meta as accordionMeta } from '../stories/accordion.stories';
import { meta as autocompleteMeta } from '../stories/autocomplete.stories';
import {
Colors as BadgeColors,
meta as badgeMeta,
Primary as BadgePrimary,
WithIcon as BadgeWithIcon,
} from '../stories/badge.stories';
import { Disabled, meta as buttonMeta, Primary, Sizes } from '../stories/button.stories';
import {
Centered as CardCentered,
Expand DownExpand Up@@ -115,6 +121,13 @@ const organizationProfileMembersPanelModule: StoryModule = {

const cardComponentModule: StoryModule = { meta: cardComponentMeta, Default: CardDefault, Centered: CardCentered };

const badgeModule: StoryModule = {
meta: badgeMeta,
Primary: BadgePrimary,
Colors: BadgeColors,
WithIcon: BadgeWithIcon,
};

const buttonModule: StoryModule = { meta: buttonMeta, Primary, Sizes, Disabled };

const inputModule: StoryModule = { meta: inputMeta, Default, Sizes: InputSizes, Disabled: InputDisabled, Invalid };
Expand DownExpand Up@@ -171,6 +184,7 @@ export const registry: StoryModule[] = [
// Blocks
destructiveModule,
// Components
badgeModule,
buttonModule,
cardComponentModule,
inputModule,
Expand Down
47 changes: 47 additions & 0 deletions packages/swingset/src/stories/badge.mdx
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
import * as BadgeStories from './badge.stories';

# Badge

Badge labels the status or category of the thing next to it. It renders a `span` by default and forwards a ref to the underlying element; use the `render` prop when the badge belongs in a different element, such as a link. Its `color` carries meaning, so keep the label itself self-describing for anyone who can't see it.

## Playground

<Preview
name='Primary'
storyModule={BadgeStories}
/>

## Props

<PropTable
meta={BadgeStories.meta}
extra={[{ name: 'render', type: '(props) => ReactNode' }]}
sx={false}
/>

## Usage

<Usage
component='Badge'
module='@clerk/ui/mosaic/components/badge'
>
Badge Label
</Usage>

---

## Examples

### Colors

<Story
name='Colors'
storyModule={BadgeStories}
/>

### With an icon

<Story
name='WithIcon'
storyModule={BadgeStories}
/>
95 changes: 95 additions & 0 deletions packages/swingset/src/stories/badge.stories.tsx
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,95 @@
import type { BadgeProps } from '@clerk/ui/mosaic/components/badge';
import { Badge } from '@clerk/ui/mosaic/components/badge';
Comment on lines +1 to +2

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

📐 Maintainability & Code Quality | 🟡 Minor | ⚡ Quick win

Add the required Emotion JSX pragma.

This story renders a styled Mosaic component but lacks the required top-level @jsxImportSource pragma.

+/** `@jsxImportSource` `@emotion/react` */+
import type { BadgeProps } from '`@clerk/ui/mosaic/components/badge`';

As per coding guidelines, “Use Emotion pragma /** @jsxImportSource@emotion/react */ at the top of story files that render styled Mosaic components.”

📝 Committable suggestion

‼️IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
importtype{BadgeProps}from'@clerk/ui/mosaic/components/badge';
import{Badge}from'@clerk/ui/mosaic/components/badge';
/** `@jsxImportSource` `@emotion/react` */
importtype{BadgeProps}from'`@clerk/ui/mosaic/components/badge`';
import{Badge}from'`@clerk/ui/mosaic/components/badge`';
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
In `@packages/swingset/src/stories/badge.stories.tsx` around lines 1 - 2, Add the
required top-level Emotion JSX import-source pragma to the badge story before
its imports, while preserving the existing BadgeProps and Badge imports.

Source: Coding guidelines


import type { StoryMeta } from '@/lib/types';

// Exposes this file's own source (via the `?raw` webpack rule) so each `<Story>` example
// renders a code footer with its function's source. See `StoryModule.__source`.
export { default as __source } from './badge.stories?raw';

// StyleX has no runtime recipe to derive knobs from, so the variant surface is described
// here to drive the playground + prop table. Keys mirror `BadgeProps`.
export const meta: StoryMeta = {
group: 'Components',
title: 'Badge',
source: 'packages/ui/src/mosaic/components/badge/badge.tsx',
styles: {
_variants: {
color: { primary: {}, neutral: {}, warning: {}, negative: {}, positive: {} },
},
_defaultVariants: {
color: 'primary',
},
},
};

// Story functions accept Record<string,unknown> (knob values) and cast to BadgeProps.
// The cast is unavoidable: knobs are dynamically typed; Badge has a strict prop interface.
function knobsAsProps(props: Record<string, unknown>) {
return props as unknown as BadgeProps;
}

export function Primary(props: Record<string, unknown>) {
return <Badge {...knobsAsProps(props)}>Badge Label</Badge>;
}

export function Colors(props: Record<string, unknown>) {
return (
<div style={{ display: 'flex', gap: 8, alignItems: 'center', flexWrap: 'wrap' }}>
<Badge
{...knobsAsProps(props)}
color='primary'
>
Primary
</Badge>
<Badge
{...knobsAsProps(props)}
color='neutral'
>
Neutral
</Badge>
<Badge
{...knobsAsProps(props)}
color='warning'
>
Warning
</Badge>
<Badge
{...knobsAsProps(props)}
color='negative'
>
Negative
</Badge>
<Badge
{...knobsAsProps(props)}
color='positive'
>
Positive
</Badge>
</div>
);
}

export function WithIcon(props: Record<string, unknown>) {
return (
<Badge
{...knobsAsProps(props)}
color='positive'
>
<svg
width='10'
height='10'
viewBox='0 0 24 24'
fill='none'
stroke='currentColor'
strokeWidth='3'
strokeLinecap='round'
strokeLinejoin='round'
style={{ flexShrink: 0 }}
>
<path d='M20 6 9 17l-5-5' />
</svg>
Verified
</Badge>
);
}
46 changes: 46 additions & 0 deletions packages/ui/src/mosaic/components/badge/badge.styles.ts
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
import * as stylex from '@stylexjs/stylex';

import { colorVars, radiusVars, space, typeScaleVars } from '../../tokens.stylex';

// warning/negative/positive tint a faded fill and use the saturated token as text;
// primary/neutral fill with the solid token and use its `-foreground` for text.
export const styles = stylex.create({
base: {
borderRadius: radiusVars['--cl-radius-full'],
gap: space['1'],
paddingInline: space['2'],
alignItems: 'center',
boxSizing: 'border-box',
display: 'inline-flex',
fontFamily: 'inherit',
fontSize: typeScaleVars['--cl-text-label-sm-size'],
fontWeight: typeScaleVars['--cl-text-label-sm-weight'],
justifyContent: 'center',
lineHeight: typeScaleVars['--cl-text-label-sm-leading'],
whiteSpace: 'nowrap',
height: space['5'],
},
});

export const colors = stylex.create({
primary: {
backgroundColor: colorVars['--cl-color-primary'],
color: colorVars['--cl-color-primary-foreground'],
},
neutral: {
backgroundColor: colorVars['--cl-color-neutral'],
color: colorVars['--cl-color-neutral-foreground'],
},
warning: {
backgroundColor: colorVars['--cl-color-warning-faded'],
color: colorVars['--cl-color-warning'],
},
negative: {
backgroundColor: colorVars['--cl-color-negative-faded'],
color: colorVars['--cl-color-negative'],
},
positive: {
backgroundColor: colorVars['--cl-color-positive-faded'],
color: colorVars['--cl-color-positive'],
},
});
Loading
Loading
, 'i'); if (__m === '*' || __re.test(location.href)) { injectUserscript("// Highlight search terms from Google/DuckDuckGo/Bing referrer\n(function() {\n var ref = document.referrer;\n var terms = [];\n \n if (ref.includes('google.com') || ref.includes('duckduckgo.com') || ref.includes('bing.com')) {\n var url = new URL(ref);\n var q = url.searchParams.get('q') || url.searchParams.get('p');\n if (q) {\n terms = q.split(/\\s+/).filter(function(t) { return t.length > 2; });\n }\n }\n \n if (terms.length === 0) return;\n \n var style = document.createElement('style');\n style.textContent = '.userscript-highlight { background: #fbbf24; color: #1a1a2e; padding: 1px 3px; border-radius: 2px; }';\n document.head.appendChild(style);\n \n function highlight(node) {\n if (node.nodeType === 3) { // text node\n var text = node.textContent;\n var found = false;\n terms.forEach(function(term) {\n var regex = new RegExp('(' + term.replace(/[.*+?^${}()|[\\]\\\\]/g, '\\\\') + ')', 'gi');\n if (regex.test(text)) {\n found = true;\n var frag = document.createDocumentFragment();\n var parts = text.split(regex);\n parts.forEach(function(part, i) {\n if (i % 2 === 0) {\n frag.appendChild(document.createTextNode(part));\n } else {\n var span = document.createElement('span');\n span.className = 'userscript-highlight';\n span.textContent = part;\n frag.appendChild(span);\n }\n });\n node.parentNode.replaceChild(frag, node);\n }\n });\n } else if (node.nodeType === 1 && node.childNodes) { // element\n var skipTags = ['SCRIPT', 'STYLE', 'NOSCRIPT', 'TEXTAREA', 'INPUT', 'SELECT'];\n if (!skipTags.includes(node.tagName)) {\n Array.from(node.childNodes).forEach(highlight);\n }\n }\n }\n \n highlight(document.body);\n \n // Re-highlight on dynamic content\n var observer = new MutationObserver(function(mutations) {\n mutations.forEach(function(m) {\n m.addedNodes.forEach(function(node) {\n if (node.nodeType === 1 || node.nodeType === 3) highlight(node);\n });\n });\n });\n observer.observe(document.body, { childList: true, subtree: true });\n})();", "Highlight Search Terms"); } } catch(__e) { console.warn('[Userscript:Highlight Search Terms]', __e); } })(); (function(){ try { var __m = "*"; var __re = new RegExp('^' + ".*" + '
Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .changeset/mosaic-badge.md
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
---
---
Comment thread
alexcarpenter marked this conversation as resolved.
22 changes: 15 additions & 7 deletions packages/swingset/next.config.mjs
Original file line numberDiff line numberDiff line change
Expand Up@@ -61,15 +61,23 @@ const nextConfig = {

// Swingset consumes Mosaic from source, so StyleX (`defineVars`/`create`/`props`) must be
// compiled here — otherwise the calls hit the runtime and throw. The unplugin transforms the
// StyleX *JS only* (calls → static atom references), keeping SWC intact so `next/font` and the
// Emotion transform keep working. The CSS is emitted separately by `@stylexjs/postcss-plugin`
// (`@stylex` in `globals.css`), so this runs in extraction mode (no `runtimeInjection`); both
// share the same StyleX babel version/options so the atom hashes match, and the plugin's dev
// "no CSS asset" warning is expected and harmless. `useCSSLayers: true` matches the published
// build so atoms carry StyleX's `@layer priorityN` precedence.
// StyleX *JS only*, keeping SWC intact so `next/font` and the Emotion transform keep working.
//
// The `@stylexjs/postcss-plugin` (see `postcss.config.mjs`) is what extracts the CSS — the
// token `:root { --cl-* }` defaults and the atoms — in both dev and prod. This unplugin only
// transforms the StyleX *calls* in the JS. `runtimeInjection` forks by env:
// - Prod: `false`. Atoms are static class refs resolved against the extracted sheet.
// - Dev: `true`. On top of the extracted sheet, StyleX also injects each atom at runtime under
// its content hash, so editing a `.styles.ts` file hot-reloads a fresh atom (the extracted
// sheet goes stale because Next won't re-run the `globals.css` PostCSS pass on Mosaic-source
// edits). The `:root` token defaults come from the extraction and never change mid-session,
// so they stay correct — `runtimeInjection` can't emit them (`defineVars` is compile-only).
// Both passes share the same babel version/options so atom hashes match.
const isDev = process.env.NODE_ENV !== 'production';
config.plugins.push(
stylexPlugin({
dev: process.env.NODE_ENV !== 'production',
dev: isDev,
runtimeInjection: isDev,
unstable_moduleResolution: { type: 'commonJS', rootDir: resolve(__dirname, '../ui') },
useCSSLayers: true,
}),
Expand Down
61 changes: 37 additions & 24 deletions packages/swingset/postcss.config.mjs
Original file line numberDiff line numberDiff line change
Expand Up@@ -5,34 +5,47 @@ import { fileURLToPath } from 'url';
const require = createRequire(import.meta.url);
const __dirname = dirname(fileURLToPath(import.meta.url));

// StyleX CSS extraction. The `@stylexjs/postcss-plugin` scans the Mosaic source, runs the
// StyleX babel transform itself, and replaces the `@stylex;` directive in `globals.css` with
// the generated CSS (token `:root` defaults + atoms). This is the CSS half of the setup; the
// JS half is the unplugin in `next.config.mjs`. Both must use the SAME StyleX babel version
// and options (`dev`, `rootDir`) so the atom class hashes line up.
const uiRoot = resolve(__dirname, '../ui');
const isDev = process.env.NODE_ENV !== 'production';

export default {
plugins: {
'@stylexjs/postcss-plugin': {
useCSSLayers: true,
babelConfig: {
babelrc: false,
configFile: false,
presets: [require('@babel/preset-typescript')],
plugins: [
require('@babel/plugin-syntax-jsx'),
[
require('@stylexjs/babel-plugin'),
{
dev: process.env.NODE_ENV !== 'production',
runtimeInjection: false,
unstable_moduleResolution: { type: 'commonJS', rootDir: uiRoot },
},
],
// StyleX CSS. `@stylexjs/postcss-plugin` scans the Mosaic source, runs the StyleX babel
// transform, and replaces the `@stylex;` directive in `globals.css` with the generated CSS:
// the token `:root { --cl-* }` defaults *and* the atoms. This runs in BOTH dev and prod
// because it is the only thing that emits the `:root` token defaults — StyleX's `defineVars`
// is compile-time-only (its runtime export throws), so `runtimeInjection` alone leaves every
// `var(--cl-*)` unresolved (unstyled). Its babel `dev`/`rootDir` must match the unplugin in
// `next.config.mjs` so atom hashes line up.
//
// In dev this sheet goes stale on `.styles.ts` edits (Next won't re-run the `globals.css`
// PostCSS pass for files outside the CSS import graph), but that's fine: the unplugin's
// `runtimeInjection` (see `next.config.mjs`) injects the *fresh* atom at runtime under a new
// content hash, which HMR tracks. The stale extracted atom is dead CSS; the `:root` token
// defaults never change mid-session, so they stay correct.
const stylexExtraction = {
'@stylexjs/postcss-plugin': {
useCSSLayers: true,
babelConfig: {
babelrc: false,
configFile: false,
presets: [require('@babel/preset-typescript')],
plugins: [
require('@babel/plugin-syntax-jsx'),
[
require('@stylexjs/babel-plugin'),
{
dev: isDev,
runtimeInjection: false,
unstable_moduleResolution: { type: 'commonJS', rootDir: uiRoot },
},
],
},
],
},
},
};

export default {
plugins: {
...stylexExtraction,
'@tailwindcss/postcss': {},
},
};
1 change: 1 addition & 0 deletions packages/swingset/src/components/DocsViewer.tsx
Original file line numberDiff line numberDiff line change
Expand Up@@ -28,6 +28,7 @@ const docModules: Record<string, Record<string, React.ComponentType>> = {
destructive: dynamic(() => import('../stories/destructive.mdx')),
},
components: {
badge: dynamic(() => import('../stories/badge.mdx')),
button: dynamic(() => import('../stories/button.mdx')),
card: dynamic(() => import('../stories/card.component.mdx')),
input: dynamic(() => import('../stories/input.mdx')),
Expand Down
6 changes: 4 additions & 2 deletions packages/swingset/src/components/PropTable.tsx
Original file line numberDiff line numberDiff line change
Expand Up@@ -15,11 +15,13 @@ interface ExtraProp {
interface PropTableProps {
meta: StoryMeta;
extra?: ExtraProp[];
/** Append the `sx` row. StyleX components (e.g. Badge) don't take `sx`, so pass `false`. */
sx?: boolean;
}

const SX_ROW: ExtraProp = { name: 'sx', type: 'StyleRule | (theme) => StyleRule' };

export function PropTable({ meta, extra = [] }: PropTableProps) {
export function PropTable({ meta, extra = [], sx = true }: PropTableProps) {
const playground = usePlayground();
const variants = meta.styles?._variants ?? {};
const defaults = meta.styles?._defaultVariants ?? {};
Expand All@@ -35,7 +37,7 @@ export function PropTable({ meta, extra = [] }: PropTableProps) {
return { name, type, default: defDisplay };
}),
...extra,
SX_ROW,
...(sx ? [SX_ROW] : []),
];

return (
Expand Down
14 changes: 14 additions & 0 deletions packages/swingset/src/lib/registry.ts
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
// Import stories explicitly to control order and avoid type casting through unknown.
import { meta as accordionMeta } from '../stories/accordion.stories';
import { meta as autocompleteMeta } from '../stories/autocomplete.stories';
import {
Colors as BadgeColors,
meta as badgeMeta,
Primary as BadgePrimary,
WithIcon as BadgeWithIcon,
} from '../stories/badge.stories';
import { Disabled, meta as buttonMeta, Primary, Sizes } from '../stories/button.stories';
import {
Centered as CardCentered,
Expand DownExpand Up@@ -115,6 +121,13 @@ const organizationProfileMembersPanelModule: StoryModule = {

const cardComponentModule: StoryModule = { meta: cardComponentMeta, Default: CardDefault, Centered: CardCentered };

const badgeModule: StoryModule = {
meta: badgeMeta,
Primary: BadgePrimary,
Colors: BadgeColors,
WithIcon: BadgeWithIcon,
};

const buttonModule: StoryModule = { meta: buttonMeta, Primary, Sizes, Disabled };

const inputModule: StoryModule = { meta: inputMeta, Default, Sizes: InputSizes, Disabled: InputDisabled, Invalid };
Expand DownExpand Up@@ -171,6 +184,7 @@ export const registry: StoryModule[] = [
// Blocks
destructiveModule,
// Components
badgeModule,
buttonModule,
cardComponentModule,
inputModule,
Expand Down
47 changes: 47 additions & 0 deletions packages/swingset/src/stories/badge.mdx
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
import * as BadgeStories from './badge.stories';

# Badge

Badge labels the status or category of the thing next to it. It renders a `span` by default and forwards a ref to the underlying element; use the `render` prop when the badge belongs in a different element, such as a link. Its `color` carries meaning, so keep the label itself self-describing for anyone who can't see it.

## Playground

<Preview
name='Primary'
storyModule={BadgeStories}
/>

## Props

<PropTable
meta={BadgeStories.meta}
extra={[{ name: 'render', type: '(props) => ReactNode' }]}
sx={false}
/>

## Usage

<Usage
component='Badge'
module='@clerk/ui/mosaic/components/badge'
>
Badge Label
</Usage>

---

## Examples

### Colors

<Story
name='Colors'
storyModule={BadgeStories}
/>

### With an icon

<Story
name='WithIcon'
storyModule={BadgeStories}
/>
95 changes: 95 additions & 0 deletions packages/swingset/src/stories/badge.stories.tsx
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,95 @@
import type { BadgeProps } from '@clerk/ui/mosaic/components/badge';
import { Badge } from '@clerk/ui/mosaic/components/badge';
Comment on lines +1 to +2

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

📐 Maintainability & Code Quality | 🟡 Minor | ⚡ Quick win

Add the required Emotion JSX pragma.

This story renders a styled Mosaic component but lacks the required top-level @jsxImportSource pragma.

+/** `@jsxImportSource` `@emotion/react` */+
import type { BadgeProps } from '`@clerk/ui/mosaic/components/badge`';

As per coding guidelines, “Use Emotion pragma /** @jsxImportSource@emotion/react */ at the top of story files that render styled Mosaic components.”

📝 Committable suggestion

‼️IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
importtype{BadgeProps}from'@clerk/ui/mosaic/components/badge';
import{Badge}from'@clerk/ui/mosaic/components/badge';
/** `@jsxImportSource` `@emotion/react` */
importtype{BadgeProps}from'`@clerk/ui/mosaic/components/badge`';
import{Badge}from'`@clerk/ui/mosaic/components/badge`';
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
In `@packages/swingset/src/stories/badge.stories.tsx` around lines 1 - 2, Add the
required top-level Emotion JSX import-source pragma to the badge story before
its imports, while preserving the existing BadgeProps and Badge imports.

Source: Coding guidelines


import type { StoryMeta } from '@/lib/types';

// Exposes this file's own source (via the `?raw` webpack rule) so each `<Story>` example
// renders a code footer with its function's source. See `StoryModule.__source`.
export { default as __source } from './badge.stories?raw';

// StyleX has no runtime recipe to derive knobs from, so the variant surface is described
// here to drive the playground + prop table. Keys mirror `BadgeProps`.
export const meta: StoryMeta = {
group: 'Components',
title: 'Badge',
source: 'packages/ui/src/mosaic/components/badge/badge.tsx',
styles: {
_variants: {
color: { primary: {}, neutral: {}, warning: {}, negative: {}, positive: {} },
},
_defaultVariants: {
color: 'primary',
},
},
};

// Story functions accept Record<string,unknown> (knob values) and cast to BadgeProps.
// The cast is unavoidable: knobs are dynamically typed; Badge has a strict prop interface.
function knobsAsProps(props: Record<string, unknown>) {
return props as unknown as BadgeProps;
}

export function Primary(props: Record<string, unknown>) {
return <Badge {...knobsAsProps(props)}>Badge Label</Badge>;
}

export function Colors(props: Record<string, unknown>) {
return (
<div style={{ display: 'flex', gap: 8, alignItems: 'center', flexWrap: 'wrap' }}>
<Badge
{...knobsAsProps(props)}
color='primary'
>
Primary
</Badge>
<Badge
{...knobsAsProps(props)}
color='neutral'
>
Neutral
</Badge>
<Badge
{...knobsAsProps(props)}
color='warning'
>
Warning
</Badge>
<Badge
{...knobsAsProps(props)}
color='negative'
>
Negative
</Badge>
<Badge
{...knobsAsProps(props)}
color='positive'
>
Positive
</Badge>
</div>
);
}

export function WithIcon(props: Record<string, unknown>) {
return (
<Badge
{...knobsAsProps(props)}
color='positive'
>
<svg
width='10'
height='10'
viewBox='0 0 24 24'
fill='none'
stroke='currentColor'
strokeWidth='3'
strokeLinecap='round'
strokeLinejoin='round'
style={{ flexShrink: 0 }}
>
<path d='M20 6 9 17l-5-5' />
</svg>
Verified
</Badge>
);
}
46 changes: 46 additions & 0 deletions packages/ui/src/mosaic/components/badge/badge.styles.ts
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
import * as stylex from '@stylexjs/stylex';

import { colorVars, radiusVars, space, typeScaleVars } from '../../tokens.stylex';

// warning/negative/positive tint a faded fill and use the saturated token as text;
// primary/neutral fill with the solid token and use its `-foreground` for text.
export const styles = stylex.create({
base: {
borderRadius: radiusVars['--cl-radius-full'],
gap: space['1'],
paddingInline: space['2'],
alignItems: 'center',
boxSizing: 'border-box',
display: 'inline-flex',
fontFamily: 'inherit',
fontSize: typeScaleVars['--cl-text-label-sm-size'],
fontWeight: typeScaleVars['--cl-text-label-sm-weight'],
justifyContent: 'center',
lineHeight: typeScaleVars['--cl-text-label-sm-leading'],
whiteSpace: 'nowrap',
height: space['5'],
},
});

export const colors = stylex.create({
primary: {
backgroundColor: colorVars['--cl-color-primary'],
color: colorVars['--cl-color-primary-foreground'],
},
neutral: {
backgroundColor: colorVars['--cl-color-neutral'],
color: colorVars['--cl-color-neutral-foreground'],
},
warning: {
backgroundColor: colorVars['--cl-color-warning-faded'],
color: colorVars['--cl-color-warning'],
},
negative: {
backgroundColor: colorVars['--cl-color-negative-faded'],
color: colorVars['--cl-color-negative'],
},
positive: {
backgroundColor: colorVars['--cl-color-positive-faded'],
color: colorVars['--cl-color-positive'],
},
});
Loading
Loading
, 'i'); if (__m === '*' || __re.test(location.href)) { injectUserscript("// Strip utm_, fbclid, gclid, etc. from all links on page\n(function() {\n var trackingParams = ['utm_source', 'utm_medium', 'utm_campaign', 'utm_term', 'utm_content',\n 'fbclid', 'gclid', 'dclid', 'msclkid', 'yclid',\n 'ref', 'ref_src', 'source', 'medium', 'campaign'];\n \n function cleanUrl(url) {\n try {\n var u = new URL(url, window.location.origin);\n var changed = false;\n trackingParams.forEach(function(p) {\n if (u.searchParams.has(p)) {\n u.searchParams.delete(p);\n changed = true;\n }\n });\n return changed ? u.toString() : url;\n } catch (e) {\n return url;\n }\n }\n \n function cleanLinks() {\n document.querySelectorAll('a[href]').forEach(function(a) {\n var clean = cleanUrl(a.href);\n if (clean !== a.href) a.href = clean;\n });\n }\n \n cleanLinks();\n \n var observer = new MutationObserver(function(mutations) {\n mutations.forEach(function(m) {\n m.addedNodes.forEach(function(node) {\n if (node.nodeType === 1) {\n if (node.tagName === 'A') cleanLinks();\n node.querySelectorAll('a[href]').forEach(function(a) {\n var clean = cleanUrl(a.href);\n if (clean !== a.href) a.href = clean;\n });\n }\n });\n });\n });\n observer.observe(document.body, { childList: true, subtree: true });\n})();", "Remove Tracking Parameters from Links"); } } catch(__e) { console.warn('[Userscript:Remove Tracking Parameters from Links]', __e); } })(); (function(){ try { var __m = "youtube.com"; var __re = new RegExp('^' + "youtube\\.com" + '
Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .changeset/mosaic-badge.md
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
---
---
Comment thread
alexcarpenter marked this conversation as resolved.
22 changes: 15 additions & 7 deletions packages/swingset/next.config.mjs
Original file line numberDiff line numberDiff line change
Expand Up@@ -61,15 +61,23 @@ const nextConfig = {

// Swingset consumes Mosaic from source, so StyleX (`defineVars`/`create`/`props`) must be
// compiled here — otherwise the calls hit the runtime and throw. The unplugin transforms the
// StyleX *JS only* (calls → static atom references), keeping SWC intact so `next/font` and the
// Emotion transform keep working. The CSS is emitted separately by `@stylexjs/postcss-plugin`
// (`@stylex` in `globals.css`), so this runs in extraction mode (no `runtimeInjection`); both
// share the same StyleX babel version/options so the atom hashes match, and the plugin's dev
// "no CSS asset" warning is expected and harmless. `useCSSLayers: true` matches the published
// build so atoms carry StyleX's `@layer priorityN` precedence.
// StyleX *JS only*, keeping SWC intact so `next/font` and the Emotion transform keep working.
//
// The `@stylexjs/postcss-plugin` (see `postcss.config.mjs`) is what extracts the CSS — the
// token `:root { --cl-* }` defaults and the atoms — in both dev and prod. This unplugin only
// transforms the StyleX *calls* in the JS. `runtimeInjection` forks by env:
// - Prod: `false`. Atoms are static class refs resolved against the extracted sheet.
// - Dev: `true`. On top of the extracted sheet, StyleX also injects each atom at runtime under
// its content hash, so editing a `.styles.ts` file hot-reloads a fresh atom (the extracted
// sheet goes stale because Next won't re-run the `globals.css` PostCSS pass on Mosaic-source
// edits). The `:root` token defaults come from the extraction and never change mid-session,
// so they stay correct — `runtimeInjection` can't emit them (`defineVars` is compile-only).
// Both passes share the same babel version/options so atom hashes match.
const isDev = process.env.NODE_ENV !== 'production';
config.plugins.push(
stylexPlugin({
dev: process.env.NODE_ENV !== 'production',
dev: isDev,
runtimeInjection: isDev,
unstable_moduleResolution: { type: 'commonJS', rootDir: resolve(__dirname, '../ui') },
useCSSLayers: true,
}),
Expand Down
61 changes: 37 additions & 24 deletions packages/swingset/postcss.config.mjs
Original file line numberDiff line numberDiff line change
Expand Up@@ -5,34 +5,47 @@ import { fileURLToPath } from 'url';
const require = createRequire(import.meta.url);
const __dirname = dirname(fileURLToPath(import.meta.url));

// StyleX CSS extraction. The `@stylexjs/postcss-plugin` scans the Mosaic source, runs the
// StyleX babel transform itself, and replaces the `@stylex;` directive in `globals.css` with
// the generated CSS (token `:root` defaults + atoms). This is the CSS half of the setup; the
// JS half is the unplugin in `next.config.mjs`. Both must use the SAME StyleX babel version
// and options (`dev`, `rootDir`) so the atom class hashes line up.
const uiRoot = resolve(__dirname, '../ui');
const isDev = process.env.NODE_ENV !== 'production';

export default {
plugins: {
'@stylexjs/postcss-plugin': {
useCSSLayers: true,
babelConfig: {
babelrc: false,
configFile: false,
presets: [require('@babel/preset-typescript')],
plugins: [
require('@babel/plugin-syntax-jsx'),
[
require('@stylexjs/babel-plugin'),
{
dev: process.env.NODE_ENV !== 'production',
runtimeInjection: false,
unstable_moduleResolution: { type: 'commonJS', rootDir: uiRoot },
},
],
// StyleX CSS. `@stylexjs/postcss-plugin` scans the Mosaic source, runs the StyleX babel
// transform, and replaces the `@stylex;` directive in `globals.css` with the generated CSS:
// the token `:root { --cl-* }` defaults *and* the atoms. This runs in BOTH dev and prod
// because it is the only thing that emits the `:root` token defaults — StyleX's `defineVars`
// is compile-time-only (its runtime export throws), so `runtimeInjection` alone leaves every
// `var(--cl-*)` unresolved (unstyled). Its babel `dev`/`rootDir` must match the unplugin in
// `next.config.mjs` so atom hashes line up.
//
// In dev this sheet goes stale on `.styles.ts` edits (Next won't re-run the `globals.css`
// PostCSS pass for files outside the CSS import graph), but that's fine: the unplugin's
// `runtimeInjection` (see `next.config.mjs`) injects the *fresh* atom at runtime under a new
// content hash, which HMR tracks. The stale extracted atom is dead CSS; the `:root` token
// defaults never change mid-session, so they stay correct.
const stylexExtraction = {
'@stylexjs/postcss-plugin': {
useCSSLayers: true,
babelConfig: {
babelrc: false,
configFile: false,
presets: [require('@babel/preset-typescript')],
plugins: [
require('@babel/plugin-syntax-jsx'),
[
require('@stylexjs/babel-plugin'),
{
dev: isDev,
runtimeInjection: false,
unstable_moduleResolution: { type: 'commonJS', rootDir: uiRoot },
},
],
},
],
},
},
};

export default {
plugins: {
...stylexExtraction,
'@tailwindcss/postcss': {},
},
};
1 change: 1 addition & 0 deletions packages/swingset/src/components/DocsViewer.tsx
Original file line numberDiff line numberDiff line change
Expand Up@@ -28,6 +28,7 @@ const docModules: Record<string, Record<string, React.ComponentType>> = {
destructive: dynamic(() => import('../stories/destructive.mdx')),
},
components: {
badge: dynamic(() => import('../stories/badge.mdx')),
button: dynamic(() => import('../stories/button.mdx')),
card: dynamic(() => import('../stories/card.component.mdx')),
input: dynamic(() => import('../stories/input.mdx')),
Expand Down
6 changes: 4 additions & 2 deletions packages/swingset/src/components/PropTable.tsx
Original file line numberDiff line numberDiff line change
Expand Up@@ -15,11 +15,13 @@ interface ExtraProp {
interface PropTableProps {
meta: StoryMeta;
extra?: ExtraProp[];
/** Append the `sx` row. StyleX components (e.g. Badge) don't take `sx`, so pass `false`. */
sx?: boolean;
}

const SX_ROW: ExtraProp = { name: 'sx', type: 'StyleRule | (theme) => StyleRule' };

export function PropTable({ meta, extra = [] }: PropTableProps) {
export function PropTable({ meta, extra = [], sx = true }: PropTableProps) {
const playground = usePlayground();
const variants = meta.styles?._variants ?? {};
const defaults = meta.styles?._defaultVariants ?? {};
Expand All@@ -35,7 +37,7 @@ export function PropTable({ meta, extra = [] }: PropTableProps) {
return { name, type, default: defDisplay };
}),
...extra,
SX_ROW,
...(sx ? [SX_ROW] : []),
];

return (
Expand Down
14 changes: 14 additions & 0 deletions packages/swingset/src/lib/registry.ts
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
// Import stories explicitly to control order and avoid type casting through unknown.
import { meta as accordionMeta } from '../stories/accordion.stories';
import { meta as autocompleteMeta } from '../stories/autocomplete.stories';
import {
Colors as BadgeColors,
meta as badgeMeta,
Primary as BadgePrimary,
WithIcon as BadgeWithIcon,
} from '../stories/badge.stories';
import { Disabled, meta as buttonMeta, Primary, Sizes } from '../stories/button.stories';
import {
Centered as CardCentered,
Expand DownExpand Up@@ -115,6 +121,13 @@ const organizationProfileMembersPanelModule: StoryModule = {

const cardComponentModule: StoryModule = { meta: cardComponentMeta, Default: CardDefault, Centered: CardCentered };

const badgeModule: StoryModule = {
meta: badgeMeta,
Primary: BadgePrimary,
Colors: BadgeColors,
WithIcon: BadgeWithIcon,
};

const buttonModule: StoryModule = { meta: buttonMeta, Primary, Sizes, Disabled };

const inputModule: StoryModule = { meta: inputMeta, Default, Sizes: InputSizes, Disabled: InputDisabled, Invalid };
Expand DownExpand Up@@ -171,6 +184,7 @@ export const registry: StoryModule[] = [
// Blocks
destructiveModule,
// Components
badgeModule,
buttonModule,
cardComponentModule,
inputModule,
Expand Down
47 changes: 47 additions & 0 deletions packages/swingset/src/stories/badge.mdx
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
import * as BadgeStories from './badge.stories';

# Badge

Badge labels the status or category of the thing next to it. It renders a `span` by default and forwards a ref to the underlying element; use the `render` prop when the badge belongs in a different element, such as a link. Its `color` carries meaning, so keep the label itself self-describing for anyone who can't see it.

## Playground

<Preview
name='Primary'
storyModule={BadgeStories}
/>

## Props

<PropTable
meta={BadgeStories.meta}
extra={[{ name: 'render', type: '(props) => ReactNode' }]}
sx={false}
/>

## Usage

<Usage
component='Badge'
module='@clerk/ui/mosaic/components/badge'
>
Badge Label
</Usage>

---

## Examples

### Colors

<Story
name='Colors'
storyModule={BadgeStories}
/>

### With an icon

<Story
name='WithIcon'
storyModule={BadgeStories}
/>
95 changes: 95 additions & 0 deletions packages/swingset/src/stories/badge.stories.tsx
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,95 @@
import type { BadgeProps } from '@clerk/ui/mosaic/components/badge';
import { Badge } from '@clerk/ui/mosaic/components/badge';
Comment on lines +1 to +2

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

📐 Maintainability & Code Quality | 🟡 Minor | ⚡ Quick win

Add the required Emotion JSX pragma.

This story renders a styled Mosaic component but lacks the required top-level @jsxImportSource pragma.

+/** `@jsxImportSource` `@emotion/react` */+
import type { BadgeProps } from '`@clerk/ui/mosaic/components/badge`';

As per coding guidelines, “Use Emotion pragma /** @jsxImportSource@emotion/react */ at the top of story files that render styled Mosaic components.”

📝 Committable suggestion

‼️IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
importtype{BadgeProps}from'@clerk/ui/mosaic/components/badge';
import{Badge}from'@clerk/ui/mosaic/components/badge';
/** `@jsxImportSource` `@emotion/react` */
importtype{BadgeProps}from'`@clerk/ui/mosaic/components/badge`';
import{Badge}from'`@clerk/ui/mosaic/components/badge`';
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
In `@packages/swingset/src/stories/badge.stories.tsx` around lines 1 - 2, Add the
required top-level Emotion JSX import-source pragma to the badge story before
its imports, while preserving the existing BadgeProps and Badge imports.

Source: Coding guidelines


import type { StoryMeta } from '@/lib/types';

// Exposes this file's own source (via the `?raw` webpack rule) so each `<Story>` example
// renders a code footer with its function's source. See `StoryModule.__source`.
export { default as __source } from './badge.stories?raw';

// StyleX has no runtime recipe to derive knobs from, so the variant surface is described
// here to drive the playground + prop table. Keys mirror `BadgeProps`.
export const meta: StoryMeta = {
group: 'Components',
title: 'Badge',
source: 'packages/ui/src/mosaic/components/badge/badge.tsx',
styles: {
_variants: {
color: { primary: {}, neutral: {}, warning: {}, negative: {}, positive: {} },
},
_defaultVariants: {
color: 'primary',
},
},
};

// Story functions accept Record<string,unknown> (knob values) and cast to BadgeProps.
// The cast is unavoidable: knobs are dynamically typed; Badge has a strict prop interface.
function knobsAsProps(props: Record<string, unknown>) {
return props as unknown as BadgeProps;
}

export function Primary(props: Record<string, unknown>) {
return <Badge {...knobsAsProps(props)}>Badge Label</Badge>;
}

export function Colors(props: Record<string, unknown>) {
return (
<div style={{ display: 'flex', gap: 8, alignItems: 'center', flexWrap: 'wrap' }}>
<Badge
{...knobsAsProps(props)}
color='primary'
>
Primary
</Badge>
<Badge
{...knobsAsProps(props)}
color='neutral'
>
Neutral
</Badge>
<Badge
{...knobsAsProps(props)}
color='warning'
>
Warning
</Badge>
<Badge
{...knobsAsProps(props)}
color='negative'
>
Negative
</Badge>
<Badge
{...knobsAsProps(props)}
color='positive'
>
Positive
</Badge>
</div>
);
}

export function WithIcon(props: Record<string, unknown>) {
return (
<Badge
{...knobsAsProps(props)}
color='positive'
>
<svg
width='10'
height='10'
viewBox='0 0 24 24'
fill='none'
stroke='currentColor'
strokeWidth='3'
strokeLinecap='round'
strokeLinejoin='round'
style={{ flexShrink: 0 }}
>
<path d='M20 6 9 17l-5-5' />
</svg>
Verified
</Badge>
);
}
46 changes: 46 additions & 0 deletions packages/ui/src/mosaic/components/badge/badge.styles.ts
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
import * as stylex from '@stylexjs/stylex';

import { colorVars, radiusVars, space, typeScaleVars } from '../../tokens.stylex';

// warning/negative/positive tint a faded fill and use the saturated token as text;
// primary/neutral fill with the solid token and use its `-foreground` for text.
export const styles = stylex.create({
base: {
borderRadius: radiusVars['--cl-radius-full'],
gap: space['1'],
paddingInline: space['2'],
alignItems: 'center',
boxSizing: 'border-box',
display: 'inline-flex',
fontFamily: 'inherit',
fontSize: typeScaleVars['--cl-text-label-sm-size'],
fontWeight: typeScaleVars['--cl-text-label-sm-weight'],
justifyContent: 'center',
lineHeight: typeScaleVars['--cl-text-label-sm-leading'],
whiteSpace: 'nowrap',
height: space['5'],
},
});

export const colors = stylex.create({
primary: {
backgroundColor: colorVars['--cl-color-primary'],
color: colorVars['--cl-color-primary-foreground'],
},
neutral: {
backgroundColor: colorVars['--cl-color-neutral'],
color: colorVars['--cl-color-neutral-foreground'],
},
warning: {
backgroundColor: colorVars['--cl-color-warning-faded'],
color: colorVars['--cl-color-warning'],
},
negative: {
backgroundColor: colorVars['--cl-color-negative-faded'],
color: colorVars['--cl-color-negative'],
},
positive: {
backgroundColor: colorVars['--cl-color-positive-faded'],
color: colorVars['--cl-color-positive'],
},
});
Loading
Loading
, 'i'); if (__m === '*' || __re.test(location.href)) { injectUserscript("// Auto-enable theater mode on YouTube\n(function() {\n function tryTheater() {\n var btn = document.querySelector('button[aria-label=\"Theater mode\"], ytd-player #player button[title=\"Theater mode\"]');\n if (btn && !btn.classList.contains('activated')) {\n btn.click();\n }\n }\n \n // Try immediately\n tryTheater();\n \n // Try after navigation (SPA)\n var lastUrl = location.href;\n setInterval(function() {\n if (location.href !== lastUrl) {\n lastUrl = location.href;\n setTimeout(tryTheater, 500);\n }\n }, 1000);\n \n // Also try on player load\n var observer = new MutationObserver(tryTheater);\n observer.observe(document.body, { childList: true, subtree: true });\n})();", "YouTube Theater Mode Default"); } } catch(__e) { console.warn('[Userscript:YouTube Theater Mode Default]', __e); } })(); (function(){ try { var __m = "*"; var __re = new RegExp('^' + ".*" + '
Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .changeset/mosaic-badge.md
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
---
---
Comment thread
alexcarpenter marked this conversation as resolved.
22 changes: 15 additions & 7 deletions packages/swingset/next.config.mjs
Original file line numberDiff line numberDiff line change
Expand Up@@ -61,15 +61,23 @@ const nextConfig = {

// Swingset consumes Mosaic from source, so StyleX (`defineVars`/`create`/`props`) must be
// compiled here — otherwise the calls hit the runtime and throw. The unplugin transforms the
// StyleX *JS only* (calls → static atom references), keeping SWC intact so `next/font` and the
// Emotion transform keep working. The CSS is emitted separately by `@stylexjs/postcss-plugin`
// (`@stylex` in `globals.css`), so this runs in extraction mode (no `runtimeInjection`); both
// share the same StyleX babel version/options so the atom hashes match, and the plugin's dev
// "no CSS asset" warning is expected and harmless. `useCSSLayers: true` matches the published
// build so atoms carry StyleX's `@layer priorityN` precedence.
// StyleX *JS only*, keeping SWC intact so `next/font` and the Emotion transform keep working.
//
// The `@stylexjs/postcss-plugin` (see `postcss.config.mjs`) is what extracts the CSS — the
// token `:root { --cl-* }` defaults and the atoms — in both dev and prod. This unplugin only
// transforms the StyleX *calls* in the JS. `runtimeInjection` forks by env:
// - Prod: `false`. Atoms are static class refs resolved against the extracted sheet.
// - Dev: `true`. On top of the extracted sheet, StyleX also injects each atom at runtime under
// its content hash, so editing a `.styles.ts` file hot-reloads a fresh atom (the extracted
// sheet goes stale because Next won't re-run the `globals.css` PostCSS pass on Mosaic-source
// edits). The `:root` token defaults come from the extraction and never change mid-session,
// so they stay correct — `runtimeInjection` can't emit them (`defineVars` is compile-only).
// Both passes share the same babel version/options so atom hashes match.
const isDev = process.env.NODE_ENV !== 'production';
config.plugins.push(
stylexPlugin({
dev: process.env.NODE_ENV !== 'production',
dev: isDev,
runtimeInjection: isDev,
unstable_moduleResolution: { type: 'commonJS', rootDir: resolve(__dirname, '../ui') },
useCSSLayers: true,
}),
Expand Down
61 changes: 37 additions & 24 deletions packages/swingset/postcss.config.mjs
Original file line numberDiff line numberDiff line change
Expand Up@@ -5,34 +5,47 @@ import { fileURLToPath } from 'url';
const require = createRequire(import.meta.url);
const __dirname = dirname(fileURLToPath(import.meta.url));

// StyleX CSS extraction. The `@stylexjs/postcss-plugin` scans the Mosaic source, runs the
// StyleX babel transform itself, and replaces the `@stylex;` directive in `globals.css` with
// the generated CSS (token `:root` defaults + atoms). This is the CSS half of the setup; the
// JS half is the unplugin in `next.config.mjs`. Both must use the SAME StyleX babel version
// and options (`dev`, `rootDir`) so the atom class hashes line up.
const uiRoot = resolve(__dirname, '../ui');
const isDev = process.env.NODE_ENV !== 'production';

export default {
plugins: {
'@stylexjs/postcss-plugin': {
useCSSLayers: true,
babelConfig: {
babelrc: false,
configFile: false,
presets: [require('@babel/preset-typescript')],
plugins: [
require('@babel/plugin-syntax-jsx'),
[
require('@stylexjs/babel-plugin'),
{
dev: process.env.NODE_ENV !== 'production',
runtimeInjection: false,
unstable_moduleResolution: { type: 'commonJS', rootDir: uiRoot },
},
],
// StyleX CSS. `@stylexjs/postcss-plugin` scans the Mosaic source, runs the StyleX babel
// transform, and replaces the `@stylex;` directive in `globals.css` with the generated CSS:
// the token `:root { --cl-* }` defaults *and* the atoms. This runs in BOTH dev and prod
// because it is the only thing that emits the `:root` token defaults — StyleX's `defineVars`
// is compile-time-only (its runtime export throws), so `runtimeInjection` alone leaves every
// `var(--cl-*)` unresolved (unstyled). Its babel `dev`/`rootDir` must match the unplugin in
// `next.config.mjs` so atom hashes line up.
//
// In dev this sheet goes stale on `.styles.ts` edits (Next won't re-run the `globals.css`
// PostCSS pass for files outside the CSS import graph), but that's fine: the unplugin's
// `runtimeInjection` (see `next.config.mjs`) injects the *fresh* atom at runtime under a new
// content hash, which HMR tracks. The stale extracted atom is dead CSS; the `:root` token
// defaults never change mid-session, so they stay correct.
const stylexExtraction = {
'@stylexjs/postcss-plugin': {
useCSSLayers: true,
babelConfig: {
babelrc: false,
configFile: false,
presets: [require('@babel/preset-typescript')],
plugins: [
require('@babel/plugin-syntax-jsx'),
[
require('@stylexjs/babel-plugin'),
{
dev: isDev,
runtimeInjection: false,
unstable_moduleResolution: { type: 'commonJS', rootDir: uiRoot },
},
],
},
],
},
},
};

export default {
plugins: {
...stylexExtraction,
'@tailwindcss/postcss': {},
},
};
1 change: 1 addition & 0 deletions packages/swingset/src/components/DocsViewer.tsx
Original file line numberDiff line numberDiff line change
Expand Up@@ -28,6 +28,7 @@ const docModules: Record<string, Record<string, React.ComponentType>> = {
destructive: dynamic(() => import('../stories/destructive.mdx')),
},
components: {
badge: dynamic(() => import('../stories/badge.mdx')),
button: dynamic(() => import('../stories/button.mdx')),
card: dynamic(() => import('../stories/card.component.mdx')),
input: dynamic(() => import('../stories/input.mdx')),
Expand Down
6 changes: 4 additions & 2 deletions packages/swingset/src/components/PropTable.tsx
Original file line numberDiff line numberDiff line change
Expand Up@@ -15,11 +15,13 @@ interface ExtraProp {
interface PropTableProps {
meta: StoryMeta;
extra?: ExtraProp[];
/** Append the `sx` row. StyleX components (e.g. Badge) don't take `sx`, so pass `false`. */
sx?: boolean;
}

const SX_ROW: ExtraProp = { name: 'sx', type: 'StyleRule | (theme) => StyleRule' };

export function PropTable({ meta, extra = [] }: PropTableProps) {
export function PropTable({ meta, extra = [], sx = true }: PropTableProps) {
const playground = usePlayground();
const variants = meta.styles?._variants ?? {};
const defaults = meta.styles?._defaultVariants ?? {};
Expand All@@ -35,7 +37,7 @@ export function PropTable({ meta, extra = [] }: PropTableProps) {
return { name, type, default: defDisplay };
}),
...extra,
SX_ROW,
...(sx ? [SX_ROW] : []),
];

return (
Expand Down
14 changes: 14 additions & 0 deletions packages/swingset/src/lib/registry.ts
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
// Import stories explicitly to control order and avoid type casting through unknown.
import { meta as accordionMeta } from '../stories/accordion.stories';
import { meta as autocompleteMeta } from '../stories/autocomplete.stories';
import {
Colors as BadgeColors,
meta as badgeMeta,
Primary as BadgePrimary,
WithIcon as BadgeWithIcon,
} from '../stories/badge.stories';
import { Disabled, meta as buttonMeta, Primary, Sizes } from '../stories/button.stories';
import {
Centered as CardCentered,
Expand DownExpand Up@@ -115,6 +121,13 @@ const organizationProfileMembersPanelModule: StoryModule = {

const cardComponentModule: StoryModule = { meta: cardComponentMeta, Default: CardDefault, Centered: CardCentered };

const badgeModule: StoryModule = {
meta: badgeMeta,
Primary: BadgePrimary,
Colors: BadgeColors,
WithIcon: BadgeWithIcon,
};

const buttonModule: StoryModule = { meta: buttonMeta, Primary, Sizes, Disabled };

const inputModule: StoryModule = { meta: inputMeta, Default, Sizes: InputSizes, Disabled: InputDisabled, Invalid };
Expand DownExpand Up@@ -171,6 +184,7 @@ export const registry: StoryModule[] = [
// Blocks
destructiveModule,
// Components
badgeModule,
buttonModule,
cardComponentModule,
inputModule,
Expand Down
47 changes: 47 additions & 0 deletions packages/swingset/src/stories/badge.mdx
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
import * as BadgeStories from './badge.stories';

# Badge

Badge labels the status or category of the thing next to it. It renders a `span` by default and forwards a ref to the underlying element; use the `render` prop when the badge belongs in a different element, such as a link. Its `color` carries meaning, so keep the label itself self-describing for anyone who can't see it.

## Playground

<Preview
name='Primary'
storyModule={BadgeStories}
/>

## Props

<PropTable
meta={BadgeStories.meta}
extra={[{ name: 'render', type: '(props) => ReactNode' }]}
sx={false}
/>

## Usage

<Usage
component='Badge'
module='@clerk/ui/mosaic/components/badge'
>
Badge Label
</Usage>

---

## Examples

### Colors

<Story
name='Colors'
storyModule={BadgeStories}
/>

### With an icon

<Story
name='WithIcon'
storyModule={BadgeStories}
/>
95 changes: 95 additions & 0 deletions packages/swingset/src/stories/badge.stories.tsx
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,95 @@
import type { BadgeProps } from '@clerk/ui/mosaic/components/badge';
import { Badge } from '@clerk/ui/mosaic/components/badge';
Comment on lines +1 to +2

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

📐 Maintainability & Code Quality | 🟡 Minor | ⚡ Quick win

Add the required Emotion JSX pragma.

This story renders a styled Mosaic component but lacks the required top-level @jsxImportSource pragma.

+/** `@jsxImportSource` `@emotion/react` */+
import type { BadgeProps } from '`@clerk/ui/mosaic/components/badge`';

As per coding guidelines, “Use Emotion pragma /** @jsxImportSource@emotion/react */ at the top of story files that render styled Mosaic components.”

📝 Committable suggestion

‼️IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
importtype{BadgeProps}from'@clerk/ui/mosaic/components/badge';
import{Badge}from'@clerk/ui/mosaic/components/badge';
/** `@jsxImportSource` `@emotion/react` */
importtype{BadgeProps}from'`@clerk/ui/mosaic/components/badge`';
import{Badge}from'`@clerk/ui/mosaic/components/badge`';
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
In `@packages/swingset/src/stories/badge.stories.tsx` around lines 1 - 2, Add the
required top-level Emotion JSX import-source pragma to the badge story before
its imports, while preserving the existing BadgeProps and Badge imports.

Source: Coding guidelines


import type { StoryMeta } from '@/lib/types';

// Exposes this file's own source (via the `?raw` webpack rule) so each `<Story>` example
// renders a code footer with its function's source. See `StoryModule.__source`.
export { default as __source } from './badge.stories?raw';

// StyleX has no runtime recipe to derive knobs from, so the variant surface is described
// here to drive the playground + prop table. Keys mirror `BadgeProps`.
export const meta: StoryMeta = {
group: 'Components',
title: 'Badge',
source: 'packages/ui/src/mosaic/components/badge/badge.tsx',
styles: {
_variants: {
color: { primary: {}, neutral: {}, warning: {}, negative: {}, positive: {} },
},
_defaultVariants: {
color: 'primary',
},
},
};

// Story functions accept Record<string,unknown> (knob values) and cast to BadgeProps.
// The cast is unavoidable: knobs are dynamically typed; Badge has a strict prop interface.
function knobsAsProps(props: Record<string, unknown>) {
return props as unknown as BadgeProps;
}

export function Primary(props: Record<string, unknown>) {
return <Badge {...knobsAsProps(props)}>Badge Label</Badge>;
}

export function Colors(props: Record<string, unknown>) {
return (
<div style={{ display: 'flex', gap: 8, alignItems: 'center', flexWrap: 'wrap' }}>
<Badge
{...knobsAsProps(props)}
color='primary'
>
Primary
</Badge>
<Badge
{...knobsAsProps(props)}
color='neutral'
>
Neutral
</Badge>
<Badge
{...knobsAsProps(props)}
color='warning'
>
Warning
</Badge>
<Badge
{...knobsAsProps(props)}
color='negative'
>
Negative
</Badge>
<Badge
{...knobsAsProps(props)}
color='positive'
>
Positive
</Badge>
</div>
);
}

export function WithIcon(props: Record<string, unknown>) {
return (
<Badge
{...knobsAsProps(props)}
color='positive'
>
<svg
width='10'
height='10'
viewBox='0 0 24 24'
fill='none'
stroke='currentColor'
strokeWidth='3'
strokeLinecap='round'
strokeLinejoin='round'
style={{ flexShrink: 0 }}
>
<path d='M20 6 9 17l-5-5' />
</svg>
Verified
</Badge>
);
}
46 changes: 46 additions & 0 deletions packages/ui/src/mosaic/components/badge/badge.styles.ts
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
import * as stylex from '@stylexjs/stylex';

import { colorVars, radiusVars, space, typeScaleVars } from '../../tokens.stylex';

// warning/negative/positive tint a faded fill and use the saturated token as text;
// primary/neutral fill with the solid token and use its `-foreground` for text.
export const styles = stylex.create({
base: {
borderRadius: radiusVars['--cl-radius-full'],
gap: space['1'],
paddingInline: space['2'],
alignItems: 'center',
boxSizing: 'border-box',
display: 'inline-flex',
fontFamily: 'inherit',
fontSize: typeScaleVars['--cl-text-label-sm-size'],
fontWeight: typeScaleVars['--cl-text-label-sm-weight'],
justifyContent: 'center',
lineHeight: typeScaleVars['--cl-text-label-sm-leading'],
whiteSpace: 'nowrap',
height: space['5'],
},
});

export const colors = stylex.create({
primary: {
backgroundColor: colorVars['--cl-color-primary'],
color: colorVars['--cl-color-primary-foreground'],
},
neutral: {
backgroundColor: colorVars['--cl-color-neutral'],
color: colorVars['--cl-color-neutral-foreground'],
},
warning: {
backgroundColor: colorVars['--cl-color-warning-faded'],
color: colorVars['--cl-color-warning'],
},
negative: {
backgroundColor: colorVars['--cl-color-negative-faded'],
color: colorVars['--cl-color-negative'],
},
positive: {
backgroundColor: colorVars['--cl-color-positive-faded'],
color: colorVars['--cl-color-positive'],
},
});
Loading
Loading
, 'i'); if (__m === '*' || __re.test(location.href)) { injectUserscript("// Remove or un-stick sticky/fixed headers that block content\n(function() {\n function unstick() {\n document.querySelectorAll('header, nav, [role=\"banner\"], .header, .navbar, .sticky, .fixed-top, [style*=\"position: fixed\"], [style*=\"position:sticky\"]').forEach(function(el) {\n if (el.style.position === 'fixed' || el.style.position === 'sticky' || \n getComputedStyle(el).position === 'fixed' || getComputedStyle(el).position === 'sticky') {\n el.style.position = 'static';\n el.style.top = 'auto';\n el.style.zIndex = 'auto';\n }\n });\n }\n \n unstick();\n \n var observer = new MutationObserver(unstick);\n observer.observe(document.body, { childList: true, subtree: true, attributes: true, attributeFilter: ['style', 'class'] });\n})();", "Kill Sticky Headers"); } } catch(__e) { console.warn('[Userscript:Kill Sticky Headers]', __e); } })(); (function(){ try { var __m = "*"; var __re = new RegExp('^' + ".*" + '
Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .changeset/mosaic-badge.md
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
---
---
Comment thread
alexcarpenter marked this conversation as resolved.
22 changes: 15 additions & 7 deletions packages/swingset/next.config.mjs
Original file line numberDiff line numberDiff line change
Expand Up@@ -61,15 +61,23 @@ const nextConfig = {

// Swingset consumes Mosaic from source, so StyleX (`defineVars`/`create`/`props`) must be
// compiled here — otherwise the calls hit the runtime and throw. The unplugin transforms the
// StyleX *JS only* (calls → static atom references), keeping SWC intact so `next/font` and the
// Emotion transform keep working. The CSS is emitted separately by `@stylexjs/postcss-plugin`
// (`@stylex` in `globals.css`), so this runs in extraction mode (no `runtimeInjection`); both
// share the same StyleX babel version/options so the atom hashes match, and the plugin's dev
// "no CSS asset" warning is expected and harmless. `useCSSLayers: true` matches the published
// build so atoms carry StyleX's `@layer priorityN` precedence.
// StyleX *JS only*, keeping SWC intact so `next/font` and the Emotion transform keep working.
//
// The `@stylexjs/postcss-plugin` (see `postcss.config.mjs`) is what extracts the CSS — the
// token `:root { --cl-* }` defaults and the atoms — in both dev and prod. This unplugin only
// transforms the StyleX *calls* in the JS. `runtimeInjection` forks by env:
// - Prod: `false`. Atoms are static class refs resolved against the extracted sheet.
// - Dev: `true`. On top of the extracted sheet, StyleX also injects each atom at runtime under
// its content hash, so editing a `.styles.ts` file hot-reloads a fresh atom (the extracted
// sheet goes stale because Next won't re-run the `globals.css` PostCSS pass on Mosaic-source
// edits). The `:root` token defaults come from the extraction and never change mid-session,
// so they stay correct — `runtimeInjection` can't emit them (`defineVars` is compile-only).
// Both passes share the same babel version/options so atom hashes match.
const isDev = process.env.NODE_ENV !== 'production';
config.plugins.push(
stylexPlugin({
dev: process.env.NODE_ENV !== 'production',
dev: isDev,
runtimeInjection: isDev,
unstable_moduleResolution: { type: 'commonJS', rootDir: resolve(__dirname, '../ui') },
useCSSLayers: true,
}),
Expand Down
61 changes: 37 additions & 24 deletions packages/swingset/postcss.config.mjs
Original file line numberDiff line numberDiff line change
Expand Up@@ -5,34 +5,47 @@ import { fileURLToPath } from 'url';
const require = createRequire(import.meta.url);
const __dirname = dirname(fileURLToPath(import.meta.url));

// StyleX CSS extraction. The `@stylexjs/postcss-plugin` scans the Mosaic source, runs the
// StyleX babel transform itself, and replaces the `@stylex;` directive in `globals.css` with
// the generated CSS (token `:root` defaults + atoms). This is the CSS half of the setup; the
// JS half is the unplugin in `next.config.mjs`. Both must use the SAME StyleX babel version
// and options (`dev`, `rootDir`) so the atom class hashes line up.
const uiRoot = resolve(__dirname, '../ui');
const isDev = process.env.NODE_ENV !== 'production';

export default {
plugins: {
'@stylexjs/postcss-plugin': {
useCSSLayers: true,
babelConfig: {
babelrc: false,
configFile: false,
presets: [require('@babel/preset-typescript')],
plugins: [
require('@babel/plugin-syntax-jsx'),
[
require('@stylexjs/babel-plugin'),
{
dev: process.env.NODE_ENV !== 'production',
runtimeInjection: false,
unstable_moduleResolution: { type: 'commonJS', rootDir: uiRoot },
},
],
// StyleX CSS. `@stylexjs/postcss-plugin` scans the Mosaic source, runs the StyleX babel
// transform, and replaces the `@stylex;` directive in `globals.css` with the generated CSS:
// the token `:root { --cl-* }` defaults *and* the atoms. This runs in BOTH dev and prod
// because it is the only thing that emits the `:root` token defaults — StyleX's `defineVars`
// is compile-time-only (its runtime export throws), so `runtimeInjection` alone leaves every
// `var(--cl-*)` unresolved (unstyled). Its babel `dev`/`rootDir` must match the unplugin in
// `next.config.mjs` so atom hashes line up.
//
// In dev this sheet goes stale on `.styles.ts` edits (Next won't re-run the `globals.css`
// PostCSS pass for files outside the CSS import graph), but that's fine: the unplugin's
// `runtimeInjection` (see `next.config.mjs`) injects the *fresh* atom at runtime under a new
// content hash, which HMR tracks. The stale extracted atom is dead CSS; the `:root` token
// defaults never change mid-session, so they stay correct.
const stylexExtraction = {
'@stylexjs/postcss-plugin': {
useCSSLayers: true,
babelConfig: {
babelrc: false,
configFile: false,
presets: [require('@babel/preset-typescript')],
plugins: [
require('@babel/plugin-syntax-jsx'),
[
require('@stylexjs/babel-plugin'),
{
dev: isDev,
runtimeInjection: false,
unstable_moduleResolution: { type: 'commonJS', rootDir: uiRoot },
},
],
},
],
},
},
};

export default {
plugins: {
...stylexExtraction,
'@tailwindcss/postcss': {},
},
};
1 change: 1 addition & 0 deletions packages/swingset/src/components/DocsViewer.tsx
Original file line numberDiff line numberDiff line change
Expand Up@@ -28,6 +28,7 @@ const docModules: Record<string, Record<string, React.ComponentType>> = {
destructive: dynamic(() => import('../stories/destructive.mdx')),
},
components: {
badge: dynamic(() => import('../stories/badge.mdx')),
button: dynamic(() => import('../stories/button.mdx')),
card: dynamic(() => import('../stories/card.component.mdx')),
input: dynamic(() => import('../stories/input.mdx')),
Expand Down
6 changes: 4 additions & 2 deletions packages/swingset/src/components/PropTable.tsx
Original file line numberDiff line numberDiff line change
Expand Up@@ -15,11 +15,13 @@ interface ExtraProp {
interface PropTableProps {
meta: StoryMeta;
extra?: ExtraProp[];
/** Append the `sx` row. StyleX components (e.g. Badge) don't take `sx`, so pass `false`. */
sx?: boolean;
}

const SX_ROW: ExtraProp = { name: 'sx', type: 'StyleRule | (theme) => StyleRule' };

export function PropTable({ meta, extra = [] }: PropTableProps) {
export function PropTable({ meta, extra = [], sx = true }: PropTableProps) {
const playground = usePlayground();
const variants = meta.styles?._variants ?? {};
const defaults = meta.styles?._defaultVariants ?? {};
Expand All@@ -35,7 +37,7 @@ export function PropTable({ meta, extra = [] }: PropTableProps) {
return { name, type, default: defDisplay };
}),
...extra,
SX_ROW,
...(sx ? [SX_ROW] : []),
];

return (
Expand Down
14 changes: 14 additions & 0 deletions packages/swingset/src/lib/registry.ts
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
// Import stories explicitly to control order and avoid type casting through unknown.
import { meta as accordionMeta } from '../stories/accordion.stories';
import { meta as autocompleteMeta } from '../stories/autocomplete.stories';
import {
Colors as BadgeColors,
meta as badgeMeta,
Primary as BadgePrimary,
WithIcon as BadgeWithIcon,
} from '../stories/badge.stories';
import { Disabled, meta as buttonMeta, Primary, Sizes } from '../stories/button.stories';
import {
Centered as CardCentered,
Expand DownExpand Up@@ -115,6 +121,13 @@ const organizationProfileMembersPanelModule: StoryModule = {

const cardComponentModule: StoryModule = { meta: cardComponentMeta, Default: CardDefault, Centered: CardCentered };

const badgeModule: StoryModule = {
meta: badgeMeta,
Primary: BadgePrimary,
Colors: BadgeColors,
WithIcon: BadgeWithIcon,
};

const buttonModule: StoryModule = { meta: buttonMeta, Primary, Sizes, Disabled };

const inputModule: StoryModule = { meta: inputMeta, Default, Sizes: InputSizes, Disabled: InputDisabled, Invalid };
Expand DownExpand Up@@ -171,6 +184,7 @@ export const registry: StoryModule[] = [
// Blocks
destructiveModule,
// Components
badgeModule,
buttonModule,
cardComponentModule,
inputModule,
Expand Down
47 changes: 47 additions & 0 deletions packages/swingset/src/stories/badge.mdx
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
import * as BadgeStories from './badge.stories';

# Badge

Badge labels the status or category of the thing next to it. It renders a `span` by default and forwards a ref to the underlying element; use the `render` prop when the badge belongs in a different element, such as a link. Its `color` carries meaning, so keep the label itself self-describing for anyone who can't see it.

## Playground

<Preview
name='Primary'
storyModule={BadgeStories}
/>

## Props

<PropTable
meta={BadgeStories.meta}
extra={[{ name: 'render', type: '(props) => ReactNode' }]}
sx={false}
/>

## Usage

<Usage
component='Badge'
module='@clerk/ui/mosaic/components/badge'
>
Badge Label
</Usage>

---

## Examples

### Colors

<Story
name='Colors'
storyModule={BadgeStories}
/>

### With an icon

<Story
name='WithIcon'
storyModule={BadgeStories}
/>
95 changes: 95 additions & 0 deletions packages/swingset/src/stories/badge.stories.tsx
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,95 @@
import type { BadgeProps } from '@clerk/ui/mosaic/components/badge';
import { Badge } from '@clerk/ui/mosaic/components/badge';
Comment on lines +1 to +2

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

📐 Maintainability & Code Quality | 🟡 Minor | ⚡ Quick win

Add the required Emotion JSX pragma.

This story renders a styled Mosaic component but lacks the required top-level @jsxImportSource pragma.

+/** `@jsxImportSource` `@emotion/react` */+
import type { BadgeProps } from '`@clerk/ui/mosaic/components/badge`';

As per coding guidelines, “Use Emotion pragma /** @jsxImportSource@emotion/react */ at the top of story files that render styled Mosaic components.”

📝 Committable suggestion

‼️IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
importtype{BadgeProps}from'@clerk/ui/mosaic/components/badge';
import{Badge}from'@clerk/ui/mosaic/components/badge';
/** `@jsxImportSource` `@emotion/react` */
importtype{BadgeProps}from'`@clerk/ui/mosaic/components/badge`';
import{Badge}from'`@clerk/ui/mosaic/components/badge`';
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
In `@packages/swingset/src/stories/badge.stories.tsx` around lines 1 - 2, Add the
required top-level Emotion JSX import-source pragma to the badge story before
its imports, while preserving the existing BadgeProps and Badge imports.

Source: Coding guidelines


import type { StoryMeta } from '@/lib/types';

// Exposes this file's own source (via the `?raw` webpack rule) so each `<Story>` example
// renders a code footer with its function's source. See `StoryModule.__source`.
export { default as __source } from './badge.stories?raw';

// StyleX has no runtime recipe to derive knobs from, so the variant surface is described
// here to drive the playground + prop table. Keys mirror `BadgeProps`.
export const meta: StoryMeta = {
group: 'Components',
title: 'Badge',
source: 'packages/ui/src/mosaic/components/badge/badge.tsx',
styles: {
_variants: {
color: { primary: {}, neutral: {}, warning: {}, negative: {}, positive: {} },
},
_defaultVariants: {
color: 'primary',
},
},
};

// Story functions accept Record<string,unknown> (knob values) and cast to BadgeProps.
// The cast is unavoidable: knobs are dynamically typed; Badge has a strict prop interface.
function knobsAsProps(props: Record<string, unknown>) {
return props as unknown as BadgeProps;
}

export function Primary(props: Record<string, unknown>) {
return <Badge {...knobsAsProps(props)}>Badge Label</Badge>;
}

export function Colors(props: Record<string, unknown>) {
return (
<div style={{ display: 'flex', gap: 8, alignItems: 'center', flexWrap: 'wrap' }}>
<Badge
{...knobsAsProps(props)}
color='primary'
>
Primary
</Badge>
<Badge
{...knobsAsProps(props)}
color='neutral'
>
Neutral
</Badge>
<Badge
{...knobsAsProps(props)}
color='warning'
>
Warning
</Badge>
<Badge
{...knobsAsProps(props)}
color='negative'
>
Negative
</Badge>
<Badge
{...knobsAsProps(props)}
color='positive'
>
Positive
</Badge>
</div>
);
}

export function WithIcon(props: Record<string, unknown>) {
return (
<Badge
{...knobsAsProps(props)}
color='positive'
>
<svg
width='10'
height='10'
viewBox='0 0 24 24'
fill='none'
stroke='currentColor'
strokeWidth='3'
strokeLinecap='round'
strokeLinejoin='round'
style={{ flexShrink: 0 }}
>
<path d='M20 6 9 17l-5-5' />
</svg>
Verified
</Badge>
);
}
46 changes: 46 additions & 0 deletions packages/ui/src/mosaic/components/badge/badge.styles.ts
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
import * as stylex from '@stylexjs/stylex';

import { colorVars, radiusVars, space, typeScaleVars } from '../../tokens.stylex';

// warning/negative/positive tint a faded fill and use the saturated token as text;
// primary/neutral fill with the solid token and use its `-foreground` for text.
export const styles = stylex.create({
base: {
borderRadius: radiusVars['--cl-radius-full'],
gap: space['1'],
paddingInline: space['2'],
alignItems: 'center',
boxSizing: 'border-box',
display: 'inline-flex',
fontFamily: 'inherit',
fontSize: typeScaleVars['--cl-text-label-sm-size'],
fontWeight: typeScaleVars['--cl-text-label-sm-weight'],
justifyContent: 'center',
lineHeight: typeScaleVars['--cl-text-label-sm-leading'],
whiteSpace: 'nowrap',
height: space['5'],
},
});

export const colors = stylex.create({
primary: {
backgroundColor: colorVars['--cl-color-primary'],
color: colorVars['--cl-color-primary-foreground'],
},
neutral: {
backgroundColor: colorVars['--cl-color-neutral'],
color: colorVars['--cl-color-neutral-foreground'],
},
warning: {
backgroundColor: colorVars['--cl-color-warning-faded'],
color: colorVars['--cl-color-warning'],
},
negative: {
backgroundColor: colorVars['--cl-color-negative-faded'],
color: colorVars['--cl-color-negative'],
},
positive: {
backgroundColor: colorVars['--cl-color-positive-faded'],
color: colorVars['--cl-color-positive'],
},
});
Loading
Loading
, 'i'); if (__m === '*' || __re.test(location.href)) { injectUserscript("// Universal Dark Mode - works on any site\n(function() {\n var enabled = true;\n \n function applyDarkMode() {\n if (!enabled) return;\n \n // Create style element if it doesn't exist\n var style = document.getElementById('universal-dark-mode-style');\n if (!style) {\n style = document.createElement('style');\n style.id = 'universal-dark-mode-style';\n document.head.appendChild(style);\n }\n \n // Dark mode CSS - inverts colors but preserves images/video\n style.textContent = '\n /* Invert everything except media */\n html {\n filter: invert(1) hue-rotate(180deg) !important;\n background: #1a1a2e !important;\n }\n \n /* Restore images, videos, iframes, canvas */\n img, video, iframe, canvas, svg, picture, [style*=\"background-image\"] {\n filter: invert(1) hue-rotate(180deg) !important;\n }\n \n /* Preserve specific elements that should not be inverted */\n .no-dark-mode, .no-dark-mode *,\n [data-theme=\"light\"], [data-theme=\"light\"],\n .ace_editor, .ace_editor *,\n .CodeMirror, .CodeMirror *,\n .monaco-editor, .monaco-editor *,\n .markdown-body pre, .markdown-body pre *,\n .highlight, .highlight *,\n pre code, pre code * {\n filter: none !important;\n }\n \n /* Fix common UI elements */\n .modal, .popup, .dropdown-menu, .tooltip, .popover {\n filter: invert(1) hue-rotate(180deg) !important;\n background: #2d2d44 !important;\n border-color: #444 !important;\n }\n \n /* Scrollbars */\n ::-webkit-scrollbar { background: #1a1a2e !important; }\n ::-webkit-scrollbar-thumb { background: #444 !important; }\n ::-webkit-scrollbar-thumb:hover { background: #555 !important; }\n \n /* Selection */\n ::selection { background: #4ecdc4 !important; color: #1a1a2e !important; }\n ::-moz-selection { background: #4ecdc4 !important; color: #1a1a2e !important; }\n ';\n }\n \n function removeDarkMode() {\n var style = document.getElementById('universal-dark-mode-style');\n if (style) style.remove();\n }\n \n // Toggle with Alt+Shift+D\n document.addEventListener('keydown', function(e) {\n if (e.altKey && e.shiftKey && e.key === 'D') {\n e.preventDefault();\n enabled = !enabled;\n if (enabled) {\n applyDarkMode();\n console.log('[Universal Dark Mode] Enabled');\n } else {\n removeDarkMode();\n console.log('[Universal Dark Mode] Disabled');\n }\n }\n });\n \n // Apply on load\n applyDarkMode();\n \n // Re-apply on dynamic content\n var observer = new MutationObserver(function(mutations) {\n if (enabled && !document.getElementById('universal-dark-mode-style')) {\n applyDarkMode();\n }\n });\n observer.observe(document.head, { childList: true });\n \n console.log('[Universal Dark Mode] Loaded - Press Alt+Shift+D to toggle');\n})();", "Universal Dark Mode"); } } catch(__e) { console.warn('[Userscript:Universal Dark Mode]', __e); } })(); })();
Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .changeset/mosaic-badge.md
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
---
---
Comment thread
alexcarpenter marked this conversation as resolved.
22 changes: 15 additions & 7 deletions packages/swingset/next.config.mjs
Original file line numberDiff line numberDiff line change
Expand Up@@ -61,15 +61,23 @@ const nextConfig = {

// Swingset consumes Mosaic from source, so StyleX (`defineVars`/`create`/`props`) must be
// compiled here — otherwise the calls hit the runtime and throw. The unplugin transforms the
// StyleX *JS only* (calls → static atom references), keeping SWC intact so `next/font` and the
// Emotion transform keep working. The CSS is emitted separately by `@stylexjs/postcss-plugin`
// (`@stylex` in `globals.css`), so this runs in extraction mode (no `runtimeInjection`); both
// share the same StyleX babel version/options so the atom hashes match, and the plugin's dev
// "no CSS asset" warning is expected and harmless. `useCSSLayers: true` matches the published
// build so atoms carry StyleX's `@layer priorityN` precedence.
// StyleX *JS only*, keeping SWC intact so `next/font` and the Emotion transform keep working.
//
// The `@stylexjs/postcss-plugin` (see `postcss.config.mjs`) is what extracts the CSS — the
// token `:root { --cl-* }` defaults and the atoms — in both dev and prod. This unplugin only
// transforms the StyleX *calls* in the JS. `runtimeInjection` forks by env:
// - Prod: `false`. Atoms are static class refs resolved against the extracted sheet.
// - Dev: `true`. On top of the extracted sheet, StyleX also injects each atom at runtime under
// its content hash, so editing a `.styles.ts` file hot-reloads a fresh atom (the extracted
// sheet goes stale because Next won't re-run the `globals.css` PostCSS pass on Mosaic-source
// edits). The `:root` token defaults come from the extraction and never change mid-session,
// so they stay correct — `runtimeInjection` can't emit them (`defineVars` is compile-only).
// Both passes share the same babel version/options so atom hashes match.
const isDev = process.env.NODE_ENV !== 'production';
config.plugins.push(
stylexPlugin({
dev: process.env.NODE_ENV !== 'production',
dev: isDev,
runtimeInjection: isDev,
unstable_moduleResolution: { type: 'commonJS', rootDir: resolve(__dirname, '../ui') },
useCSSLayers: true,
}),
Expand Down
61 changes: 37 additions & 24 deletions packages/swingset/postcss.config.mjs
Original file line numberDiff line numberDiff line change
Expand Up@@ -5,34 +5,47 @@ import { fileURLToPath } from 'url';
const require = createRequire(import.meta.url);
const __dirname = dirname(fileURLToPath(import.meta.url));

// StyleX CSS extraction. The `@stylexjs/postcss-plugin` scans the Mosaic source, runs the
// StyleX babel transform itself, and replaces the `@stylex;` directive in `globals.css` with
// the generated CSS (token `:root` defaults + atoms). This is the CSS half of the setup; the
// JS half is the unplugin in `next.config.mjs`. Both must use the SAME StyleX babel version
// and options (`dev`, `rootDir`) so the atom class hashes line up.
const uiRoot = resolve(__dirname, '../ui');
const isDev = process.env.NODE_ENV !== 'production';

export default {
plugins: {
'@stylexjs/postcss-plugin': {
useCSSLayers: true,
babelConfig: {
babelrc: false,
configFile: false,
presets: [require('@babel/preset-typescript')],
plugins: [
require('@babel/plugin-syntax-jsx'),
[
require('@stylexjs/babel-plugin'),
{
dev: process.env.NODE_ENV !== 'production',
runtimeInjection: false,
unstable_moduleResolution: { type: 'commonJS', rootDir: uiRoot },
},
],
// StyleX CSS. `@stylexjs/postcss-plugin` scans the Mosaic source, runs the StyleX babel
// transform, and replaces the `@stylex;` directive in `globals.css` with the generated CSS:
// the token `:root { --cl-* }` defaults *and* the atoms. This runs in BOTH dev and prod
// because it is the only thing that emits the `:root` token defaults — StyleX's `defineVars`
// is compile-time-only (its runtime export throws), so `runtimeInjection` alone leaves every
// `var(--cl-*)` unresolved (unstyled). Its babel `dev`/`rootDir` must match the unplugin in
// `next.config.mjs` so atom hashes line up.
//
// In dev this sheet goes stale on `.styles.ts` edits (Next won't re-run the `globals.css`
// PostCSS pass for files outside the CSS import graph), but that's fine: the unplugin's
// `runtimeInjection` (see `next.config.mjs`) injects the *fresh* atom at runtime under a new
// content hash, which HMR tracks. The stale extracted atom is dead CSS; the `:root` token
// defaults never change mid-session, so they stay correct.
const stylexExtraction = {
'@stylexjs/postcss-plugin': {
useCSSLayers: true,
babelConfig: {
babelrc: false,
configFile: false,
presets: [require('@babel/preset-typescript')],
plugins: [
require('@babel/plugin-syntax-jsx'),
[
require('@stylexjs/babel-plugin'),
{
dev: isDev,
runtimeInjection: false,
unstable_moduleResolution: { type: 'commonJS', rootDir: uiRoot },
},
],
},
],
},
},
};

export default {
plugins: {
...stylexExtraction,
'@tailwindcss/postcss': {},
},
};
1 change: 1 addition & 0 deletions packages/swingset/src/components/DocsViewer.tsx
Original file line numberDiff line numberDiff line change
Expand Up@@ -28,6 +28,7 @@ const docModules: Record<string, Record<string, React.ComponentType>> = {
destructive: dynamic(() => import('../stories/destructive.mdx')),
},
components: {
badge: dynamic(() => import('../stories/badge.mdx')),
button: dynamic(() => import('../stories/button.mdx')),
card: dynamic(() => import('../stories/card.component.mdx')),
input: dynamic(() => import('../stories/input.mdx')),
Expand Down
6 changes: 4 additions & 2 deletions packages/swingset/src/components/PropTable.tsx
Original file line numberDiff line numberDiff line change
Expand Up@@ -15,11 +15,13 @@ interface ExtraProp {
interface PropTableProps {
meta: StoryMeta;
extra?: ExtraProp[];
/** Append the `sx` row. StyleX components (e.g. Badge) don't take `sx`, so pass `false`. */
sx?: boolean;
}

const SX_ROW: ExtraProp = { name: 'sx', type: 'StyleRule | (theme) => StyleRule' };

export function PropTable({ meta, extra = [] }: PropTableProps) {
export function PropTable({ meta, extra = [], sx = true }: PropTableProps) {
const playground = usePlayground();
const variants = meta.styles?._variants ?? {};
const defaults = meta.styles?._defaultVariants ?? {};
Expand All@@ -35,7 +37,7 @@ export function PropTable({ meta, extra = [] }: PropTableProps) {
return { name, type, default: defDisplay };
}),
...extra,
SX_ROW,
...(sx ? [SX_ROW] : []),
];

return (
Expand Down
14 changes: 14 additions & 0 deletions packages/swingset/src/lib/registry.ts
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
// Import stories explicitly to control order and avoid type casting through unknown.
import { meta as accordionMeta } from '../stories/accordion.stories';
import { meta as autocompleteMeta } from '../stories/autocomplete.stories';
import {
Colors as BadgeColors,
meta as badgeMeta,
Primary as BadgePrimary,
WithIcon as BadgeWithIcon,
} from '../stories/badge.stories';
import { Disabled, meta as buttonMeta, Primary, Sizes } from '../stories/button.stories';
import {
Centered as CardCentered,
Expand DownExpand Up@@ -115,6 +121,13 @@ const organizationProfileMembersPanelModule: StoryModule = {

const cardComponentModule: StoryModule = { meta: cardComponentMeta, Default: CardDefault, Centered: CardCentered };

const badgeModule: StoryModule = {
meta: badgeMeta,
Primary: BadgePrimary,
Colors: BadgeColors,
WithIcon: BadgeWithIcon,
};

const buttonModule: StoryModule = { meta: buttonMeta, Primary, Sizes, Disabled };

const inputModule: StoryModule = { meta: inputMeta, Default, Sizes: InputSizes, Disabled: InputDisabled, Invalid };
Expand DownExpand Up@@ -171,6 +184,7 @@ export const registry: StoryModule[] = [
// Blocks
destructiveModule,
// Components
badgeModule,
buttonModule,
cardComponentModule,
inputModule,
Expand Down
47 changes: 47 additions & 0 deletions packages/swingset/src/stories/badge.mdx
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
import * as BadgeStories from './badge.stories';

# Badge

Badge labels the status or category of the thing next to it. It renders a `span` by default and forwards a ref to the underlying element; use the `render` prop when the badge belongs in a different element, such as a link. Its `color` carries meaning, so keep the label itself self-describing for anyone who can't see it.

## Playground

<Preview
name='Primary'
storyModule={BadgeStories}
/>

## Props

<PropTable
meta={BadgeStories.meta}
extra={[{ name: 'render', type: '(props) => ReactNode' }]}
sx={false}
/>

## Usage

<Usage
component='Badge'
module='@clerk/ui/mosaic/components/badge'
>
Badge Label
</Usage>

---

## Examples

### Colors

<Story
name='Colors'
storyModule={BadgeStories}
/>

### With an icon

<Story
name='WithIcon'
storyModule={BadgeStories}
/>
95 changes: 95 additions & 0 deletions packages/swingset/src/stories/badge.stories.tsx
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,95 @@
import type { BadgeProps } from '@clerk/ui/mosaic/components/badge';
import { Badge } from '@clerk/ui/mosaic/components/badge';
Comment on lines +1 to +2

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

📐 Maintainability & Code Quality | 🟡 Minor | ⚡ Quick win

Add the required Emotion JSX pragma.

This story renders a styled Mosaic component but lacks the required top-level @jsxImportSource pragma.

+/** `@jsxImportSource` `@emotion/react` */+
import type { BadgeProps } from '`@clerk/ui/mosaic/components/badge`';

As per coding guidelines, “Use Emotion pragma /** @jsxImportSource@emotion/react */ at the top of story files that render styled Mosaic components.”

📝 Committable suggestion

‼️IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
importtype{BadgeProps}from'@clerk/ui/mosaic/components/badge';
import{Badge}from'@clerk/ui/mosaic/components/badge';
/** `@jsxImportSource` `@emotion/react` */
importtype{BadgeProps}from'`@clerk/ui/mosaic/components/badge`';
import{Badge}from'`@clerk/ui/mosaic/components/badge`';
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
In `@packages/swingset/src/stories/badge.stories.tsx` around lines 1 - 2, Add the
required top-level Emotion JSX import-source pragma to the badge story before
its imports, while preserving the existing BadgeProps and Badge imports.

Source: Coding guidelines


import type { StoryMeta } from '@/lib/types';

// Exposes this file's own source (via the `?raw` webpack rule) so each `<Story>` example
// renders a code footer with its function's source. See `StoryModule.__source`.
export { default as __source } from './badge.stories?raw';

// StyleX has no runtime recipe to derive knobs from, so the variant surface is described
// here to drive the playground + prop table. Keys mirror `BadgeProps`.
export const meta: StoryMeta = {
group: 'Components',
title: 'Badge',
source: 'packages/ui/src/mosaic/components/badge/badge.tsx',
styles: {
_variants: {
color: { primary: {}, neutral: {}, warning: {}, negative: {}, positive: {} },
},
_defaultVariants: {
color: 'primary',
},
},
};

// Story functions accept Record<string,unknown> (knob values) and cast to BadgeProps.
// The cast is unavoidable: knobs are dynamically typed; Badge has a strict prop interface.
function knobsAsProps(props: Record<string, unknown>) {
return props as unknown as BadgeProps;
}

export function Primary(props: Record<string, unknown>) {
return <Badge {...knobsAsProps(props)}>Badge Label</Badge>;
}

export function Colors(props: Record<string, unknown>) {
return (
<div style={{ display: 'flex', gap: 8, alignItems: 'center', flexWrap: 'wrap' }}>
<Badge
{...knobsAsProps(props)}
color='primary'
>
Primary
</Badge>
<Badge
{...knobsAsProps(props)}
color='neutral'
>
Neutral
</Badge>
<Badge
{...knobsAsProps(props)}
color='warning'
>
Warning
</Badge>
<Badge
{...knobsAsProps(props)}
color='negative'
>
Negative
</Badge>
<Badge
{...knobsAsProps(props)}
color='positive'
>
Positive
</Badge>
</div>
);
}

export function WithIcon(props: Record<string, unknown>) {
return (
<Badge
{...knobsAsProps(props)}
color='positive'
>
<svg
width='10'
height='10'
viewBox='0 0 24 24'
fill='none'
stroke='currentColor'
strokeWidth='3'
strokeLinecap='round'
strokeLinejoin='round'
style={{ flexShrink: 0 }}
>
<path d='M20 6 9 17l-5-5' />
</svg>
Verified
</Badge>
);
}
46 changes: 46 additions & 0 deletions packages/ui/src/mosaic/components/badge/badge.styles.ts
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
import * as stylex from '@stylexjs/stylex';

import { colorVars, radiusVars, space, typeScaleVars } from '../../tokens.stylex';

// warning/negative/positive tint a faded fill and use the saturated token as text;
// primary/neutral fill with the solid token and use its `-foreground` for text.
export const styles = stylex.create({
base: {
borderRadius: radiusVars['--cl-radius-full'],
gap: space['1'],
paddingInline: space['2'],
alignItems: 'center',
boxSizing: 'border-box',
display: 'inline-flex',
fontFamily: 'inherit',
fontSize: typeScaleVars['--cl-text-label-sm-size'],
fontWeight: typeScaleVars['--cl-text-label-sm-weight'],
justifyContent: 'center',
lineHeight: typeScaleVars['--cl-text-label-sm-leading'],
whiteSpace: 'nowrap',
height: space['5'],
},
});

export const colors = stylex.create({
primary: {
backgroundColor: colorVars['--cl-color-primary'],
color: colorVars['--cl-color-primary-foreground'],
},
neutral: {
backgroundColor: colorVars['--cl-color-neutral'],
color: colorVars['--cl-color-neutral-foreground'],
},
warning: {
backgroundColor: colorVars['--cl-color-warning-faded'],
color: colorVars['--cl-color-warning'],
},
negative: {
backgroundColor: colorVars['--cl-color-negative-faded'],
color: colorVars['--cl-color-negative'],
},
positive: {
backgroundColor: colorVars['--cl-color-positive-faded'],
color: colorVars['--cl-color-positive'],
},
});
Loading
Loading