anentrypoint-design 0.0.302 → 0.0.303

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/app-shell.css CHANGED
@@ -608,14 +608,6 @@ body.canvas-host { background: transparent !important; }
608
608
  transition: box-shadow var(--dur-base) var(--ease-spring), border-color var(--dur-snap) var(--ease),
609
609
  transform var(--dur-base) var(--ease-spring);
610
610
  }
611
- /* Vercel-style card lift: any panel sitting inside a density grid (trio/grid)
612
- gets a restrained hover escalation — the standalone/full-width panel stays
613
- flat so page chrome doesn't jitter on scroll-adjacent hover. */
614
- .ds-panel-trio > .panel:hover, .ds-panel-grid > .panel:hover {
615
- box-shadow: var(--shadow-2);
616
- border-color: var(--rule-strong);
617
- transform: translateY(-2px);
618
- }
619
611
  /* Editorial accent spine — an opt-in printed-ink rule down the left edge that
620
612
  reads as a magazine pull-quote bar, not a glow card. */
621
613
  .panel.panel-spine {
@@ -1089,8 +1081,9 @@ table tr.clickable:focus-visible td { background: var(--bg-2); }
1089
1081
  }
1090
1082
  .ds-barchart-fill {
1091
1083
  height: 100%; width: var(--bar-pct, 0%);
1092
- background: var(--accent); border-radius: var(--r-pill);
1084
+ background: var(--fg-3); border-radius: var(--r-pill);
1093
1085
  }
1086
+ .ds-barchart-fill.is-active { background: var(--accent); }
1094
1087
  .ds-barchart-value {
1095
1088
  font-size: var(--fs-xs); font-weight: 600; color: var(--fg-3);
1096
1089
  font-variant-numeric: tabular-nums;
@@ -1589,13 +1582,13 @@ table tr.clickable:focus-visible td { background: var(--bg-2); }
1589
1582
  transition: background var(--dur-snap) var(--ease), border-color var(--dur-snap) var(--ease);
1590
1583
  }
1591
1584
  .is-marked > .ds-check-box,
1592
- [aria-checked="true"] > .ds-check-box { background: var(--accent); border-color: var(--accent); }
1585
+ [aria-checked="true"] > .ds-check-box { background: var(--fg); border-color: var(--fg); }
1593
1586
  .is-marked > .ds-check-box::after,
1594
1587
  [aria-checked="true"] > .ds-check-box::after {
1595
1588
  content: ""; position: absolute; left: 4px; top: 1px; width: 4px; height: 8px;
1596
1589
  border: solid var(--bg); border-width: 0 1.5px 1.5px 0; transform: rotate(45deg);
1597
1590
  }
1598
- [aria-checked="mixed"] > .ds-check-box { background: var(--accent); border-color: var(--accent); }
1591
+ [aria-checked="mixed"] > .ds-check-box { background: var(--fg); border-color: var(--fg); }
1599
1592
  [aria-checked="mixed"] > .ds-check-box::after {
1600
1593
  content: ""; position: absolute; left: 3px; right: 3px; top: 6px; height: 2px; background: var(--bg); border-radius: var(--r-hair);
1601
1594
  }
@@ -1898,9 +1891,10 @@ table tr.clickable:focus-visible td { background: var(--bg-2); }
1898
1891
  }
1899
1892
  .ds-upload-fill {
1900
1893
  display: block; height: 100%; width: 0;
1901
- background: var(--accent); border-radius: var(--r-pill);
1894
+ background: var(--fg-3); border-radius: var(--r-pill);
1902
1895
  transition: width var(--dur-base) var(--ease);
1903
1896
  }
1897
+ .ds-upload-fill.is-active { background: var(--accent); }
1904
1898
  /* Indeterminate: percent is unknown mid-transfer (fetch gives no chunk-level
1905
1899
  progress) — a sliding marquee bar reads as "working", not stuck at 0%. */
