inspect-ai 0.3.70__py3-none-any.whl → 0.3.72__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 +14 -8
- 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 +6 -1
- inspect_ai/_display/textual/display.py +4 -0
- inspect_ai/_display/textual/widgets/transcript.py +10 -6
- inspect_ai/_eval/task/run.py +5 -8
- inspect_ai/_util/content.py +20 -1
- inspect_ai/_util/transcript.py +10 -4
- inspect_ai/_util/working.py +4 -0
- inspect_ai/_view/www/App.css +6 -0
- inspect_ai/_view/www/dist/assets/index.css +115 -87
- inspect_ai/_view/www/dist/assets/index.js +5324 -2276
- inspect_ai/_view/www/eslint.config.mjs +24 -1
- inspect_ai/_view/www/log-schema.json +283 -20
- inspect_ai/_view/www/package.json +8 -3
- inspect_ai/_view/www/src/App.tsx +2 -2
- 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 -0
- 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.tsx +2 -2
- inspect_ai/_view/www/src/samples/SampleSummaryView.tsx +2 -2
- 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 +5 -4
- inspect_ai/_view/www/src/samples/transcript/SampleTranscript.tsx +2 -2
- inspect_ai/_view/www/src/samples/transcript/SandboxEventView.tsx +8 -7
- inspect_ai/_view/www/src/samples/transcript/ScoreEventView.tsx +2 -2
- inspect_ai/_view/www/src/samples/transcript/StepEventView.tsx +3 -3
- 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 +34 -15
- 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/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/types/log.d.ts +129 -34
- 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 +1 -1
- 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 +9 -2
- 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/_condense.py +3 -0
- inspect_ai/log/_recorders/eval.py +6 -1
- inspect_ai/log/_transcript.py +58 -1
- inspect_ai/model/__init__.py +2 -0
- inspect_ai/model/_call_tools.py +7 -0
- inspect_ai/model/_chat_message.py +22 -7
- inspect_ai/model/_conversation.py +10 -8
- inspect_ai/model/_generate_config.py +25 -4
- inspect_ai/model/_model.py +133 -57
- inspect_ai/model/_model_output.py +3 -0
- inspect_ai/model/_openai.py +106 -40
- inspect_ai/model/_providers/anthropic.py +281 -153
- inspect_ai/model/_providers/google.py +27 -8
- inspect_ai/model/_providers/groq.py +9 -4
- inspect_ai/model/_providers/openai.py +57 -4
- inspect_ai/model/_providers/openai_o1.py +10 -0
- inspect_ai/model/_providers/providers.py +1 -1
- inspect_ai/model/_reasoning.py +15 -2
- inspect_ai/scorer/_model.py +23 -19
- 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/tool/__init__.py +2 -0
- inspect_ai/tool/_tool.py +3 -1
- inspect_ai/tool/_tools/_computer/_common.py +117 -58
- inspect_ai/tool/_tools/_computer/_computer.py +80 -57
- inspect_ai/tool/_tools/_computer/_resources/image_home_dir/.config/Code/User/settings.json +7 -1
- inspect_ai/tool/_tools/_computer/_resources/image_home_dir/.config/xfce4/xfconf/xfce-perchannel-xml/xfwm4.xml +91 -0
- inspect_ai/tool/_tools/_computer/_resources/tool/.pylintrc +8 -0
- inspect_ai/tool/_tools/_computer/_resources/tool/.vscode/settings.json +12 -0
- inspect_ai/tool/_tools/_computer/_resources/tool/_args.py +78 -0
- inspect_ai/tool/_tools/_computer/_resources/tool/_constants.py +20 -0
- inspect_ai/tool/_tools/_computer/_resources/tool/_run.py +1 -1
- inspect_ai/tool/_tools/_computer/_resources/tool/_x11_client.py +175 -113
- inspect_ai/tool/_tools/_computer/_resources/tool/computer_tool.py +76 -20
- inspect_ai/tool/_tools/_computer/_resources/tool/pyproject.toml +65 -0
- inspect_ai/tool/_tools/_computer/test_args.py +151 -0
- 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/util/__init__.py +2 -1
- inspect_ai/util/_display.py +12 -0
- inspect_ai/util/_sandbox/events.py +55 -21
- inspect_ai/util/_sandbox/self_check.py +131 -43
- inspect_ai/util/_subtask.py +11 -0
- {inspect_ai-0.3.70.dist-info → inspect_ai-0.3.72.dist-info}/METADATA +1 -1
- {inspect_ai-0.3.70.dist-info → inspect_ai-0.3.72.dist-info}/RECORD +209 -186
- {inspect_ai-0.3.70.dist-info → inspect_ai-0.3.72.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/_computer/_computer_split.py +0 -198
- 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.70.dist-info → inspect_ai-0.3.72.dist-info}/LICENSE +0 -0
- {inspect_ai-0.3.70.dist-info → inspect_ai-0.3.72.dist-info}/entry_points.txt +0 -0
- {inspect_ai-0.3.70.dist-info → inspect_ai-0.3.72.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,25 +16305,6 @@ 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;
|
@@ -16450,12 +16442,16 @@ ul.jsondiffpatch-textdiff {
|
|
16450
16442
|
._panel_8zdtn_1 {
|
16451
16443
|
margin: 0.5em 0;
|
16452
16444
|
}
|
16453
|
-
.
|
16445
|
+
._grid_1eq5o_1 {
|
16454
16446
|
width: 100%;
|
16455
16447
|
display: grid;
|
16456
16448
|
grid-template-columns: 1fr max-content;
|
16457
16449
|
column-gap: 1em;
|
16458
16450
|
}
|
16451
|
+
|
16452
|
+
._jsonPanel_1eq5o_8 {
|
16453
|
+
padding: 0 !important;
|
16454
|
+
}
|
16459
16455
|
._container_1brs9_1 {
|
16460
16456
|
margin: 1em 0 0 0;
|
16461
16457
|
}
|
@@ -16464,49 +16460,77 @@ ul.jsondiffpatch-textdiff {
|
|
16464
16460
|
font-weight: 600;
|
16465
16461
|
padding-bottom: 0.3em;
|
16466
16462
|
}
|
16467
|
-
.
|
16463
|
+
._output_3axgd_1 {
|
16468
16464
|
padding-top: 1em;
|
16469
16465
|
}
|
16470
16466
|
|
16471
|
-
.
|
16467
|
+
._container_3axgd_5 {
|
16472
16468
|
margin: 0.5em 0;
|
16473
16469
|
width: 100%;
|
16474
16470
|
}
|
16475
16471
|
|
16476
|
-
.
|
16472
|
+
._all_3axgd_10 {
|
16477
16473
|
display: grid;
|
16478
|
-
grid-template-columns: 1fr 1fr;
|
16474
|
+
grid-template-columns: 1fr 1fr 1fr;
|
16479
16475
|
column-gap: 1em;
|
16480
16476
|
}
|
16481
16477
|
|
16482
|
-
.
|
16478
|
+
._tableSelection_3axgd_16 {
|
16483
16479
|
width: fit-content;
|
16484
16480
|
align-self: start;
|
16485
16481
|
justify-self: start;
|
16486
16482
|
}
|
16487
16483
|
|
16488
|
-
.
|
16484
|
+
._tools_3axgd_22 {
|
16489
16485
|
grid-column: -1/1;
|
16490
16486
|
}
|
16491
16487
|
|
16492
|
-
.
|
16488
|
+
._codePre_3axgd_26 {
|
16493
16489
|
background: var(--bs-light);
|
16494
16490
|
width: 100%;
|
16495
16491
|
padding: 0.5em;
|
16496
16492
|
border-radius: var(--bs-border-radius);
|
16497
16493
|
}
|
16498
16494
|
|
16499
|
-
.
|
16495
|
+
._code_3axgd_26 {
|
16500
16496
|
white-space: pre-wrap;
|
16501
16497
|
word-wrap: anywhere;
|
16502
16498
|
}
|
16503
16499
|
|
16504
|
-
.
|
16500
|
+
._toolConfig_3axgd_38 {
|
16505
16501
|
display: grid;
|
16506
16502
|
grid-template-columns: max-content auto;
|
16507
16503
|
column-gap: 1em;
|
16508
16504
|
row-gap: 0.5em;
|
16509
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
|
+
}
|
16510
16534
|
._noMargin_1a3fk_1 {
|
16511
16535
|
margin-bottom: 0;
|
16512
16536
|
}
|
@@ -18939,12 +18963,12 @@ span.ap-marker-container:hover span.ap-marker {
|
|
18939
18963
|
grid-column: span 3;
|
18940
18964
|
width: 100%;
|
18941
18965
|
}
|
18942
|
-
.
|
18966
|
+
._carouselThumbs_1mvg8_1 {
|
18943
18967
|
display: grid;
|
18944
18968
|
grid-template-columns: auto auto auto auto;
|
18945
18969
|
}
|
18946
18970
|
|
18947
|
-
.
|
18971
|
+
._carouselThumb_1mvg8_1 {
|
18948
18972
|
background: black;
|
18949
18973
|
color: white;
|
18950
18974
|
padding: 4em 0;
|
@@ -18954,11 +18978,11 @@ span.ap-marker-container:hover span.ap-marker {
|
|
18954
18978
|
text-align: center;
|
18955
18979
|
}
|
18956
18980
|
|
18957
|
-
.
|
18981
|
+
._carouselPlayIcon_1mvg8_16 {
|
18958
18982
|
font-size: 4em;
|
18959
18983
|
}
|
18960
18984
|
|
18961
|
-
.
|
18985
|
+
._lightboxOverlay_1mvg8_20 {
|
18962
18986
|
position: fixed;
|
18963
18987
|
top: 0;
|
18964
18988
|
left: 0;
|
@@ -18971,25 +18995,25 @@ span.ap-marker-container:hover span.ap-marker {
|
|
18971
18995
|
z-index: 9998;
|
18972
18996
|
}
|
18973
18997
|
|
18974
|
-
.
|
18975
|
-
.
|
18998
|
+
._lightboxContent_1mvg8_33._open_1mvg8_33,
|
18999
|
+
._lightboxOverlay_1mvg8_20._open_1mvg8_33 {
|
18976
19000
|
opacity: 1;
|
18977
19001
|
visibility: visible;
|
18978
19002
|
}
|
18979
19003
|
|
18980
|
-
.
|
18981
|
-
.
|
19004
|
+
._lightboxContent_1mvg8_33._closed_1mvg8_39,
|
19005
|
+
._lightboxOverlay_1mvg8_20._closed_1mvg8_39 {
|
18982
19006
|
opacity: 0;
|
18983
19007
|
visibility: hidden;
|
18984
19008
|
}
|
18985
19009
|
|
18986
|
-
.
|
19010
|
+
._lightboxButtonCloseWrapper_1mvg8_45 {
|
18987
19011
|
position: absolute;
|
18988
19012
|
top: 10px;
|
18989
19013
|
right: 10px;
|
18990
19014
|
}
|
18991
19015
|
|
18992
|
-
.
|
19016
|
+
._lightboxButtonClose_1mvg8_45 {
|
18993
19017
|
border: none;
|
18994
19018
|
background: none;
|
18995
19019
|
color: #fff;
|
@@ -19001,7 +19025,7 @@ span.ap-marker-container:hover span.ap-marker {
|
|
19001
19025
|
z-index: 10000;
|
19002
19026
|
}
|
19003
19027
|
|
19004
|
-
.
|
19028
|
+
._lightboxPreviewButton_1mvg8_63 {
|
19005
19029
|
position: absolute;
|
19006
19030
|
top: 50%;
|
19007
19031
|
transform: translateY(-50%);
|
@@ -19014,25 +19038,29 @@ span.ap-marker-container:hover span.ap-marker {
|
|
19014
19038
|
z-index: 9999;
|
19015
19039
|
}
|
19016
19040
|
|
19017
|
-
.
|
19041
|
+
._lightboxPreviewButton_1mvg8_63._next_1mvg8_76 {
|
19018
19042
|
left: 10px;
|
19019
19043
|
}
|
19020
19044
|
|
19021
|
-
.
|
19045
|
+
._lightboxPreviewButton_1mvg8_63._prev_1mvg8_80 {
|
19022
19046
|
right: 10px;
|
19023
19047
|
}
|
19024
19048
|
|
19025
|
-
.
|
19026
|
-
max-width:
|
19027
|
-
max-height:
|
19049
|
+
._lightboxContent_1mvg8_33 {
|
19050
|
+
max-width: 90vw !important;
|
19051
|
+
max-height: 90vh !important;
|
19028
19052
|
display: flex;
|
19029
|
-
align-items: center;
|
19030
|
-
justify-content: center;
|
19031
19053
|
position: relative;
|
19032
19054
|
transition:
|
19033
19055
|
opacity 0.3s ease,
|
19034
19056
|
visibility 0.3s ease;
|
19035
19057
|
z-index: 9999;
|
19058
|
+
overflow: hidden;
|
19059
|
+
}
|
19060
|
+
|
19061
|
+
._lightboxContent_1mvg8_33 > * {
|
19062
|
+
max-height: 90vh !important;
|
19063
|
+
max-width: 90vw !important;
|
19036
19064
|
}
|
19037
19065
|
._tools_13oio_1 {
|
19038
19066
|
display: grid;
|