anentrypoint-design 0.0.431 → 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 +21 -2
- package/dist/247420.js +23 -23
- package/package.json +1 -1
- package/src/css/app-shell/collab.css +3 -0
- package/src/css/app-shell/kits-appended.css +18 -2
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); }
|
|
@@ -481,8 +486,18 @@
|
|
|
481
486
|
|
|
482
487
|
/* == appended: signin kit cleanup == */
|
|
483
488
|
/* -- signin kit (ui_kits/signin) -- */
|
|
484
|
-
|
|
485
|
-
.ds-
|
|
489
|
+
/* Centres one short card in the pane. `display:flex` is repeated after
|
|
490
|
+
.ds-app-surface's `flow-root` because this class is used TOGETHER with that
|
|
491
|
+
root and must win the centring; `min-height:100%` lets justify-content
|
|
492
|
+
actually have room to centre against. No block margin: an auth screen is one
|
|
493
|
+
card, not a run of editorial sections, and inheriting .ds-section's 96px
|
|
494
|
+
rhythm is what pushed a 430px card to a 946px scroll height inside a ~514px
|
|
495
|
+
pane and gave .app-main its own scrollbar at every real window height. */
|
|
496
|
+
.ds-auth-wrap { padding: var(--space-2, 8px); display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 100%; margin-block: 0; }
|
|
497
|
+
/* `auto` block margin, not a fixed clamp: the wrap centres the column, and a
|
|
498
|
+
fixed top/bottom margin both fights that centring and re-adds height the pane
|
|
499
|
+
then has to scroll. `auto` collapses when the pane is short, centres when tall. */
|
|
500
|
+
.ds-auth-col { width: 100%; max-width: 440px; display: flex; flex-direction: column; gap: var(--space-2); margin: auto 0; min-width: 0; }
|
|
486
501
|
/* 18px ceiling: no tier between --space-3 (16) and --space-3-5 (20). */
|
|
487
502
|
.ds-auth-form { padding: clamp(var(--space-2-75), 3vw, 18px); display: flex; flex-direction: column; gap: var(--space-2-5); }
|
|
488
503
|
.ds-auth-sent { align-items: center; text-align: center; }
|
|
@@ -493,6 +508,7 @@
|
|
|
493
508
|
.ds-auth-sent-glyph { font-size: 32px; color: var(--panel-accent); }
|
|
494
509
|
.ds-auth-sent-title { margin: 0; font-weight: 600; }
|
|
495
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); }
|
|
496
512
|
.ds-auth-field { display: flex; flex-direction: column; gap: var(--space-1); }
|
|
497
513
|
/* .ds-auth-field-label joins the kit small-label voice above, no overrides. */
|
|
498
514
|
.ds-auth-row-between { display: flex; align-items: center; justify-content: space-between; gap: var(--space-2); flex-wrap: wrap; }
|