1906
1900
  .ds-upload-bar.indeterminate .ds-upload-fill {
@@ -2862,9 +2856,7 @@ input[type="checkbox"], input[type="radio"] {
2862
2856
 
2863
2857
  /* Drag-over state */
2864
2858
  .drag-over {
2865
- background: color-mix(in oklab, var(--accent) 12%, var(--bg));
2866
2859
  border: 2px dashed var(--accent);
2867
- box-shadow: inset 0 0 0 1px var(--accent);
2868
2860
  }
2869
2861
 
2870
2862
  /* Drag-ghost (semi-transparent dragging element) */
@@ -2920,7 +2912,7 @@ input[type="checkbox"], input[type="radio"] {
2920
2912
  background: var(--bg-2);
2921
2913
  border: 1px solid var(--rule);
2922
2914
  border-radius: var(--r-2);
2923
- box-shadow: 0 10px 40px color-mix(in oklab, var(--fg) 20%, transparent);
2915
+ box-shadow: var(--shadow-overlay);
2924
2916
  min-width: 160px;
2925
2917
  z-index: calc(var(--z-overlay, 1000) + 1);
2926
2918
  padding: 4px 0;
@@ -3202,7 +3194,7 @@ input[type="password"]:not(:placeholder-shown) + .input-clear {
3202
3194
  /* Skip to main content link */
3203
3195
  .skip-to-main {
3204
3196
  position: absolute; top: -40px; left: 0;
3205
- background: var(--accent); color: var(--accent-fg);
3197
+ background: var(--fg); color: var(--bg);
3206
3198
  padding: 8px 16px; border-radius: var(--r-1);
3207
3199
  text-decoration: none; z-index: var(--z-overlay, 1000);
3208
3200
  }
@@ -3293,25 +3285,6 @@ input[type="password"]:not(:placeholder-shown) + .input-clear {
3293
3285
  Empty State & Loading States
3294
3286
  -------------------------------------------------------------- */
3295
3287
 
3296
- .empty-state {
3297
- display: flex; flex-direction: column; align-items: center; gap: var(--space-4);
3298
- padding: var(--space-8) var(--space-4);
3299
- text-align: center; color: var(--fg-3);
3300
- }
3301
- .empty-state--inline {
3302
- flex-direction: row; align-items: center; gap: var(--space-2);
3303
- padding: var(--space-2) 0; text-align: left;
3304
- }
3305
- .empty-state-icon {
3306
- font-size: 48px; opacity: 0.4;
3307
- }
3308
- .empty-state-title {
3309
- font-size: var(--fs-lg); font-weight: 600; color: var(--fg-2);
3310
- }
3311
- .empty-state-body {
3312
- font-size: var(--fs-sm); max-width: 40ch;
3313
- }
3314
-
3315
3288
  /* Skeleton loading state */
3316
3289
  .skeleton {
3317
3290
  background: linear-gradient(
@@ -3345,7 +3318,7 @@ input[type="password"]:not(:placeholder-shown) + .input-clear {
3345
3318
  border-radius: var(--r-2);
3346
3319
  padding: var(--space-3) var(--space-4);
3347
3320
  max-width: 320px;
3348
- box-shadow: 0 10px 40px color-mix(in oklab, var(--fg) 20%, transparent);
3321
+ box-shadow: var(--shadow-overlay);
3349
3322
  z-index: calc(var(--z-overlay, 1000) + 10);
3350
3323
  }
3351
3324
 
@@ -4093,7 +4066,8 @@ input[type="password"]:not(:placeholder-shown) + .input-clear {
4093
4066
  .ds-bar-row { display: flex; align-items: center; gap: 8px; margin: 3px 0; font-size: var(--fs-tiny); }
4094
4067
  .ds-bar-row-label { width: 100px; flex-shrink: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
4095
4068
  .ds-bar-bg { flex: 1; min-width: 60px; background: var(--bg-3); border-radius: var(--r-hair); height: 6px; overflow: hidden; }
4096
- .ds-bar-fill { background: var(--accent); height: 100%; border-radius: var(--r-hair); }
4069
+ .ds-bar-fill { background: var(--fg-3); height: 100%; border-radius: var(--r-hair); }
4070
+ .ds-bar-fill.is-active { background: var(--accent); }
4097
4071
  .ds-bar-row-value { flex-shrink: 0; color: var(--fg-2); max-width: 40%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
4098
4072
  @media (max-width: 400px) {
4099
4073
  .ds-bar-row-label { width: 72px; }
@@ -4206,13 +4180,6 @@ input[type="password"]:not(:placeholder-shown) + .input-clear {
4206
4180
  @media (max-width: 760px) {
4207
4181
  .ds-panel-duo { grid-template-columns: 1fr; }
4208
4182
  }
4209
- /* Wide-viewport density: auto-fit grid so panel COUNT tracks actual children
4210
- instead of a hardcoded column number — 2 children sit 2-up, 5 wrap to a
4211
- third row, never an arbitrary 3-card reflex (same auto-fit/minmax pattern
4212
- as .ds-tile-grid). Panels floor at 280px before wrapping, so ultra-wide
4213
- screens still get more columns than a fixed repeat(3, ...) ever allowed. */
4214
- .ds-panel-trio { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr)); gap: var(--space-2); margin: var(--space-2) 0; }
4215
- .ds-panel-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: var(--space-2); margin: var(--space-2) 0; }
4216
4183
  /* wide dense rows/tables scroll inside their panel, never the page */
4217
4184
  .ds-scroll-x { overflow-x: auto; -webkit-overflow-scrolling: touch; max-width: 100%; }
4218
4185
 
package/chat.css CHANGED
@@ -418,7 +418,7 @@
418
418
  .ds-session-agent { font-size: var(--fs-tiny); color: var(--fg-3); }
419
419
  /* New-activity cue is a hollow accent RING so it stays shape-distinct from the
420
420
  running live disc (a solid pulsing accent dot) for colour-blind / reduced-motion users. */
421
- .ds-session-unread { width: 8px; height: 8px; border-radius: 50%; background: transparent; box-shadow: inset 0 0 0 2px var(--accent); display: inline-block; }
421
+ .ds-session-unread { width: 8px; height: 8px; border-radius: 50%; background: var(--fg-2); display: inline-block; }
422
422
  .ds-session-state { padding: var(--space-5) var(--space-3); text-align: center; color: var(--fg-3); font-size: var(--fs-sm); }
423
423
  .ds-session-state-error { color: var(--flame); }
424
424
 
package/dist/247420.css CHANGED
@@ -1144,14 +1144,6 @@
1144
1144
  transition: box-shadow var(--dur-base) var(--ease-spring), border-color var(--dur-snap) var(--ease),
1145
1145
  transform var(--dur-base) var(--ease-spring);
1146
1146
  }
1147
- /* Vercel-style card lift: any panel sitting inside a density grid (trio/grid)
1148
- gets a restrained hover escalation — the standalone/full-width panel stays
1149
- flat so page chrome doesn't jitter on scroll-adjacent hover. */
1150
- .ds-247420 .ds-panel-trio > .panel:hover, .ds-247420 .ds-panel-grid > .panel:hover {
1151
- box-shadow: var(--shadow-2);
1152
- border-color: var(--rule-strong);
1153
- transform: translateY(-2px);
1154
- }
1155
1147
  /* Editorial accent spine — an opt-in printed-ink rule down the left edge that
1156
1148
  reads as a magazine pull-quote bar, not a glow card. */
1157
1149
  .ds-247420 .panel.panel-spine {
@@ -1625,8 +1617,9 @@
1625
1617
  }
1626
1618
  .ds-247420 .ds-barchart-fill {
1627
1619
  height: 100%; width: var(--bar-pct, 0%);
1628
- background: var(--accent); border-radius: var(--r-pill);
1620
+ background: var(--fg-3); border-radius: var(--r-pill);
1629
1621
  }
1622
+ .ds-247420 .ds-barchart-fill.is-active { background: var(--accent); }
1630
1623
  .ds-247420 .ds-barchart-value {
1631
1624
  font-size: var(--fs-xs); font-weight: 600; color: var(--fg-3);
1632
1625
  font-variant-numeric: tabular-nums;
@@ -2125,13 +2118,13 @@
2125
2118
  transition: background var(--dur-snap) var(--ease), border-color var(--dur-snap) var(--ease);
2126
2119
  }
2127
2120
  .ds-247420 .is-marked > .ds-check-box,
2128
- .ds-247420[aria-checked="true"] > .ds-check-box { background: var(--accent); border-color: var(--accent); }
2121
+ .ds-247420[aria-checked="true"] > .ds-check-box { background: var(--fg); border-color: var(--fg); }
2129
2122
  .ds-247420 .is-marked > .ds-check-box::after,
2130
2123
  .ds-247420[aria-checked="true"] > .ds-check-box::after {
2131
2124
  content: ""; position: absolute; left: 4px; top: 1px; width: 4px; height: 8px;
2132
2125
  border: solid var(--bg); border-width: 0 1.5px 1.5px 0; transform: rotate(45deg);
2133
2126
  }
2134
- .ds-247420[aria-checked="mixed"] > .ds-check-box { background: var(--accent); border-color: var(--accent); }
2127
+ .ds-247420[aria-checked="mixed"] > .ds-check-box { background: var(--fg); border-color: var(--fg); }
2135
2128
  .ds-247420[aria-checked="mixed"] > .ds-check-box::after {
2136
2129
  content: ""; position: absolute; left: 3px; right: 3px; top: 6px; height: 2px; background: var(--bg); border-radius: var(--r-hair);
2137
2130
  }
@@ -2434,9 +2427,10 @@
2434
2427
  }
2435
2428
  .ds-247420 .ds-upload-fill {
2436
2429
  display: block; height: 100%; width: 0;
2437
- background: var(--accent); border-radius: var(--r-pill);
2430
+ background: var(--fg-3); border-radius: var(--r-pill);
2438
2431
  transition: width var(--dur-base) var(--ease);
2439
2432
  }
2433
+ .ds-247420 .ds-upload-fill.is-active { background: var(--accent); }
2440
2434
  /* Indeterminate: percent is unknown mid-transfer (fetch gives no chunk-level
2441
2435
  progress) — a sliding marquee bar reads as "working", not stuck at 0%. */
2442
2436
  .ds-247420 .ds-upload-bar.indeterminate .ds-upload-fill {
@@ -3390,9 +3384,7 @@
3390
3384
 
3391
3385
  /* Drag-over state */
3392
3386
  .ds-247420 .drag-over {
3393
- background: color-mix(in oklab, var(--accent) 12%, var(--bg));
3394
3387
  border: 2px dashed var(--accent);
3395
- box-shadow: inset 0 0 0 1px var(--accent);
3396
3388
  }
3397
3389
 
3398
3390
  /* Drag-ghost (semi-transparent dragging element) */
@@ -3448,7 +3440,7 @@
3448
3440
  background: var(--bg-2);
3449
3441
  border: 1px solid var(--rule);
3450
3442
  border-radius: var(--r-2);
3451
- box-shadow: 0 10px 40px color-mix(in oklab, var(--fg) 20%, transparent);
3443
+ box-shadow: var(--shadow-overlay);
3452
3444
  min-width: 160px;
3453
3445
  z-index: calc(var(--z-overlay, 1000) + 1);
3454
3446
  padding: 4px 0;
@@ -3730,7 +3722,7 @@
3730
3722
  /* Skip to main content link */
3731
3723
  .ds-247420 .skip-to-main {
3732
3724
  position: absolute; top: -40px; left: 0;
3733
- background: var(--accent); color: var(--accent-fg);
3725
+ background: var(--fg); color: var(--bg);
3734
3726
  padding: 8px 16px; border-radius: var(--r-1);
3735
3727
  text-decoration: none; z-index: var(--z-overlay, 1000);
3736
3728
  }
@@ -3818,25 +3810,6 @@
3818
3810
  Empty State & Loading States
3819
3811
  -------------------------------------------------------------- */
3820
3812
 
3821
- .ds-247420 .empty-state {
3822
- display: flex; flex-direction: column; align-items: center; gap: var(--space-4);
3823
- padding: var(--space-8) var(--space-4);
3824
- text-align: center; color: var(--fg-3);
3825
- }
3826
- .ds-247420 .empty-state--inline {
3827
- flex-direction: row; align-items: center; gap: var(--space-2);
3828
- padding: var(--space-2) 0; text-align: left;
3829
- }
3830
- .ds-247420 .empty-state-icon {
3831
- font-size: 48px; opacity: 0.4;
3832
- }
3833
- .ds-247420 .empty-state-title {
3834
- font-size: var(--fs-lg); font-weight: 600; color: var(--fg-2);
3835
- }
3836
- .ds-247420 .empty-state-body {
3837
- font-size: var(--fs-sm); max-width: 40ch;
3838
- }
3839
-
3840
3813
  /* Skeleton loading state */
3841
3814
  .ds-247420 .skeleton {
3842
3815
  background: linear-gradient(
@@ -3870,7 +3843,7 @@
3870
3843
  border-radius: var(--r-2);
3871
3844
  padding: var(--space-3) var(--space-4);
3872
3845
  max-width: 320px;
3873
- box-shadow: 0 10px 40px color-mix(in oklab, var(--fg) 20%, transparent);
3846
+ box-shadow: var(--shadow-overlay);
3874
3847
  z-index: calc(var(--z-overlay, 1000) + 10);
3875
3848
  }
3876
3849
 
@@ -4617,7 +4590,8 @@
4617
4590
  .ds-247420 .ds-bar-row { display: flex; align-items: center; gap: 8px; margin: 3px 0; font-size: var(--fs-tiny); }
4618
4591
  .ds-247420 .ds-bar-row-label { width: 100px; flex-shrink: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
4619
4592
  .ds-247420 .ds-bar-bg { flex: 1; min-width: 60px; background: var(--bg-3); border-radius: var(--r-hair); height: 6px; overflow: hidden; }
4620
- .ds-247420 .ds-bar-fill { background: var(--accent); height: 100%; border-radius: var(--r-hair); }
4593
+ .ds-247420 .ds-bar-fill { background: var(--fg-3); height: 100%; border-radius: var(--r-hair); }
4594
+ .ds-247420 .ds-bar-fill.is-active { background: var(--accent); }
4621
4595
  .ds-247420 .ds-bar-row-value { flex-shrink: 0; color: var(--fg-2); max-width: 40%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
4622
4596
  @media (max-width: 400px) {
4623
4597
  .ds-247420 .ds-bar-row-label { width: 72px; }
@@ -4730,13 +4704,6 @@
4730
4704
  @media (max-width: 760px) {
4731
4705
  .ds-247420 .ds-panel-duo { grid-template-columns: 1fr; }
4732
4706
  }
4733
- /* Wide-viewport density: auto-fit grid so panel COUNT tracks actual children
4734
- instead of a hardcoded column number — 2 children sit 2-up, 5 wrap to a
4735
- third row, never an arbitrary 3-card reflex (same auto-fit/minmax pattern
4736
- as .ds-tile-grid). Panels floor at 280px before wrapping, so ultra-wide
4737
- screens still get more columns than a fixed repeat(3, ...) ever allowed. */
4738
- .ds-247420 .ds-panel-trio { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr)); gap: var(--space-2); margin: var(--space-2) 0; }
4739
- .ds-247420 .ds-panel-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: var(--space-2); margin: var(--space-2) 0; }
4740
4707
  /* wide dense rows/tables scroll inside their panel, never the page */
4741
4708
  .ds-247420 .ds-scroll-x { overflow-x: auto; -webkit-overflow-scrolling: touch; max-width: 100%; }
4742
4709
 
@@ -7144,7 +7111,7 @@
7144
7111
  .ds-247420 .ds-session-agent { font-size: var(--fs-tiny); color: var(--fg-3); }
7145
7112
  /* New-activity cue is a hollow accent RING so it stays shape-distinct from the
7146
7113
  running live disc (a solid pulsing accent dot) for colour-blind / reduced-motion users. */
7147
- .ds-247420 .ds-session-unread { width: 8px; height: 8px; border-radius: 50%; background: transparent; box-shadow: inset 0 0 0 2px var(--accent); display: inline-block; }
7114
+ .ds-247420 .ds-session-unread { width: 8px; height: 8px; border-radius: 50%; background: var(--fg-2); display: inline-block; }
7148
7115
  .ds-247420 .ds-session-state { padding: var(--space-5) var(--space-3); text-align: center; color: var(--fg-3); font-size: var(--fs-sm); }
7149
7116
  .ds-247420 .ds-session-state-error { color: var(--flame); }
7150
7117