anentrypoint-design 0.0.405 → 0.0.407

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "anentrypoint-design",
3
- "version": "0.0.405",
3
+ "version": "0.0.407",
4
4
  "description": "247420 design system SDK — webjsx + modified ripple-ui, single-file ESM bundle for reproducible use of the AnEntrypoint design.",
5
5
  "type": "module",
6
6
  "main": "./dist/247420.js",
@@ -24,7 +24,7 @@
24
24
  color: var(--fg-2); text-decoration: none;
25
25
  }
26
26
  .ds-catalog-side nav a:hover { color: var(--accent-ink); }
27
- .ds-catalog-main { flex: 1; padding: var(--space-5); max-width: var(--measure-wide); min-width: 0; }
27
+ .ds-catalog-main { flex: 1; padding: var(--space-5); max-width: var(--stage-wide); min-width: 0; }
28
28
  .ds-catalog-section { margin-bottom: var(--space-5); padding-top: var(--space-3); border-top: var(--bw-hair) solid var(--rule); }
29
29
  .ds-catalog-section > h2 { font-size: var(--fs-h3-app); margin: 0 0 var(--space-3); }
30
30
 
@@ -326,7 +326,7 @@
326
326
  /* Stage — the scrollable content column. */
327
327
  .ds-file-stage {
328
328
  display: flex; flex-direction: column; gap: var(--space-3);
329
- width: 100%; max-width: var(--measure-wide); margin: 0 auto;
329
+ width: 100%; max-width: var(--stage-wide); margin: 0 auto;
330
330
  padding: var(--space-2) var(--space-3) var(--space-4);
331
331
  }
332
332
  /* When the stage is the app-main child, the shell already supplies top
@@ -10,7 +10,7 @@
10
10
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
11
11
  grid-template-areas: 'title title' 'body aside';
12
12
  align-items: start;
13
- max-width: var(--measure-wide);
13
+ max-width: var(--stage-wide);
14
14
  position: relative; isolation: isolate;
15
15
  }
16
16
  .ds-hero-head { grid-area: title; display: grid; gap: var(--space-3); }
package/src/theme.js CHANGED
@@ -19,7 +19,7 @@ const DENSITY_KEY = '247420:density';
19
19
  const LOCALE_KEY = '247420:locale';
20
20
  // 'auto' is a mode, not a [data-theme] preset block — it stays in VALID for the
21
21
  // controller but is the OS-follow path. The named presets are the rest.
22
- const VALID = new Set(['auto', 'paper', 'ink', 'thebird']);
22
+ const VALID = new Set(['auto', 'paper', 'ink', 'thebird', 'github-dark']);
23
23
  const VALID_ACCENT = new Set(['green', 'purple', 'mascot']);
24
24
  const VALID_DENSITY = new Set(['compact', 'comfortable', 'spacious']);
25
25
  const listeners = new Set();