anentrypoint-design 1.0.13 → 1.0.14

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": "1.0.13",
3
+ "version": "1.0.14",
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",
@@ -143,16 +143,12 @@
143
143
  font-family: var(--ff-mono); font-size: var(--fs-xs);
144
144
  display: inline-flex; align-items: center; gap: 6px;
145
145
  }
146
- /* CSS-drawn disc mark on the compact theme toggle: keeps the control
147
- legible when its text label is hidden (icon-only rail strip). Per-mode
148
- fill gives the icon itself a distinct look for auto/light/dark, so state
149
- reads without relying on the title tooltip alone. */
150
- .ds-theme-disc {
151
- flex: 0 0 auto; width: 14px; height: 14px; border-radius: 50%;
152
- border: var(--bw-hair) solid var(--fg-3);
153
- /* auto: half-and-half, matches default (no data-mode) for safety */
154
- background: linear-gradient(90deg, var(--fg-3) 0 50%, transparent 50% 100%);
155
- }
146
+ /* CSS-drawn disc mark on the compact theme toggle: legibility fallback for
147
+ when BOTH the SVG glyph and text label are hidden (icon-only rail strip).
148
+ The glyph (.ds-theme-toggle-icon) already conveys mode whenever it is
149
+ visible, so the disc stays hidden alongside it and only shows in the
150
+ rail-collapsed state where responsive2-workspace.css hides the icon too. */
151
+ .ds-theme-disc { display: none; }
156
152
  .ds-theme-disc[data-mode="auto"] {
157
153
  background: linear-gradient(90deg, var(--fg-3) 0 50%, transparent 50% 100%);
158
154
  }
@@ -410,8 +410,12 @@ body.canvas-host { background: transparent !important; }
410
410
  1400-2200px viewport band (matches .ws-shell's 1920px ultrawide cap below)
411
411
  instead of freezing at 1400px and leaving >1000px dead margin on a 2560px+
412
412
  display. Row/prose measure caps (--measure-wide etc.) still own line-length
413
- readability, so widening the shell itself does not create unreadable rows. */
414
- .app { max-width: clamp(1400px, 92vw, 1920px); margin-left: auto; margin-right: auto; }
413
+ readability, so widening the shell itself does not create unreadable rows.
414
+ 100vw (not 92vw): a stock 1920px monitor sat at 92vw = 1766px, leaving a
415
+ visible ~154px dead margin on the single most common desktop resolution —
416
+ the ceiling now reaches full width exactly at 1920px instead of falling
417
+ short of it. */
418
+ .app { max-width: clamp(1400px, 100vw, 1920px); margin-left: auto; margin-right: auto; }
415
419
  .app-main .chat,
416
420
  .app-main > .chat-area,
417
421
  .app-main > .main-content { max-width: none; margin: 0; width: 100%; }