inspect-ai 0.3.69__py3-none-any.whl → 0.3.71__py3-none-any.whl
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.
- inspect_ai/_cli/eval.py +27 -9
- inspect_ai/_display/core/display.py +2 -0
- inspect_ai/_display/core/footer.py +13 -3
- inspect_ai/_display/plain/display.py +6 -2
- inspect_ai/_display/rich/display.py +19 -6
- inspect_ai/_display/textual/app.py +9 -3
- inspect_ai/_display/textual/display.py +4 -0
- inspect_ai/_display/textual/widgets/samples.py +4 -10
- inspect_ai/_display/textual/widgets/transcript.py +35 -18
- inspect_ai/_eval/eval.py +14 -2
- inspect_ai/_eval/evalset.py +6 -1
- inspect_ai/_eval/run.py +6 -0
- inspect_ai/_eval/task/run.py +49 -23
- inspect_ai/_eval/task/task.py +26 -3
- inspect_ai/_util/content.py +20 -1
- inspect_ai/_util/interrupt.py +6 -0
- inspect_ai/_util/logger.py +19 -0
- inspect_ai/_util/rich.py +7 -8
- inspect_ai/_util/text.py +13 -0
- inspect_ai/_util/transcript.py +20 -6
- inspect_ai/_util/working.py +50 -0
- inspect_ai/_view/www/App.css +6 -0
- inspect_ai/_view/www/dist/assets/index.css +171 -99
- inspect_ai/_view/www/dist/assets/index.js +5972 -2770
- inspect_ai/_view/www/eslint.config.mjs +24 -1
- inspect_ai/_view/www/log-schema.json +619 -21
- inspect_ai/_view/www/package.json +8 -3
- inspect_ai/_view/www/src/App.tsx +2 -2
- inspect_ai/_view/www/src/appearance/icons.ts +3 -1
- inspect_ai/_view/www/src/components/AnsiDisplay.tsx +4 -3
- inspect_ai/_view/www/src/components/Card.tsx +9 -8
- inspect_ai/_view/www/src/components/DownloadButton.tsx +2 -1
- inspect_ai/_view/www/src/components/EmptyPanel.tsx +2 -2
- inspect_ai/_view/www/src/components/ErrorPanel.tsx +4 -3
- inspect_ai/_view/www/src/components/ExpandablePanel.tsx +13 -5
- inspect_ai/_view/www/src/components/FindBand.tsx +3 -3
- inspect_ai/_view/www/src/components/HumanBaselineView.tsx +3 -3
- inspect_ai/_view/www/src/components/LabeledValue.tsx +5 -4
- inspect_ai/_view/www/src/components/LargeModal.tsx +18 -13
- inspect_ai/_view/www/src/components/{LightboxCarousel.css → LightboxCarousel.module.css} +22 -18
- inspect_ai/_view/www/src/components/LightboxCarousel.tsx +36 -27
- inspect_ai/_view/www/src/components/MessageBand.tsx +2 -1
- inspect_ai/_view/www/src/components/NavPills.tsx +9 -8
- inspect_ai/_view/www/src/components/ProgressBar.tsx +2 -1
- inspect_ai/_view/www/src/components/TabSet.tsx +21 -15
- inspect_ai/_view/www/src/index.tsx +2 -2
- inspect_ai/_view/www/src/metadata/MetaDataGrid.tsx +11 -9
- inspect_ai/_view/www/src/metadata/MetaDataView.tsx +3 -2
- inspect_ai/_view/www/src/metadata/MetadataGrid.module.css +1 -0
- inspect_ai/_view/www/src/metadata/RenderedContent.tsx +16 -1
- inspect_ai/_view/www/src/plan/DatasetDetailView.tsx +3 -2
- inspect_ai/_view/www/src/plan/DetailStep.tsx +2 -1
- inspect_ai/_view/www/src/plan/PlanCard.tsx +2 -5
- inspect_ai/_view/www/src/plan/PlanDetailView.tsx +6 -9
- inspect_ai/_view/www/src/plan/ScorerDetailView.tsx +2 -1
- inspect_ai/_view/www/src/plan/SolverDetailView.tsx +3 -3
- inspect_ai/_view/www/src/samples/InlineSampleDisplay.tsx +2 -2
- inspect_ai/_view/www/src/samples/SampleDialog.tsx +3 -3
- inspect_ai/_view/www/src/samples/SampleDisplay.module.css +9 -1
- inspect_ai/_view/www/src/samples/SampleDisplay.tsx +30 -3
- inspect_ai/_view/www/src/samples/SampleSummaryView.module.css +4 -0
- inspect_ai/_view/www/src/samples/SampleSummaryView.tsx +25 -4
- inspect_ai/_view/www/src/samples/SamplesTools.tsx +2 -1
- inspect_ai/_view/www/src/samples/chat/ChatMessage.tsx +3 -19
- inspect_ai/_view/www/src/samples/chat/ChatMessageRenderer.tsx +2 -1
- inspect_ai/_view/www/src/samples/chat/ChatMessageRow.tsx +2 -1
- inspect_ai/_view/www/src/samples/chat/ChatView.tsx +2 -1
- inspect_ai/_view/www/src/samples/chat/ChatViewVirtualList.tsx +22 -7
- inspect_ai/_view/www/src/samples/chat/MessageContent.tsx +35 -6
- inspect_ai/_view/www/src/samples/chat/MessageContents.tsx +2 -2
- inspect_ai/_view/www/src/samples/chat/messages.ts +15 -2
- inspect_ai/_view/www/src/samples/chat/tools/ToolCallView.tsx +13 -4
- inspect_ai/_view/www/src/samples/chat/tools/ToolInput.module.css +2 -2
- inspect_ai/_view/www/src/samples/chat/tools/ToolInput.tsx +18 -19
- inspect_ai/_view/www/src/samples/chat/tools/ToolOutput.module.css +1 -1
- inspect_ai/_view/www/src/samples/chat/tools/ToolOutput.tsx +4 -3
- inspect_ai/_view/www/src/samples/chat/tools/ToolTitle.tsx +2 -2
- inspect_ai/_view/www/src/samples/error/FlatSampleErrorView.tsx +2 -3
- inspect_ai/_view/www/src/samples/error/SampleErrorView.tsx +3 -2
- inspect_ai/_view/www/src/samples/list/SampleFooter.tsx +2 -1
- inspect_ai/_view/www/src/samples/list/SampleHeader.tsx +2 -1
- inspect_ai/_view/www/src/samples/list/SampleList.tsx +57 -45
- inspect_ai/_view/www/src/samples/list/SampleRow.tsx +2 -1
- inspect_ai/_view/www/src/samples/list/SampleSeparator.tsx +2 -1
- inspect_ai/_view/www/src/samples/sample-tools/EpochFilter.tsx +2 -2
- inspect_ai/_view/www/src/samples/sample-tools/SelectScorer.tsx +4 -3
- inspect_ai/_view/www/src/samples/sample-tools/SortFilter.tsx +2 -5
- inspect_ai/_view/www/src/samples/sample-tools/sample-filter/SampleFilter.tsx +2 -2
- inspect_ai/_view/www/src/samples/scores/SampleScoreView.tsx +2 -1
- inspect_ai/_view/www/src/samples/scores/SampleScores.tsx +2 -2
- inspect_ai/_view/www/src/samples/transcript/ApprovalEventView.tsx +2 -1
- inspect_ai/_view/www/src/samples/transcript/ErrorEventView.tsx +2 -1
- inspect_ai/_view/www/src/samples/transcript/InfoEventView.tsx +2 -1
- inspect_ai/_view/www/src/samples/transcript/InputEventView.tsx +2 -1
- inspect_ai/_view/www/src/samples/transcript/LoggerEventView.module.css +4 -0
- inspect_ai/_view/www/src/samples/transcript/LoggerEventView.tsx +12 -2
- inspect_ai/_view/www/src/samples/transcript/ModelEventView.module.css +1 -1
- inspect_ai/_view/www/src/samples/transcript/ModelEventView.tsx +25 -28
- inspect_ai/_view/www/src/samples/transcript/SampleInitEventView.tsx +2 -1
- inspect_ai/_view/www/src/samples/transcript/SampleLimitEventView.tsx +9 -4
- inspect_ai/_view/www/src/samples/transcript/SampleTranscript.tsx +2 -2
- inspect_ai/_view/www/src/samples/transcript/SandboxEventView.module.css +32 -0
- inspect_ai/_view/www/src/samples/transcript/SandboxEventView.tsx +153 -0
- inspect_ai/_view/www/src/samples/transcript/ScoreEventView.tsx +2 -2
- inspect_ai/_view/www/src/samples/transcript/StepEventView.tsx +12 -5
- inspect_ai/_view/www/src/samples/transcript/SubtaskEventView.tsx +18 -14
- inspect_ai/_view/www/src/samples/transcript/ToolEventView.tsx +5 -5
- inspect_ai/_view/www/src/samples/transcript/TranscriptView.tsx +53 -16
- inspect_ai/_view/www/src/samples/transcript/event/EventNav.tsx +2 -1
- inspect_ai/_view/www/src/samples/transcript/event/EventNavs.tsx +2 -1
- inspect_ai/_view/www/src/samples/transcript/event/EventPanel.tsx +6 -3
- inspect_ai/_view/www/src/samples/transcript/event/EventRow.tsx +3 -2
- inspect_ai/_view/www/src/samples/transcript/event/EventSection.tsx +2 -2
- inspect_ai/_view/www/src/samples/transcript/event/EventTimingPanel.module.css +28 -0
- inspect_ai/_view/www/src/samples/transcript/event/EventTimingPanel.tsx +115 -0
- inspect_ai/_view/www/src/samples/transcript/event/utils.ts +29 -0
- inspect_ai/_view/www/src/samples/transcript/state/StateDiffView.tsx +2 -1
- inspect_ai/_view/www/src/samples/transcript/state/StateEventRenderers.tsx +3 -3
- inspect_ai/_view/www/src/samples/transcript/state/StateEventView.tsx +11 -8
- inspect_ai/_view/www/src/samples/transcript/types.ts +3 -1
- inspect_ai/_view/www/src/types/log.d.ts +312 -137
- inspect_ai/_view/www/src/usage/ModelTokenTable.tsx +6 -10
- inspect_ai/_view/www/src/usage/ModelUsagePanel.module.css +4 -0
- inspect_ai/_view/www/src/usage/ModelUsagePanel.tsx +32 -9
- inspect_ai/_view/www/src/usage/TokenTable.tsx +4 -6
- inspect_ai/_view/www/src/usage/UsageCard.tsx +2 -1
- inspect_ai/_view/www/src/utils/format.ts +8 -5
- inspect_ai/_view/www/src/utils/json.ts +24 -0
- inspect_ai/_view/www/src/workspace/WorkSpace.tsx +6 -5
- inspect_ai/_view/www/src/workspace/WorkSpaceView.tsx +18 -8
- inspect_ai/_view/www/src/workspace/error/TaskErrorPanel.tsx +2 -1
- inspect_ai/_view/www/src/workspace/navbar/Navbar.tsx +2 -1
- inspect_ai/_view/www/src/workspace/navbar/PrimaryBar.tsx +3 -3
- inspect_ai/_view/www/src/workspace/navbar/ResultsPanel.tsx +4 -3
- inspect_ai/_view/www/src/workspace/navbar/SecondaryBar.tsx +5 -4
- inspect_ai/_view/www/src/workspace/navbar/StatusPanel.tsx +5 -8
- inspect_ai/_view/www/src/workspace/sidebar/EvalStatus.tsx +5 -4
- inspect_ai/_view/www/src/workspace/sidebar/LogDirectoryTitleView.tsx +2 -1
- inspect_ai/_view/www/src/workspace/sidebar/Sidebar.tsx +2 -1
- inspect_ai/_view/www/src/workspace/sidebar/SidebarLogEntry.tsx +2 -2
- inspect_ai/_view/www/src/workspace/sidebar/SidebarScoreView.tsx +2 -1
- inspect_ai/_view/www/src/workspace/sidebar/SidebarScoresView.tsx +2 -2
- inspect_ai/_view/www/src/workspace/tabs/InfoTab.tsx +2 -2
- inspect_ai/_view/www/src/workspace/tabs/JsonTab.tsx +2 -5
- inspect_ai/_view/www/src/workspace/tabs/SamplesTab.tsx +12 -11
- inspect_ai/_view/www/yarn.lock +241 -5
- inspect_ai/log/__init__.py +2 -0
- inspect_ai/log/_condense.py +4 -0
- inspect_ai/log/_log.py +72 -12
- inspect_ai/log/_recorders/eval.py +6 -1
- inspect_ai/log/_samples.py +5 -1
- inspect_ai/log/_transcript.py +89 -2
- inspect_ai/model/__init__.py +2 -0
- inspect_ai/model/_call_tools.py +8 -1
- inspect_ai/model/_chat_message.py +22 -7
- inspect_ai/model/_conversation.py +11 -9
- inspect_ai/model/_generate_config.py +25 -4
- inspect_ai/model/_model.py +164 -72
- inspect_ai/model/_model_call.py +10 -3
- inspect_ai/model/_model_output.py +3 -0
- inspect_ai/model/_openai.py +106 -40
- inspect_ai/model/_providers/anthropic.py +145 -26
- inspect_ai/model/_providers/bedrock.py +7 -0
- inspect_ai/model/_providers/cloudflare.py +20 -7
- inspect_ai/model/_providers/google.py +29 -8
- inspect_ai/model/_providers/groq.py +66 -27
- inspect_ai/model/_providers/hf.py +6 -0
- inspect_ai/model/_providers/mistral.py +78 -51
- inspect_ai/model/_providers/openai.py +66 -4
- inspect_ai/model/_providers/openai_o1.py +10 -0
- inspect_ai/model/_providers/providers.py +2 -2
- inspect_ai/model/_providers/util/tracker.py +92 -0
- inspect_ai/model/_providers/vllm.py +13 -5
- inspect_ai/model/_reasoning.py +15 -2
- inspect_ai/scorer/_model.py +23 -19
- inspect_ai/solver/_basic_agent.py +1 -3
- inspect_ai/solver/_bridge/patch.py +0 -2
- inspect_ai/solver/_human_agent/agent.py +14 -10
- inspect_ai/solver/_human_agent/commands/__init__.py +7 -3
- inspect_ai/solver/_human_agent/commands/submit.py +76 -30
- inspect_ai/solver/_limit.py +4 -4
- inspect_ai/solver/_plan.py +0 -3
- inspect_ai/solver/_task_state.py +7 -0
- inspect_ai/tool/__init__.py +2 -0
- inspect_ai/tool/_tool.py +3 -1
- inspect_ai/tool/_tools/_computer/_resources/tool/_run.py +1 -1
- inspect_ai/tool/_tools/_web_browser/_resources/.pylintrc +8 -0
- inspect_ai/tool/_tools/_web_browser/_resources/.vscode/launch.json +24 -0
- inspect_ai/tool/_tools/_web_browser/_resources/.vscode/settings.json +25 -0
- inspect_ai/tool/_tools/_web_browser/_resources/Dockerfile +5 -6
- inspect_ai/tool/_tools/_web_browser/_resources/README.md +10 -11
- inspect_ai/tool/_tools/_web_browser/_resources/accessibility_tree.py +71 -0
- inspect_ai/tool/_tools/_web_browser/_resources/accessibility_tree_node.py +323 -0
- inspect_ai/tool/_tools/_web_browser/_resources/cdp/__init__.py +5 -0
- inspect_ai/tool/_tools/_web_browser/_resources/cdp/a11y.py +279 -0
- inspect_ai/tool/_tools/_web_browser/_resources/cdp/dom.py +9 -0
- inspect_ai/tool/_tools/_web_browser/_resources/cdp/dom_snapshot.py +293 -0
- inspect_ai/tool/_tools/_web_browser/_resources/cdp/page.py +94 -0
- inspect_ai/tool/_tools/_web_browser/_resources/constants.py +2 -0
- inspect_ai/tool/_tools/_web_browser/_resources/images/usage_diagram.svg +2 -0
- inspect_ai/tool/_tools/_web_browser/_resources/playwright_browser.py +50 -0
- inspect_ai/tool/_tools/_web_browser/_resources/playwright_crawler.py +31 -359
- inspect_ai/tool/_tools/_web_browser/_resources/playwright_page_crawler.py +280 -0
- inspect_ai/tool/_tools/_web_browser/_resources/pyproject.toml +65 -0
- inspect_ai/tool/_tools/_web_browser/_resources/rectangle.py +64 -0
- inspect_ai/tool/_tools/_web_browser/_resources/rpc_client_helpers.py +146 -0
- inspect_ai/tool/_tools/_web_browser/_resources/scale_factor.py +64 -0
- inspect_ai/tool/_tools/_web_browser/_resources/test_accessibility_tree_node.py +180 -0
- inspect_ai/tool/_tools/_web_browser/_resources/test_playwright_crawler.py +15 -9
- inspect_ai/tool/_tools/_web_browser/_resources/test_rectangle.py +15 -0
- inspect_ai/tool/_tools/_web_browser/_resources/test_web_client.py +44 -0
- inspect_ai/tool/_tools/_web_browser/_resources/web_browser_rpc_types.py +39 -0
- inspect_ai/tool/_tools/_web_browser/_resources/web_client.py +198 -48
- inspect_ai/tool/_tools/_web_browser/_resources/web_client_new_session.py +26 -25
- inspect_ai/tool/_tools/_web_browser/_resources/web_server.py +178 -39
- inspect_ai/tool/_tools/_web_browser/_web_browser.py +38 -19
- inspect_ai/tool/_tools/_web_search.py +3 -3
- inspect_ai/util/__init__.py +2 -1
- inspect_ai/util/_concurrency.py +14 -8
- inspect_ai/util/_display.py +12 -0
- inspect_ai/util/_sandbox/context.py +15 -0
- inspect_ai/util/_sandbox/docker/docker.py +7 -5
- inspect_ai/util/_sandbox/environment.py +32 -1
- inspect_ai/util/_sandbox/events.py +183 -0
- inspect_ai/util/_sandbox/local.py +3 -3
- inspect_ai/util/_sandbox/self_check.py +131 -43
- inspect_ai/util/_subtask.py +11 -0
- {inspect_ai-0.3.69.dist-info → inspect_ai-0.3.71.dist-info}/METADATA +3 -3
- {inspect_ai-0.3.69.dist-info → inspect_ai-0.3.71.dist-info}/RECORD +233 -211
- {inspect_ai-0.3.69.dist-info → inspect_ai-0.3.71.dist-info}/WHEEL +1 -1
- inspect_ai/_view/www/src/components/VirtualList.module.css +0 -19
- inspect_ai/_view/www/src/components/VirtualList.tsx +0 -292
- inspect_ai/tool/_tools/_web_browser/_resources/accessibility_node.py +0 -312
- inspect_ai/tool/_tools/_web_browser/_resources/dm_env_servicer.py +0 -275
- inspect_ai/tool/_tools/_web_browser/_resources/images/usage_diagram.png +0 -0
- inspect_ai/tool/_tools/_web_browser/_resources/test_accessibility_node.py +0 -176
- inspect_ai/tool/_tools/_web_browser/_resources/test_dm_env_servicer.py +0 -135
- inspect_ai/tool/_tools/_web_browser/_resources/test_web_environment.py +0 -71
- inspect_ai/tool/_tools/_web_browser/_resources/web_environment.py +0 -184
- {inspect_ai-0.3.69.dist-info → inspect_ai-0.3.71.dist-info}/LICENSE +0 -0
- {inspect_ai-0.3.69.dist-info → inspect_ai-0.3.71.dist-info}/entry_points.txt +0 -0
- {inspect_ai-0.3.69.dist-info → inspect_ai-0.3.71.dist-info}/top_level.txt +0 -0
@@ -15078,15 +15078,21 @@ table.table.table-sm td {
|
|
15078
15078
|
overflow: unset;
|
15079
15079
|
}
|
15080
15080
|
|
15081
|
+
.markdown-content pre[class*="language-"],
|
15081
15082
|
pre[class*="language-"].tool-output,
|
15082
15083
|
.tool-output {
|
15083
15084
|
background-color: #f8f8f8;
|
15084
15085
|
}
|
15086
|
+
|
15087
|
+
.vscode-dark .model-call pre[class*="language-"],
|
15088
|
+
.vscode-dark .markdown-content pre[class*="language-"],
|
15085
15089
|
.vscode-dark pre[class*="language-"].tool-output,
|
15086
15090
|
.vscode-dark .tool-output {
|
15087
15091
|
background-color: #333333;
|
15088
15092
|
}
|
15089
15093
|
|
15094
|
+
.model-call pre[class*="language-"],
|
15095
|
+
.markdown-content pre[class*="language-"],
|
15090
15096
|
pre[class*="language-"].tool-output {
|
15091
15097
|
border: none !important;
|
15092
15098
|
box-shadow: none !important;
|
@@ -15653,9 +15659,6 @@ ul.jsondiffpatch-textdiff {
|
|
15653
15659
|
border: none;
|
15654
15660
|
padding: 0.1rem 0.5rem;
|
15655
15661
|
}
|
15656
|
-
.markdown-ordered-list-item {
|
15657
|
-
margin-bottom: 0.2em;
|
15658
|
-
}
|
15659
15662
|
._message_xh8qq_1 {
|
15660
15663
|
font-weight: 300;
|
15661
15664
|
padding-bottom: 0.5em;
|
@@ -15685,42 +15688,45 @@ ul.jsondiffpatch-textdiff {
|
|
15685
15688
|
margin-left: 1.1rem;
|
15686
15689
|
padding-bottom: 0.8rem;
|
15687
15690
|
}
|
15691
|
+
.markdown-ordered-list-item {
|
15692
|
+
margin-bottom: 0.2em;
|
15693
|
+
}
|
15688
15694
|
._contentImage_121dp_1 {
|
15689
15695
|
max-width: 800px;
|
15690
15696
|
border: solid var(--bs-border-color) 1px;
|
15691
15697
|
}
|
15692
|
-
.
|
15698
|
+
._toolImage_1j5uu_1 {
|
15693
15699
|
max-width: 800px;
|
15694
15700
|
border: solid var(--bs-border-color) 1px;
|
15695
15701
|
}
|
15696
15702
|
|
15697
|
-
.
|
15703
|
+
._output_1j5uu_6 {
|
15698
15704
|
display: grid;
|
15699
15705
|
}
|
15700
15706
|
|
15701
|
-
.
|
15702
|
-
|
15707
|
+
._textOutput_1j5uu_10 {
|
15708
|
+
padding-left: 2px;
|
15703
15709
|
padding: 0.5em 0.5em 0.5em 0.5em;
|
15704
15710
|
white-space: pre-wrap;
|
15705
15711
|
margin-bottom: 0;
|
15706
15712
|
}
|
15707
15713
|
|
15708
|
-
.
|
15714
|
+
._textCode_1j5uu_17 {
|
15709
15715
|
word-wrap: anywhere;
|
15710
15716
|
}
|
15711
|
-
.
|
15717
|
+
._outputPre_1h1fn_1 {
|
15712
15718
|
padding: 0.5em;
|
15713
15719
|
margin-top: 0.25em;
|
15714
15720
|
margin-bottom: 1rem;
|
15715
15721
|
}
|
15716
15722
|
|
15717
|
-
.
|
15723
|
+
._outputCode_1h1fn_7 {
|
15718
15724
|
overflow-wrap: anywhere;
|
15719
15725
|
white-space: pre-wrap;
|
15720
15726
|
}
|
15721
15727
|
|
15722
|
-
.
|
15723
|
-
|
15728
|
+
._bottomPadding_1h1fn_12 {
|
15729
|
+
padding-bottom: 1em;
|
15724
15730
|
}
|
15725
15731
|
._image_10saa_1 {
|
15726
15732
|
margin-right: 0.2rem;
|
@@ -15773,6 +15779,26 @@ ul.jsondiffpatch-textdiff {
|
|
15773
15779
|
white-space: pre-wrap;
|
15774
15780
|
word-wrap: anywhere;
|
15775
15781
|
}
|
15782
|
+
.json-panel {
|
15783
|
+
width: 100%;
|
15784
|
+
padding: 0.5em;
|
15785
|
+
}
|
15786
|
+
|
15787
|
+
.json-panel:not(.simple) {
|
15788
|
+
background: var(--bs-light);
|
15789
|
+
border-radius: var(--bs-border-radius);
|
15790
|
+
}
|
15791
|
+
|
15792
|
+
.json-panel .source-code {
|
15793
|
+
font-size: var(--inspect-font-size-small);
|
15794
|
+
white-space: pre-wrap;
|
15795
|
+
word-wrap: anywhere;
|
15796
|
+
}
|
15797
|
+
|
15798
|
+
/* Prism.js theme customizations can go here if needed */
|
15799
|
+
.language-javascript {
|
15800
|
+
background: transparent !important;
|
15801
|
+
}
|
15776
15802
|
._query_9u9bt_1 {
|
15777
15803
|
margin-bottom: 0.5rem;
|
15778
15804
|
font-weight: 500;
|
@@ -16055,26 +16081,6 @@ ul.jsondiffpatch-textdiff {
|
|
16055
16081
|
.download-panel-message {
|
16056
16082
|
font-size: var(--inspect-font-size-small);
|
16057
16083
|
}
|
16058
|
-
.json-panel {
|
16059
|
-
width: 100%;
|
16060
|
-
padding: 0.5em;
|
16061
|
-
}
|
16062
|
-
|
16063
|
-
.json-panel:not(.simple) {
|
16064
|
-
background: var(--bs-light);
|
16065
|
-
border-radius: var(--bs-border-radius);
|
16066
|
-
}
|
16067
|
-
|
16068
|
-
.json-panel .source-code {
|
16069
|
-
font-size: var(--inspect-font-size-small);
|
16070
|
-
white-space: pre-wrap;
|
16071
|
-
word-wrap: anywhere;
|
16072
|
-
}
|
16073
|
-
|
16074
|
-
/* Prism.js theme customizations can go here if needed */
|
16075
|
-
.language-javascript {
|
16076
|
-
background: transparent !important;
|
16077
|
-
}
|
16078
16084
|
._jsonTab_6pq03_1 {
|
16079
16085
|
padding: 0.5rem;
|
16080
16086
|
font-size: var(--inspect-font-size-small);
|
@@ -16180,18 +16186,19 @@ ul.jsondiffpatch-textdiff {
|
|
16180
16186
|
padding: 0 0.5em 0.1em 0.5em;
|
16181
16187
|
font-size: var(--inspect-font-size-smaller);
|
16182
16188
|
}
|
16183
|
-
.
|
16189
|
+
._grid_ktnsp_1 {
|
16184
16190
|
display: grid;
|
16185
16191
|
grid-template-columns: max-content auto;
|
16186
16192
|
column-gap: 1em;
|
16193
|
+
row-gap: 0.2em;
|
16187
16194
|
}
|
16188
16195
|
|
16189
|
-
.
|
16196
|
+
._cell_ktnsp_8 {
|
16190
16197
|
font-weight: 400;
|
16191
16198
|
white-space: nowrap;
|
16192
16199
|
}
|
16193
16200
|
|
16194
|
-
.
|
16201
|
+
._value_ktnsp_13 {
|
16195
16202
|
white-space: pre-wrap;
|
16196
16203
|
word-wrap: anywhere;
|
16197
16204
|
}
|
@@ -16253,30 +16260,34 @@ ul.jsondiffpatch-textdiff {
|
|
16253
16260
|
._noTop_1jqar_51 {
|
16254
16261
|
margin-top: 0 !important;
|
16255
16262
|
}
|
16256
|
-
.
|
16263
|
+
._wrapper_sq96g_1 {
|
16257
16264
|
display: grid;
|
16258
16265
|
grid-template-columns: 0 auto auto;
|
16259
16266
|
column-gap: 1.5em;
|
16260
16267
|
row-gap: 0.2em;
|
16261
16268
|
}
|
16262
16269
|
|
16263
|
-
.
|
16270
|
+
._col2_sq96g_8 {
|
16264
16271
|
grid-column: 2;
|
16265
16272
|
}
|
16266
16273
|
|
16267
|
-
.
|
16274
|
+
._col1_3_sq96g_12 {
|
16268
16275
|
grid-column: 1/3;
|
16269
16276
|
}
|
16270
16277
|
|
16271
|
-
.
|
16278
|
+
._col3_sq96g_16 {
|
16272
16279
|
grid-column: 3;
|
16273
16280
|
}
|
16274
16281
|
|
16275
|
-
.
|
16282
|
+
._separator_sq96g_20 {
|
16276
16283
|
grid-column: -1/1;
|
16277
16284
|
height: 1px;
|
16278
16285
|
background-color: var(--bs-light-border-subtle);
|
16279
16286
|
}
|
16287
|
+
|
16288
|
+
._padded_sq96g_26 {
|
16289
|
+
margin-bottom: 1em;
|
16290
|
+
}
|
16280
16291
|
._table_dbhwb_1 {
|
16281
16292
|
width: 100%;
|
16282
16293
|
margin-top: 0.7rem;
|
@@ -16294,58 +16305,47 @@ ul.jsondiffpatch-textdiff {
|
|
16294
16305
|
._model_dbhwb_15 {
|
16295
16306
|
padding-right: 1em;
|
16296
16307
|
}
|
16297
|
-
._container_1vi7u_1 {
|
16298
|
-
position: relative;
|
16299
|
-
width: 100%;
|
16300
|
-
min-height: 100%;
|
16301
|
-
overflow: visible;
|
16302
|
-
}
|
16303
|
-
|
16304
|
-
._container_1vi7u_1._hidden_1vi7u_8 {
|
16305
|
-
overflow: hidden;
|
16306
|
-
}
|
16307
|
-
|
16308
|
-
._content_1vi7u_12 {
|
16309
|
-
position: absolute;
|
16310
|
-
top: 0;
|
16311
|
-
left: 0;
|
16312
|
-
height: 100%;
|
16313
|
-
width: 100%;
|
16314
|
-
overflow: visible;
|
16315
|
-
}
|
16316
16308
|
._list_1emnm_1 {
|
16317
16309
|
width: 100%;
|
16318
16310
|
margin-top: 1em;
|
16319
16311
|
}
|
16320
|
-
.
|
16312
|
+
._tabPanel_1isha_1 {
|
16321
16313
|
padding-bottom: 1em;
|
16322
16314
|
}
|
16323
16315
|
|
16324
|
-
.
|
16316
|
+
._fullWidth_1isha_5 {
|
16325
16317
|
width: 100%;
|
16326
16318
|
}
|
16327
16319
|
|
16328
|
-
.
|
16320
|
+
._metadataPanel_1isha_9 {
|
16329
16321
|
display: flex;
|
16330
16322
|
flex-wrap: wrap;
|
16331
|
-
align-items:
|
16323
|
+
align-items: stretch;
|
16332
16324
|
gap: 1em;
|
16333
16325
|
padding-left: 0;
|
16334
16326
|
margin-top: 0.5em;
|
16335
16327
|
}
|
16336
16328
|
|
16337
|
-
.
|
16329
|
+
._padded_1isha_18 {
|
16338
16330
|
padding-left: 0.8em;
|
16339
16331
|
margin-top: 0.4em;
|
16340
16332
|
}
|
16341
16333
|
|
16342
|
-
.
|
16334
|
+
._ansi_1isha_23 {
|
16343
16335
|
margin: 1em 0;
|
16344
16336
|
}
|
16345
16337
|
|
16346
|
-
.
|
16338
|
+
._noTop_1isha_27 {
|
16347
16339
|
margin-top: 0;
|
16348
16340
|
}
|
16341
|
+
|
16342
|
+
._timePanel_1isha_31 {
|
16343
|
+
display: grid;
|
16344
|
+
grid-template-columns: max-content max-content;
|
16345
|
+
grid-template-rows: auto;
|
16346
|
+
column-gap: 0.5em;
|
16347
|
+
min-width: 200px;
|
16348
|
+
}
|
16349
16349
|
._flatBody_gk2ju_1 {
|
16350
16350
|
color: var(--bs-danger);
|
16351
16351
|
display: grid;
|
@@ -16365,15 +16365,15 @@ ul.jsondiffpatch-textdiff {
|
|
16365
16365
|
line-height: var(--inspect-font-size-base);
|
16366
16366
|
height: var(--inspect-font-size-base);
|
16367
16367
|
}
|
16368
|
-
.
|
16368
|
+
._target_9qy4e_1 {
|
16369
16369
|
padding-left: 0;
|
16370
16370
|
}
|
16371
16371
|
|
16372
|
-
.
|
16372
|
+
._answer_9qy4e_5 {
|
16373
16373
|
padding-left: 0;
|
16374
16374
|
}
|
16375
16375
|
|
16376
|
-
.
|
16376
|
+
._grid_9qy4e_9 {
|
16377
16377
|
display: grid;
|
16378
16378
|
grid-column-gap: 0.5em;
|
16379
16379
|
border-bottom: solid var(--bs-border-color) 1px;
|
@@ -16381,14 +16381,18 @@ ul.jsondiffpatch-textdiff {
|
|
16381
16381
|
padding: 0em 1em 1em 1em;
|
16382
16382
|
}
|
16383
16383
|
|
16384
|
-
.
|
16384
|
+
._centerLabel_9qy4e_17 {
|
16385
16385
|
display: flex;
|
16386
16386
|
justify-content: center;
|
16387
16387
|
}
|
16388
16388
|
|
16389
|
-
.
|
16389
|
+
._wrap_9qy4e_22 {
|
16390
16390
|
word-wrap: anywhere;
|
16391
16391
|
}
|
16392
|
+
|
16393
|
+
._titled_9qy4e_26:hover {
|
16394
|
+
cursor: pointer;
|
16395
|
+
}
|
16392
16396
|
._title_19l1b_1 {
|
16393
16397
|
margin-left: 0.5em;
|
16394
16398
|
display: grid;
|
@@ -16438,12 +16442,16 @@ ul.jsondiffpatch-textdiff {
|
|
16438
16442
|
._panel_8zdtn_1 {
|
16439
16443
|
margin: 0.5em 0;
|
16440
16444
|
}
|
16441
|
-
.
|
16445
|
+
._grid_1eq5o_1 {
|
16442
16446
|
width: 100%;
|
16443
16447
|
display: grid;
|
16444
16448
|
grid-template-columns: 1fr max-content;
|
16445
16449
|
column-gap: 1em;
|
16446
16450
|
}
|
16451
|
+
|
16452
|
+
._jsonPanel_1eq5o_8 {
|
16453
|
+
padding: 0 !important;
|
16454
|
+
}
|
16447
16455
|
._container_1brs9_1 {
|
16448
16456
|
margin: 1em 0 0 0;
|
16449
16457
|
}
|
@@ -16452,49 +16460,77 @@ ul.jsondiffpatch-textdiff {
|
|
16452
16460
|
font-weight: 600;
|
16453
16461
|
padding-bottom: 0.3em;
|
16454
16462
|
}
|
16455
|
-
.
|
16463
|
+
._output_3axgd_1 {
|
16456
16464
|
padding-top: 1em;
|
16457
16465
|
}
|
16458
16466
|
|
16459
|
-
.
|
16467
|
+
._container_3axgd_5 {
|
16460
16468
|
margin: 0.5em 0;
|
16461
16469
|
width: 100%;
|
16462
16470
|
}
|
16463
16471
|
|
16464
|
-
.
|
16472
|
+
._all_3axgd_10 {
|
16465
16473
|
display: grid;
|
16466
|
-
grid-template-columns: 1fr 1fr;
|
16474
|
+
grid-template-columns: 1fr 1fr 1fr;
|
16467
16475
|
column-gap: 1em;
|
16468
16476
|
}
|
16469
16477
|
|
16470
|
-
.
|
16478
|
+
._tableSelection_3axgd_16 {
|
16471
16479
|
width: fit-content;
|
16472
16480
|
align-self: start;
|
16473
16481
|
justify-self: start;
|
16474
16482
|
}
|
16475
16483
|
|
16476
|
-
.
|
16484
|
+
._tools_3axgd_22 {
|
16477
16485
|
grid-column: -1/1;
|
16478
16486
|
}
|
16479
16487
|
|
16480
|
-
.
|
16488
|
+
._codePre_3axgd_26 {
|
16481
16489
|
background: var(--bs-light);
|
16482
16490
|
width: 100%;
|
16483
16491
|
padding: 0.5em;
|
16484
16492
|
border-radius: var(--bs-border-radius);
|
16485
16493
|
}
|
16486
16494
|
|
16487
|
-
.
|
16495
|
+
._code_3axgd_26 {
|
16488
16496
|
white-space: pre-wrap;
|
16489
16497
|
word-wrap: anywhere;
|
16490
16498
|
}
|
16491
16499
|
|
16492
|
-
.
|
16500
|
+
._toolConfig_3axgd_38 {
|
16493
16501
|
display: grid;
|
16494
16502
|
grid-template-columns: max-content auto;
|
16495
16503
|
column-gap: 1em;
|
16496
16504
|
row-gap: 0.5em;
|
16497
16505
|
}
|
16506
|
+
._wrapper_45f60_1 {
|
16507
|
+
display: grid;
|
16508
|
+
grid-template-columns: 0 auto auto;
|
16509
|
+
column-gap: 1.5em;
|
16510
|
+
row-gap: 0.2em;
|
16511
|
+
}
|
16512
|
+
|
16513
|
+
._col2_45f60_8 {
|
16514
|
+
grid-column: 2;
|
16515
|
+
}
|
16516
|
+
|
16517
|
+
._col1_3_45f60_12 {
|
16518
|
+
grid-column: 1/3;
|
16519
|
+
}
|
16520
|
+
|
16521
|
+
._col3_45f60_16 {
|
16522
|
+
grid-column: 3;
|
16523
|
+
}
|
16524
|
+
|
16525
|
+
._separator_45f60_20 {
|
16526
|
+
grid-column: -1/1;
|
16527
|
+
height: 1px;
|
16528
|
+
background-color: var(--bs-light-border-subtle);
|
16529
|
+
}
|
16530
|
+
|
16531
|
+
._topMargin_45f60_26 {
|
16532
|
+
margin-top: 1em;
|
16533
|
+
}
|
16498
16534
|
._noMargin_1a3fk_1 {
|
16499
16535
|
margin-bottom: 0;
|
16500
16536
|
}
|
@@ -18927,12 +18963,12 @@ span.ap-marker-container:hover span.ap-marker {
|
|
18927
18963
|
grid-column: span 3;
|
18928
18964
|
width: 100%;
|
18929
18965
|
}
|
18930
|
-
.
|
18966
|
+
._carouselThumbs_1mvg8_1 {
|
18931
18967
|
display: grid;
|
18932
18968
|
grid-template-columns: auto auto auto auto;
|
18933
18969
|
}
|
18934
18970
|
|
18935
|
-
.
|
18971
|
+
._carouselThumb_1mvg8_1 {
|
18936
18972
|
background: black;
|
18937
18973
|
color: white;
|
18938
18974
|
padding: 4em 0;
|
@@ -18942,11 +18978,11 @@ span.ap-marker-container:hover span.ap-marker {
|
|
18942
18978
|
text-align: center;
|
18943
18979
|
}
|
18944
18980
|
|
18945
|
-
.
|
18981
|
+
._carouselPlayIcon_1mvg8_16 {
|
18946
18982
|
font-size: 4em;
|
18947
18983
|
}
|
18948
18984
|
|
18949
|
-
.
|
18985
|
+
._lightboxOverlay_1mvg8_20 {
|
18950
18986
|
position: fixed;
|
18951
18987
|
top: 0;
|
18952
18988
|
left: 0;
|
@@ -18959,25 +18995,25 @@ span.ap-marker-container:hover span.ap-marker {
|
|
18959
18995
|
z-index: 9998;
|
18960
18996
|
}
|
18961
18997
|
|
18962
|
-
.
|
18963
|
-
.
|
18998
|
+
._lightboxContent_1mvg8_33._open_1mvg8_33,
|
18999
|
+
._lightboxOverlay_1mvg8_20._open_1mvg8_33 {
|
18964
19000
|
opacity: 1;
|
18965
19001
|
visibility: visible;
|
18966
19002
|
}
|
18967
19003
|
|
18968
|
-
.
|
18969
|
-
.
|
19004
|
+
._lightboxContent_1mvg8_33._closed_1mvg8_39,
|
19005
|
+
._lightboxOverlay_1mvg8_20._closed_1mvg8_39 {
|
18970
19006
|
opacity: 0;
|
18971
19007
|
visibility: hidden;
|
18972
19008
|
}
|
18973
19009
|
|
18974
|
-
.
|
19010
|
+
._lightboxButtonCloseWrapper_1mvg8_45 {
|
18975
19011
|
position: absolute;
|
18976
19012
|
top: 10px;
|
18977
19013
|
right: 10px;
|
18978
19014
|
}
|
18979
19015
|
|
18980
|
-
.
|
19016
|
+
._lightboxButtonClose_1mvg8_45 {
|
18981
19017
|
border: none;
|
18982
19018
|
background: none;
|
18983
19019
|
color: #fff;
|
@@ -18989,7 +19025,7 @@ span.ap-marker-container:hover span.ap-marker {
|
|
18989
19025
|
z-index: 10000;
|
18990
19026
|
}
|
18991
19027
|
|
18992
|
-
.
|
19028
|
+
._lightboxPreviewButton_1mvg8_63 {
|
18993
19029
|
position: absolute;
|
18994
19030
|
top: 50%;
|
18995
19031
|
transform: translateY(-50%);
|
@@ -19002,25 +19038,29 @@ span.ap-marker-container:hover span.ap-marker {
|
|
19002
19038
|
z-index: 9999;
|
19003
19039
|
}
|
19004
19040
|
|
19005
|
-
.
|
19041
|
+
._lightboxPreviewButton_1mvg8_63._next_1mvg8_76 {
|
19006
19042
|
left: 10px;
|
19007
19043
|
}
|
19008
19044
|
|
19009
|
-
.
|
19045
|
+
._lightboxPreviewButton_1mvg8_63._prev_1mvg8_80 {
|
19010
19046
|
right: 10px;
|
19011
19047
|
}
|
19012
19048
|
|
19013
|
-
.
|
19014
|
-
max-width:
|
19015
|
-
max-height:
|
19049
|
+
._lightboxContent_1mvg8_33 {
|
19050
|
+
max-width: 90vw !important;
|
19051
|
+
max-height: 90vh !important;
|
19016
19052
|
display: flex;
|
19017
|
-
align-items: center;
|
19018
|
-
justify-content: center;
|
19019
19053
|
position: relative;
|
19020
19054
|
transition:
|
19021
19055
|
opacity 0.3s ease,
|
19022
19056
|
visibility 0.3s ease;
|
19023
19057
|
z-index: 9999;
|
19058
|
+
overflow: hidden;
|
19059
|
+
}
|
19060
|
+
|
19061
|
+
._lightboxContent_1mvg8_33 > * {
|
19062
|
+
max-height: 90vh !important;
|
19063
|
+
max-width: 90vw !important;
|
19024
19064
|
}
|
19025
19065
|
._tools_13oio_1 {
|
19026
19066
|
display: grid;
|
@@ -19070,6 +19110,38 @@ span.ap-marker-container:hover span.ap-marker {
|
|
19070
19110
|
padding: 0;
|
19071
19111
|
margin-bottom: 0;
|
19072
19112
|
}
|
19113
|
+
._contents_iwnfd_1 {
|
19114
|
+
margin-top: 0.5em;
|
19115
|
+
}
|
19116
|
+
|
19117
|
+
._contents_iwnfd_1 > :last-child {
|
19118
|
+
margin-bottom: 0;
|
19119
|
+
}
|
19120
|
+
|
19121
|
+
._twoColumn_iwnfd_9 {
|
19122
|
+
display: grid;
|
19123
|
+
grid-template-columns: auto 1fr;
|
19124
|
+
column-gap: 1.5em;
|
19125
|
+
}
|
19126
|
+
|
19127
|
+
._exec_iwnfd_15 {
|
19128
|
+
margin-top: 0.5em;
|
19129
|
+
}
|
19130
|
+
|
19131
|
+
._result_iwnfd_19 {
|
19132
|
+
margin-top: 0.5em;
|
19133
|
+
}
|
19134
|
+
|
19135
|
+
._fileLabel_iwnfd_23 {
|
19136
|
+
margin-top: 0;
|
19137
|
+
margin-bottom: 0;
|
19138
|
+
}
|
19139
|
+
|
19140
|
+
._wrapPre_iwnfd_28 {
|
19141
|
+
white-space: pre-wrap;
|
19142
|
+
word-wrap: break-word;
|
19143
|
+
overflow-wrap: break-word;
|
19144
|
+
}
|
19073
19145
|
._darkenedBg_c8m1t_1 {
|
19074
19146
|
background-color: var(--bs-light-bg-subtle);
|
19075
19147
|
}
|