@meridianlabs/log-viewer 0.3.230 → 0.3.232

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.
@@ -18301,6 +18301,50 @@ a._citationLink_1ggvf_9:hover {
18301
18301
  word-wrap: anywhere;
18302
18302
  color: inherit;
18303
18303
  }
18304
+ ._catalog_gx8eg_1 {
18305
+ display: flex;
18306
+ flex-direction: column;
18307
+ gap: 0.5rem;
18308
+ }
18309
+
18310
+ ._namespace_gx8eg_7 {
18311
+ display: flex;
18312
+ flex-direction: column;
18313
+ gap: 0.1rem;
18314
+ }
18315
+
18316
+ ._namespaceName_gx8eg_13 {
18317
+ font-weight: 600;
18318
+ }
18319
+
18320
+ ._namespaceDescription_gx8eg_17 {
18321
+ opacity: 0.8;
18322
+ }
18323
+
18324
+ ._tool_gx8eg_21 {
18325
+ margin-left: 0.25rem;
18326
+ }
18327
+
18328
+ ._summary_gx8eg_25 {
18329
+ cursor: pointer;
18330
+ }
18331
+
18332
+ ._summary_gx8eg_25::marker {
18333
+ color: var(--bs-secondary, #6c757d);
18334
+ font-size: 0.8em;
18335
+ }
18336
+
18337
+ ._summary_gx8eg_25::-webkit-details-marker {
18338
+ color: var(--bs-secondary, #6c757d);
18339
+ }
18340
+
18341
+ ._toolNoDetails_gx8eg_38 {
18342
+ margin-left: 0.25rem;
18343
+ }
18344
+
18345
+ ._description_gx8eg_42 {
18346
+ margin: 0.25rem 0 0.25rem 1rem;
18347
+ }
18304
18348
  ._toolCallView_x6cus_1 {
18305
18349
  display: grid;
18306
18350
  row-gap: 0.5em;
@@ -18492,9 +18536,143 @@ a._citationLink_1ggvf_9:hover {
18492
18536
  ._simple_13k8p_57 {
18493
18537
  /* styles for simple display mode */
18494
18538
  }
18495
- ._list_1emnm_1 {
18539
+ ._scroller_qi4v2_1 {
18540
+ position: relative;
18541
+ }
18542
+
18543
+ ._spacer_qi4v2_5 {
18544
+ position: relative;
18545
+ width: 100%;
18546
+ }
18547
+ ._list_ejymp_1 {
18496
18548
  width: 100%;
18497
18549
  margin-top: 1em;
18550
+ padding-bottom: 0.5rem;
18551
+ }
18552
+
18553
+ ._generatingRow_ejymp_7 {
18554
+ display: grid;
18555
+ grid-template-columns: max-content auto;
18556
+ align-items: center;
18557
+ row-gap: 0;
18558
+ margin-bottom: 0.75rem;
18559
+ }
18560
+
18561
+ ._generatingLabel_ejymp_15 {
18562
+ margin-left: 0.4em;
18563
+ }
18564
+
18565
+ ._generatingContent_ejymp_19 {
18566
+ padding-left: 0;
18567
+ }
18568
+ ._bar_pg4l8_1 {
18569
+ --glint: rgba(64, 72, 104, 0.1);
18570
+ --label: #5c5c63;
18571
+
18572
+ position: relative;
18573
+ display: flex;
18574
+ align-items: center;
18575
+ justify-content: space-between;
18576
+ gap: 14px;
18577
+ width: 100%;
18578
+ padding: 11px 15px;
18579
+ border-radius: var(--bs-border-radius);
18580
+ overflow: hidden;
18581
+ border: 1px solid var(--bs-light-border-subtle);
18582
+ background: var(--bs-body-bg);
18583
+ }
18584
+
18585
+ ._bar_pg4l8_1::before {
18586
+ content: "";
18587
+ position: absolute;
18588
+ inset: 0;
18589
+ pointer-events: none;
18590
+ background: linear-gradient(
18591
+ 100deg,
18592
+ transparent 38%,
18593
+ var(--glint) 50%,
18594
+ transparent 62%
18595
+ );
18596
+ background-size: 220% 100%;
18597
+ background-repeat: no-repeat;
18598
+ animation: _gen-sweep_pg4l8_1 2.8s linear infinite;
18599
+ }
18600
+
18601
+ ._barLabelOnly_pg4l8_34 {
18602
+ justify-content: flex-start;
18603
+ }
18604
+
18605
+ ._label_pg4l8_38 {
18606
+ position: relative;
18607
+ font-weight: 400;
18608
+ font-size: 13.5px;
18609
+ line-height: 1;
18610
+ letter-spacing: 0.005em;
18611
+ color: var(--label);
18612
+ }
18613
+
18614
+ ._ell_pg4l8_47 {
18615
+ display: inline-flex;
18616
+ }
18617
+
18618
+ ._ell_pg4l8_47 i {
18619
+ font-style: normal;
18620
+ animation: _gen-ell_pg4l8_1 1.5s ease-in-out infinite both;
18621
+ }
18622
+
18623
+ ._ell_pg4l8_47 i:nth-child(2) {
18624
+ animation-delay: 0.18s;
18625
+ }
18626
+
18627
+ ._ell_pg4l8_47 i:nth-child(3) {
18628
+ animation-delay: 0.36s;
18629
+ }
18630
+
18631
+ ._attempt_pg4l8_64 {
18632
+ position: relative;
18633
+ font-family: var(--bs-font-monospace);
18634
+ font-size: 11px;
18635
+ color: var(--bs-secondary-color);
18636
+ padding: 2px 7px;
18637
+ border-radius: 999px;
18638
+ background: color-mix(in oklab, var(--bs-secondary-color) 15%, transparent);
18639
+ }
18640
+
18641
+ @keyframes _gen-sweep_pg4l8_1 {
18642
+ 0% {
18643
+ background-position: 180% 0;
18644
+ }
18645
+ 100% {
18646
+ background-position: -80% 0;
18647
+ }
18648
+ }
18649
+
18650
+ @keyframes _gen-ell_pg4l8_1 {
18651
+ 0%,
18652
+ 80%,
18653
+ 100% {
18654
+ opacity: 0.22;
18655
+ }
18656
+ 40% {
18657
+ opacity: 1;
18658
+ }
18659
+ }
18660
+
18661
+ @media (prefers-color-scheme: dark) {
18662
+ ._bar_pg4l8_1 {
18663
+ --glint: rgba(255, 255, 255, 0.08);
18664
+ --label: #c2c2c9;
18665
+ }
18666
+ }
18667
+
18668
+ @media (prefers-reduced-motion: reduce) {
18669
+ ._bar_pg4l8_1::before,
18670
+ ._ell_pg4l8_47 i {
18671
+ animation: none;
18672
+ }
18673
+ ._ell_pg4l8_47 i {
18674
+ opacity: 0.55;
18675
+ }
18498
18676
  }
18499
18677
  ._tab_1je38_1 {
18500
18678
  min-width: 4rem;
@@ -20977,7 +21155,7 @@ a._citationLink_1ggvf_9:hover {
20977
21155
  * height as `--inspect-sample-header-height` on the tabs container.
20978
21156
  * The tabs slide up automatically when the header collapses and
20979
21157
  * back down when it expands. */
20980
- ._tabControls_1km5i_7 {
21158
+ ._tabControls_1jky3_7 {
20981
21159
  position: sticky;
20982
21160
  z-index: 1001;
20983
21161
  top: var(--inspect-sample-header-height, 0);
@@ -20986,46 +21164,46 @@ a._citationLink_1ggvf_9:hover {
20986
21164
  background-color: var(--bs-body-bg);
20987
21165
  }
20988
21166
 
20989
- ._fullWidth_1km5i_16 {
21167
+ ._fullWidth_1jky3_16 {
20990
21168
  width: 100%;
20991
21169
  }
20992
21170
 
20993
- ._metadataPanel_1km5i_20 {
21171
+ ._metadataPanel_1jky3_20 {
20994
21172
  display: flex;
20995
21173
  flex-direction: column;
20996
21174
  gap: 0.75rem;
20997
21175
  }
20998
21176
 
20999
- ._padded_1km5i_26 {
21177
+ ._padded_1jky3_26 {
21000
21178
  padding-left: 0.8em;
21001
21179
  margin-top: 0.4em;
21002
21180
  }
21003
21181
 
21004
- ._error_1km5i_31 {
21182
+ ._error_1jky3_31 {
21005
21183
  padding-top: 0.5em;
21006
21184
  }
21007
21185
 
21008
- ._ansi_1km5i_35 {
21186
+ ._ansi_1jky3_35 {
21009
21187
  margin: 1em 0;
21010
21188
  }
21011
21189
 
21012
- ._noTop_1km5i_39 {
21190
+ ._noTop_1jky3_39 {
21013
21191
  margin-top: 0;
21014
21192
  }
21015
21193
 
21016
- ._chat_1km5i_43 {
21017
- padding: 1em;
21194
+ ._chat_1jky3_43 {
21195
+ padding: 0.5rem;
21018
21196
  }
21019
21197
 
21020
- ._padded_1km5i_26 {
21198
+ ._padded_1jky3_26 {
21021
21199
  padding: 1em;
21022
21200
  }
21023
21201
 
21024
- ._overflowVisible_1km5i_51 {
21202
+ ._overflowVisible_1jky3_51 {
21025
21203
  overflow-y: visible;
21026
21204
  }
21027
21205
 
21028
- ._retriedErrors_1km5i_55 {
21206
+ ._retriedErrors_1jky3_55 {
21029
21207
  margin: 0.5rem;
21030
21208
  min-width: 0;
21031
21209
  overflow: hidden;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@meridianlabs/log-viewer",
3
- "version": "0.3.230",
3
+ "version": "0.3.232",
4
4
  "description": "Log viewer for inspect_ai logs.",
5
5
  "license": "MIT",
6
6
  "type": "module",