@astryxdesign/cli 0.1.4-canary.efa3ea5 → 0.1.4-canary.f01eb10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (29) hide show
  1. package/docs/getting-started.doc.mjs +0 -4
  2. package/docs/migration.doc.mjs +0 -134
  3. package/docs/styling.doc.mjs +0 -53
  4. package/package.json +9 -9
  5. package/src/commands/agent-docs.mjs +5 -7
  6. package/src/commands/agent-docs.test.mjs +0 -33
  7. package/src/commands/build-theme.mjs +1 -8
  8. package/src/commands/init.mjs +1 -1
  9. package/src/commands/swizzle.mjs +0 -34
  10. package/src/commands/swizzle.routing.test.mjs +0 -67
  11. package/templates/blocks/components/Collapsible/CollapsibleWithoutCard.tsx +23 -25
  12. package/templates/pages/classic-gallery/page.tsx +1 -1
  13. package/templates/pages/dashboard/page.tsx +1 -1
  14. package/templates/pages/documentation/page.tsx +1 -1
  15. package/templates/pages/mixed-gallery/page.tsx +1 -1
  16. package/templates/pages/payment-form/page.tsx +6 -2
  17. package/templates/pages/product-detail/page.tsx +11 -3
  18. package/templates/pages/product-gallery/page.tsx +1 -1
  19. package/templates/pages/settings/page.tsx +1 -1
  20. package/templates/pages/side-gallery/page.tsx +1 -1
  21. package/templates/pages/table-page/page.tsx +1 -1
  22. package/templates/pages/table-page-chart/page.tsx +1 -1
  23. package/templates/pages/table-page-heatmap-status/page.tsx +1 -1
  24. package/templates/pages/table-page-shoe-store-heatmap/page.tsx +1 -1
  25. package/src/commands/build-theme.color-scheme.test.mjs +0 -153
  26. package/templates/pages/incident-console/page.tsx +0 -580
  27. package/templates/pages/incident-console/template.doc.mjs +0 -12
  28. package/templates/pages/messaging-shell/page.tsx +0 -676
  29. package/templates/pages/messaging-shell/template.doc.mjs +0 -12
@@ -69,10 +69,6 @@ export const docs = {
69
69
  type: 'prose',
70
70
  text: 'Available themes: @astryxdesign/theme-neutral (muted minimal, a good starting point), @astryxdesign/theme-butter, @astryxdesign/theme-chocolate, @astryxdesign/theme-gothic (dark-only), @astryxdesign/theme-matcha, @astryxdesign/theme-stone, and @astryxdesign/theme-y2k. See `npx astryx docs theme` for the full theming guide.',
71
71
  },
72
- {
73
- type: 'prose',
74
- text: 'These stylesheets are cascade-layered: the reset loads in @layer reset and component styles in @layer astryx-base. If your project has existing global CSS, a legacy reset, or Tailwind, declare the layer order explicitly and assign every stylesheet to a layer deliberately: unlayered styles and later layers both override astryx-base regardless of specificity. See the Cascade Layer Safety section in `npx astryx docs migration` before building screens.',
75
- },
76
72
  ],
77
73
  },
