anentrypoint-design 0.0.432 → 0.0.433
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/dist/247420.css +9 -0
- package/dist/247420.js +26 -26
- package/package.json +1 -1
- package/src/css/app-shell/collab.css +3 -0
- package/src/css/app-shell/kits-appended.css +6 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "anentrypoint-design",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.433",
|
|
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",
|
|
@@ -68,6 +68,9 @@
|
|
|
68
68
|
here under a distinct prefix since this is a different feature. */
|
|
69
69
|
.ds-collab-bar { display: flex; flex-wrap: wrap; align-items: center; gap: var(--space-2); }
|
|
70
70
|
.ds-collab-bar-empty { color: var(--fg-3); font-size: var(--fs-sm); padding: var(--space-2) 0; }
|
|
71
|
+
/* workspace kit's live tab: PresenceBar summary strip stacked above
|
|
72
|
+
SessionDashboard, filling the .ws-main flex column it renders inside. */
|
|
73
|
+
.ds-workspace-live { display: flex; flex-direction: column; gap: var(--space-3); flex: 1; min-height: 0; }
|
|
71
74
|
.ds-collab-chip {
|
|
72
75
|
display: inline-flex;
|
|
73
76
|
align-items: center;
|
|
@@ -312,6 +312,11 @@
|
|
|
312
312
|
font-family: var(--ff-mono); white-space: pre-line; font-size: clamp(16px, 5vw, 24px);
|
|
313
313
|
background: var(--tile-tone, var(--panel-1));
|
|
314
314
|
}
|
|
315
|
+
/* Carousel adoption in the lightbox: each item takes the track's full inner
|
|
316
|
+
width so exactly one tile is visible per page, matching the modal's own
|
|
317
|
+
fixed 520px card width rather than sizing to caption content. */
|
|
318
|
+
.ds-lightbox-card--carousel .ds-carousel-item { flex: 0 0 100%; width: 100%; }
|
|
319
|
+
.ds-lightbox-card--carousel .ds-carousel-track { scroll-snap-type: x mandatory; }
|
|
315
320
|
|
|
316
321
|
/* --- search ------------------------------------------------- */
|
|
317
322
|
.ds-topbar-search { width: min(280px, 100%); min-width: 0; flex: 1 1 clamp(140px, 30vw, 280px); }
|
|
@@ -503,6 +508,7 @@
|
|
|
503
508
|
.ds-auth-sent-glyph { font-size: 32px; color: var(--panel-accent); }
|
|
504
509
|
.ds-auth-sent-title { margin: 0; font-weight: 600; }
|
|
505
510
|
.ds-auth-sent-sub { margin: 0; color: var(--panel-text-2); overflow-wrap: anywhere; }
|
|
511
|
+
.ds-auth-otp-wrap { display: flex; flex-direction: column; align-items: center; gap: var(--space-2); }
|
|
506
512
|
.ds-auth-field { display: flex; flex-direction: column; gap: var(--space-1); }
|
|
507
513
|
/* .ds-auth-field-label joins the kit small-label voice above, no overrides. */
|
|
508
514
|
.ds-auth-row-between { display: flex; align-items: center; justify-content: space-between; gap: var(--space-2); flex-wrap: wrap; }
|