@metrevals/inspect-scout-viewer 0.3.2-beta.1764711188 → 0.3.3-beta.1765543487
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/lib/app/appearance/icons.d.ts +2 -0
- package/lib/app/components/ColumnHeader.d.ts +6 -0
- package/lib/app/result/ScanResultHeader.d.ts +2 -0
- package/lib/app/result/metadata/MetadataPanel.d.ts +7 -0
- package/lib/app/result/{input/InputPanel.d.ts → result/ResultBody.d.ts} +2 -2
- package/lib/app/result/result/ResultSidebar.d.ts +7 -0
- package/lib/app/scanner/results/ScanDataframeClearFiltersButton.d.ts +2 -0
- package/lib/app/scanner/results/ScanDataframeColumnsPopover.d.ts +5 -0
- package/lib/app/scanner/results/ScanDataframeFilterColumnsButton.d.ts +1 -0
- package/lib/app/scanner/results/types.d.ts +1 -0
- package/lib/app/utils/refs.d.ts +1 -0
- package/lib/app/values/Explanation.d.ts +5 -0
- package/lib/app/values/Value.d.ts +5 -0
- package/lib/components/CopyButton.d.ts +2 -1
- package/lib/components/DataframeView.d.ts +1 -0
- package/lib/components/MarkdownDivWithReferences.d.ts +3 -0
- package/lib/content/MetaDataGrid.d.ts +5 -2
- package/lib/content/RenderedText.d.ts +3 -0
- package/lib/content/types.d.ts +1 -0
- package/lib/index.d.ts +1 -1
- package/lib/index.js +1458 -1040
- package/lib/index.js.map +1 -1
- package/lib/state/store.d.ts +4 -0
- package/lib/styles/index.css +155 -64
- package/lib/types/index.d.ts +4 -3
- package/package.json +5 -1
package/lib/state/store.d.ts
CHANGED
|
@@ -40,6 +40,8 @@ interface StoreState {
|
|
|
40
40
|
highlightLabeled?: boolean;
|
|
41
41
|
selectedResultRow?: number;
|
|
42
42
|
dataframeWrapText?: boolean;
|
|
43
|
+
dataframeShowFilterColumns?: boolean;
|
|
44
|
+
dataframeFilterColumns?: string[];
|
|
43
45
|
transcriptCollapsedEvents: Record<string, Record<string, boolean>>;
|
|
44
46
|
transcriptOutlineId?: string;
|
|
45
47
|
setSingleFileMode: (enabled: boolean) => void;
|
|
@@ -102,6 +104,8 @@ interface StoreState {
|
|
|
102
104
|
setHighlightLabeled: (highlight: boolean) => void;
|
|
103
105
|
setSelectedResultRow: (row: number) => void;
|
|
104
106
|
setDataframeWrapText: (wrap: boolean) => void;
|
|
107
|
+
setDataframeFilterColumns: (columns: string[]) => void;
|
|
108
|
+
setDataframeShowFilterColumns: (show: boolean) => void;
|
|
105
109
|
}
|
|
106
110
|
export declare const createStore: (api: ScanApi) => import('zustand').UseBoundStore<Omit<Omit<Omit<import('zustand').StoreApi<StoreState>, "setState" | "devtools"> & {
|
|
107
111
|
setState(partial: StoreState | Partial<StoreState> | ((state: StoreState) => StoreState | Partial<StoreState>), replace?: false | undefined, action?: (string | {
|
package/lib/styles/index.css
CHANGED
|
@@ -882,6 +882,9 @@ a._citationLink_1ggvf_9:hover {
|
|
|
882
882
|
._container_76qrl_7 {
|
|
883
883
|
padding: 0.5rem;
|
|
884
884
|
}
|
|
885
|
+
._container_5gpfz_1 {
|
|
886
|
+
padding: 1rem;
|
|
887
|
+
}
|
|
885
888
|
._progressContainer_1cjjr_1 {
|
|
886
889
|
width: 100%;
|
|
887
890
|
display: flex;
|
|
@@ -3946,10 +3949,27 @@ span.ap-marker-container:hover span.ap-marker {
|
|
|
3946
3949
|
border-top-left-radius: 0;
|
|
3947
3950
|
border-top-right-radius: 0;
|
|
3948
3951
|
}
|
|
3949
|
-
.
|
|
3950
|
-
|
|
3952
|
+
._header_189zi_1 {
|
|
3953
|
+
background-color: var(--bs-light-bg-subtle);
|
|
3954
|
+
border-bottom: solid 1px var(--bs-border-color);
|
|
3955
|
+
width: 100%;
|
|
3956
|
+
padding-left: 0.5rem;
|
|
3957
|
+
}
|
|
3958
|
+
._container_1fgdb_1 {
|
|
3951
3959
|
height: 100%;
|
|
3960
|
+
overflow-y: hidden;
|
|
3961
|
+
}
|
|
3962
|
+
|
|
3963
|
+
._scrollable_1fgdb_6 {
|
|
3964
|
+
padding: 0.5rem;
|
|
3952
3965
|
overflow-y: auto;
|
|
3966
|
+
height: 100%;
|
|
3967
|
+
}
|
|
3968
|
+
._container_u4d55_1 {
|
|
3969
|
+
display: grid;
|
|
3970
|
+
grid-template-columns: 1fr 2fr;
|
|
3971
|
+
overflow-y: hidden;
|
|
3972
|
+
height: 100%;
|
|
3953
3973
|
}
|
|
3954
3974
|
._result_f18wg_1 {
|
|
3955
3975
|
display: inline-flex;
|
|
@@ -4016,42 +4036,51 @@ span.ap-marker-container:hover span.ap-marker {
|
|
|
4016
4036
|
pre._value_1uivt_24 {
|
|
4017
4037
|
margin: 0;
|
|
4018
4038
|
}
|
|
4019
|
-
.
|
|
4039
|
+
._sidebar_ruino_1 {
|
|
4040
|
+
border-right: solid 1px var(--bs-border-color);
|
|
4020
4041
|
padding: 1rem;
|
|
4042
|
+
overflow-y: auto;
|
|
4021
4043
|
}
|
|
4022
4044
|
|
|
4023
|
-
.
|
|
4045
|
+
._container_ruino_7 {
|
|
4046
|
+
display: inline-grid;
|
|
4047
|
+
grid-template-columns: 1fr 2fr;
|
|
4048
|
+
align-self: start;
|
|
4049
|
+
row-gap: 0.5rem;
|
|
4050
|
+
}
|
|
4051
|
+
|
|
4052
|
+
._colspan_ruino_14 {
|
|
4024
4053
|
grid-column: span 2;
|
|
4025
4054
|
}
|
|
4026
4055
|
|
|
4027
|
-
.
|
|
4056
|
+
._explanation_ruino_18 {
|
|
4028
4057
|
display: grid;
|
|
4029
4058
|
grid-template-columns: max-content 1fr;
|
|
4030
4059
|
column-gap: 1rem;
|
|
4031
4060
|
row-gap: 0.75rem;
|
|
4032
4061
|
}
|
|
4033
4062
|
|
|
4034
|
-
.
|
|
4063
|
+
._scanValue_ruino_25 {
|
|
4035
4064
|
padding-right: 0.5rem;
|
|
4036
4065
|
}
|
|
4037
4066
|
|
|
4038
|
-
.
|
|
4067
|
+
._values_ruino_29 {
|
|
4039
4068
|
display: grid;
|
|
4040
4069
|
grid-template-columns: max-content auto;
|
|
4041
4070
|
column-gap: 0.5rem;
|
|
4042
4071
|
}
|
|
4043
4072
|
|
|
4044
|
-
.
|
|
4073
|
+
._validation_ruino_35 {
|
|
4045
4074
|
margin-left: 1rem;
|
|
4046
4075
|
display: grid;
|
|
4047
4076
|
grid-template-columns: max-content max-content;
|
|
4048
4077
|
}
|
|
4049
4078
|
|
|
4050
|
-
.
|
|
4079
|
+
._validationLabel_ruino_41 {
|
|
4051
4080
|
padding-right: 0.5rem;
|
|
4052
4081
|
margin-top: 2px;
|
|
4053
4082
|
}
|
|
4054
|
-
.
|
|
4083
|
+
._header_87o1i_1 {
|
|
4055
4084
|
padding-left: 1rem;
|
|
4056
4085
|
padding-right: 1rem;
|
|
4057
4086
|
display: grid;
|
|
@@ -4062,24 +4091,28 @@ pre._value_1uivt_24 {
|
|
|
4062
4091
|
grid-template-rows: max-content max-content;
|
|
4063
4092
|
}
|
|
4064
4093
|
|
|
4065
|
-
.
|
|
4094
|
+
._oneCol_87o1i_12 {
|
|
4066
4095
|
grid-template-columns: 2fr;
|
|
4067
4096
|
}
|
|
4068
4097
|
|
|
4069
|
-
.
|
|
4098
|
+
._twoCol_87o1i_16 {
|
|
4070
4099
|
grid-template-columns: 1fr 1fr;
|
|
4071
4100
|
}
|
|
4072
4101
|
|
|
4073
|
-
.
|
|
4102
|
+
._threeCol_87o1i_20 {
|
|
4074
4103
|
grid-template-columns: 2fr 1fr 1fr;
|
|
4075
4104
|
}
|
|
4076
4105
|
|
|
4077
|
-
.
|
|
4106
|
+
._fourCol_87o1i_24 {
|
|
4078
4107
|
grid-template-columns: 2fr 1fr 1fr 1fr;
|
|
4079
4108
|
}
|
|
4080
4109
|
|
|
4081
|
-
.
|
|
4082
|
-
grid-template-columns:
|
|
4110
|
+
._fiveCol_87o1i_28 {
|
|
4111
|
+
grid-template-columns: 3fr 1fr 1fr 1fr 1fr;
|
|
4112
|
+
}
|
|
4113
|
+
|
|
4114
|
+
._sixCol_87o1i_32 {
|
|
4115
|
+
grid-template-columns: 3fr 1fr 1fr 1fr 1fr;
|
|
4083
4116
|
}
|
|
4084
4117
|
._resultNav_oszqi_1 {
|
|
4085
4118
|
display: grid;
|
|
@@ -4097,31 +4130,35 @@ pre._value_1uivt_24 {
|
|
|
4097
4130
|
opacity: 0.5;
|
|
4098
4131
|
pointer-events: none;
|
|
4099
4132
|
}
|
|
4100
|
-
.
|
|
4133
|
+
._root_1ewhq_1 {
|
|
4101
4134
|
height: 100vh;
|
|
4102
4135
|
display: grid;
|
|
4103
4136
|
grid-template-rows: max-content max-content max-content max-content 1fr;
|
|
4104
4137
|
}
|
|
4105
4138
|
|
|
4106
|
-
.
|
|
4139
|
+
._scroller_1ewhq_7 {
|
|
4107
4140
|
height: 100%;
|
|
4108
4141
|
width: 100%;
|
|
4109
4142
|
overflow-y: auto;
|
|
4110
4143
|
}
|
|
4111
4144
|
|
|
4112
|
-
.
|
|
4145
|
+
._tabSet_1ewhq_13 {
|
|
4113
4146
|
max-height: 100%;
|
|
4114
4147
|
border-top: solid 1px var(--bs-border-color);
|
|
4115
|
-
overflow-y:
|
|
4148
|
+
overflow-y: hidden;
|
|
4116
4149
|
}
|
|
4117
4150
|
|
|
4118
|
-
.
|
|
4151
|
+
._tabControl_1ewhq_19 {
|
|
4119
4152
|
margin: 0.2rem;
|
|
4120
4153
|
}
|
|
4121
4154
|
|
|
4122
|
-
.
|
|
4155
|
+
._tabs_1ewhq_23 {
|
|
4123
4156
|
margin-right: 1rem;
|
|
4124
4157
|
}
|
|
4158
|
+
|
|
4159
|
+
._fullHeight_1ewhq_27 {
|
|
4160
|
+
height: 100%;
|
|
4161
|
+
}
|
|
4125
4162
|
._container_g5onx_1 {
|
|
4126
4163
|
overflow-y: auto;
|
|
4127
4164
|
}
|
|
@@ -4286,6 +4323,29 @@ pre._value_1uivt_24 {
|
|
|
4286
4323
|
display: grid;
|
|
4287
4324
|
grid-template-rows: max-content max-content max-content max-content 1fr;
|
|
4288
4325
|
}
|
|
4326
|
+
._gridWrapper_bykj9_1 {
|
|
4327
|
+
height: 100%;
|
|
4328
|
+
width: 100%;
|
|
4329
|
+
}
|
|
4330
|
+
|
|
4331
|
+
/* Hide sort index numbers in multi-column sort */
|
|
4332
|
+
._gridWrapper_bykj9_1 .ag-header-cell .ag-sort-order {
|
|
4333
|
+
display: none;
|
|
4334
|
+
}
|
|
4335
|
+
|
|
4336
|
+
/* Set line height for grid cells */
|
|
4337
|
+
._gridWrapper_bykj9_1 .ag-cell {
|
|
4338
|
+
line-height: 1.1em;
|
|
4339
|
+
}
|
|
4340
|
+
|
|
4341
|
+
/* Row numbers cell styling */
|
|
4342
|
+
._gridWrapper_bykj9_1 .ag-cell.row-number-cell {
|
|
4343
|
+
cursor: pointer;
|
|
4344
|
+
}
|
|
4345
|
+
|
|
4346
|
+
._gridWrapper_bykj9_1 .ag-cell.row-number-cell:hover {
|
|
4347
|
+
text-decoration: underline;
|
|
4348
|
+
}
|
|
4289
4349
|
._rootControl_19z32_1 {
|
|
4290
4350
|
background-color: var(--bs-body-bg);
|
|
4291
4351
|
border-radius: var(--bs-border-radius);
|
|
@@ -4318,6 +4378,48 @@ button._segment_19z32_10 {
|
|
|
4318
4378
|
._container_1q66p_1 {
|
|
4319
4379
|
margin: 0.5em;
|
|
4320
4380
|
}
|
|
4381
|
+
._grid_hbkjn_1 {
|
|
4382
|
+
display: grid;
|
|
4383
|
+
grid-template-columns: 1fr 1fr 1fr;
|
|
4384
|
+
column-gap: 2em;
|
|
4385
|
+
row-gap: 0.15em;
|
|
4386
|
+
}
|
|
4387
|
+
|
|
4388
|
+
._row_hbkjn_8 {
|
|
4389
|
+
display: flex;
|
|
4390
|
+
align-items: center;
|
|
4391
|
+
gap: 0.5em;
|
|
4392
|
+
cursor: pointer;
|
|
4393
|
+
border-radius: var(--bs-border-radius);
|
|
4394
|
+
padding: 0.1em 0.4em;
|
|
4395
|
+
margin: 0 -0.4em;
|
|
4396
|
+
}
|
|
4397
|
+
|
|
4398
|
+
._row_hbkjn_8:hover {
|
|
4399
|
+
background-color: var(--bs-secondary-bg);
|
|
4400
|
+
}
|
|
4401
|
+
|
|
4402
|
+
._links_hbkjn_22 {
|
|
4403
|
+
display: flex;
|
|
4404
|
+
padding-bottom: 0.2em;
|
|
4405
|
+
margin-bottom: 0.4em;
|
|
4406
|
+
column-gap: 0.3em;
|
|
4407
|
+
border-bottom: solid 1px var(--bs-border-color);
|
|
4408
|
+
}
|
|
4409
|
+
|
|
4410
|
+
._links_hbkjn_22 a {
|
|
4411
|
+
cursor: pointer;
|
|
4412
|
+
text-decoration: none;
|
|
4413
|
+
color: var(--bs-link-color);
|
|
4414
|
+
}
|
|
4415
|
+
|
|
4416
|
+
._links_hbkjn_22 a:hover {
|
|
4417
|
+
color: var(--bs-link-hover-color);
|
|
4418
|
+
}
|
|
4419
|
+
|
|
4420
|
+
._selected_hbkjn_40 {
|
|
4421
|
+
font-weight: 600;
|
|
4422
|
+
}
|
|
4321
4423
|
._flex_1kye9_1 {
|
|
4322
4424
|
display: flex;
|
|
4323
4425
|
}
|
|
@@ -4336,29 +4438,6 @@ button._segment_19z32_10 {
|
|
|
4336
4438
|
margin-right: 0.3em;
|
|
4337
4439
|
margin-left: 0.2em;
|
|
4338
4440
|
}
|
|
4339
|
-
._gridWrapper_bykj9_1 {
|
|
4340
|
-
height: 100%;
|
|
4341
|
-
width: 100%;
|
|
4342
|
-
}
|
|
4343
|
-
|
|
4344
|
-
/* Hide sort index numbers in multi-column sort */
|
|
4345
|
-
._gridWrapper_bykj9_1 .ag-header-cell .ag-sort-order {
|
|
4346
|
-
display: none;
|
|
4347
|
-
}
|
|
4348
|
-
|
|
4349
|
-
/* Set line height for grid cells */
|
|
4350
|
-
._gridWrapper_bykj9_1 .ag-cell {
|
|
4351
|
-
line-height: 1.1em;
|
|
4352
|
-
}
|
|
4353
|
-
|
|
4354
|
-
/* Row numbers cell styling */
|
|
4355
|
-
._gridWrapper_bykj9_1 .ag-cell.row-number-cell {
|
|
4356
|
-
cursor: pointer;
|
|
4357
|
-
}
|
|
4358
|
-
|
|
4359
|
-
._gridWrapper_bykj9_1 .ag-cell.row-number-cell:hover {
|
|
4360
|
-
text-decoration: underline;
|
|
4361
|
-
}
|
|
4362
4441
|
._header_u9u40_1 {
|
|
4363
4442
|
border-bottom: solid var(--bs-light-border-subtle) 1px;
|
|
4364
4443
|
padding: 0.3rem 1rem;
|
|
@@ -4466,23 +4545,31 @@ button._segment_19z32_10 {
|
|
|
4466
4545
|
._scrollContainer_94id2_15 {
|
|
4467
4546
|
overflow-y: auto;
|
|
4468
4547
|
}
|
|
4469
|
-
.
|
|
4548
|
+
._container_1ov9x_1 {
|
|
4470
4549
|
border-right: solid 1px var(--bs-border-color);
|
|
4471
4550
|
}
|
|
4472
4551
|
|
|
4473
|
-
.
|
|
4552
|
+
._entry_1ov9x_5 {
|
|
4474
4553
|
padding: 0.5em;
|
|
4554
|
+
display: grid;
|
|
4555
|
+
grid-template-columns: auto 1fr;
|
|
4556
|
+
column-gap: 0.5rem;
|
|
4475
4557
|
}
|
|
4476
4558
|
|
|
4477
|
-
.
|
|
4559
|
+
._entry_1ov9x_5._selected_1ov9x_12 {
|
|
4478
4560
|
background-color: var(--bs-secondary-bg);
|
|
4479
4561
|
}
|
|
4480
4562
|
|
|
4481
|
-
.
|
|
4563
|
+
._titleBlock_1ov9x_16 {
|
|
4482
4564
|
margin-bottom: 0.1rem;
|
|
4565
|
+
grid-column: 1 / -1;
|
|
4483
4566
|
}
|
|
4484
4567
|
|
|
4485
|
-
.
|
|
4568
|
+
._validations_1ov9x_21 {
|
|
4569
|
+
grid-column: 1 / -1;
|
|
4570
|
+
}
|
|
4571
|
+
|
|
4572
|
+
._subTitle_1ov9x_25 {
|
|
4486
4573
|
margin-top: -0.2rem;
|
|
4487
4574
|
max-height: 2rem;
|
|
4488
4575
|
overflow: hidden;
|
|
@@ -4492,21 +4579,25 @@ button._segment_19z32_10 {
|
|
|
4492
4579
|
word-wrap: break-word;
|
|
4493
4580
|
}
|
|
4494
4581
|
|
|
4495
|
-
.
|
|
4582
|
+
._selected_1ov9x_12 ._title_1ov9x_16 {
|
|
4496
4583
|
font-weight: 600;
|
|
4497
4584
|
}
|
|
4498
4585
|
|
|
4499
|
-
.
|
|
4586
|
+
._entry_1ov9x_5:hover {
|
|
4500
4587
|
color: var(--bs-link-hover-color);
|
|
4501
4588
|
cursor: pointer;
|
|
4502
4589
|
}
|
|
4503
4590
|
|
|
4504
|
-
.
|
|
4591
|
+
._numericResultTable_1ov9x_44 {
|
|
4505
4592
|
display: grid;
|
|
4506
4593
|
grid-template-columns: auto auto;
|
|
4507
4594
|
column-gap: 0.5rem;
|
|
4508
4595
|
row-gap: 0;
|
|
4509
4596
|
}
|
|
4597
|
+
|
|
4598
|
+
._contents_1ov9x_51 {
|
|
4599
|
+
display: contents;
|
|
4600
|
+
}
|
|
4510
4601
|
._container_1db6h_1 {
|
|
4511
4602
|
display: grid;
|
|
4512
4603
|
grid-template-columns: 200px 1fr;
|
|
@@ -4574,7 +4665,7 @@ button._segment_19z32_10 {
|
|
|
4574
4665
|
._tabControl_10t9t_10 {
|
|
4575
4666
|
padding: 0.3em 1em !important;
|
|
4576
4667
|
}
|
|
4577
|
-
.
|
|
4668
|
+
._scanTitleView_1ayz3_1 {
|
|
4578
4669
|
display: grid;
|
|
4579
4670
|
grid-template-columns: max-content max-content;
|
|
4580
4671
|
justify-content: space-between;
|
|
@@ -4583,7 +4674,7 @@ button._segment_19z32_10 {
|
|
|
4583
4674
|
padding: 0.5em;
|
|
4584
4675
|
}
|
|
4585
4676
|
|
|
4586
|
-
.
|
|
4677
|
+
._leftColumn_1ayz3_10 {
|
|
4587
4678
|
display: grid;
|
|
4588
4679
|
grid-template-columns: max-content max-content 1fr;
|
|
4589
4680
|
align-items: baseline;
|
|
@@ -4591,38 +4682,38 @@ button._segment_19z32_10 {
|
|
|
4591
4682
|
column-gap: 0.3rem;
|
|
4592
4683
|
}
|
|
4593
4684
|
|
|
4594
|
-
.
|
|
4685
|
+
._rightColumn_1ayz3_18 {
|
|
4595
4686
|
}
|
|
4596
4687
|
|
|
4597
|
-
.
|
|
4688
|
+
._scanTitleView_1ayz3_1 h1 {
|
|
4598
4689
|
margin: 0;
|
|
4599
4690
|
font-weight: 600;
|
|
4600
4691
|
font-size: 1.3em;
|
|
4601
4692
|
}
|
|
4602
4693
|
|
|
4603
|
-
.
|
|
4694
|
+
._scanTitleView_1ayz3_1 h2 {
|
|
4604
4695
|
margin: 0;
|
|
4605
4696
|
font-weight: 500;
|
|
4606
4697
|
font-size: 1em;
|
|
4607
4698
|
color: var(--bs-secondary-text-color);
|
|
4608
4699
|
}
|
|
4609
4700
|
|
|
4610
|
-
.
|
|
4701
|
+
._scanTitleView_1ayz3_1 ._secondaryRow_1ayz3_34 {
|
|
4611
4702
|
display: grid;
|
|
4612
4703
|
grid-template-columns: max-content max-content;
|
|
4613
4704
|
column-gap: 0.2rem;
|
|
4614
4705
|
}
|
|
4615
4706
|
|
|
4616
|
-
.
|
|
4707
|
+
._subtitle_1ayz3_40 {
|
|
4708
|
+
grid-column: 1 / -1;
|
|
4709
|
+
display: grid;
|
|
4710
|
+
grid-template-columns: max-content max-content max-content max-content max-content;
|
|
4711
|
+
column-gap: 0.1rem;
|
|
4617
4712
|
margin: 0;
|
|
4618
4713
|
font-size: 0.8em;
|
|
4619
4714
|
font-weight: 400;
|
|
4620
4715
|
color: var(--bs-secondary-text-color);
|
|
4621
4716
|
}
|
|
4622
|
-
|
|
4623
|
-
._subtitle_1vka4_47 {
|
|
4624
|
-
grid-column: 1 / -1;
|
|
4625
|
-
}
|
|
4626
4717
|
/**
|
|
4627
4718
|
* prism.js default theme for JavaScript, CSS and HTML
|
|
4628
4719
|
* Based on dabblet (http://dabblet.com)
|
package/lib/types/index.d.ts
CHANGED
|
@@ -34,9 +34,9 @@ export interface Model {
|
|
|
34
34
|
}
|
|
35
35
|
export interface Transcript {
|
|
36
36
|
type: string;
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
37
|
+
location?: string;
|
|
38
|
+
transcript_ids: Record<string, string | null>;
|
|
39
|
+
count?: number;
|
|
40
40
|
}
|
|
41
41
|
export interface ScanSpec {
|
|
42
42
|
scan_file?: string;
|
|
@@ -64,6 +64,7 @@ export interface ScannerSummary {
|
|
|
64
64
|
tokens: number;
|
|
65
65
|
model_usage: Record<string, ModelUsage>;
|
|
66
66
|
validations: Array<boolean | Record<string, boolean>>;
|
|
67
|
+
metrics: Record<string, Record<string, number>>;
|
|
67
68
|
}
|
|
68
69
|
export interface ModelUsage {
|
|
69
70
|
input_tokens: number;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@metrevals/inspect-scout-viewer",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.3-beta.1765543487",
|
|
4
4
|
"description": "Inspect Scout viewer for evaluation logs.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -18,6 +18,10 @@
|
|
|
18
18
|
"directory": "src/inspect_scout/_view/www"
|
|
19
19
|
},
|
|
20
20
|
"packageManager": "pnpm@10.20.0",
|
|
21
|
+
"engines": {
|
|
22
|
+
"node": "22.21.1",
|
|
23
|
+
"pnpm": ">=9.0.0"
|
|
24
|
+
},
|
|
21
25
|
"scripts": {
|
|
22
26
|
"build": "npm run build:app",
|
|
23
27
|
"build:lib": "vite build --mode library",
|