78
74
  {
@@ -33,7 +33,6 @@ export const docs = {
33
33
  'Install the design system and run init so the project has package scripts, theme CSS, and agent docs.',
34
34
  'Wrap the app root with Theme and choose the initial light, dark, or system mode behavior.',
35
35
  'Make Tailwind and design system CSS layer order explicit before replacing components.',
36
- 'Render the foundation smoke test page and confirm primitives keep their padding before migrating any surface.',
37
36
  'Move the persistent frame first: AppShell, TopNav, SideNav, page content, and mobile navigation.',
38
37
  'Replace shared primitives: Button, IconButton, TextInput, NumberInput, Switch, CheckboxInput, RadioList, Selector, Tabs, Dialog, AlertDialog, Banner, Toast, Badge, Card, Table, and ListItem.',
39
38
  'Replace global workflows: command palette, settings popover, theme toggle, search, filters, create flows, and destructive confirmation dialogs.',
@@ -126,139 +125,6 @@ export function AppRoot({children}: {children: React.ReactNode}) {
126
125
  @import "@astryxdesign/core/tailwind-theme.css";
127
126
  @import "tailwindcss/utilities.css" layer(utilities);`,
128
127
  },
129
- {
130
- type: 'prose',
131
- text: 'On Tailwind v3 there is no preflight.css to import, so wrap the @tailwind base directive in a named layer instead. Keep utilities unlayered so existing app utility classes still win everywhere.',
132
- },
133
- {
134
- type: 'code',
135
- lang: 'css',
136
- label: 'Tailwind v3 coexistence',
137
- code: `@layer reset, tw-preflight, astryx-base, astryx-theme;
138
-
139
- @import "@astryxdesign/core/reset.css";
140
- @import "@astryxdesign/core/astryx.css";
141
- @import "@astryxdesign/theme-neutral/theme.css";
142
-
143
- @layer tw-preflight {
144
- @tailwind base; /* layered: astryx-theme now wins over preflight */
145
- }
146
- @tailwind components;
147
- @tailwind utilities; /* unlayered: legacy utility classes keep winning */`,
148
- },
149
- ],
150
- },
151
- {
152
- title: 'Cascade Layer Safety',
153
- content: [
154
- {
155
- type: 'prose',
156
- text: 'In a stylesheet with no layers at all, a zero-specificity reset like `* { padding: 0 }` loses to any class selector, so most developers treat resets as harmless. Layers change the rules twice: unlayered styles beat every named layer, and a later layer beats an earlier one, both regardless of specificity. The same reset therefore wins against every component style either by staying unlayered or by landing in a layer declared after astryx-base. Same CSS, opposite outcome, and no error or warning when it happens.',
157
- },
158
- {
159
- type: 'prose',
160
- text: 'This is the most common way an adoption breaks, through one of two @import mechanisms. A top-level @import without the layer() keyword keeps the legacy reset unlayered, where it overrides every design system layer. And an @import nested inside a file that was itself imported into a layer inherits that surrounding layer, so a reset can silently land in a consumer layer above astryx-base. Either way the fix is the same: import the legacy reset into the lowest layer explicitly.',
161
- },
162
- {
163
- type: 'code',
164
- lang: 'css',
165
- label: 'Legacy reset, explicitly layered',
166
- code: `/* was: @import "./legacy-reset.css"; (unlayered: beats every layer) */
167
- @import "./legacy-reset.css" layer(reset);`,
168
- },
169
- {
170
- type: 'prose',
171
- text: 'Audit the layers around the design system with this checklist before building screens.',
172
- },
173
- {
174
- type: 'list',
175
- style: 'unordered',
176
- items: [
177
- 'Declare the canonical @layer order once, before any @import. With webpack-based bundlers (including Next.js) the order declaration must live in its own CSS file imported first, such as layers.css, because webpack hoists @import content above the inline CSS that follows it.',
178
- 'Audit every pre-existing global or reset stylesheet and assign each one to a layer deliberately. Top-level imports without layer() stay unlayered and beat every layer; imports nested inside a layered file inherit that layer.',
179
- 'Remove or demote the app legacy reset. The design system ships its own :where() reset in the lowest layer, so any app reset belongs in that same reset layer and never in a layer above astryx-base.',
180
- 'Layer Tailwind preflight. On Tailwind v4, import preflight.css with layer(base). On Tailwind v3, wrap the @tailwind base directive in a named layer (see the snippet in Theme and CSS Setup). Unlayered preflight overrides theme CSS silently.',
181
- 'Set moduleResolution to bundler or node16 and newer so subpath imports like @astryxdesign/core/reset.css resolve.',
182
- 'Theme with defineTheme and the accent family API instead of hand-writing individual color tokens. Derived tokens like --color-on-accent are generated from the accent scale automatically; hand-writing only --color-accent leaves --color-on-accent at its stale white default with no contrast guarantee against the new accent.',
183
- 'Run the foundation smoke test below and view a few components in both light and dark mode before migrating any route.',
184
- ],
185
- },
186
- {
187
- type: 'prose',
188
- text: 'One more mental model shift: a className or utility class you write on a component still reaches the DOM either way, but whether it overrides the component is a layer question, not a source order question. Keep app utilities in the utilities layer so they keep winning.',
189
- },
190
- ],
191
- },
192
- {
193
- title: 'Foundation Smoke Test',
194
- content: [
195
- {
196
- type: 'prose',
197
- text: 'A broken layer order fails silently and identically on every page, so catch it before feature work instead of after N migrated screens. Render one throwaway page with a few primitives as the first migration step.',
198
- },
199
- {
200
- type: 'code',
201
- lang: 'tsx',
202
- label: 'Foundation check page',
203
- code: `import {useState} from 'react';
204
- import {Button} from '@astryxdesign/core/Button';
205
- import {Card} from '@astryxdesign/core/Card';
206
- import {Table} from '@astryxdesign/core/Table';
207
- import {TextInput} from '@astryxdesign/core/TextInput';
208
- import {VStack} from '@astryxdesign/core/VStack';
209
-
210
- export default function FoundationCheck() {
211
- const [email, setEmail] = useState('');
212
-
213
- return (
214
- <div data-foundation-check>
215
- <VStack gap={4}>
216
- <Button label="Primary action" variant="primary" />
217
- <TextInput
218
- label="Email"
219
- placeholder="you@example.com"
220
- value={email}
221
- onChange={setEmail}
222
- />
223
- <Card>One card with default padding</Card>
224
- <Table
225
- data={[{name: 'Foundation', status: 'ok'}]}
226
- columns={[
227
- {key: 'name', header: 'Name'},
228
- {key: 'status', header: 'Status'},
229
- ]}
230
- />
231
- </VStack>
232
- </div>
233
- );
234
- }`,
235
- },
236
- {
237
- type: 'prose',
238
- text: 'If the button renders with visible padding, a filled primary background, and the input and card have borders and internal spacing, the foundation is sound. For an assertion that can run in any test runner or a dev-only effect, check that a primitive keeps non-zero padding:',
239
- },
240
- {
241
- type: 'code',
242
- lang: 'ts',
243
- label: 'Foundation assertion',
244
- code: `const button = document.querySelector<HTMLButtonElement>(
245
- '[data-foundation-check] button',
246
- );
247
- if (!button) {
248
- throw new Error('Foundation check page did not render a button.');
249
- }
250
- if (getComputedStyle(button).paddingInline === '0px') {
251
- throw new Error(
252
- 'Foundation broken: an unlayered reset or a later cascade layer is ' +
253
- 'overriding component styles. Check that no app reset sits outside ' +
254
- 'the reset layer.',
255
- );
256
- }`,
257
- },
258
- {
259
- type: 'prose',
260
- text: 'When this fails, the fix is almost always in the layer order: find the stylesheet that zeroes padding, and move it into the reset layer or delete it.',
261
- },
262
128
  ],
263
129
  },
264
130
  {
@@ -338,59 +338,6 @@ const styles = stylex.create({
338
338
  },
339
339
  ],
340
340
  },
341
- {
342
- title: 'StyleX Build Setup (required for swizzled components)',
343
- category: 'guide',
344
- content: [
345
- {
346
- type: 'prose',
347
- text: 'Astryx components ship pre-compiled, so consuming the published package needs no StyleX setup. But `astryx swizzle <Component>` copies the raw StyleX *source* into your app, and StyleX source requires a build-time StyleX compiler to produce atomic CSS. Without one the component compiles but renders completely unstyled: no error, no warning. If a swizzled component looks unstyled, a missing StyleX compiler is almost always why. The same applies if you author your own StyleX with `stylex.create()`.',
348
- },
349
- {
350
- type: 'table',
351
- headers: ['Bundler', 'StyleX plugin'],
352
- rows: [
353
- ['Webpack', '@stylexjs/webpack-plugin'],
354
- ['Vite / Rollup', '@stylexjs/rollup-plugin (or a community Vite plugin)'],
355
- ['Babel (any bundler)', '@stylexjs/babel-plugin + @stylexjs/postcss-plugin'],
356
- ['Next.js (App Router, SWC)', 'An SWC-based transform; see the Next.js note below'],
357
- ],
358
- },
359
- {
360
- type: 'prose',
361
- text: 'Next.js (App Router) is the sharp edge. StyleX\'s canonical compiler is a Babel plugin, but introducing a Babel config in Next.js disables the SWC compiler, which in turn breaks SWC-dependent features like `next/font`. So the "obvious" Babel setup is actively incompatible with a standard Next 15 App Router app.',
362
- },
363
- {
364
- type: 'prose',
365
- text: 'The working path on Next.js is an SWC-based StyleX transform (e.g. the community `@stylexswc/nextjs-plugin`) wired into `next.config`, which keeps SWC and `next/font` intact. See the example app `apps/example-nextjs-stylex` in the repo for a complete, working Next.js + StyleX + SWC configuration.',
366
- },
367
- {
368
- type: 'code',
369
- lang: 'js',
370
- label: 'next.config.mjs: SWC-based StyleX transform (keeps next/font working)',
371
- code: `import stylexPlugin from '@stylexswc/nextjs-plugin';
372
-
373
- export default stylexPlugin({
374
- rsOptions: {
375
- // Resolve @astryxdesign/core's StyleX so swizzled component source compiles.
376
- aliases: {'@/*': ['./src/*']},
377
- unstable_moduleResolution: {type: 'commonJS'},
378
- },
379
- })({
380
- // your existing Next.js config
381
- });`,
382
- },
383
- {
384
- type: 'list',
385
- style: 'unordered',
386
- items: [
387
- 'Symptom of a missing compiler: swizzled component renders with no styles, but no build or runtime error.',
388
- 'Do NOT add @stylexjs/babel-plugin to a Next.js App Router app; it disables SWC and breaks next/font.',
389
- 'Pure theming (defineTheme + astryx theme build) needs NO StyleX compiler; only swizzled/authored StyleX source does.',
390
- ],
391
- },
392
- ],
393
- },
394
341
  {
395
342
  title: 'What NOT to Do',
396
343
  category: 'guide',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@astryxdesign/cli",
3
- "version": "0.1.4-canary.efa3ea5",
3
+ "version": "0.1.4-canary.f01eb10",
4
4
  "displayName": "CLI",
5
5
  "description": "Scaffold projects, browse templates, generate themes, and get agent-ready docs from the command line.",
6
6
  "author": "Meta Open Source",
@@ -75,10 +75,10 @@
75
75
  "zod": "^4.4.3"
76
76
  },
77
77
  "peerDependencies": {
78
- "@astryxdesign/charts": "0.1.4-canary.efa3ea5",
79
- "@astryxdesign/core": "0.1.4-canary.efa3ea5",
80
- "@astryxdesign/lab": "0.1.4-canary.efa3ea5",
81
- "@astryxdesign/theme-neutral": "0.1.4-canary.efa3ea5",
78
+ "@astryxdesign/charts": "0.1.4-canary.f01eb10",
79
+ "@astryxdesign/core": "0.1.4-canary.f01eb10",
80
+ "@astryxdesign/lab": "0.1.4-canary.f01eb10",
81
+ "@astryxdesign/theme-neutral": "0.1.4-canary.f01eb10",
82
82
  "gpt-tokenizer": "^3.4.0"
83
83
  },
84
84
  "peerDependenciesMeta": {
@@ -96,10 +96,10 @@
96
96
  }
97
97
  },
98
98
  "devDependencies": {
99
- "@astryxdesign/charts": "0.1.4-canary.efa3ea5",
100
- "@astryxdesign/core": "0.1.4-canary.efa3ea5",
101
- "@astryxdesign/lab": "0.1.4-canary.efa3ea5",
102
- "@astryxdesign/theme-neutral": "0.1.4-canary.efa3ea5",
99
+ "@astryxdesign/charts": "0.1.4-canary.f01eb10",
100
+ "@astryxdesign/core": "0.1.4-canary.f01eb10",
101
+ "@astryxdesign/lab": "0.1.4-canary.f01eb10",
102
+ "@astryxdesign/theme-neutral": "0.1.4-canary.f01eb10",
103
103
  "gpt-tokenizer": "^3.4.0"
104
104
  },
105
105
  "scripts": {
@@ -9,12 +9,11 @@
9
9
  * - Claude Code: CLAUDE.md (root) or .claude/CLAUDE.md
10
10
  * - Cursor: .cursorrules
11
11
  * - Codex/generic: AGENTS.md
12
- * - Hermes Agent: .hermes.md or HERMES.md (existing), else AGENTS.md
13
12
  *
14
13
  * Auto-detect: discovers existing files and updates them in place.
15
14
  * Default (no existing files): creates .claude/CLAUDE.md.
16
15
  *
17
- * --agent <tool>: target a specific tool preset (claude, cursor, codex, hermes, all)
16
+ * --agent <tool>: target a specific tool preset (claude, cursor, codex, all)
18
17
  * --agent-docs-path <path>: explicit file path(s)
19
18
  */
20
19
 
@@ -47,7 +46,6 @@ const AGENT_PRESETS = {
47
46
  claude: [CLAUDE_MD, CLAUDE_DIR_MD],
48
47
  cursor: ['.cursorrules', AGENTS_MD],
49
48
  codex: [AGENTS_MD],
50
- hermes: ['.hermes.md', 'HERMES.md', AGENTS_MD],
51
49
  };
52
50
 
53
51
  /**
@@ -66,7 +64,7 @@ export function discoverAgentDocs(targetDir) {
66
64
  * Searches for existing files first, falls back to default creation path.
67
65
  *
68
66
  * @param {string} targetDir
69
- * @param {string} agent - Preset name: 'claude', 'cursor', 'codex', 'hermes', 'all'
67
+ * @param {string} agent - Preset name: 'claude', 'cursor', 'codex', 'all'
70
68
  * @returns {{inject: string[], create: string[]}} Files to inject into vs create fresh
71
69
  */
72
70
  export function resolveAgentPaths(targetDir, agent) {
@@ -388,7 +386,7 @@ export function removeAgentDocs(targetDir) {
388
386
  * @param {object} [options]
389
387
  * @param {boolean} [options.zh]
390
388
  * @param {string} [options.lang]
391
- * @param {string} [options.agent] - Tool preset: 'claude', 'cursor', 'codex', 'hermes', 'all'
389
+ * @param {string} [options.agent] - Tool preset: 'claude', 'cursor', 'codex', 'all'
392
390
  * @param {string[]} [options.paths] - Explicit paths (overrides agent/auto-detect)
393
391
  * @param {boolean} [options.onlyReplace] - Only update files that already have Astryx markers (for upgrades)
394
392
  * @returns {string[]} List of files written
@@ -470,14 +468,14 @@ export function installAgentDocs(targetDir, {zh = false, lang, agent, paths, onl
470
468
  return written;
471
469
  }
472
470
 
473
- const VALID_AGENTS = ['claude', 'cursor', 'codex', 'hermes', 'all'];
471
+ const VALID_AGENTS = ['claude', 'cursor', 'codex', 'all'];
474
472
 
475
473
  export function registerAgentDocs(program) {
476
474
  program
477
475
  .command('agent-docs')
478
476
  .description('Install/update the component index for AI coding agents')
479
477
  .option('--remove', 'Remove the design system section from all agent doc files')
480
- .option('--agent <tool>', 'Target tool: claude, cursor, codex, hermes, all')
478
+ .option('--agent <tool>', 'Target tool: claude, cursor, codex, all')
481
479
  .option('--agent-docs-path <path...>', 'Explicit file path(s) to write to')
482
480
  .action(options => {
483
481
  const targetDir = process.cwd();
@@ -449,17 +449,6 @@ describe('installAgentDocs', () => {
449
449
  expect(fs.existsSync(path.join(tmpDir, 'AGENTS.md'))).toBe(true);
450
450
  });
451
451
 
452
- it('respects --agent hermes preset: creates AGENTS.md', () => {
453
- setupCorePackage(tmpDir);
454
-
455
- const written = installAgentDocs(tmpDir, {agent: 'hermes'});
456
-
457
- expect(written).toEqual(['AGENTS.md']);
458
- const content = fs.readFileSync(path.join(tmpDir, 'AGENTS.md'), 'utf-8');
459
- expect(content).toContain('<!-- ASTRYX:START -->');
460
- expect(fs.existsSync(path.join(tmpDir, '.claude'))).toBe(false);
461
- });
462
-
463
452
  it('respects explicit --paths', () => {
464
453
  setupCorePackage(tmpDir);
465
454
 
@@ -559,26 +548,4 @@ describe('resolveAgentPaths', () => {
559
548
  expect(result.create).toContain('AGENTS.md');
560
549
  expect(result.create).toContain('.claude/CLAUDE.md');
561
550
  });
562
-
563
- it('hermes preset creates AGENTS.md when nothing exists', () => {
564
- const result = resolveAgentPaths(tmpDir, 'hermes');
565
- expect(result).toEqual({inject: [], create: ['AGENTS.md']});
566
- });
567
-
568
- it('hermes preset finds existing .hermes.md', () => {
569
- fs.writeFileSync(path.join(tmpDir, '.hermes.md'), '');
570
- const result = resolveAgentPaths(tmpDir, 'hermes');
571
- expect(result).toEqual({inject: ['.hermes.md'], create: []});
572
- });
573
-
574
- it('hermes preset finds existing HERMES.md when no .hermes.md', () => {
575
- fs.writeFileSync(path.join(tmpDir, 'HERMES.md'), '');
576
- const result = resolveAgentPaths(tmpDir, 'hermes');
577
- expect(result).toEqual({inject: ['HERMES.md'], create: []});
578
- });
579
-
580
- it('claude preset still creates .claude/CLAUDE.md when nothing exists (hermes is additive)', () => {
581
- const result = resolveAgentPaths(tmpDir, 'claude');
582
- expect(result).toEqual({inject: [], create: ['.claude/CLAUDE.md']});
583
- });
584
551
  });
@@ -939,15 +939,8 @@ export function registerTheme(program) {
939
939
  if (component.length > 0) {
940
940
  const componentInner = component.join('\n\n');
941
941
  const componentScope = `@scope (${scopeSelector}) to (${scopeTo}) {\n${componentInner}\n}`;
942
- // light-dark() needs a color-scheme declaration in this bundle, but a
943
- // bare `:root { color-scheme: light dark }` outranks reset.css's
944
- // `html[data-theme]` mapping (astryx-theme layer comes after reset),
945
- // silently defeating `<Theme mode>` forcing on <html>. Mirror the
946
- // attribute-keyed mapping so the declaration follows the active mode.
947
942
  const colorSchemeDecl = componentScope.includes('light-dark(')
948
- ? ' :root { color-scheme: light dark; }\n' +
949
- ' html[data-theme="light"] { color-scheme: light; }\n' +
950
- ' html[data-theme="dark"] { color-scheme: dark; }\n\n'
943
+ ? ' :root { color-scheme: light dark; }\n\n'
951
944
  : '';
952
945
  cssParts.push(
953
946
  `@layer astryx-theme {\n${colorSchemeDecl}${componentScope}\n}`,
@@ -198,7 +198,7 @@ export function registerInit(program) {
198
198
  .option('--features <list>', 'Comma-separated features to install (agents, theme, template)')
199
199
  .option('--all', 'Install all features, no prompts')
200
200
  .option('--remove-agents', 'Remove AI agent docs from all agent doc files')
201
- .option('--agent <tool>', 'Target AI tool for agent docs: claude, cursor, codex, hermes, all')
201
+ .option('--agent <tool>', 'Target AI tool for agent docs: claude, cursor, codex, all')
202
202
  .option('--agent-docs-path <path...>', 'Explicit file path(s) for agent docs')
203
203
  .action(async (options) => {
204
204
  const targetDir = process.cwd();
@@ -26,7 +26,6 @@ import {jsonOut, humanLog} from '../lib/json.mjs';
26
26
  import {cliError} from '../lib/cli-error.mjs';
27
27
  import {ERROR_CODES} from '../lib/error-codes.mjs';
28
28
  import {checkGhCli} from '../utils/github.mjs';
29
- import {getRunPrefix} from '../utils/package-manager.mjs';
30
29
  import {Project} from '../lib/project.mjs';
31
30
  import {
32
31
  CORE_PACKAGE,
@@ -340,10 +339,6 @@ export function registerSwizzle(program) {
340
339
  // Copy all non-test, non-doc, non-README files
341
340
  const files = fs.readdirSync(componentDir);
342
341
  let copied = 0;
343
- // Track whether any copied source uses StyleX. Swizzled StyleX source
344
- // needs a build-time StyleX compiler in the consumer's app or it renders
345
- // unstyled with no error — so we surface a setup note after copying.
346
- let usesStyleX = false;
347
342
 
348
343
  for (const file of files) {
349
344
  // Skip test files, doc files, and README
@@ -360,13 +355,6 @@ export function registerSwizzle(program) {
360
355
  content = rewriteImports(content, owner.ownerPackage);
361
356
  }
362
357
 
363
- if (
364
- (file.endsWith('.ts') || file.endsWith('.tsx')) &&
365
- content.includes('@stylexjs/stylex')
366
- ) {
367
- usesStyleX = true;
368
- }
369
-
370
358
  fs.writeFileSync(path.join(outputDir, file), content);
371
359
  copied++;
372
360
  }
@@ -388,7 +376,6 @@ export function registerSwizzle(program) {
388
376
  outputDir: relOutput,
389
377
  filesCopied: copied,
390
378
  files: copiedFiles.map(f => f),
391
- usesStyleX,
392
379
  };
393
380
  if (feedback) payload.feedback = feedback;
394
381
  return jsonOut('swizzle.copy', payload);
@@ -400,27 +387,6 @@ export function registerSwizzle(program) {
400
387
  );
401
388
  humanLog('You can now customize the component source freely.\n');
402
389
 
403
- // StyleX build requirement. Swizzled components ship raw StyleX source,
404
- // which needs a build-time StyleX compiler in the consumer's app to
405
- // produce atomic CSS. Without it the component compiles but renders
406
- // unstyled, with no error — a confusing silent failure, so call it out.
407
- if (usesStyleX) {
408
- humanLog(
409
- '⚠ These components use StyleX and require a StyleX compiler in your build.',
410
- );
411
- humanLog(
412
- ' Without one they render unstyled (no error). See setup per framework:',
413
- );
414
- humanLog(` ${getRunPrefix()} astryx docs styling`);
415
- humanLog(
416
- ' Next.js note: the StyleX Babel plugin disables SWC and breaks next/font —',
417
- );
418
- humanLog(
419
- ' use an SWC-based StyleX transform instead (covered in the guide).',
420
- );
421
- humanLog('');
422
- }
423
-
424
390
  // Maintainer feedback note. If we couldn't swizzle cleanly, the team
425
391
  // wants to know — point users at the issue tracker. Skipped when the
426
392
  // owning package ships no issues URL.
@@ -277,70 +277,3 @@ describe('swizzle — ambiguous ownership', () => {
277
277
  expect(out).toContain(`from '@astryxdesign/core/theme'`);
278
278
  });
279
279
  });
280
-
281
- /**
282
- * Build a fake @astryxdesign/core with a component that imports StyleX directly
283
- * (so the swizzle StyleX-build note should fire) and one that doesn't.
284
- */
285
- function buildStyleXCore(project) {
286
- const core = path.join(project, 'node_modules', '@astryxdesign', 'core');
287
- // StyleX component.
288
- const styledDir = path.join(core, 'src', 'Styled');
289
- fs.mkdirSync(styledDir, {recursive: true});
290
- fs.writeFileSync(
291
- path.join(core, 'package.json'),
292
- '{"name":"@astryxdesign/core","version":"0.0.13"}',
293
- );
294
- fs.writeFileSync(
295
- path.join(styledDir, 'Styled.tsx'),
296
- [
297
- `import * as stylex from '@stylexjs/stylex';`,
298
- `const styles = stylex.create({base: {color: 'red'}});`,
299
- `export const Styled = () => null;`,
300
- '',
301
- ].join('\n'),
302
- );
303
- // Plain component (no StyleX).
304
- const plainDir = path.join(core, 'src', 'Plain');
305
- fs.mkdirSync(plainDir, {recursive: true});
306
- fs.writeFileSync(
307
- path.join(plainDir, 'Plain.tsx'),
308
- `export const Plain = () => null;\n`,
309
- );
310
- return core;
311
- }
312
-
313
- describe('swizzle — StyleX build setup note (#3373)', () => {
314
- it('reports usesStyleX and prints a setup note for StyleX components', () => {
315
- buildStyleXCore(project);
316
- writeProjectPackageJson(project);
317
-
318
- // JSON payload carries the machine-readable flag.
319
- const jsonResult = runCli(['--json', 'swizzle', 'Styled', '-f'], project);
320
- expect(jsonResult.code).toBe(0);
321
- const env = JSON.parse(jsonResult.stdout);
322
- expect(env.data.usesStyleX).toBe(true);
323
-
324
- // Human output surfaces the compiler requirement + Next.js caveat.
325
- const humanResult = runCli(['swizzle', 'Styled', '-f'], project);
326
- expect(humanResult.code).toBe(0);
327
- expect(humanResult.stdout).toMatch(/StyleX compiler/i);
328
- expect(humanResult.stdout).toMatch(/unstyled/i);
329
- expect(humanResult.stdout).toMatch(/next\/font/i);
330
- expect(humanResult.stdout).toMatch(/astryx docs styling/);
331
- });
332
-
333
- it('does not print the StyleX note for components without StyleX', () => {
334
- buildStyleXCore(project);
335
- writeProjectPackageJson(project);
336
-
337
- const jsonResult = runCli(['--json', 'swizzle', 'Plain', '-f'], project);
338
- expect(jsonResult.code).toBe(0);
339
- const env = JSON.parse(jsonResult.stdout);
340
- expect(env.data.usesStyleX).toBe(false);
341
-
342
- const humanResult = runCli(['swizzle', 'Plain', '-f'], project);
343
- expect(humanResult.code).toBe(0);
344
- expect(humanResult.stdout).not.toMatch(/StyleX compiler/i);
345
- });
346
- });
@@ -2,36 +2,34 @@
2
2
 
3
3
  'use client';
4
4
 
5
- import {Collapsible, CollapsibleGroup} from '@astryxdesign/core/Collapsible';
5
+ import {Collapsible} from '@astryxdesign/core/Collapsible';
6
6
  import {Divider} from '@astryxdesign/core/Divider';
7
7
  import {Text} from '@astryxdesign/core/Text';
8
8
  import {VStack} from '@astryxdesign/core/Layout';
9
9
 
10
10
  export default function CollapsibleWithoutCard() {
11
11
  return (
12
- <CollapsibleGroup type="single" defaultValue="deployment">
13
- <VStack gap={3} style={{width: '100%', maxWidth: 400}}>
14
- <Collapsible trigger="Deployment Details" value="deployment">
15
- <Text type="body">
16
- Last deployed on April 18, 2026 at 3:42 PM by Sarah Chen. Build
17
- duration was 2m 14s with zero warnings.
18
- </Text>
19
- </Collapsible>
20
- <Divider />
21
- <Collapsible trigger="Environment Variables" value="environment">
22
- <Text type="body">
23
- 12 variables configured. Last updated March 30, 2026. All secrets
24
- are encrypted at rest with AES-256.
25
- </Text>
26
- </Collapsible>
27
- <Divider />
28
- <Collapsible trigger="Build Logs" value="logs">
29
- <Text type="body">
30
- Build completed successfully. 847 modules compiled, 0 errors, 0
31
- warnings. Bundle size: 142 KB gzipped.
32
- </Text>
33
- </Collapsible>
34
- </VStack>
35
- </CollapsibleGroup>
12
+ <VStack gap={3} style={{width: '100%', maxWidth: 400}}>
13
+ <Collapsible trigger="Deployment Details">
14
+ <Text type="body">
15
+ Last deployed on April 18, 2026 at 3:42 PM by Sarah Chen. Build
16
+ duration was 2m 14s with zero warnings.
17
+ </Text>
18
+ </Collapsible>
19
+ <Divider />
20
+ <Collapsible trigger="Environment Variables" defaultIsOpen={false}>
21
+ <Text type="body">
22
+ 12 variables configured. Last updated March 30, 2026. All secrets are
23
+ encrypted at rest with AES-256.
24
+ </Text>
25
+ </Collapsible>
26
+ <Divider />
27
+ <Collapsible trigger="Build Logs" defaultIsOpen={false}>
28
+ <Text type="body">
29
+ Build completed successfully. 847 modules compiled, 0 errors, 0
30
+ warnings. Bundle size: 142 KB gzipped.
31
+ </Text>
32
+ </Collapsible>
33
+ </VStack>
36
34
  );
37
35
  }
@@ -110,7 +110,7 @@ export default function ClassicGalleryTemplate() {
110
110
 
111
111
  return (
112
112
  <Layout
113
- height="fill"
113
+ height="auto"
114
114
  content={
115
115
  <LayoutContent padding={0}>
116
116
  <Center axis="horizontal">
@@ -729,7 +729,7 @@ function TableCard<T extends {id: string}>({
729
729
  export default function DashboardTemplate() {
730
730
  return (
731
731
  <Layout
732
- height="fill"
732
+ height="auto"
733
733
  content={
734
734
  <LayoutContent padding={6}>
735
735
  <VStack gap={6}>
@@ -209,7 +209,7 @@ const COMPONENT_CATEGORIES = [
209
209
  export default function DocumentationOverviewPage() {
210
210
  return (
211
211
  <Layout
212
- height="fill"
212
+ height="auto"
213
213
  contentWidth={1200}
214
214
  content={
215
215
  <LayoutContent padding={8}>
@@ -112,7 +112,7 @@ function GalleryCard({
112
112
  export default function MixedGalleryTemplate() {
113
113
  return (
114
114
  <Layout
115
- height="fill"
115
+ height="auto"
116
116
  contentWidth={1400}
117
117
  content={
118
118
  <LayoutContent padding={6}>
@@ -153,6 +153,10 @@ const fmt = (n: number) => `$${n.toFixed(2)}`;
153
153
  // :root by `@astryxdesign/core/astryx.css`). No StyleX compiler required.
154
154
 
155
155
  const fullWidth: CSSProperties = {width: '100%'};
156
+ // LayoutContent clips overflow by default, which traps position:sticky
157
+ // children (the sticky order summary). With height="auto" the page scrolls
158
+ // at the window, so let overflow be visible here so sticky can pin.
159
+ const visibleOverflow: CSSProperties = {overflow: 'visible'};
156
160
  // Form column flex-basis so the two checkout columns share width evenly.
157
161
  const formColBasis: CSSProperties = {flexBasis: 0};
158
162
  // Space the Order Summary content below its collapsible trigger title.
@@ -262,9 +266,9 @@ export default function PaymentFormPage() {
262
266
 
263
267
  return (
264
268
  <Layout
265
- height="fill"
269
+ height="auto"
266
270
  content={
267
- <LayoutContent padding={0}>
271
+ <LayoutContent padding={0} style={visibleOverflow}>
268
272
  <Center axis="horizontal">
269
273
  <Section
270
274
  variant="transparent"