chrome-devtools-frontend 1.0.1512349 → 1.0.1514545
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/.mailmap +1 -1
- package/LICENSE +1 -1
- package/WATCHLISTS +1 -1
- package/config/owner/COMMON_OWNERS +0 -1
- package/config/owner/LIGHTHOUSE_OWNERS +0 -1
- package/docs/contributing/README.md +1 -1
- package/docs/cookbook/release_management.md +15 -13
- package/docs/get_the_code.md +114 -35
- package/eslint.config.mjs +1 -2
- package/extension-api/ExtensionAPI.d.ts +1 -1
- package/front_end/Images/generate-css-vars.js +2 -2
- package/front_end/Images/rollup.config.mjs +1 -1
- package/front_end/application_tokens.css +1 -1
- package/front_end/core/common/App.ts +1 -1
- package/front_end/core/common/AppProvider.ts +1 -1
- package/front_end/core/common/Base64.ts +1 -1
- package/front_end/core/common/CharacterIdMap.ts +1 -1
- package/front_end/core/common/Color.ts +41 -45
- package/front_end/core/common/ColorConverter.ts +1 -1
- package/front_end/core/common/ColorUtils.ts +1 -1
- package/front_end/core/common/Console.ts +5 -5
- package/front_end/core/common/Debouncer.ts +1 -1
- package/front_end/core/common/EventTarget.ts +1 -1
- package/front_end/core/common/Gzip.ts +1 -1
- package/front_end/core/common/JavaScriptMetaData.ts +1 -1
- package/front_end/core/common/Lazy.ts +1 -1
- package/front_end/core/common/Linkifier.ts +1 -1
- package/front_end/core/common/MapWithDefault.ts +1 -1
- package/front_end/core/common/Mutex.ts +1 -1
- package/front_end/core/common/Object.ts +1 -1
- package/front_end/core/common/ParsedURL.ts +17 -43
- package/front_end/core/common/Progress.ts +3 -29
- package/front_end/core/common/QueryParamHandler.ts +1 -1
- package/front_end/core/common/ResolverBase.ts +1 -1
- package/front_end/core/common/ResourceType.ts +21 -21
- package/front_end/core/common/ReturnToPanel.ts +1 -1
- package/front_end/core/common/Revealer.ts +1 -1
- package/front_end/core/common/Runnable.ts +1 -1
- package/front_end/core/common/SegmentedRange.ts +14 -15
- package/front_end/core/common/SettingRegistration.ts +1 -1
- package/front_end/core/common/Settings.ts +7 -33
- package/front_end/core/common/SimpleHistoryManager.ts +3 -29
- package/front_end/core/common/StringOutputStream.ts +5 -5
- package/front_end/core/common/TextDictionary.ts +3 -29
- package/front_end/core/common/Throttler.ts +1 -1
- package/front_end/core/common/Trie.ts +1 -1
- package/front_end/core/common/Worker.ts +3 -29
- package/front_end/core/common/common.ts +1 -1
- package/front_end/core/dom_extension/DOMExtension.ts +1 -1
- package/front_end/core/dom_extension/dom_extension.ts +3 -29
- package/front_end/core/host/AidaClient.ts +3 -3
- package/front_end/core/host/GdpClient.ts +37 -0
- package/front_end/core/host/InspectorFrontendHost.ts +24 -41
- package/front_end/core/host/InspectorFrontendHostAPI.ts +3 -1
- package/front_end/core/host/Platform.ts +3 -29
- package/front_end/core/host/ResourceLoader.ts +3 -3
- package/front_end/core/host/UserMetrics.ts +3 -31
- package/front_end/core/host/host.ts +1 -1
- package/front_end/core/i18n/ByteUtilities.ts +1 -1
- package/front_end/core/i18n/DevToolsLocale.ts +1 -1
- package/front_end/core/i18n/NumberFormatter.ts +1 -1
- package/front_end/core/i18n/collect-ui-strings.js +1 -1
- package/front_end/core/i18n/generate-locales-js.js +1 -1
- package/front_end/core/i18n/i18n.ts +1 -1
- package/front_end/core/i18n/i18nImpl.ts +1 -1
- package/front_end/core/i18n/i18nTypes.ts +1 -1
- package/front_end/core/i18n/locales.d.ts +1 -1
- package/front_end/core/i18n/time-utilities.ts +1 -1
- package/front_end/core/platform/ArrayUtilities.ts +1 -1
- package/front_end/core/platform/Brand.ts +1 -1
- package/front_end/core/platform/Constructor.ts +1 -1
- package/front_end/core/platform/DOMUtilities.ts +1 -1
- package/front_end/core/platform/DateUtilities.ts +1 -1
- package/front_end/core/platform/DevToolsPath.ts +1 -1
- package/front_end/core/platform/KeyboardUtilities.ts +1 -1
- package/front_end/core/platform/MapUtilities.ts +1 -1
- package/front_end/core/platform/MimeType.ts +1 -1
- package/front_end/core/platform/NumberUtilities.ts +1 -1
- package/front_end/core/platform/StringUtilities.ts +1 -1
- package/front_end/core/platform/Timing.ts +1 -1
- package/front_end/core/platform/TypedArrayUtilities.ts +1 -1
- package/front_end/core/platform/TypescriptUtilities.ts +1 -1
- package/front_end/core/platform/UIString.ts +1 -1
- package/front_end/core/platform/UserVisibleError.ts +1 -1
- package/front_end/core/platform/platform.ts +3 -29
- package/front_end/core/protocol_client/InspectorBackend.ts +12 -38
- package/front_end/core/protocol_client/NodeURL.ts +1 -1
- package/front_end/core/protocol_client/protocol_client.ts +1 -1
- package/front_end/core/root/Runtime.ts +6 -3
- package/front_end/core/root/root.ts +1 -1
- package/front_end/core/sdk/AccessibilityModel.ts +49 -49
- package/front_end/core/sdk/AnimationModel.ts +79 -80
- package/front_end/core/sdk/AutofillModel.ts +1 -1
- package/front_end/core/sdk/CPUProfilerModel.ts +8 -34
- package/front_end/core/sdk/CPUThrottlingManager.ts +18 -18
- package/front_end/core/sdk/CSSContainerQuery.ts +1 -1
- package/front_end/core/sdk/CSSFontFace.ts +1 -1
- package/front_end/core/sdk/CSSLayer.ts +1 -1
- package/front_end/core/sdk/CSSMatchedStyles.ts +61 -55
- package/front_end/core/sdk/CSSMedia.ts +23 -23
- package/front_end/core/sdk/CSSMetadata.ts +1 -1
- package/front_end/core/sdk/CSSModel.ts +5 -5
- package/front_end/core/sdk/CSSProperty.ts +10 -10
- package/front_end/core/sdk/CSSPropertyParser.ts +2 -3
- package/front_end/core/sdk/CSSPropertyParserMatchers.ts +2 -3
- package/front_end/core/sdk/CSSQuery.ts +1 -1
- package/front_end/core/sdk/CSSRule.ts +4 -4
- package/front_end/core/sdk/CSSScope.ts +1 -1
- package/front_end/core/sdk/CSSStyleDeclaration.ts +28 -29
- package/front_end/core/sdk/CSSStyleSheetHeader.ts +14 -14
- package/front_end/core/sdk/CSSSupports.ts +1 -1
- package/front_end/core/sdk/CategorizedBreakpoint.ts +5 -5
- package/front_end/core/sdk/ChildTargetManager.ts +7 -7
- package/front_end/core/sdk/CompilerSourceMappingContentProvider.ts +7 -33
- package/front_end/core/sdk/Connections.ts +5 -3
- package/front_end/core/sdk/ConsoleModel.ts +27 -53
- package/front_end/core/sdk/ConsoleModelTypes.ts +1 -1
- package/front_end/core/sdk/Cookie.ts +17 -17
- package/front_end/core/sdk/CookieModel.ts +1 -1
- package/front_end/core/sdk/CookieParser.ts +9 -35
- package/front_end/core/sdk/DOMDebuggerModel.ts +89 -90
- package/front_end/core/sdk/DOMModel.ts +114 -114
- package/front_end/core/sdk/DebuggerModel.ts +103 -104
- package/front_end/core/sdk/EmulationModel.ts +7 -7
- package/front_end/core/sdk/EnhancedTracesParser.ts +1 -1
- package/front_end/core/sdk/EventBreakpointsModel.ts +6 -6
- package/front_end/core/sdk/FrameAssociated.ts +1 -1
- package/front_end/core/sdk/FrameManager.ts +1 -1
- package/front_end/core/sdk/HeapProfilerModel.ts +6 -6
- package/front_end/core/sdk/HttpReasonPhraseStrings.ts +1 -1
- package/front_end/core/sdk/IOModel.ts +1 -1
- package/front_end/core/sdk/IsolateManager.ts +27 -27
- package/front_end/core/sdk/IssuesModel.ts +1 -1
- package/front_end/core/sdk/LayerTreeBase.ts +30 -31
- package/front_end/core/sdk/LogModel.ts +1 -1
- package/front_end/core/sdk/NetworkManager.ts +48 -1
- package/front_end/core/sdk/NetworkRequest.ts +1 -1
- package/front_end/core/sdk/OverlayColorGenerator.ts +1 -1
- package/front_end/core/sdk/OverlayModel.ts +7 -7
- package/front_end/core/sdk/OverlayPersistentHighlighter.ts +1 -1
- package/front_end/core/sdk/PageLoad.ts +1 -1
- package/front_end/core/sdk/PageResourceLoader.ts +1 -1
- package/front_end/core/sdk/PaintProfiler.ts +3 -29
- package/front_end/core/sdk/PerformanceMetricsModel.ts +1 -1
- package/front_end/core/sdk/PreloadingModel.ts +1 -1
- package/front_end/core/sdk/RehydratingConnection.ts +2 -1
- package/front_end/core/sdk/RehydratingObject.ts +3 -1
- package/front_end/core/sdk/RemoteObject.ts +1 -1
- package/front_end/core/sdk/Resource.ts +44 -44
- package/front_end/core/sdk/ResourceTreeModel.ts +59 -62
- package/front_end/core/sdk/RuntimeModel.ts +13 -14
- package/front_end/core/sdk/SDKModel.ts +4 -4
- package/front_end/core/sdk/ScreenCaptureModel.ts +1 -1
- package/front_end/core/sdk/Script.ts +22 -18
- package/front_end/core/sdk/SecurityOriginManager.ts +15 -15
- package/front_end/core/sdk/ServerSentEvents.ts +1 -1
- package/front_end/core/sdk/ServerSentEventsProtocol.ts +1 -1
- package/front_end/core/sdk/ServerTiming.ts +3 -3
- package/front_end/core/sdk/ServiceWorkerCacheModel.ts +16 -16
- package/front_end/core/sdk/ServiceWorkerManager.ts +20 -25
- package/front_end/core/sdk/SourceMap.ts +11 -11
- package/front_end/core/sdk/SourceMapFunctionRanges.ts +1 -1
- package/front_end/core/sdk/SourceMapManager.ts +1 -1
- package/front_end/core/sdk/SourceMapScopeChainEntry.ts +1 -1
- package/front_end/core/sdk/SourceMapScopesInfo.ts +1 -1
- package/front_end/core/sdk/StorageBucketsModel.ts +3 -29
- package/front_end/core/sdk/StorageKeyManager.ts +13 -13
- package/front_end/core/sdk/Target.ts +34 -35
- package/front_end/core/sdk/TargetManager.ts +39 -21
- package/front_end/core/sdk/TraceObject.ts +1 -1
- package/front_end/core/sdk/WebAuthnModel.ts +1 -1
- package/front_end/core/sdk/sdk-meta.ts +1 -1
- package/front_end/core/sdk/sdk.ts +3 -1
- package/front_end/design_system_tokens.css +1 -1
- package/front_end/devtools_compatibility.js +1 -1
- package/front_end/emulated_devices/optimized/optimized_images.gni +1 -1
- package/front_end/entrypoint_template.html +1 -1
- package/front_end/entrypoints/device_mode_emulation_frame/device_mode_emulation_frame.ts +1 -1
- package/front_end/entrypoints/devtools_app/devtools_app.ts +1 -1
- package/front_end/entrypoints/formatter_worker/AcornTokenizer.ts +9 -9
- package/front_end/entrypoints/formatter_worker/CSSFormatter.ts +3 -29
- package/front_end/entrypoints/formatter_worker/CSSRuleParser.ts +1 -1
- package/front_end/entrypoints/formatter_worker/ESTreeWalker.ts +1 -1
- package/front_end/entrypoints/formatter_worker/FormattedContentBuilder.ts +1 -1
- package/front_end/entrypoints/formatter_worker/FormatterActions.ts +1 -1
- package/front_end/entrypoints/formatter_worker/FormatterWorker.ts +3 -29
- package/front_end/entrypoints/formatter_worker/HTMLFormatter.ts +8 -8
- package/front_end/entrypoints/formatter_worker/IdentityFormatter.ts +1 -1
- package/front_end/entrypoints/formatter_worker/JSONFormatter.ts +1 -1
- package/front_end/entrypoints/formatter_worker/JavaScriptFormatter.ts +3 -29
- package/front_end/entrypoints/formatter_worker/ScopeParser.ts +1 -1
- package/front_end/entrypoints/formatter_worker/Substitute.ts +1 -1
- package/front_end/entrypoints/formatter_worker/formatter_worker-entrypoint.ts +1 -1
- package/front_end/entrypoints/formatter_worker/formatter_worker.ts +1 -1
- package/front_end/entrypoints/heap_snapshot_worker/AllocationProfile.ts +10 -36
- package/front_end/entrypoints/heap_snapshot_worker/HeapSnapshot.ts +27 -53
- package/front_end/entrypoints/heap_snapshot_worker/HeapSnapshotLoader.ts +3 -29
- package/front_end/entrypoints/heap_snapshot_worker/HeapSnapshotWorkerDispatcher.ts +3 -29
- package/front_end/entrypoints/heap_snapshot_worker/heap_snapshot_worker-entrypoint.ts +1 -1
- package/front_end/entrypoints/heap_snapshot_worker/heap_snapshot_worker.ts +1 -1
- package/front_end/entrypoints/inspector/inspector.ts +1 -1
- package/front_end/entrypoints/inspector_main/InspectorMain.ts +1 -1
- package/front_end/entrypoints/inspector_main/OutermostTargetSelector.ts +1 -1
- package/front_end/entrypoints/inspector_main/RenderingOptions.ts +3 -29
- package/front_end/entrypoints/inspector_main/inspector_main-meta.ts +1 -1
- package/front_end/entrypoints/inspector_main/inspector_main.ts +1 -1
- package/front_end/entrypoints/inspector_main/nodeIcon.css +1 -1
- package/front_end/entrypoints/inspector_main/outermostTargetSelector.css +1 -1
- package/front_end/entrypoints/inspector_main/renderingOptions.css +1 -1
- package/front_end/entrypoints/js_app/js_app.ts +1 -1
- package/front_end/entrypoints/lighthouse_worker/LighthouseWorkerService.ts +1 -1
- package/front_end/entrypoints/lighthouse_worker/lighthouse_worker.ts +1 -1
- package/front_end/entrypoints/main/ExecutionContextSelector.ts +1 -1
- package/front_end/entrypoints/main/GlobalAiButton.ts +4 -4
- package/front_end/entrypoints/main/MainImpl.ts +17 -15
- package/front_end/entrypoints/main/SimpleApp.ts +1 -1
- package/front_end/entrypoints/main/globalAiButton.css +1 -1
- package/front_end/entrypoints/main/main-meta.ts +2 -3
- package/front_end/entrypoints/main/main.ts +1 -1
- package/front_end/entrypoints/ndb_app/ndb_app.ts +1 -1
- package/front_end/entrypoints/node_app/NodeConnectionsPanel.ts +1 -1
- package/front_end/entrypoints/node_app/NodeMain.ts +1 -1
- package/front_end/entrypoints/node_app/nodeConnectionsPanel.css +1 -1
- package/front_end/entrypoints/node_app/node_app.ts +1 -1
- package/front_end/entrypoints/rehydrated_devtools_app/rehydrated_devtools_app.ts +1 -1
- package/front_end/entrypoints/shell/shell.ts +1 -1
- package/front_end/entrypoints/visibility.gni +1 -1
- package/front_end/entrypoints/wasmparser_worker/WasmParserWorker.ts +3 -29
- package/front_end/entrypoints/wasmparser_worker/wasmparser_worker-entrypoint.ts +1 -1
- package/front_end/entrypoints/wasmparser_worker/wasmparser_worker.ts +1 -1
- package/front_end/entrypoints/worker_app/WorkerMain.ts +1 -1
- package/front_end/entrypoints/worker_app/worker_app.ts +1 -1
- package/front_end/generated/ARIAProperties.js +1 -1
- package/front_end/generated/Deprecation.ts +1 -1
- package/front_end/generated/InspectorBackendCommands.js +6 -5
- package/front_end/generated/SupportedCSSProperties.js +21 -1
- package/front_end/generated/protocol-mapping.d.ts +5 -1
- package/front_end/generated/protocol-proxy-api.d.ts +6 -1
- package/front_end/generated/protocol.ts +42 -4
- package/front_end/global_typings/global_defs.d.ts +1 -1
- package/front_end/legacy/legacy-defs.d.ts +1 -1
- package/front_end/models/ai_assistance/AgentProject.ts +1 -1
- package/front_end/models/ai_assistance/AiHistoryStorage.ts +1 -1
- package/front_end/models/ai_assistance/AiUtils.ts +1 -1
- package/front_end/models/ai_assistance/ChangeManager.ts +1 -1
- package/front_end/models/ai_assistance/ConversationHandler.ts +1 -1
- package/front_end/models/ai_assistance/EvaluateAction.ts +1 -1
- package/front_end/models/ai_assistance/ExtensionScope.ts +1 -1
- package/front_end/models/ai_assistance/agents/AiAgent.ts +1 -1
- package/front_end/models/ai_assistance/agents/FileAgent.ts +1 -1
- package/front_end/models/ai_assistance/agents/NetworkAgent.ts +1 -1
- package/front_end/models/ai_assistance/agents/PatchAgent.ts +1 -1
- package/front_end/models/ai_assistance/agents/PerformanceAgent.ts +49 -186
- package/front_end/models/ai_assistance/agents/PerformanceAnnotationsAgent.ts +71 -2
- package/front_end/models/ai_assistance/agents/StylingAgent.ts +1 -1
- package/front_end/models/ai_assistance/ai_assistance.ts +1 -1
- package/front_end/models/ai_assistance/data_formatters/FileFormatter.ts +1 -1
- package/front_end/models/ai_assistance/data_formatters/NetworkRequestFormatter.ts +1 -1
- package/front_end/models/ai_assistance/data_formatters/PerformanceInsightFormatter.snapshot.txt +127 -0
- package/front_end/models/ai_assistance/data_formatters/PerformanceInsightFormatter.ts +150 -27
- package/front_end/models/ai_assistance/data_formatters/PerformanceTraceFormatter.snapshot.txt +6 -0
- package/front_end/models/ai_assistance/data_formatters/PerformanceTraceFormatter.ts +16 -20
- package/front_end/models/ai_assistance/debug.ts +1 -1
- package/front_end/models/ai_assistance/injected.ts +1 -1
- package/front_end/models/ai_code_completion/AiCodeCompletion.ts +1 -1
- package/front_end/models/ai_code_completion/ai_code_completion.ts +1 -1
- package/front_end/models/autofill_manager/AutofillManager.ts +1 -1
- package/front_end/models/autofill_manager/autofill_manager.ts +1 -1
- package/front_end/models/badges/AiExplorerBadge.ts +21 -0
- package/front_end/models/badges/Badge.ts +5 -6
- package/front_end/models/badges/CodeWhispererBadge.ts +21 -0
- package/front_end/models/badges/DOMDetectiveBadge.ts +4 -3
- package/front_end/models/badges/SpeedsterBadge.ts +6 -4
- package/front_end/models/badges/StarterBadge.ts +5 -3
- package/front_end/models/badges/UserBadges.ts +29 -3
- package/front_end/models/bindings/CSSWorkspaceBinding.ts +7 -7
- package/front_end/models/bindings/CompilerScriptMapping.ts +3 -29
- package/front_end/models/bindings/ContentProviderBasedProject.ts +3 -29
- package/front_end/models/bindings/DebuggerLanguagePlugins.ts +19 -19
- package/front_end/models/bindings/DebuggerWorkspaceBinding.ts +1 -1
- package/front_end/models/bindings/DefaultScriptMapping.ts +3 -29
- package/front_end/models/bindings/FileUtils.ts +18 -44
- package/front_end/models/bindings/LiveLocation.ts +1 -1
- package/front_end/models/bindings/NetworkProject.ts +3 -29
- package/front_end/models/bindings/PresentationConsoleMessageHelper.ts +3 -29
- package/front_end/models/bindings/ResourceMapping.ts +1 -1
- package/front_end/models/bindings/ResourceScriptMapping.ts +17 -43
- package/front_end/models/bindings/ResourceUtils.ts +1 -1
- package/front_end/models/bindings/SASSSourceMapping.ts +3 -29
- package/front_end/models/bindings/StylesSourceMapping.ts +3 -29
- package/front_end/models/bindings/TempFile.ts +3 -29
- package/front_end/models/bindings/bindings.ts +1 -1
- package/front_end/models/breakpoints/BreakpointManager.ts +3 -29
- package/front_end/models/breakpoints/breakpoints.ts +1 -1
- package/front_end/models/cpu_profile/CPUProfileDataModel.ts +1 -1
- package/front_end/models/cpu_profile/ProfileTreeModel.ts +1 -1
- package/front_end/models/cpu_profile/cpu_profile.ts +1 -1
- package/front_end/models/crux-manager/CrUXManager.ts +1 -1
- package/front_end/models/crux-manager/crux-manager.ts +1 -1
- package/front_end/models/elements/ElementUpdateRecord.ts +12 -12
- package/front_end/models/elements/elements.ts +1 -1
- package/front_end/models/emulation/DeviceModeModel.ts +124 -132
- package/front_end/models/emulation/EmulatedDevices.ts +23 -23
- package/front_end/models/emulation/emulation.ts +1 -1
- package/front_end/models/extensions/ExtensionAPI.ts +3 -29
- package/front_end/models/extensions/ExtensionEndpoint.ts +1 -1
- package/front_end/models/extensions/ExtensionPanel.ts +27 -53
- package/front_end/models/extensions/ExtensionServer.ts +7 -33
- package/front_end/models/extensions/ExtensionView.ts +3 -29
- package/front_end/models/extensions/HostUrlPattern.ts +1 -1
- package/front_end/models/extensions/LanguageExtensionEndpoint.ts +1 -1
- package/front_end/models/extensions/RecorderExtensionEndpoint.ts +1 -1
- package/front_end/models/extensions/RecorderPluginManager.ts +1 -1
- package/front_end/models/extensions/extensions.ts +1 -1
- package/front_end/models/formatter/FormatterWorkerPool.ts +1 -1
- package/front_end/models/formatter/ScriptFormatter.ts +3 -29
- package/front_end/models/formatter/formatter.ts +1 -1
- package/front_end/models/geometry/GeometryImpl.ts +3 -29
- package/front_end/models/geometry/geometry.ts +1 -1
- package/front_end/models/har/HARFormat.ts +1 -1
- package/front_end/models/har/Importer.ts +1 -1
- package/front_end/models/har/Log.ts +3 -29
- package/front_end/models/har/Writer.ts +1 -1
- package/front_end/models/har/har.ts +1 -1
- package/front_end/models/heap_snapshot_model/HeapSnapshotModel.ts +3 -29
- package/front_end/models/heap_snapshot_model/heap_snapshot_model.ts +1 -1
- package/front_end/models/issues_manager/AttributionReportingIssue.ts +1 -1
- package/front_end/models/issues_manager/BounceTrackingIssue.ts +1 -1
- package/front_end/models/issues_manager/CheckFormsIssuesTrigger.ts +1 -1
- package/front_end/models/issues_manager/ClientHintIssue.ts +1 -1
- package/front_end/models/issues_manager/ContentSecurityPolicyIssue.ts +1 -1
- package/front_end/models/issues_manager/ContrastCheckTrigger.ts +1 -1
- package/front_end/models/issues_manager/CookieDeprecationMetadataIssue.ts +1 -1
- package/front_end/models/issues_manager/CookieIssue.ts +1 -1
- package/front_end/models/issues_manager/CorsIssue.ts +1 -1
- package/front_end/models/issues_manager/CrossOriginEmbedderPolicyIssue.ts +1 -1
- package/front_end/models/issues_manager/DeprecationIssue.ts +1 -1
- package/front_end/models/issues_manager/ElementAccessibilityIssue.ts +1 -1
- package/front_end/models/issues_manager/FederatedAuthRequestIssue.ts +1 -1
- package/front_end/models/issues_manager/FederatedAuthUserInfoRequestIssue.ts +1 -1
- package/front_end/models/issues_manager/GenericIssue.ts +1 -1
- package/front_end/models/issues_manager/HeavyAdIssue.ts +1 -1
- package/front_end/models/issues_manager/Issue.ts +1 -1
- package/front_end/models/issues_manager/IssueResolver.ts +1 -1
- package/front_end/models/issues_manager/IssuesManager.ts +1 -1
- package/front_end/models/issues_manager/IssuesManagerEvents.ts +1 -1
- package/front_end/models/issues_manager/LowTextContrastIssue.ts +1 -1
- package/front_end/models/issues_manager/MarkdownIssueDescription.ts +1 -1
- package/front_end/models/issues_manager/MixedContentIssue.ts +1 -1
- package/front_end/models/issues_manager/PartitioningBlobURLIssue.ts +1 -1
- package/front_end/models/issues_manager/PropertyRuleIssue.ts +1 -1
- package/front_end/models/issues_manager/QuirksModeIssue.ts +1 -1
- package/front_end/models/issues_manager/RelatedIssue.ts +1 -1
- package/front_end/models/issues_manager/SRIMessageSignatureIssue.ts +1 -1
- package/front_end/models/issues_manager/SharedArrayBufferIssue.ts +1 -1
- package/front_end/models/issues_manager/SharedDictionaryIssue.ts +1 -1
- package/front_end/models/issues_manager/SourceFrameIssuesManager.ts +1 -1
- package/front_end/models/issues_manager/StylesheetLoadingIssue.ts +1 -1
- package/front_end/models/issues_manager/UnencodedDigestIssue.ts +1 -1
- package/front_end/models/issues_manager/UserReidentificationIssue.ts +1 -1
- package/front_end/models/issues_manager/issues_manager.ts +1 -1
- package/front_end/models/javascript_metadata/JavaScriptMetadata.ts +1 -1
- package/front_end/models/javascript_metadata/NativeFunctions.js +30 -13
- package/front_end/models/javascript_metadata/javascript_metadata.ts +1 -1
- package/front_end/models/live-metrics/LiveMetrics.ts +8 -2
- package/front_end/models/live-metrics/live-metrics.ts +1 -1
- package/front_end/models/live-metrics/web-vitals-injected/OnEachInteraction.ts +1 -1
- package/front_end/models/live-metrics/web-vitals-injected/OnEachLayoutShift.ts +1 -1
- package/front_end/models/live-metrics/web-vitals-injected/rollup.config.mjs +1 -1
- package/front_end/models/live-metrics/web-vitals-injected/spec/spec.ts +1 -1
- package/front_end/models/live-metrics/web-vitals-injected/web-vitals-injected.ts +1 -1
- package/front_end/models/logs/LogManager.ts +1 -1
- package/front_end/models/logs/NetworkLog.ts +3 -29
- package/front_end/models/logs/RequestResolver.ts +1 -1
- package/front_end/models/logs/logs-meta.ts +1 -1
- package/front_end/models/logs/logs.ts +1 -1
- package/front_end/models/network_time_calculator/Calculator.ts +1 -1
- package/front_end/models/network_time_calculator/NetworkTimeCalculator.ts +1 -1
- package/front_end/models/network_time_calculator/RequestTimeRanges.ts +1 -1
- package/front_end/models/network_time_calculator/network_time_calculator.ts +1 -1
- package/front_end/models/persistence/Automapping.ts +1 -1
- package/front_end/models/persistence/AutomaticFileSystemManager.ts +1 -1
- package/front_end/models/persistence/AutomaticFileSystemWorkspaceBinding.ts +1 -1
- package/front_end/models/persistence/EditFileSystemView.ts +3 -29
- package/front_end/models/persistence/FileSystemWorkspaceBinding.ts +3 -29
- package/front_end/models/persistence/IsolatedFileSystem.ts +21 -48
- package/front_end/models/persistence/IsolatedFileSystemManager.ts +16 -42
- package/front_end/models/persistence/NetworkPersistenceManager.ts +1 -1
- package/front_end/models/persistence/PersistenceActions.ts +1 -1
- package/front_end/models/persistence/PersistenceImpl.ts +1 -1
- package/front_end/models/persistence/PersistenceUtils.ts +1 -1
- package/front_end/models/persistence/PlatformFileSystem.ts +1 -1
- package/front_end/models/persistence/editFileSystemView.css +1 -1
- package/front_end/models/persistence/persistence-meta.ts +1 -22
- package/front_end/models/persistence/persistence.ts +1 -3
- package/front_end/models/project_settings/ProjectSettingsModel.ts +1 -1
- package/front_end/models/project_settings/project_settings.ts +1 -1
- package/front_end/models/source_map_scopes/NamesResolver.ts +1 -1
- package/front_end/models/source_map_scopes/ScopeChainModel.ts +1 -1
- package/front_end/models/source_map_scopes/ScopeTreeCache.ts +1 -1
- package/front_end/models/source_map_scopes/source_map_scopes.ts +1 -1
- package/front_end/models/stack_trace/StackTrace.ts +1 -1
- package/front_end/models/stack_trace/StackTraceImpl.ts +1 -1
- package/front_end/models/stack_trace/Trie.ts +1 -1
- package/front_end/models/stack_trace/stack_trace.ts +1 -1
- package/front_end/models/stack_trace/stack_trace_impl.ts +1 -1
- package/front_end/models/text_utils/CodeMirrorUtils.ts +3 -29
- package/front_end/models/text_utils/ContentData.ts +7 -2
- package/front_end/models/text_utils/ContentProvider.ts +3 -29
- package/front_end/models/text_utils/StaticContentProvider.ts +1 -1
- package/front_end/models/text_utils/StreamingContentData.ts +1 -1
- package/front_end/models/text_utils/Text.ts +1 -1
- package/front_end/models/text_utils/TextCursor.ts +1 -1
- package/front_end/models/text_utils/TextRange.ts +3 -29
- package/front_end/models/text_utils/TextUtils.ts +3 -29
- package/front_end/models/text_utils/WasmDisassembly.ts +1 -1
- package/front_end/models/text_utils/text_utils.ts +1 -1
- package/front_end/{panels/timeline/utils → models/trace}/EntityMapper.ts +31 -27
- package/front_end/models/trace/EventsSerializer.ts +6 -6
- package/front_end/models/trace/LanternComputationData.ts +11 -11
- package/front_end/models/trace/ModelImpl.ts +33 -42
- package/front_end/{panels/timeline/utils/EntryName.ts → models/trace/Name.ts} +24 -22
- package/front_end/models/trace/Processor.ts +29 -31
- package/front_end/{panels/timeline/utils/EntryStyles.ts → models/trace/Styles.ts} +160 -185
- package/front_end/models/trace/extras/FilmStrip.ts +7 -7
- package/front_end/models/trace/extras/MainThreadActivity.ts +1 -1
- package/front_end/models/trace/extras/ScriptDuplication.ts +1 -1
- package/front_end/models/trace/extras/StackTraceForEvent.ts +23 -26
- package/front_end/models/trace/extras/ThirdParties.ts +17 -18
- package/front_end/models/trace/extras/TraceFilter.ts +2 -2
- package/front_end/models/trace/extras/TraceTree.ts +1 -1
- package/front_end/models/trace/extras/extras.ts +1 -1
- package/front_end/models/trace/handlers/AnimationFramesHandler.ts +1 -1
- package/front_end/models/trace/handlers/AnimationHandler.ts +1 -1
- package/front_end/models/trace/handlers/AsyncJSCallsHandler.ts +1 -1
- package/front_end/models/trace/handlers/AuctionWorkletsHandler.ts +1 -1
- package/front_end/models/trace/handlers/DOMStatsHandler.ts +1 -1
- package/front_end/models/trace/handlers/ExtensionTraceDataHandler.ts +1 -1
- package/front_end/models/trace/handlers/FlowsHandler.ts +1 -1
- package/front_end/models/trace/handlers/FramesHandler.ts +1 -1
- package/front_end/models/trace/handlers/GPUHandler.ts +1 -1
- package/front_end/models/trace/handlers/ImagePaintingHandler.ts +1 -1
- package/front_end/models/trace/handlers/InitiatorsHandler.ts +17 -24
- package/front_end/models/trace/handlers/InvalidationsHandler.ts +81 -48
- package/front_end/models/trace/handlers/LargestImagePaintHandler.ts +1 -1
- package/front_end/models/trace/handlers/LargestTextPaintHandler.ts +1 -1
- package/front_end/models/trace/handlers/LayerTreeHandler.ts +1 -1
- package/front_end/models/trace/handlers/LayoutShiftsHandler.ts +1 -1
- package/front_end/models/trace/handlers/MemoryHandler.ts +1 -1
- package/front_end/models/trace/handlers/MetaHandler.ts +1 -1
- package/front_end/models/trace/handlers/ModelHandlers.ts +1 -1
- package/front_end/models/trace/handlers/NetworkRequestsHandler.ts +2 -2
- package/front_end/models/trace/handlers/PageFramesHandler.ts +1 -1
- package/front_end/models/trace/handlers/PageLoadMetricsHandler.ts +1 -1
- package/front_end/models/trace/handlers/RendererHandler.ts +5 -5
- package/front_end/models/trace/handlers/SamplesHandler.ts +1 -1
- package/front_end/models/trace/handlers/ScreenshotsHandler.ts +1 -1
- package/front_end/models/trace/handlers/ScriptsHandler.ts +1 -1
- package/front_end/models/trace/handlers/SelectorStatsHandler.ts +13 -13
- package/front_end/models/trace/handlers/Threads.ts +11 -11
- package/front_end/models/trace/handlers/UserInteractionsHandler.ts +1 -1
- package/front_end/models/trace/handlers/UserTimingsHandler.ts +1 -1
- package/front_end/models/trace/handlers/WarningsHandler.ts +2 -2
- package/front_end/models/trace/handlers/WorkersHandler.ts +1 -1
- package/front_end/models/trace/handlers/handlers.ts +1 -1
- package/front_end/models/trace/handlers/helpers.ts +10 -10
- package/front_end/models/trace/handlers/types.ts +4 -4
- package/front_end/models/trace/helpers/Extensions.ts +1 -1
- package/front_end/models/trace/helpers/Network.ts +1 -1
- package/front_end/models/trace/helpers/SamplesIntegrator.ts +1 -1
- package/front_end/models/trace/helpers/SyntheticEvents.ts +1 -1
- package/front_end/models/trace/helpers/Timing.ts +1 -1
- package/front_end/models/trace/helpers/Trace.ts +51 -22
- package/front_end/models/trace/helpers/TreeHelpers.ts +1 -1
- package/front_end/models/trace/helpers/helpers.ts +1 -1
- package/front_end/models/trace/insights/CLSCulprits.ts +13 -15
- package/front_end/models/trace/insights/Cache.ts +9 -5
- package/front_end/models/trace/insights/Common.ts +1 -1
- package/front_end/models/trace/insights/DOMSize.ts +13 -10
- package/front_end/models/trace/insights/DocumentLatency.ts +3 -3
- package/front_end/models/trace/insights/DuplicatedJavaScript.ts +4 -4
- package/front_end/models/trace/insights/FontDisplay.ts +4 -5
- package/front_end/models/trace/insights/ForcedReflow.ts +6 -6
- package/front_end/models/trace/insights/INPBreakdown.ts +3 -3
- package/front_end/models/trace/insights/ImageDelivery.ts +12 -12
- package/front_end/models/trace/insights/LCPBreakdown.ts +5 -5
- package/front_end/models/trace/insights/LCPDiscovery.ts +5 -5
- package/front_end/models/trace/insights/LegacyJavaScript.ts +3 -3
- package/front_end/models/trace/insights/Models.ts +1 -1
- package/front_end/models/trace/insights/ModernHTTP.ts +5 -6
- package/front_end/models/trace/insights/NetworkDependencyTree.ts +14 -14
- package/front_end/models/trace/insights/RenderBlocking.ts +10 -11
- package/front_end/models/trace/insights/SlowCSSSelector.ts +5 -5
- package/front_end/models/trace/insights/Statistics.ts +1 -1
- package/front_end/models/trace/insights/ThirdParties.ts +5 -6
- package/front_end/models/trace/insights/Viewport.ts +9 -6
- package/front_end/models/trace/insights/insights.ts +3 -1
- package/front_end/models/trace/insights/types.ts +2 -1
- package/front_end/models/trace/lantern/core/LanternError.ts +1 -1
- package/front_end/models/trace/lantern/core/NetworkAnalyzer.ts +1 -1
- package/front_end/models/trace/lantern/core/core.ts +1 -1
- package/front_end/models/trace/lantern/graph/BaseNode.ts +1 -1
- package/front_end/models/trace/lantern/graph/CPUNode.ts +1 -1
- package/front_end/models/trace/lantern/graph/NetworkNode.ts +1 -1
- package/front_end/models/trace/lantern/graph/PageDependencyGraph.ts +1 -1
- package/front_end/models/trace/lantern/graph/graph.ts +1 -1
- package/front_end/models/trace/lantern/lantern.ts +1 -1
- package/front_end/models/trace/lantern/metrics/FirstContentfulPaint.ts +1 -1
- package/front_end/models/trace/lantern/metrics/Interactive.ts +1 -1
- package/front_end/models/trace/lantern/metrics/LargestContentfulPaint.ts +1 -1
- package/front_end/models/trace/lantern/metrics/MaxPotentialFID.ts +1 -1
- package/front_end/models/trace/lantern/metrics/Metric.ts +1 -1
- package/front_end/models/trace/lantern/metrics/SpeedIndex.ts +1 -1
- package/front_end/models/trace/lantern/metrics/TBTUtils.ts +1 -1
- package/front_end/models/trace/lantern/metrics/TotalBlockingTime.ts +1 -1
- package/front_end/models/trace/lantern/metrics/metrics.ts +1 -1
- package/front_end/models/trace/lantern/simulation/ConnectionPool.ts +1 -1
- package/front_end/models/trace/lantern/simulation/Constants.ts +1 -1
- package/front_end/models/trace/lantern/simulation/DNSCache.ts +1 -1
- package/front_end/models/trace/lantern/simulation/SimulationTimingMap.ts +1 -1
- package/front_end/models/trace/lantern/simulation/Simulator.ts +1 -1
- package/front_end/models/trace/lantern/simulation/TCPConnection.ts +1 -1
- package/front_end/models/trace/lantern/simulation/simulation.ts +1 -1
- package/front_end/models/trace/lantern/testing/MetricTestUtils.ts +11 -11
- package/front_end/models/trace/lantern/testing/testing.ts +1 -1
- package/front_end/models/trace/lantern/types/Lantern.ts +1 -1
- package/front_end/models/trace/lantern/types/types.ts +1 -1
- package/front_end/models/trace/trace.ts +7 -1
- package/front_end/models/trace/types/Configuration.ts +1 -1
- package/front_end/models/trace/types/Extensions.ts +1 -1
- package/front_end/models/trace/types/File.ts +1 -1
- package/front_end/models/trace/types/Overlays.ts +1 -1
- package/front_end/models/trace/types/Timing.ts +1 -1
- package/front_end/models/trace/types/TraceEvents.ts +9 -6
- package/front_end/models/trace/types/types.ts +1 -1
- package/front_end/{panels/timeline/utils → models/trace_source_maps_resolver}/SourceMapsResolver.ts +19 -21
- package/front_end/models/trace_source_maps_resolver/trace_source_maps_resolver.ts +5 -0
- package/front_end/models/visibility.gni +1 -1
- package/front_end/models/workspace/FileManager.ts +3 -29
- package/front_end/models/workspace/IgnoreListManager.ts +1 -1
- package/front_end/models/workspace/SearchConfig.ts +1 -1
- package/front_end/models/workspace/UISourceCode.ts +3 -29
- package/front_end/models/workspace/WorkspaceImpl.ts +3 -29
- package/front_end/models/workspace/workspace.ts +1 -1
- package/front_end/models/workspace_diff/WorkspaceDiff.ts +1 -1
- package/front_end/models/workspace_diff/workspace_diff.ts +1 -1
- package/front_end/panels/accessibility/ARIAAttributesView.ts +1 -1
- package/front_end/panels/accessibility/ARIAMetadata.ts +1 -1
- package/front_end/panels/accessibility/AXBreadcrumbsPane.ts +53 -53
- package/front_end/panels/accessibility/AccessibilityNodeView.ts +1 -1
- package/front_end/panels/accessibility/AccessibilitySidebarView.ts +9 -9
- package/front_end/panels/accessibility/AccessibilityStrings.ts +1 -1
- package/front_end/panels/accessibility/AccessibilitySubPane.ts +1 -1
- package/front_end/panels/accessibility/SourceOrderView.ts +1 -1
- package/front_end/panels/accessibility/accessibility-meta.ts +1 -1
- package/front_end/panels/accessibility/accessibility.ts +1 -1
- package/front_end/panels/accessibility/accessibilityNode.css +1 -1
- package/front_end/panels/accessibility/accessibilityProperties.css +1 -1
- package/front_end/panels/accessibility/axBreadcrumbs.css +1 -1
- package/front_end/panels/ai_assistance/AiAssistancePanel.ts +1 -1
- package/front_end/panels/ai_assistance/PatchWidget.ts +1 -1
- package/front_end/panels/ai_assistance/SelectWorkspaceDialog.ts +1 -1
- package/front_end/panels/ai_assistance/aiAssistancePanel.css +1 -1
- package/front_end/panels/ai_assistance/ai_assistance-meta.ts +1 -1
- package/front_end/panels/ai_assistance/ai_assistance.ts +1 -1
- package/front_end/panels/ai_assistance/components/ChatView.ts +1 -1
- package/front_end/panels/ai_assistance/components/ExploreWidget.ts +1 -1
- package/front_end/panels/ai_assistance/components/MarkdownRendererWithCodeBlock.ts +1 -1
- package/front_end/panels/ai_assistance/components/UserActionRow.ts +1 -1
- package/front_end/panels/ai_assistance/components/chatView.css +1 -1
- package/front_end/panels/ai_assistance/components/exploreWidget.css +1 -1
- package/front_end/panels/ai_assistance/components/userActionRow.css +1 -1
- package/front_end/panels/ai_assistance/selectWorkspaceDialog.css +1 -1
- package/front_end/panels/animation/AnimationGroupPreviewUI.ts +1 -1
- package/front_end/panels/animation/AnimationTimeline.ts +6 -6
- package/front_end/panels/animation/AnimationUI.ts +23 -24
- package/front_end/panels/animation/animation-meta.ts +1 -1
- package/front_end/panels/animation/animation.ts +1 -1
- package/front_end/panels/animation/animationTimeline.css +1 -1
- package/front_end/panels/application/AppManifestView.ts +1 -1
- package/front_end/panels/application/ApplicationPanelSidebar.ts +13 -13
- package/front_end/panels/application/ApplicationPanelTreeElement.ts +1 -1
- package/front_end/panels/application/BackForwardCacheTreeElement.ts +1 -1
- package/front_end/panels/application/BackgroundServiceModel.ts +1 -1
- package/front_end/panels/application/BackgroundServiceView.ts +1 -1
- package/front_end/panels/application/BounceTrackingMitigationsTreeElement.ts +1 -1
- package/front_end/panels/application/CookieItemsView.ts +1 -1
- package/front_end/panels/application/DOMStorageItemsView.ts +1 -1
- package/front_end/panels/application/DOMStorageModel.ts +24 -24
- package/front_end/panels/application/ExtensionStorageItemsView.ts +1 -1
- package/front_end/panels/application/ExtensionStorageModel.ts +32 -32
- package/front_end/panels/application/IndexedDBModel.ts +8 -31
- package/front_end/panels/application/IndexedDBViews.ts +3 -29
- package/front_end/panels/application/InterestGroupStorageModel.ts +3 -29
- package/front_end/panels/application/InterestGroupStorageView.ts +1 -1
- package/front_end/panels/application/InterestGroupTreeElement.ts +1 -1
- package/front_end/panels/application/KeyValueStorageItemsView.ts +1 -1
- package/front_end/panels/application/OpenedWindowDetailsView.ts +1 -1
- package/front_end/panels/application/PreloadingTreeElement.ts +9 -9
- package/front_end/panels/application/ReportingApiTreeElement.ts +1 -1
- package/front_end/panels/application/ReportingApiView.ts +1 -1
- package/front_end/panels/application/ResourcesPanel.ts +1 -1
- package/front_end/panels/application/ServiceWorkerCacheTreeElement.ts +1 -1
- package/front_end/panels/application/ServiceWorkerCacheViews.ts +1 -1
- package/front_end/panels/application/ServiceWorkerUpdateCycleView.ts +1 -1
- package/front_end/panels/application/ServiceWorkersView.ts +1 -54
- package/front_end/panels/application/SharedStorageEventsView.ts +1 -1
- package/front_end/panels/application/SharedStorageItemsView.ts +1 -1
- package/front_end/panels/application/SharedStorageListTreeElement.ts +1 -1
- package/front_end/panels/application/SharedStorageModel.ts +1 -1
- package/front_end/panels/application/SharedStorageTreeElement.ts +1 -1
- package/front_end/panels/application/StorageBucketsTreeElement.ts +1 -1
- package/front_end/panels/application/StorageItemsToolbar.ts +1 -1
- package/front_end/panels/application/StorageView.ts +1 -1
- package/front_end/panels/application/TrustTokensTreeElement.ts +1 -1
- package/front_end/panels/application/appManifestView.css +1 -1
- package/front_end/panels/application/application-meta.ts +1 -1
- package/front_end/panels/application/application.ts +1 -1
- package/front_end/panels/application/backgroundServiceView.css +1 -1
- package/front_end/panels/application/components/BackForwardCacheStrings.ts +1 -1
- package/front_end/panels/application/components/BackForwardCacheView.ts +1 -1
- package/front_end/panels/application/components/BounceTrackingMitigationsView.ts +1 -1
- package/front_end/panels/application/components/EndpointsGrid.ts +1 -1
- package/front_end/panels/application/components/FrameDetailsView.ts +1 -1
- package/front_end/panels/application/components/InterestGroupAccessGrid.ts +1 -1
- package/front_end/panels/application/components/OriginTrialTreeView.ts +1 -1
- package/front_end/panels/application/components/PermissionsPolicySection.ts +1 -1
- package/front_end/panels/application/components/ProtocolHandlersView.ts +1 -1
- package/front_end/panels/application/components/ReportsGrid.ts +1 -1
- package/front_end/panels/application/components/ServiceWorkerRouterView.ts +1 -1
- package/front_end/panels/application/components/SharedStorageAccessGrid.ts +1 -1
- package/front_end/panels/application/components/SharedStorageMetadataView.ts +1 -1
- package/front_end/panels/application/components/StackTrace.ts +1 -1
- package/front_end/panels/application/components/StorageMetadataView.ts +1 -1
- package/front_end/panels/application/components/TrustTokensView.ts +1 -1
- package/front_end/panels/application/components/backForwardCacheView.css +1 -1
- package/front_end/panels/application/components/badge.css +1 -1
- package/front_end/panels/application/components/bounceTrackingMitigationsView.css +1 -1
- package/front_end/panels/application/components/components.ts +1 -1
- package/front_end/panels/application/components/frameDetailsReportView.css +1 -1
- package/front_end/panels/application/components/interestGroupAccessGrid.css +1 -1
- package/front_end/panels/application/components/originTrialTokenRows.css +1 -1
- package/front_end/panels/application/components/originTrialTreeView.css +1 -1
- package/front_end/panels/application/components/permissionsPolicySection.css +1 -1
- package/front_end/panels/application/components/protocolHandlersView.css +1 -1
- package/front_end/panels/application/components/reportingApiGrid.css +1 -1
- package/front_end/panels/application/components/serviceWorkerRouterView.css +1 -1
- package/front_end/panels/application/components/sharedStorageAccessGrid.css +1 -1
- package/front_end/panels/application/components/sharedStorageMetadataView.css +1 -1
- package/front_end/panels/application/components/stackTraceLinkButton.css +1 -1
- package/front_end/panels/application/components/stackTraceRow.css +1 -1
- package/front_end/panels/application/components/trustTokensView.css +1 -1
- package/front_end/panels/application/cookieItemsView.css +1 -1
- package/front_end/panels/application/indexedDBViews.css +3 -27
- package/front_end/panels/application/interestGroupStorageView.css +1 -1
- package/front_end/panels/application/openedWindowDetailsView.css +1 -1
- package/front_end/panels/application/preloading/PreloadingView.ts +1 -1
- package/front_end/panels/application/preloading/components/MismatchedPreloadingGrid.ts +1 -1
- package/front_end/panels/application/preloading/components/PreloadingDetailsReportView.ts +1 -1
- package/front_end/panels/application/preloading/components/PreloadingDisabledInfobar.ts +3 -3
- package/front_end/panels/application/preloading/components/PreloadingGrid.ts +1 -1
- package/front_end/panels/application/preloading/components/PreloadingMismatchedHeadersGrid.ts +1 -1
- package/front_end/panels/application/preloading/components/PreloadingString.ts +1 -1
- package/front_end/panels/application/preloading/components/RuleSetDetailsView.css +1 -1
- package/front_end/panels/application/preloading/components/RuleSetDetailsView.ts +1 -1
- package/front_end/panels/application/preloading/components/RuleSetGrid.ts +1 -1
- package/front_end/panels/application/preloading/components/UsedPreloadingView.ts +3 -3
- package/front_end/panels/application/preloading/components/components.ts +1 -1
- package/front_end/panels/application/preloading/components/preloadingDetailsReportView.css +1 -1
- package/front_end/panels/application/preloading/components/preloadingDisabledInfobar.css +1 -1
- package/front_end/panels/application/preloading/components/preloadingGrid.css +1 -1
- package/front_end/panels/application/preloading/components/ruleSetGrid.css +1 -1
- package/front_end/panels/application/preloading/components/usedPreloadingView.css +1 -1
- package/front_end/panels/application/preloading/helper/PreloadingForward.ts +1 -1
- package/front_end/panels/application/preloading/helper/helper.ts +1 -1
- package/front_end/panels/application/preloading/preloadingView.css +1 -1
- package/front_end/panels/application/preloading/preloadingViewDropDown.css +1 -1
- package/front_end/panels/application/resourcesSidebar.css +1 -1
- package/front_end/panels/application/serviceWorkerCacheViews.css +1 -1
- package/front_end/panels/application/serviceWorkerUpdateCycleView.css +1 -1
- package/front_end/panels/application/serviceWorkersView.css +1 -1
- package/front_end/panels/application/sharedStorageEventsView.css +1 -1
- package/front_end/panels/application/storageView.css +1 -1
- package/front_end/panels/autofill/AutofillView.ts +1 -1
- package/front_end/panels/autofill/autofill-meta.ts +1 -1
- package/front_end/panels/autofill/autofill.ts +1 -1
- package/front_end/panels/autofill/autofillView.css +1 -1
- package/front_end/panels/browser_debugger/CSPViolationBreakpointsSidebarPane.ts +1 -1
- package/front_end/panels/browser_debugger/CategorizedBreakpointsSidebarPane.ts +1 -1
- package/front_end/panels/browser_debugger/DOMBreakpointsSidebarPane.ts +3 -29
- package/front_end/panels/browser_debugger/EventListenerBreakpointsSidebarPane.ts +1 -1
- package/front_end/panels/browser_debugger/ObjectEventListenersSidebarPane.ts +1 -1
- package/front_end/panels/browser_debugger/XHRBreakpointsSidebarPane.ts +1 -1
- package/front_end/panels/browser_debugger/browser_debugger-meta.ts +1 -1
- package/front_end/panels/browser_debugger/browser_debugger.ts +1 -1
- package/front_end/panels/browser_debugger/categorizedBreakpointsSidebarPane.css +1 -1
- package/front_end/panels/browser_debugger/domBreakpointsSidebarPane.css +1 -1
- package/front_end/panels/browser_debugger/xhrBreakpointsSidebarPane.css +1 -1
- package/front_end/panels/changes/ChangesSidebar.ts +1 -1
- package/front_end/panels/changes/ChangesView.ts +1 -1
- package/front_end/panels/changes/CombinedDiffView.ts +1 -1
- package/front_end/panels/changes/changes-meta.ts +1 -1
- package/front_end/panels/changes/changes.ts +1 -1
- package/front_end/panels/changes/changesSidebar.css +1 -1
- package/front_end/panels/changes/changesView.css +1 -1
- package/front_end/panels/changes/combinedDiffView.css +1 -1
- package/front_end/panels/common/AiCodeCompletionDisclaimer.ts +1 -1
- package/front_end/panels/common/AiCodeCompletionSummaryToolbar.ts +1 -1
- package/front_end/panels/common/AiCodeCompletionTeaser.ts +1 -1
- package/front_end/panels/common/BadgeNotification.ts +54 -7
- package/front_end/panels/common/FreDialog.ts +1 -1
- package/front_end/panels/common/GdpSignUpDialog.ts +8 -2
- package/front_end/panels/common/aiCodeCompletionDisclaimer.css +1 -1
- package/front_end/panels/common/aiCodeCompletionSummaryToolbar.css +1 -1
- package/front_end/panels/common/aiCodeCompletionTeaser.css +1 -1
- package/front_end/panels/common/badgeNotification.css +27 -12
- package/front_end/panels/common/common.css +1 -1
- package/front_end/panels/common/common.ts +2 -2
- package/front_end/panels/common/freDialog.css +1 -1
- package/front_end/panels/common/gdpSignUpDialog.css +1 -1
- package/front_end/panels/console/ConsoleContextSelector.ts +10 -10
- package/front_end/panels/console/ConsoleFilter.ts +1 -1
- package/front_end/panels/console/ConsoleFormat.ts +5 -2
- package/front_end/panels/console/ConsolePanel.ts +1 -1
- package/front_end/panels/console/ConsolePinPane.ts +1 -1
- package/front_end/panels/console/ConsolePrompt.ts +11 -7
- package/front_end/panels/console/ConsoleSidebar.ts +1 -1
- package/front_end/panels/console/ConsoleView.ts +14 -14
- package/front_end/panels/console/ConsoleViewMessage.ts +1 -1
- package/front_end/panels/console/ConsoleViewport.ts +32 -58
- package/front_end/panels/console/ErrorStackParser.ts +1 -1
- package/front_end/panels/console/console-meta.ts +1 -1
- package/front_end/panels/console/console.ts +1 -1
- package/front_end/panels/console/consoleContextSelector.css +1 -1
- package/front_end/panels/console/consolePinPane.css +1 -1
- package/front_end/panels/console/consolePrompt.css +1 -1
- package/front_end/panels/console/consoleSidebar.css +1 -1
- package/front_end/panels/console_counters/WarningErrorCounter.ts +1 -1
- package/front_end/panels/console_counters/console_counters-meta.ts +1 -1
- package/front_end/panels/console_counters/console_counters.ts +1 -1
- package/front_end/panels/coverage/CoverageDecorationManager.ts +1 -1
- package/front_end/panels/coverage/CoverageListView.ts +1 -1
- package/front_end/panels/coverage/CoverageModel.ts +23 -23
- package/front_end/panels/coverage/CoverageView.ts +1 -1
- package/front_end/panels/coverage/coverage-meta.ts +1 -1
- package/front_end/panels/coverage/coverage.ts +1 -1
- package/front_end/panels/coverage/coverageListView.css +1 -1
- package/front_end/panels/coverage/coverageView.css +1 -1
- package/front_end/panels/css_overview/CSSOverviewCompletedView.ts +1 -1
- package/front_end/panels/css_overview/CSSOverviewModel.ts +1 -1
- package/front_end/panels/css_overview/CSSOverviewPanel.ts +1 -1
- package/front_end/panels/css_overview/CSSOverviewProcessingView.ts +1 -1
- package/front_end/panels/css_overview/CSSOverviewSidebarPanel.ts +1 -1
- package/front_end/panels/css_overview/CSSOverviewStartView.ts +1 -1
- package/front_end/panels/css_overview/CSSOverviewUnusedDeclarations.ts +1 -1
- package/front_end/panels/css_overview/cssOverviewCompletedView.css +1 -1
- package/front_end/panels/css_overview/cssOverviewProcessingView.css +1 -1
- package/front_end/panels/css_overview/cssOverviewSidebarPanel.css +1 -1
- package/front_end/panels/css_overview/cssOverviewStartView.css +1 -1
- package/front_end/panels/css_overview/css_overview-meta.ts +1 -1
- package/front_end/panels/css_overview/css_overview.ts +1 -1
- package/front_end/panels/developer_resources/DeveloperResourcesListView.ts +1 -1
- package/front_end/panels/developer_resources/DeveloperResourcesView.ts +1 -1
- package/front_end/panels/developer_resources/developerResourcesListView.css +1 -1
- package/front_end/panels/developer_resources/developerResourcesView.css +1 -1
- package/front_end/panels/developer_resources/developer_resources-meta.ts +1 -1
- package/front_end/panels/developer_resources/developer_resources.ts +1 -1
- package/front_end/panels/elements/AccessibilityTreeUtils.ts +1 -1
- package/front_end/panels/elements/AccessibilityTreeView.ts +1 -1
- package/front_end/panels/elements/CSSRuleValidator.ts +1 -1
- package/front_end/panels/elements/CSSRuleValidatorHelper.ts +1 -1
- package/front_end/panels/elements/CSSValueTraceView.ts +1 -1
- package/front_end/panels/elements/ClassesPaneWidget.ts +2 -2
- package/front_end/panels/elements/ColorSwatchPopoverIcon.ts +1 -1
- package/front_end/panels/elements/ComputedStyleModel.ts +18 -19
- package/front_end/panels/elements/ComputedStyleWidget.ts +1 -1
- package/front_end/panels/elements/DOMLinkifier.ts +1 -1
- package/front_end/panels/elements/DOMPath.ts +3 -3
- package/front_end/panels/elements/ElementIssueUtils.ts +1 -1
- package/front_end/panels/elements/ElementStatePaneWidget.ts +1 -1
- package/front_end/panels/elements/ElementsPanel.ts +14 -14
- package/front_end/panels/elements/ElementsSidebarPane.ts +1 -1
- package/front_end/panels/elements/ElementsTreeElement.ts +19 -19
- package/front_end/panels/elements/ElementsTreeOutline.ts +42 -49
- package/front_end/panels/elements/ElementsTreeOutlineRenderer.ts +1 -1
- package/front_end/panels/elements/EventListenersWidget.ts +1 -1
- package/front_end/panels/elements/ImagePreviewPopover.ts +1 -1
- package/front_end/panels/elements/InspectElementModeController.ts +3 -29
- package/front_end/panels/elements/LayersWidget.ts +1 -1
- package/front_end/panels/elements/LayoutPane.ts +1 -1
- package/front_end/panels/elements/MarkerDecorator.ts +1 -1
- package/front_end/panels/elements/MetricsSidebarPane.ts +1 -1
- package/front_end/panels/elements/NodeStackTraceWidget.ts +1 -1
- package/front_end/panels/elements/PlatformFontsWidget.ts +3 -29
- package/front_end/panels/elements/PropertiesWidget.ts +1 -1
- package/front_end/panels/elements/PropertyNameCategories.ts +1 -1
- package/front_end/panels/elements/PropertyRenderer.ts +1 -1
- package/front_end/panels/elements/ShortcutTreeElement.ts +5 -5
- package/front_end/panels/elements/StyleEditorWidget.ts +1 -1
- package/front_end/panels/elements/StylePropertiesSection.ts +5 -5
- package/front_end/panels/elements/StylePropertyHighlighter.ts +1 -1
- package/front_end/panels/elements/StylePropertyTreeElement.ts +50 -51
- package/front_end/panels/elements/StylePropertyUtils.ts +1 -1
- package/front_end/panels/elements/StylesSidebarPane.ts +20 -20
- package/front_end/panels/elements/TopLayerContainer.ts +1 -1
- package/front_end/panels/elements/WebCustomData.ts +1 -1
- package/front_end/panels/elements/accessibilityTreeView.css +1 -1
- package/front_end/panels/elements/classesPaneWidget.css +1 -1
- package/front_end/panels/elements/components/AccessibilityTreeNode.ts +1 -1
- package/front_end/panels/elements/components/AdornerManager.ts +1 -1
- package/front_end/panels/elements/components/CSSHintDetailsView.ts +1 -1
- package/front_end/panels/elements/components/CSSPropertyDocsView.ts +1 -1
- package/front_end/panels/elements/components/CSSPropertyIconResolver.ts +1 -1
- package/front_end/panels/elements/components/CSSQuery.ts +1 -1
- package/front_end/panels/elements/components/CSSVariableValueView.ts +1 -1
- package/front_end/panels/elements/components/ComputedStyleProperty.ts +1 -1
- package/front_end/panels/elements/components/ComputedStyleTrace.ts +1 -1
- package/front_end/panels/elements/components/ElementsBreadcrumbs.ts +1 -1
- package/front_end/panels/elements/components/ElementsBreadcrumbsUtils.ts +1 -1
- package/front_end/panels/elements/components/ElementsTreeExpandButton.ts +1 -1
- package/front_end/panels/elements/components/Helper.ts +1 -1
- package/front_end/panels/elements/components/QueryContainer.ts +1 -1
- package/front_end/panels/elements/components/StylePropertyEditor.ts +1 -1
- package/front_end/panels/elements/components/accessibilityTreeNode.css +1 -1
- package/front_end/panels/elements/components/components.ts +1 -1
- package/front_end/panels/elements/components/computedStyleProperty.css +1 -1
- package/front_end/panels/elements/components/computedStyleTrace.css +1 -1
- package/front_end/panels/elements/components/cssHintDetailsView.css +1 -1
- package/front_end/panels/elements/components/cssPropertyDocsView.css +1 -1
- package/front_end/panels/elements/components/cssQuery.css +1 -1
- package/front_end/panels/elements/components/cssVariableValueView.css +1 -1
- package/front_end/panels/elements/components/elementsBreadcrumbs.css +1 -1
- package/front_end/panels/elements/components/elementsTreeExpandButton.css +1 -1
- package/front_end/panels/elements/components/queryContainer.css +1 -1
- package/front_end/panels/elements/components/stylePropertyEditor.css +1 -1
- package/front_end/panels/elements/computedStyleSidebarPane.css +1 -1
- package/front_end/panels/elements/cssValueTraceView.css +1 -1
- package/front_end/panels/elements/domLinkifier.css +1 -1
- package/front_end/panels/elements/elementStatePaneWidget.css +1 -1
- package/front_end/panels/elements/elements-meta.ts +1 -1
- package/front_end/panels/elements/elements.ts +1 -1
- package/front_end/panels/elements/elementsTreeOutline.css +1 -1
- package/front_end/panels/elements/layersWidget.css +1 -1
- package/front_end/panels/elements/layoutPane.css +1 -1
- package/front_end/panels/elements/metricsSidebarPane.css +1 -1
- package/front_end/panels/elements/nodeStackTraceWidget.css +1 -1
- package/front_end/panels/elements/platformFontsWidget.css +1 -1
- package/front_end/panels/elements/propertiesWidget.css +1 -1
- package/front_end/panels/elements/stylePropertiesTreeOutline.css +1 -1
- package/front_end/panels/elements/stylesSidebarPane.css +1 -1
- package/front_end/panels/emulation/AdvancedApp.ts +1 -1
- package/front_end/panels/emulation/DeviceModeToolbar.ts +8 -8
- package/front_end/panels/emulation/DeviceModeView.ts +7 -7
- package/front_end/panels/emulation/DeviceModeWrapper.ts +1 -1
- package/front_end/panels/emulation/InspectedPagePlaceholder.ts +1 -1
- package/front_end/panels/emulation/MediaQueryInspector.ts +19 -19
- package/front_end/panels/emulation/components/DeviceSizeInputElement.ts +1 -1
- package/front_end/panels/emulation/components/components.ts +1 -1
- package/front_end/panels/emulation/deviceModeView.css +1 -1
- package/front_end/panels/emulation/emulation-meta.ts +1 -1
- package/front_end/panels/emulation/emulation.ts +1 -1
- package/front_end/panels/emulation/inspectedPagePlaceholder.css +1 -1
- package/front_end/panels/emulation/mediaQueryInspector.css +1 -1
- package/front_end/panels/event_listeners/EventListenersUtils.ts +1 -1
- package/front_end/panels/event_listeners/EventListenersView.ts +14 -15
- package/front_end/panels/event_listeners/eventListenersView.css +1 -1
- package/front_end/panels/event_listeners/event_listeners.ts +1 -1
- package/front_end/panels/explain/ActionDelegate.ts +1 -1
- package/front_end/panels/explain/PromptBuilder.ts +1 -1
- package/front_end/panels/explain/components/ConsoleInsight.ts +1 -1
- package/front_end/panels/explain/components/consoleInsight.css +1 -1
- package/front_end/panels/explain/components/consoleInsightSourcesList.css +1 -1
- package/front_end/panels/explain/explain-meta.ts +1 -1
- package/front_end/panels/explain/explain.ts +1 -1
- package/front_end/panels/issues/AffectedBlockedByResponseView.ts +1 -1
- package/front_end/panels/issues/AffectedCookiesView.ts +1 -1
- package/front_end/panels/issues/AffectedDescendantsWithinSelectElementView.ts +1 -1
- package/front_end/panels/issues/AffectedDirectivesView.ts +1 -1
- package/front_end/panels/issues/AffectedDocumentsInQuirksModeView.ts +1 -1
- package/front_end/panels/issues/AffectedElementsView.ts +1 -1
- package/front_end/panels/issues/AffectedElementsWithLowContrastView.ts +1 -1
- package/front_end/panels/issues/AffectedHeavyAdView.ts +1 -1
- package/front_end/panels/issues/AffectedMetadataAllowedSitesView.ts +1 -1
- package/front_end/panels/issues/AffectedPartitioningBlobURLView.ts +1 -1
- package/front_end/panels/issues/AffectedResourcesView.ts +1 -1
- package/front_end/panels/issues/AffectedSharedArrayBufferIssueDetailsView.ts +1 -1
- package/front_end/panels/issues/AffectedSourcesView.ts +1 -1
- package/front_end/panels/issues/AffectedTrackingSitesView.ts +1 -1
- package/front_end/panels/issues/AttributionReportingIssueDetailsView.ts +1 -1
- package/front_end/panels/issues/CorsIssueDetailsView.ts +1 -1
- package/front_end/panels/issues/GenericIssueDetailsView.ts +1 -1
- package/front_end/panels/issues/HiddenIssuesRow.ts +1 -1
- package/front_end/panels/issues/IssueAggregator.ts +1 -1
- package/front_end/panels/issues/IssueKindView.ts +1 -1
- package/front_end/panels/issues/IssueRevealer.ts +1 -1
- package/front_end/panels/issues/IssueView.ts +1 -1
- package/front_end/panels/issues/IssuesPane.ts +1 -1
- package/front_end/panels/issues/components/ElementsPanelLink.ts +1 -1
- package/front_end/panels/issues/components/HideIssuesMenu.ts +1 -1
- package/front_end/panels/issues/components/components.ts +1 -1
- package/front_end/panels/issues/components/elementsPanelLink.css +1 -1
- package/front_end/panels/issues/components/hideIssuesMenu.css +1 -1
- package/front_end/panels/issues/issues-meta.ts +1 -1
- package/front_end/panels/issues/issues.ts +1 -1
- package/front_end/panels/issues/issuesPane.css +1 -1
- package/front_end/panels/issues/issuesTree.css +1 -1
- package/front_end/panels/js_timeline/js_timeline-meta.ts +1 -1
- package/front_end/panels/layer_viewer/LayerDetailsView.ts +3 -29
- package/front_end/panels/layer_viewer/LayerTreeOutline.ts +6 -32
- package/front_end/panels/layer_viewer/LayerViewHost.ts +14 -14
- package/front_end/panels/layer_viewer/Layers3DView.ts +3 -29
- package/front_end/panels/layer_viewer/PaintProfilerView.ts +12 -39
- package/front_end/panels/layer_viewer/TransformController.ts +35 -37
- package/front_end/panels/layer_viewer/layerDetailsView.css +1 -1
- package/front_end/panels/layer_viewer/layerTreeOutline.css +1 -1
- package/front_end/panels/layer_viewer/layer_viewer-meta.ts +1 -1
- package/front_end/panels/layer_viewer/layer_viewer.ts +1 -1
- package/front_end/panels/layer_viewer/layers3DView.css +1 -1
- package/front_end/panels/layer_viewer/paintProfiler.css +1 -1
- package/front_end/panels/layers/LayerPaintProfilerView.ts +1 -1
- package/front_end/panels/layers/LayerTreeModel.ts +44 -69
- package/front_end/panels/layers/LayersPanel.ts +3 -29
- package/front_end/panels/layers/layers-meta.ts +1 -1
- package/front_end/panels/layers/layers.ts +1 -1
- package/front_end/panels/lighthouse/LighthouseController.ts +1 -1
- package/front_end/panels/lighthouse/LighthousePanel.ts +1 -1
- package/front_end/panels/lighthouse/LighthouseProtocolService.ts +1 -1
- package/front_end/panels/lighthouse/LighthouseReportRenderer.ts +1 -1
- package/front_end/panels/lighthouse/LighthouseReportSelector.ts +14 -14
- package/front_end/panels/lighthouse/LighthouseReporterTypes.ts +1 -1
- package/front_end/panels/lighthouse/LighthouseStartView.ts +10 -9
- package/front_end/panels/lighthouse/LighthouseStatusView.ts +1 -1
- package/front_end/panels/lighthouse/LighthouseTimespanView.ts +1 -1
- package/front_end/panels/lighthouse/RadioSetting.ts +1 -1
- package/front_end/panels/lighthouse/lighthouse-meta.ts +1 -1
- package/front_end/panels/lighthouse/lighthouse.ts +1 -1
- package/front_end/panels/lighthouse/lighthouseDialog.css +1 -1
- package/front_end/panels/lighthouse/lighthousePanel.css +1 -1
- package/front_end/panels/lighthouse/lighthouseStartView.css +1 -1
- package/front_end/panels/linear_memory_inspector/LinearMemoryInspectorController.ts +1 -1
- package/front_end/panels/linear_memory_inspector/LinearMemoryInspectorPane.ts +1 -1
- package/front_end/panels/linear_memory_inspector/components/LinearMemoryHighlightChipList.ts +1 -1
- package/front_end/panels/linear_memory_inspector/components/LinearMemoryInspector.ts +1 -1
- package/front_end/panels/linear_memory_inspector/components/LinearMemoryInspectorUtils.ts +1 -1
- package/front_end/panels/linear_memory_inspector/components/LinearMemoryNavigator.ts +1 -1
- package/front_end/panels/linear_memory_inspector/components/LinearMemoryValueInterpreter.ts +1 -1
- package/front_end/panels/linear_memory_inspector/components/LinearMemoryViewer.ts +1 -1
- package/front_end/panels/linear_memory_inspector/components/LinearMemoryViewerUtils.ts +1 -1
- package/front_end/panels/linear_memory_inspector/components/ValueInterpreterDisplay.ts +1 -1
- package/front_end/panels/linear_memory_inspector/components/ValueInterpreterDisplayUtils.ts +1 -1
- package/front_end/panels/linear_memory_inspector/components/ValueInterpreterSettings.ts +1 -1
- package/front_end/panels/linear_memory_inspector/components/components.ts +1 -1
- package/front_end/panels/linear_memory_inspector/components/linearMemoryHighlightChipList.css +1 -1
- package/front_end/panels/linear_memory_inspector/components/linearMemoryInspector.css +1 -1
- package/front_end/panels/linear_memory_inspector/components/linearMemoryNavigator.css +1 -1
- package/front_end/panels/linear_memory_inspector/components/linearMemoryValueInterpreter.css +1 -1
- package/front_end/panels/linear_memory_inspector/components/linearMemoryViewer.css +1 -1
- package/front_end/panels/linear_memory_inspector/components/valueInterpreterDisplay.css +1 -1
- package/front_end/panels/linear_memory_inspector/components/valueInterpreterSettings.css +1 -1
- package/front_end/panels/linear_memory_inspector/linear_memory_inspector-meta.ts +1 -1
- package/front_end/panels/linear_memory_inspector/linear_memory_inspector.ts +1 -1
- package/front_end/panels/media/EventDisplayTable.ts +1 -1
- package/front_end/panels/media/EventTimelineView.ts +1 -1
- package/front_end/panels/media/MainView.ts +1 -1
- package/front_end/panels/media/MediaModel.ts +1 -1
- package/front_end/panels/media/PlayerDetailView.ts +1 -1
- package/front_end/panels/media/PlayerListView.ts +1 -1
- package/front_end/panels/media/PlayerMessagesView.ts +6 -6
- package/front_end/panels/media/PlayerPropertiesView.ts +1 -1
- package/front_end/panels/media/TickingFlameChart.ts +25 -25
- package/front_end/panels/media/TickingFlameChartHelpers.ts +33 -33
- package/front_end/panels/media/eventDisplayTable.css +1 -1
- package/front_end/panels/media/media-meta.ts +1 -1
- package/front_end/panels/media/media.ts +1 -1
- package/front_end/panels/media/playerListView.css +1 -1
- package/front_end/panels/media/playerMessagesView.css +1 -1
- package/front_end/panels/media/playerPropertiesView.css +1 -1
- package/front_end/panels/mobile_throttling/CalibrationController.ts +1 -1
- package/front_end/panels/mobile_throttling/MobileThrottlingSelector.ts +1 -1
- package/front_end/panels/mobile_throttling/NetworkPanelIndicator.ts +1 -1
- package/front_end/panels/mobile_throttling/NetworkThrottlingSelector.ts +1 -1
- package/front_end/panels/mobile_throttling/ThrottlingManager.ts +1 -1
- package/front_end/panels/mobile_throttling/ThrottlingPresets.ts +1 -37
- package/front_end/panels/mobile_throttling/ThrottlingSettingsTab.ts +1 -1
- package/front_end/panels/mobile_throttling/mobile_throttling-meta.ts +1 -1
- package/front_end/panels/mobile_throttling/mobile_throttling.ts +1 -1
- package/front_end/panels/mobile_throttling/throttlingSettingsTab.css +1 -1
- package/front_end/panels/network/BinaryResourceView.ts +1 -1
- package/front_end/panels/network/BlockedURLsPane.ts +1 -1
- package/front_end/panels/network/EventSourceMessagesView.ts +1 -1
- package/front_end/panels/network/NetworkConfigView.ts +1 -1
- package/front_end/panels/network/NetworkDataGridNode.ts +1 -1
- package/front_end/panels/network/NetworkFrameGrouper.ts +1 -1
- package/front_end/panels/network/NetworkItemView.ts +7 -33
- package/front_end/panels/network/NetworkLogView.ts +1 -1
- package/front_end/panels/network/NetworkLogViewColumns.ts +30 -30
- package/front_end/panels/network/NetworkManageCustomHeadersView.ts +1 -1
- package/front_end/panels/network/NetworkOverview.ts +1 -1
- package/front_end/panels/network/NetworkPanel.ts +9 -6
- package/front_end/panels/network/NetworkSearchScope.ts +1 -1
- package/front_end/panels/network/NetworkWaterfallColumn.ts +1 -1
- package/front_end/panels/network/RequestCookiesView.ts +3 -29
- package/front_end/panels/network/RequestHTMLView.ts +3 -29
- package/front_end/panels/network/RequestInitiatorView.ts +1 -1
- package/front_end/panels/network/RequestPayloadView.ts +1 -1
- package/front_end/panels/network/RequestPreviewView.ts +3 -29
- package/front_end/panels/network/RequestResponseView.ts +3 -29
- package/front_end/panels/network/RequestTimingView.ts +3 -29
- package/front_end/panels/network/ResourceChunkView.ts +1 -1
- package/front_end/panels/network/ResourceDirectSocketChunkView.ts +1 -1
- package/front_end/panels/network/ResourceWebSocketFrameView.ts +11 -11
- package/front_end/panels/network/SignedExchangeInfoView.ts +1 -1
- package/front_end/panels/network/binaryResourceView.css +1 -1
- package/front_end/panels/network/blockedURLsPane.css +1 -1
- package/front_end/panels/network/components/DirectSocketConnectionView.ts +1 -1
- package/front_end/panels/network/components/EditableSpan.css +1 -1
- package/front_end/panels/network/components/EditableSpan.ts +1 -1
- package/front_end/panels/network/components/HeaderSectionRow.css +1 -1
- package/front_end/panels/network/components/HeaderSectionRow.ts +1 -1
- package/front_end/panels/network/components/RequestHeaderSection.css +1 -1
- package/front_end/panels/network/components/RequestHeaderSection.ts +1 -1
- package/front_end/panels/network/components/RequestHeadersView.css +1 -1
- package/front_end/panels/network/components/RequestHeadersView.ts +1 -1
- package/front_end/panels/network/components/RequestTrustTokensView.css +1 -1
- package/front_end/panels/network/components/RequestTrustTokensView.ts +1 -1
- package/front_end/panels/network/components/ResponseHeaderSection.css +1 -1
- package/front_end/panels/network/components/ResponseHeaderSection.ts +1 -1
- package/front_end/panels/network/components/WebBundleInfoView.css +1 -1
- package/front_end/panels/network/components/WebBundleInfoView.ts +1 -1
- package/front_end/panels/network/components/components.ts +1 -1
- package/front_end/panels/network/eventSourceMessagesView.css +1 -1
- package/front_end/panels/network/forward/NetworkRequestId.ts +1 -1
- package/front_end/panels/network/forward/UIFilter.ts +1 -1
- package/front_end/panels/network/forward/UIRequestLocation.ts +1 -1
- package/front_end/panels/network/forward/forward.ts +1 -1
- package/front_end/panels/network/network-meta.ts +1 -1
- package/front_end/panels/network/network.ts +1 -1
- package/front_end/panels/network/networkConfigView.css +1 -1
- package/front_end/panels/network/networkLogView.css +3 -27
- package/front_end/panels/network/networkManageCustomHeadersView.css +1 -1
- package/front_end/panels/network/networkTimingTable.css +1 -1
- package/front_end/panels/network/networkWaterfallColumn.css +1 -1
- package/front_end/panels/network/requestCookiesView.css +2 -2
- package/front_end/panels/network/requestHTMLView.css +1 -1
- package/front_end/panels/network/requestHeadersTree.css +1 -1
- package/front_end/panels/network/requestInitiatorView.css +1 -1
- package/front_end/panels/network/requestInitiatorViewTree.css +1 -1
- package/front_end/panels/network/requestPayloadTree.css +1 -1
- package/front_end/panels/network/requestPayloadView.css +1 -1
- package/front_end/panels/network/resourceChunkView.css +1 -1
- package/front_end/panels/network/signedExchangeInfoTree.css +1 -1
- package/front_end/panels/network/signedExchangeInfoView.css +1 -1
- package/front_end/panels/performance_monitor/PerformanceMonitor.ts +1 -1
- package/front_end/panels/performance_monitor/performanceMonitor.css +1 -1
- package/front_end/panels/performance_monitor/performance_monitor-meta.ts +1 -1
- package/front_end/panels/performance_monitor/performance_monitor.ts +1 -1
- package/front_end/panels/profiler/BottomUpProfileDataGrid.ts +1 -1
- package/front_end/panels/profiler/ChildrenProvider.ts +1 -1
- package/front_end/panels/profiler/HeapDetachedElementsDataGrid.ts +1 -1
- package/front_end/panels/profiler/HeapDetachedElementsView.ts +4 -4
- package/front_end/panels/profiler/HeapProfileView.ts +2 -2
- package/front_end/panels/profiler/HeapProfilerPanel.ts +1 -1
- package/front_end/panels/profiler/HeapSnapshotDataGrids.ts +3 -29
- package/front_end/panels/profiler/HeapSnapshotGridNodes.ts +3 -29
- package/front_end/panels/profiler/HeapSnapshotProxy.ts +3 -29
- package/front_end/panels/profiler/HeapSnapshotView.ts +3 -29
- package/front_end/panels/profiler/HeapTimelineOverview.ts +1 -1
- package/front_end/panels/profiler/IsolateSelector.ts +1 -1
- package/front_end/panels/profiler/LiveHeapProfileView.ts +1 -1
- package/front_end/panels/profiler/ModuleUIStrings.ts +1 -1
- package/front_end/panels/profiler/ProfileDataGrid.ts +1 -1
- package/front_end/panels/profiler/ProfileFlameChartDataProvider.ts +3 -4
- package/front_end/panels/profiler/ProfileHeader.ts +26 -26
- package/front_end/panels/profiler/ProfileLauncherView.ts +8 -35
- package/front_end/panels/profiler/ProfileSidebarTreeElement.ts +1 -1
- package/front_end/panels/profiler/ProfileTypeRegistry.ts +1 -1
- package/front_end/panels/profiler/ProfileView.ts +1 -1
- package/front_end/panels/profiler/ProfilesPanel.ts +1 -1
- package/front_end/panels/profiler/TopDownProfileDataGrid.ts +1 -1
- package/front_end/panels/profiler/liveHeapProfile.css +1 -1
- package/front_end/panels/profiler/profileLauncherView.css +1 -1
- package/front_end/panels/profiler/profiler-meta.ts +1 -1
- package/front_end/panels/profiler/profiler.ts +1 -1
- package/front_end/panels/profiler/profilesSidebarTree.css +1 -1
- package/front_end/panels/protocol_monitor/JSONEditor.css +1 -1
- package/front_end/panels/protocol_monitor/JSONEditor.ts +1 -1
- package/front_end/panels/protocol_monitor/ProtocolMonitor.ts +1 -1
- package/front_end/panels/protocol_monitor/protocolMonitor.css +1 -1
- package/front_end/panels/protocol_monitor/protocol_monitor-meta.ts +1 -1
- package/front_end/panels/protocol_monitor/protocol_monitor.ts +1 -1
- package/front_end/panels/recorder/RecorderController.ts +1 -1
- package/front_end/panels/recorder/RecorderEvents.ts +1 -1
- package/front_end/panels/recorder/RecorderPanel.ts +1 -1
- package/front_end/panels/recorder/components/ControlButton.ts +1 -1
- package/front_end/panels/recorder/components/CreateRecordingView.ts +1 -1
- package/front_end/panels/recorder/components/ExtensionView.ts +1 -1
- package/front_end/panels/recorder/components/RecordingListView.ts +1 -1
- package/front_end/panels/recorder/components/RecordingView.ts +1 -1
- package/front_end/panels/recorder/components/ReplaySection.ts +4 -2
- package/front_end/panels/recorder/components/SelectButton.ts +50 -33
- package/front_end/panels/recorder/components/StepEditor.ts +1 -1
- package/front_end/panels/recorder/components/StepView.ts +1 -1
- package/front_end/panels/recorder/components/TimelineSection.ts +2 -1
- package/front_end/panels/recorder/components/components.ts +1 -1
- package/front_end/panels/recorder/components/controlButton.css +1 -1
- package/front_end/panels/recorder/components/createRecordingView.css +1 -1
- package/front_end/panels/recorder/components/extensionView.css +1 -1
- package/front_end/panels/recorder/components/recordingListView.css +1 -1
- package/front_end/panels/recorder/components/recordingView.css +1 -1
- package/front_end/panels/recorder/components/selectButton.css +7 -13
- package/front_end/panels/recorder/components/startView.css +1 -1
- package/front_end/panels/recorder/components/stepEditor.css +1 -1
- package/front_end/panels/recorder/components/stepView.css +1 -1
- package/front_end/panels/recorder/components/timelineSection.css +1 -1
- package/front_end/panels/recorder/components/util.ts +1 -1
- package/front_end/panels/recorder/controllers/SelectorPicker.ts +1 -1
- package/front_end/panels/recorder/controllers/controllers.ts +1 -1
- package/front_end/panels/recorder/converters/Converter.ts +1 -1
- package/front_end/panels/recorder/converters/ExtensionConverter.ts +1 -1
- package/front_end/panels/recorder/converters/JSONConverter.ts +1 -1
- package/front_end/panels/recorder/converters/LighthouseConverter.ts +1 -1
- package/front_end/panels/recorder/converters/PuppeteerConverter.ts +1 -1
- package/front_end/panels/recorder/converters/PuppeteerFirefoxConverter.ts +1 -1
- package/front_end/panels/recorder/converters/PuppeteerReplayConverter.ts +1 -1
- package/front_end/panels/recorder/converters/converters.ts +1 -1
- package/front_end/panels/recorder/extensions/ExtensionManager.ts +1 -1
- package/front_end/panels/recorder/extensions/extensions.ts +1 -1
- package/front_end/panels/recorder/injected/Logger.ts +1 -1
- package/front_end/panels/recorder/injected/MonotonicArray.ts +1 -1
- package/front_end/panels/recorder/injected/RecordingClient.ts +1 -1
- package/front_end/panels/recorder/injected/SelectorComputer.ts +1 -1
- package/front_end/panels/recorder/injected/SelectorPicker.ts +1 -1
- package/front_end/panels/recorder/injected/Step.ts +1 -1
- package/front_end/panels/recorder/injected/injected.ts +1 -1
- package/front_end/panels/recorder/injected/rollup.config.mjs +1 -1
- package/front_end/panels/recorder/injected/selectors/ARIASelector.ts +1 -1
- package/front_end/panels/recorder/injected/selectors/CSSSelector.ts +1 -1
- package/front_end/panels/recorder/injected/selectors/PierceSelector.ts +1 -1
- package/front_end/panels/recorder/injected/selectors/Selector.ts +1 -1
- package/front_end/panels/recorder/injected/selectors/TextSelector.ts +1 -1
- package/front_end/panels/recorder/injected/selectors/XPath.ts +1 -1
- package/front_end/panels/recorder/injected/util.ts +1 -1
- package/front_end/panels/recorder/models/ConverterIds.ts +1 -1
- package/front_end/panels/recorder/models/RecorderSettings.ts +1 -1
- package/front_end/panels/recorder/models/RecorderShortcutHelper.ts +1 -1
- package/front_end/panels/recorder/models/RecordingPlayer.ts +1 -1
- package/front_end/panels/recorder/models/RecordingSession.ts +1 -1
- package/front_end/panels/recorder/models/RecordingSettings.ts +1 -1
- package/front_end/panels/recorder/models/RecordingStorage.ts +1 -1
- package/front_end/panels/recorder/models/SDKUtils.ts +1 -1
- package/front_end/panels/recorder/models/Schema.ts +1 -1
- package/front_end/panels/recorder/models/SchemaUtils.ts +1 -1
- package/front_end/panels/recorder/models/ScreenshotStorage.ts +1 -1
- package/front_end/panels/recorder/models/ScreenshotUtils.ts +1 -1
- package/front_end/panels/recorder/models/Section.ts +1 -1
- package/front_end/panels/recorder/models/Tooltip.ts +1 -1
- package/front_end/panels/recorder/models/models.ts +1 -1
- package/front_end/panels/recorder/recorder-actions/recorder-actions.ts +1 -1
- package/front_end/panels/recorder/recorder-meta.ts +1 -1
- package/front_end/panels/recorder/recorder.ts +1 -1
- package/front_end/panels/recorder/recorderController.css +1 -1
- package/front_end/panels/recorder/testing/RecorderHelpers.ts +1 -1
- package/front_end/panels/recorder/util/SharedObject.ts +1 -1
- package/front_end/panels/recorder/util/util.ts +1 -1
- package/front_end/panels/screencast/InputModel.ts +1 -1
- package/front_end/panels/screencast/ScreencastApp.ts +1 -1
- package/front_end/panels/screencast/ScreencastView.ts +3 -29
- package/front_end/panels/screencast/screencast-meta.ts +1 -1
- package/front_end/panels/screencast/screencast.ts +1 -1
- package/front_end/panels/screencast/screencastView.css +3 -27
- package/front_end/panels/search/SearchResultsPane.ts +1 -1
- package/front_end/panels/search/SearchScope.ts +1 -1
- package/front_end/panels/search/SearchView.ts +1 -1
- package/front_end/panels/search/search.ts +1 -1
- package/front_end/panels/search/searchResultsPane.css +1 -1
- package/front_end/panels/search/searchView.css +1 -1
- package/front_end/panels/security/CookieControlsTreeElement.ts +1 -1
- package/front_end/panels/security/CookieControlsView.ts +1 -1
- package/front_end/panels/security/CookieReportTreeElement.ts +1 -1
- package/front_end/panels/security/CookieReportView.ts +1 -1
- package/front_end/panels/security/IPProtectionTreeElement.ts +1 -1
- package/front_end/panels/security/IPProtectionView.ts +1 -1
- package/front_end/panels/security/OriginTreeElement.ts +9 -9
- package/front_end/panels/security/SecurityModel.ts +1 -1
- package/front_end/panels/security/SecurityPanel.ts +6 -6
- package/front_end/panels/security/SecurityPanelSidebar.ts +1 -1
- package/front_end/panels/security/SecurityPanelSidebarTreeElement.ts +1 -1
- package/front_end/panels/security/cookieControlsView.css +1 -1
- package/front_end/panels/security/cookieReportView.css +1 -1
- package/front_end/panels/security/ipProtectionView.css +1 -1
- package/front_end/panels/security/lockIcon.css +1 -1
- package/front_end/panels/security/mainView.css +1 -1
- package/front_end/panels/security/originView.css +1 -1
- package/front_end/panels/security/security-meta.ts +1 -1
- package/front_end/panels/security/security.ts +1 -1
- package/front_end/panels/security/sidebar.css +1 -1
- package/front_end/panels/sensors/LocationsSettingsTab.ts +1 -1
- package/front_end/panels/sensors/SensorsView.ts +1 -1
- package/front_end/panels/sensors/locationsSettingsTab.css +1 -1
- package/front_end/panels/sensors/sensors-meta.ts +1 -1
- package/front_end/panels/sensors/sensors.css +1 -1
- package/front_end/panels/sensors/sensors.ts +1 -1
- package/front_end/panels/settings/AISettingsTab.ts +1 -1
- package/front_end/panels/settings/FrameworkIgnoreListSettingsTab.ts +1 -1
- package/front_end/panels/settings/KeybindsSettingsTab.ts +1 -1
- package/front_end/panels/settings/SettingsScreen.ts +21 -41
- package/front_end/{models/persistence → panels/settings}/WorkspaceSettingsTab.ts +34 -31
- package/front_end/panels/settings/aiSettingsTab.css +1 -1
- package/front_end/panels/settings/components/SyncSection.ts +33 -8
- package/front_end/panels/settings/components/components.ts +1 -1
- package/front_end/panels/settings/components/syncSection.css +1 -1
- package/front_end/panels/settings/emulation/DevicesSettingsTab.ts +1 -1
- package/front_end/panels/settings/emulation/components/UserAgentClientHintsForm.ts +1 -1
- package/front_end/panels/settings/emulation/components/components.ts +1 -1
- package/front_end/panels/settings/emulation/components/userAgentClientHintsForm.css +1 -1
- package/front_end/panels/settings/emulation/devicesSettingsTab.css +1 -1
- package/front_end/panels/settings/emulation/emulation-meta.ts +1 -1
- package/front_end/panels/settings/emulation/emulation.ts +1 -1
- package/front_end/panels/settings/emulation/utils/StructuredHeaders.ts +1 -1
- package/front_end/panels/settings/emulation/utils/UserAgentMetadata.ts +1 -1
- package/front_end/panels/settings/emulation/utils/utils.ts +1 -1
- package/front_end/panels/settings/frameworkIgnoreListSettingsTab.css +1 -1
- package/front_end/panels/settings/keybindsSettingsTab.css +1 -1
- package/front_end/panels/settings/settings-meta.ts +22 -1
- package/front_end/panels/settings/settings.ts +3 -2
- package/front_end/panels/settings/settingsScreen.css +1 -1
- package/front_end/{models/persistence → panels/settings}/workspaceSettingsTab.css +1 -1
- package/front_end/panels/snippets/ScriptSnippetFileSystem.ts +1 -1
- package/front_end/panels/snippets/SnippetsQuickOpen.ts +1 -1
- package/front_end/panels/snippets/snippets.ts +1 -1
- package/front_end/panels/sources/AddSourceMapURLDialog.ts +1 -1
- package/front_end/panels/sources/AiCodeCompletionPlugin.ts +4 -1
- package/front_end/panels/sources/AiWarningInfobarPlugin.ts +1 -1
- package/front_end/panels/sources/BreakpointEditDialog.ts +1 -1
- package/front_end/panels/sources/BreakpointsView.ts +1 -1
- package/front_end/panels/sources/BreakpointsViewUtils.ts +1 -1
- package/front_end/panels/sources/CSSPlugin.ts +1 -1
- package/front_end/panels/sources/CallStackSidebarPane.ts +1 -1
- package/front_end/panels/sources/CategorizedBreakpointL10n.ts +1 -1
- package/front_end/panels/sources/CoveragePlugin.ts +1 -1
- package/front_end/panels/sources/DebuggerPausedMessage.ts +9 -10
- package/front_end/panels/sources/DebuggerPlugin.ts +3 -29
- package/front_end/panels/sources/EditingLocationHistoryManager.ts +3 -29
- package/front_end/panels/sources/FilePathScoreFunction.ts +3 -29
- package/front_end/panels/sources/FilteredUISourceCodeListProvider.ts +1 -1
- package/front_end/panels/sources/GoToLineQuickOpen.ts +1 -1
- package/front_end/panels/sources/InplaceFormatterEditorAction.ts +1 -1
- package/front_end/panels/sources/NavigatorView.ts +46 -75
- package/front_end/panels/sources/OpenFileQuickOpen.ts +1 -1
- package/front_end/panels/sources/OutlineQuickOpen.ts +1 -1
- package/front_end/panels/sources/Plugin.ts +1 -1
- package/front_end/panels/sources/ProfilePlugin.ts +1 -1
- package/front_end/panels/sources/ResourceOriginPlugin.ts +1 -1
- package/front_end/panels/sources/ScopeChainSidebarPane.ts +1 -1
- package/front_end/panels/sources/SearchSourcesView.ts +1 -1
- package/front_end/panels/sources/SnippetsPlugin.ts +1 -1
- package/front_end/panels/sources/SourcesNavigator.ts +3 -29
- package/front_end/panels/sources/SourcesPanel.ts +36 -36
- package/front_end/panels/sources/SourcesSearchScope.ts +3 -29
- package/front_end/panels/sources/SourcesView.ts +14 -14
- package/front_end/panels/sources/TabbedEditorContainer.ts +22 -51
- package/front_end/panels/sources/ThreadsSidebarPane.ts +1 -1
- package/front_end/panels/sources/UISourceCodeFrame.ts +9 -34
- package/front_end/panels/sources/WatchExpressionsSidebarPane.ts +35 -37
- package/front_end/panels/sources/breakpointEditDialog.css +1 -1
- package/front_end/panels/sources/breakpointsView.css +1 -1
- package/front_end/panels/sources/callStackSidebarPane.css +1 -1
- package/front_end/panels/sources/components/HeadersView.css +1 -1
- package/front_end/panels/sources/components/HeadersView.ts +1 -1
- package/front_end/panels/sources/components/components.ts +1 -1
- package/front_end/panels/sources/debuggerPausedMessage.css +1 -1
- package/front_end/panels/sources/dialog.css +1 -1
- package/front_end/panels/sources/navigatorView.css +1 -1
- package/front_end/panels/sources/scopeChainSidebarPane.css +1 -1
- package/front_end/panels/sources/sources-meta.ts +1 -1
- package/front_end/panels/sources/sources.ts +1 -1
- package/front_end/panels/sources/sourcesNavigator.css +1 -1
- package/front_end/panels/sources/sourcesView.css +3 -27
- package/front_end/panels/sources/threadsSidebarPane.css +1 -1
- package/front_end/panels/sources/watchExpressionsSidebarPane.css +1 -1
- package/front_end/panels/timeline/ActiveFilters.ts +1 -1
- package/front_end/panels/timeline/AnimationsTrackAppender.ts +4 -4
- package/front_end/panels/timeline/AnnotationHelpers.ts +3 -4
- package/front_end/panels/timeline/AppenderUtils.ts +1 -1
- package/front_end/panels/timeline/BenchmarkEvents.ts +1 -1
- package/front_end/panels/timeline/CLSLinkifier.ts +1 -1
- package/front_end/panels/timeline/CompatibilityTracksAppender.ts +15 -15
- package/front_end/panels/timeline/CountersGraph.ts +23 -49
- package/front_end/panels/timeline/EasterEgg.d.ts +1 -1
- package/front_end/panels/timeline/EntriesFilter.ts +5 -4
- package/front_end/panels/timeline/EventsTimelineTreeView.ts +10 -11
- package/front_end/panels/timeline/ExtensionTrackAppender.ts +1 -1
- package/front_end/panels/timeline/GPUTrackAppender.ts +4 -4
- package/front_end/panels/timeline/Initiators.ts +11 -11
- package/front_end/panels/timeline/InteractionsTrackAppender.ts +7 -8
- package/front_end/panels/timeline/IsolateSelector.ts +1 -1
- package/front_end/panels/timeline/LayoutShiftsTrackAppender.ts +8 -8
- package/front_end/panels/timeline/ModificationsManager.ts +9 -16
- package/front_end/panels/timeline/NetworkTrackAppender.ts +1 -1
- package/front_end/panels/timeline/RecordingMetadata.ts +1 -1
- package/front_end/panels/timeline/SaveFileFormatter.ts +1 -1
- package/front_end/panels/timeline/StatusDialog.ts +1 -1
- package/front_end/panels/timeline/TargetForEvent.ts +3 -3
- package/front_end/panels/timeline/ThirdPartyTreeView.ts +4 -5
- package/front_end/panels/timeline/ThreadAppender.ts +29 -21
- package/front_end/panels/timeline/TimelineController.ts +1 -1
- package/front_end/panels/timeline/TimelineDetailsView.ts +16 -24
- package/front_end/panels/timeline/TimelineEventOverview.ts +43 -68
- package/front_end/panels/timeline/TimelineFilters.ts +6 -6
- package/front_end/panels/timeline/TimelineFlameChartDataProvider.ts +60 -84
- package/front_end/panels/timeline/TimelineFlameChartNetworkDataProvider.ts +37 -38
- package/front_end/panels/timeline/TimelineFlameChartView.ts +21 -34
- package/front_end/panels/timeline/TimelineHistoryManager.ts +18 -19
- package/front_end/panels/timeline/TimelineLayersView.ts +1 -1
- package/front_end/panels/timeline/TimelineLoader.ts +1 -1
- package/front_end/panels/timeline/TimelineMiniMap.ts +7 -7
- package/front_end/panels/timeline/TimelinePaintProfilerView.ts +7 -7
- package/front_end/panels/timeline/TimelinePanel.ts +85 -78
- package/front_end/panels/timeline/TimelineSelection.ts +1 -1
- package/front_end/panels/timeline/TimelineSelectorStatsView.ts +12 -12
- package/front_end/panels/timeline/TimelineTreeView.ts +22 -17
- package/front_end/panels/timeline/TimelineUIUtils.ts +76 -74
- package/front_end/panels/timeline/TimingsTrackAppender.ts +14 -13
- package/front_end/panels/timeline/TracingLayerTree.ts +44 -44
- package/front_end/panels/timeline/TrackConfigBanner.ts +6 -6
- package/front_end/panels/timeline/TrackConfiguration.ts +2 -2
- package/front_end/panels/timeline/UIDevtoolsController.ts +8 -34
- package/front_end/panels/timeline/UIDevtoolsUtils.ts +26 -69
- package/front_end/panels/timeline/components/Breadcrumbs.ts +1 -1
- package/front_end/panels/timeline/components/BreadcrumbsUI.ts +1 -1
- package/front_end/panels/timeline/components/CPUThrottlingSelector.ts +1 -1
- package/front_end/panels/timeline/components/DetailsView.ts +5 -5
- package/front_end/panels/timeline/components/ExportTraceOptions.ts +1 -1
- package/front_end/panels/timeline/components/FieldSettingsDialog.ts +1 -1
- package/front_end/panels/timeline/components/IgnoreListSetting.ts +1 -1
- package/front_end/panels/timeline/components/InteractionBreakdown.ts +1 -1
- package/front_end/panels/timeline/components/LayoutShiftDetails.ts +14 -24
- package/front_end/panels/timeline/components/LiveMetricsView.ts +8 -5
- package/front_end/panels/timeline/components/MetricCard.ts +1 -1
- package/front_end/panels/timeline/components/MetricCompareStrings.ts +1 -1
- package/front_end/panels/timeline/components/NetworkRequestDetails.ts +11 -12
- package/front_end/panels/timeline/components/NetworkRequestTooltip.ts +2 -2
- package/front_end/panels/timeline/components/NetworkThrottlingSelector.ts +1 -1
- package/front_end/panels/timeline/components/OriginMap.ts +1 -1
- package/front_end/panels/timeline/components/RelatedInsightChips.ts +1 -1
- package/front_end/panels/timeline/components/Sidebar.ts +5 -15
- package/front_end/panels/timeline/components/SidebarAnnotationsTab.ts +7 -8
- package/front_end/panels/timeline/components/SidebarInsightsTab.ts +14 -37
- package/front_end/panels/timeline/components/SidebarSingleInsightSet.ts +22 -20
- package/front_end/panels/timeline/components/TimelineSummary.ts +1 -1
- package/front_end/panels/timeline/components/Utils.ts +1 -1
- package/front_end/panels/timeline/components/breadcrumbsUI.css +1 -1
- package/front_end/panels/timeline/components/components.ts +1 -1
- package/front_end/panels/timeline/components/cpuThrottlingSelector.css +1 -1
- package/front_end/panels/timeline/components/exportTraceOptions.css +1 -1
- package/front_end/panels/timeline/components/fieldSettingsDialog.css +1 -1
- package/front_end/panels/timeline/components/ignoreListSetting.css +1 -1
- package/front_end/panels/timeline/components/insights/BaseInsightComponent.ts +2 -2
- package/front_end/panels/timeline/components/insights/CLSCulprits.ts +1 -1
- package/front_end/panels/timeline/components/insights/Cache.ts +5 -1
- package/front_end/panels/timeline/components/insights/Checklist.ts +1 -1
- package/front_end/panels/timeline/components/insights/DOMSize.ts +6 -2
- package/front_end/panels/timeline/components/insights/DocumentLatency.ts +1 -1
- package/front_end/panels/timeline/components/insights/DuplicatedJavaScript.ts +1 -1
- package/front_end/panels/timeline/components/insights/EventRef.ts +1 -1
- package/front_end/panels/timeline/components/insights/FontDisplay.ts +1 -1
- package/front_end/panels/timeline/components/insights/ForcedReflow.ts +1 -1
- package/front_end/panels/timeline/components/insights/Helpers.ts +20 -1
- package/front_end/panels/timeline/components/insights/INPBreakdown.ts +1 -1
- package/front_end/panels/timeline/components/insights/ImageDelivery.ts +1 -1
- package/front_end/panels/timeline/components/insights/LCPBreakdown.ts +1 -1
- package/front_end/panels/timeline/components/insights/LCPDiscovery.ts +1 -1
- package/front_end/panels/timeline/components/insights/LegacyJavaScript.ts +1 -1
- package/front_end/panels/timeline/components/insights/ModernHTTP.ts +1 -1
- package/front_end/panels/timeline/components/insights/NetworkDependencyTree.ts +2 -2
- package/front_end/panels/timeline/components/insights/NodeLink.ts +1 -1
- package/front_end/panels/timeline/components/insights/RenderBlocking.ts +1 -1
- package/front_end/panels/timeline/components/insights/ScriptRef.ts +1 -1
- package/front_end/panels/timeline/components/insights/SidebarInsight.ts +1 -1
- package/front_end/panels/timeline/components/insights/SlowCSSSelector.ts +1 -1
- package/front_end/panels/timeline/components/insights/Table.ts +1 -1
- package/front_end/panels/timeline/components/insights/ThirdParties.ts +1 -1
- package/front_end/panels/timeline/components/insights/Viewport.ts +5 -1
- package/front_end/panels/timeline/components/insights/baseInsightComponent.css +1 -1
- package/front_end/panels/timeline/components/insights/checklist.css +1 -1
- package/front_end/panels/timeline/components/insights/insights.ts +1 -1
- package/front_end/panels/timeline/components/insights/networkDependencyTreeInsight.css +1 -1
- package/front_end/panels/timeline/components/insights/table.css +1 -1
- package/front_end/panels/timeline/components/insights/types.ts +1 -1
- package/front_end/panels/timeline/components/interactionBreakdown.css +1 -1
- package/front_end/panels/timeline/components/layoutShiftDetails.css +1 -1
- package/front_end/panels/timeline/components/liveMetricsView.css +1 -1
- package/front_end/panels/timeline/components/metricCard.css +1 -1
- package/front_end/panels/timeline/components/metricValueStyles.css +1 -1
- package/front_end/panels/timeline/components/networkRequestDetails.css +1 -1
- package/front_end/panels/timeline/components/networkRequestTooltip.css +1 -1
- package/front_end/panels/timeline/components/networkThrottlingSelector.css +1 -1
- package/front_end/panels/timeline/components/originMap.css +1 -1
- package/front_end/panels/timeline/components/relatedInsightChips.css +1 -1
- package/front_end/panels/timeline/components/sidebarAnnotationsTab.css +1 -1
- package/front_end/panels/timeline/components/sidebarInsightsTab.css +1 -1
- package/front_end/panels/timeline/components/sidebarSingleInsightSet.css +1 -1
- package/front_end/panels/timeline/components/timelineSummary.css +1 -1
- package/front_end/panels/timeline/enable-easter-egg.js +1 -1
- package/front_end/panels/timeline/extensions/ExtensionUI.ts +1 -1
- package/front_end/panels/timeline/extensions/extensions.ts +1 -1
- package/front_end/panels/timeline/overlays/OverlaysImpl.ts +4 -4
- package/front_end/panels/timeline/overlays/components/EntriesLinkOverlay.ts +1 -1
- package/front_end/panels/timeline/overlays/components/EntryLabelOverlay.ts +1 -1
- package/front_end/panels/timeline/overlays/components/TimeRangeOverlay.ts +1 -1
- package/front_end/panels/timeline/overlays/components/TimespanBreakdownOverlay.ts +1 -1
- package/front_end/panels/timeline/overlays/components/components.ts +1 -1
- package/front_end/panels/timeline/overlays/components/entriesLinkOverlay.css +1 -1
- package/front_end/panels/timeline/overlays/components/entryLabelOverlay.css +1 -1
- package/front_end/panels/timeline/overlays/components/timeRangeOverlay.css +1 -1
- package/front_end/panels/timeline/overlays/components/timespanBreakdownOverlay.css +1 -1
- package/front_end/panels/timeline/overlays/overlays.ts +1 -1
- package/front_end/panels/timeline/thirdPartyTreeView.css +1 -1
- package/front_end/panels/timeline/timeline-meta.ts +1 -1
- package/front_end/panels/timeline/timeline.ts +1 -1
- package/front_end/panels/timeline/timelineDetailsView.css +1 -1
- package/front_end/panels/timeline/timelineFlameChartView.css +1 -1
- package/front_end/panels/timeline/timelineFlamechartPopover.css +1 -1
- package/front_end/panels/timeline/timelineHistoryManager.css +1 -1
- package/front_end/panels/timeline/timelineMiniMap.css +1 -1
- package/front_end/panels/timeline/timelinePaintProfiler.css +1 -1
- package/front_end/panels/timeline/timelineSelectorStatsView.css +2 -2
- package/front_end/panels/timeline/timelineStatusDialog.css +1 -1
- package/front_end/panels/timeline/timelineTreeView.css +1 -1
- package/front_end/panels/timeline/utils/AICallTree.ts +17 -20
- package/front_end/panels/timeline/utils/AIContext.ts +43 -24
- package/front_end/panels/timeline/utils/EntryNodes.ts +6 -6
- package/front_end/panels/timeline/utils/FreshRecording.ts +4 -4
- package/front_end/panels/timeline/utils/Helpers.ts +2 -21
- package/front_end/panels/timeline/utils/IgnoreList.ts +3 -4
- package/front_end/panels/timeline/utils/ImageCache.ts +1 -1
- package/front_end/panels/timeline/utils/InsightAIContext.ts +7 -7
- package/front_end/panels/timeline/utils/Treemap.ts +1 -1
- package/front_end/panels/timeline/utils/utils.ts +1 -9
- package/front_end/panels/utils/utils.ts +1 -1
- package/front_end/panels/visibility.gni +1 -1
- package/front_end/panels/web_audio/WebAudioModel.ts +1 -1
- package/front_end/panels/web_audio/WebAudioView.ts +1 -1
- package/front_end/panels/web_audio/webAudio.css +1 -1
- package/front_end/panels/web_audio/web_audio-meta.ts +1 -1
- package/front_end/panels/web_audio/web_audio.ts +1 -1
- package/front_end/panels/webauthn/WebauthnPane.ts +2 -1
- package/front_end/panels/webauthn/webauthn-meta.ts +1 -1
- package/front_end/panels/webauthn/webauthn.ts +1 -1
- package/front_end/panels/webauthn/webauthnPane.css +1 -1
- package/front_end/panels/whats_new/ReleaseNoteText.ts +1 -1
- package/front_end/panels/whats_new/ReleaseNoteView.ts +1 -1
- package/front_end/panels/whats_new/WhatsNewImpl.ts +1 -1
- package/front_end/panels/whats_new/releaseNoteView.css +1 -1
- package/front_end/panels/whats_new/whats_new-meta.ts +1 -1
- package/front_end/panels/whats_new/whats_new.ts +1 -1
- package/front_end/services/puppeteer/PuppeteerConnection.ts +1 -1
- package/front_end/services/puppeteer/puppeteer.ts +1 -1
- package/front_end/services/trace_bounds/TraceBounds.ts +1 -1
- package/front_end/services/trace_bounds/trace_bounds.ts +1 -1
- package/front_end/services/tracing/PerformanceTracing.ts +1 -1
- package/front_end/services/tracing/TracingManager.ts +1 -1
- package/front_end/services/tracing/tracing.ts +1 -1
- package/front_end/services/window_bounds/WindowBoundsService.ts +1 -1
- package/front_end/services/window_bounds/window_bounds.ts +1 -1
- package/front_end/third_party/chromium/README.chromium +1 -1
- package/front_end/third_party/codemirror.next/chunk/angular.js +1 -1
- package/front_end/third_party/codemirror.next/chunk/angular.js.map +1 -1
- package/front_end/third_party/codemirror.next/chunk/codemirror.js +1 -1
- package/front_end/third_party/codemirror.next/chunk/codemirror.js.map +1 -1
- package/front_end/third_party/codemirror.next/chunk/cpp.js +1 -1
- package/front_end/third_party/codemirror.next/chunk/cpp.js.map +1 -1
- package/front_end/third_party/codemirror.next/chunk/java.js +1 -1
- package/front_end/third_party/codemirror.next/chunk/java.js.map +1 -1
- package/front_end/third_party/codemirror.next/chunk/legacy.js +1 -1
- package/front_end/third_party/codemirror.next/chunk/legacy.js.map +1 -1
- package/front_end/third_party/codemirror.next/chunk/less.js +1 -1
- package/front_end/third_party/codemirror.next/chunk/less.js.map +1 -1
- package/front_end/third_party/codemirror.next/chunk/markdown.js +1 -1
- package/front_end/third_party/codemirror.next/chunk/markdown.js.map +1 -1
- package/front_end/third_party/codemirror.next/chunk/php.js +1 -1
- package/front_end/third_party/codemirror.next/chunk/php.js.map +1 -1
- package/front_end/third_party/codemirror.next/chunk/python.js +1 -1
- package/front_end/third_party/codemirror.next/chunk/python.js.map +1 -1
- package/front_end/third_party/codemirror.next/chunk/sass.js +1 -1
- package/front_end/third_party/codemirror.next/chunk/sass.js.map +1 -1
- package/front_end/third_party/codemirror.next/chunk/svelte.js +1 -1
- package/front_end/third_party/codemirror.next/chunk/svelte.js.map +1 -1
- package/front_end/third_party/codemirror.next/chunk/vue.js +1 -1
- package/front_end/third_party/codemirror.next/chunk/vue.js.map +1 -1
- package/front_end/third_party/codemirror.next/chunk/wast.js +1 -1
- package/front_end/third_party/codemirror.next/chunk/wast.js.map +1 -1
- package/front_end/third_party/codemirror.next/chunk/xml.js +1 -1
- package/front_end/third_party/codemirror.next/chunk/xml.js.map +1 -1
- package/front_end/third_party/codemirror.next/codemirror.next.js +1 -1
- package/front_end/third_party/codemirror.next/package.json +1 -1
- package/front_end/third_party/codemirror.next/rebuild.sh +1 -1
- package/front_end/third_party/json5/rebuild.sh +1 -1
- package/front_end/third_party/legacy-javascript/{update.sh → rebuild.sh} +1 -1
- package/front_end/third_party/lit/lib/decorators.d.ts +26 -9
- package/front_end/third_party/lit/lib/decorators.js +5 -5
- package/front_end/third_party/lit/lib/decorators.js.map +1 -1
- package/front_end/third_party/lit/lib/directive.js.map +1 -1
- package/front_end/third_party/lit/lib/directives.js +8 -13
- package/front_end/third_party/lit/lib/directives.js.map +1 -1
- package/front_end/third_party/lit/lib/lit.d.ts +26 -9
- package/front_end/third_party/lit/lib/lit.js +5 -5
- package/front_end/third_party/lit/lib/lit.js.map +1 -1
- package/front_end/third_party/lit/lib/static-html.js +2 -2
- package/front_end/third_party/lit/lib/static-html.js.map +1 -1
- package/front_end/third_party/lit/rebuild.sh +1 -1
- package/front_end/third_party/puppeteer/README.chromium +2 -2
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/Browser.d.ts +12 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/Browser.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/Browser.js +13 -0
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/Browser.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/BrowserContext.d.ts +10 -3
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/BrowserContext.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/BrowserContext.js +50 -2
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/BrowserContext.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/Page.d.ts +5 -3
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/Page.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/Page.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/BidiOverCdp.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/BidiOverCdp.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Browser.d.ts +2 -3
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Browser.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Browser.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Connection.d.ts +8 -7
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Connection.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Connection.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Deserializer.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Deserializer.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/ElementHandle.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/ElementHandle.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/ExposedFunction.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/ExposedFunction.js +1 -35
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/ExposedFunction.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Frame.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Frame.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/HTTPRequest.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/HTTPRequest.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/HTTPResponse.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/HTTPResponse.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Input.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Input.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/JSHandle.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/JSHandle.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Page.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Page.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Page.js +3 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Page.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Realm.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Realm.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Realm.js +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Realm.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Serializer.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Serializer.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/Browser.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/Browser.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/BrowsingContext.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/BrowsingContext.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/BrowsingContext.js +3 -2
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/BrowsingContext.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/Connection.d.ts +4 -193
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/Connection.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/Realm.d.ts +14 -3
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/Realm.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/Request.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/Request.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/Session.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/Session.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/UserContext.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/UserContext.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/UserPrompt.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/UserPrompt.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/util.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/util.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Accessibility.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Accessibility.js +2 -5
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Accessibility.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/ExecutionContext.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/ExecutionContext.js +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/ExecutionContext.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/NetworkManager.d.ts +8 -0
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/NetworkManager.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/NetworkManager.js +3 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/NetworkManager.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/cdp.d.ts +0 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/cdp.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/cdp.js +0 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/cdp.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/{cdp → common}/AriaQueryHandler.d.ts +2 -2
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/AriaQueryHandler.d.ts.map +1 -0
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/{cdp → common}/AriaQueryHandler.js +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/AriaQueryHandler.js.map +1 -0
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/ConnectOptions.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/ConnectOptions.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/Cookie.d.ts +0 -39
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/Cookie.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/GetQueryHandler.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/GetQueryHandler.js +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/GetQueryHandler.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/common.d.ts +1 -0
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/common.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/common.js +1 -0
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/common.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/util.d.ts +0 -3
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/util.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/util.js +0 -3
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/util.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/generated/version.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/generated/version.js +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/index-browser.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/index-browser.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/injected/injected.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/revisions.d.ts +2 -2
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/revisions.js +2 -2
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/util/Mutex.d.ts +2 -2
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/util/disposable.d.ts +19 -6
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/util/disposable.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/util/disposable.js +22 -13
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/util/disposable.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/es5-iife/puppeteer-core-browser.d.ts +33 -44
- package/front_end/third_party/puppeteer/package/lib/es5-iife/puppeteer-core-browser.js +124 -58
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/Browser.d.ts +12 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/Browser.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/Browser.js +13 -0
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/Browser.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/BrowserContext.d.ts +10 -3
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/BrowserContext.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/BrowserContext.js +50 -2
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/BrowserContext.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/Page.d.ts +5 -3
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/Page.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/Page.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/BidiOverCdp.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/BidiOverCdp.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Browser.d.ts +2 -3
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Browser.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Browser.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Connection.d.ts +8 -7
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Connection.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Connection.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Deserializer.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Deserializer.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/ElementHandle.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/ElementHandle.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/ExposedFunction.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/ExposedFunction.js +1 -2
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/ExposedFunction.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Frame.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Frame.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/HTTPRequest.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/HTTPRequest.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/HTTPResponse.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/HTTPResponse.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Input.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Input.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/JSHandle.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/JSHandle.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Page.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Page.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Page.js +3 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Page.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Realm.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Realm.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Realm.js +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Realm.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Serializer.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Serializer.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/Browser.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/Browser.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/BrowsingContext.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/BrowsingContext.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/BrowsingContext.js +3 -2
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/BrowsingContext.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/Connection.d.ts +4 -193
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/Connection.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/Realm.d.ts +14 -3
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/Realm.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/Request.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/Request.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/Session.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/Session.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/UserContext.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/UserContext.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/UserPrompt.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/UserPrompt.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/util.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/util.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Accessibility.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Accessibility.js +2 -5
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Accessibility.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/ExecutionContext.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/ExecutionContext.js +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/ExecutionContext.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/NetworkManager.d.ts +8 -0
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/NetworkManager.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/NetworkManager.js +3 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/NetworkManager.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/cdp.d.ts +0 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/cdp.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/cdp.js +0 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/cdp.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/{cdp → common}/AriaQueryHandler.d.ts +2 -2
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/AriaQueryHandler.d.ts.map +1 -0
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/{cdp → common}/AriaQueryHandler.js +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/AriaQueryHandler.js.map +1 -0
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/ConnectOptions.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/ConnectOptions.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/Cookie.d.ts +0 -39
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/Cookie.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/GetQueryHandler.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/GetQueryHandler.js +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/GetQueryHandler.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/common.d.ts +1 -0
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/common.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/common.js +1 -0
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/common.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/util.d.ts +0 -3
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/util.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/util.js +0 -3
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/util.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/generated/version.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/generated/version.js +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/index-browser.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/index-browser.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/injected/injected.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/revisions.d.ts +2 -2
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/revisions.js +2 -2
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/util/disposable.d.ts +19 -6
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/util/disposable.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/util/disposable.js +22 -10
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/util/disposable.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/types.d.ts +34 -45
- package/front_end/third_party/puppeteer/package/package.json +3 -2
- package/front_end/third_party/puppeteer/package/src/api/Browser.ts +21 -1
- package/front_end/third_party/puppeteer/package/src/api/BrowserContext.ts +64 -3
- package/front_end/third_party/puppeteer/package/src/api/Page.ts +5 -3
- package/front_end/third_party/puppeteer/package/src/bidi/BidiOverCdp.ts +10 -12
- package/front_end/third_party/puppeteer/package/src/bidi/Browser.ts +3 -3
- package/front_end/third_party/puppeteer/package/src/bidi/BrowserContext.ts +1 -1
- package/front_end/third_party/puppeteer/package/src/bidi/Connection.ts +13 -13
- package/front_end/third_party/puppeteer/package/src/bidi/Deserializer.ts +1 -1
- package/front_end/third_party/puppeteer/package/src/bidi/ElementHandle.ts +1 -1
- package/front_end/third_party/puppeteer/package/src/bidi/ExposedFunction.ts +2 -5
- package/front_end/third_party/puppeteer/package/src/bidi/Frame.ts +1 -1
- package/front_end/third_party/puppeteer/package/src/bidi/HTTPRequest.ts +1 -1
- package/front_end/third_party/puppeteer/package/src/bidi/HTTPResponse.ts +1 -1
- package/front_end/third_party/puppeteer/package/src/bidi/Input.ts +1 -1
- package/front_end/third_party/puppeteer/package/src/bidi/JSHandle.ts +1 -1
- package/front_end/third_party/puppeteer/package/src/bidi/Page.ts +4 -2
- package/front_end/third_party/puppeteer/package/src/bidi/Realm.ts +2 -2
- package/front_end/third_party/puppeteer/package/src/bidi/Serializer.ts +1 -1
- package/front_end/third_party/puppeteer/package/src/bidi/core/Browser.ts +1 -1
- package/front_end/third_party/puppeteer/package/src/bidi/core/BrowsingContext.ts +2 -2
- package/front_end/third_party/puppeteer/package/src/bidi/core/Connection.ts +4 -205
- package/front_end/third_party/puppeteer/package/src/bidi/core/Realm.ts +1 -1
- package/front_end/third_party/puppeteer/package/src/bidi/core/Request.ts +1 -1
- package/front_end/third_party/puppeteer/package/src/bidi/core/Session.ts +1 -1
- package/front_end/third_party/puppeteer/package/src/bidi/core/UserContext.ts +1 -1
- package/front_end/third_party/puppeteer/package/src/bidi/core/UserPrompt.ts +1 -1
- package/front_end/third_party/puppeteer/package/src/bidi/util.ts +1 -1
- package/front_end/third_party/puppeteer/package/src/cdp/Accessibility.ts +3 -5
- package/front_end/third_party/puppeteer/package/src/cdp/ExecutionContext.ts +1 -1
- package/front_end/third_party/puppeteer/package/src/cdp/NetworkManager.ts +11 -2
- package/front_end/third_party/puppeteer/package/src/cdp/cdp.ts +0 -1
- package/front_end/third_party/puppeteer/package/src/{cdp → common}/AriaQueryHandler.ts +3 -2
- package/front_end/third_party/puppeteer/package/src/common/ConnectOptions.ts +1 -1
- package/front_end/third_party/puppeteer/package/src/common/Cookie.ts +0 -39
- package/front_end/third_party/puppeteer/package/src/common/GetQueryHandler.ts +1 -2
- package/front_end/third_party/puppeteer/package/src/common/common.ts +1 -0
- package/front_end/third_party/puppeteer/package/src/common/util.ts +0 -4
- package/front_end/third_party/puppeteer/package/src/generated/version.ts +1 -1
- package/front_end/third_party/puppeteer/package/src/index-browser.ts +1 -1
- package/front_end/third_party/puppeteer/package/src/revisions.ts +2 -2
- package/front_end/third_party/puppeteer/package/src/util/disposable.ts +30 -12
- package/front_end/third_party/puppeteer/puppeteer-tsconfig.json +1 -1
- package/front_end/third_party/puppeteer-replay/README.chromium +2 -2
- package/front_end/third_party/puppeteer-replay/package/lib/cjs/main.cjs +7 -1
- package/front_end/third_party/puppeteer-replay/package/lib/cjs/main.cjs.map +1 -1
- package/front_end/third_party/puppeteer-replay/package/lib/main.js +7 -1
- package/front_end/third_party/puppeteer-replay/package/lib/main.js.map +1 -1
- package/front_end/third_party/puppeteer-replay/package/package.json +3 -3
- package/front_end/third_party/third-party-web/rebuild.sh +1 -1
- package/front_end/ui/components/adorners/Adorner.ts +1 -1
- package/front_end/ui/components/adorners/adorner.css +1 -1
- package/front_end/ui/components/adorners/adorners.ts +1 -1
- package/front_end/ui/components/buttons/Button.ts +1 -1
- package/front_end/ui/components/buttons/FloatingButton.ts +1 -1
- package/front_end/ui/components/buttons/button.css +1 -1
- package/front_end/ui/components/buttons/buttons.ts +1 -1
- package/front_end/ui/components/buttons/floatingButton.css +1 -1
- package/front_end/ui/components/buttons/textButton.css +1 -1
- package/front_end/ui/components/cards/Card.ts +1 -1
- package/front_end/ui/components/cards/card.css +1 -1
- package/front_end/ui/components/cards/cards.ts +1 -1
- package/front_end/ui/components/chrome_link/ChromeLink.ts +1 -1
- package/front_end/ui/components/chrome_link/chromeLink.css +1 -1
- package/front_end/ui/components/chrome_link/chrome_link.ts +1 -1
- package/front_end/ui/components/code_highlighter/CodeHighlighter.ts +1 -1
- package/front_end/ui/components/code_highlighter/codeHighlighter.css +1 -1
- package/front_end/ui/components/code_highlighter/code_highlighter.ts +1 -1
- package/front_end/ui/components/copy_to_clipboard/copyToClipboard.ts +1 -1
- package/front_end/ui/components/copy_to_clipboard/copy_to_clipboard.ts +1 -1
- package/front_end/ui/components/dialogs/ButtonDialog.ts +1 -1
- package/front_end/ui/components/dialogs/Dialog.ts +7 -8
- package/front_end/ui/components/dialogs/ShortcutDialog.ts +1 -1
- package/front_end/ui/components/dialogs/buttonDialog.css +1 -1
- package/front_end/ui/components/dialogs/dialog.css +1 -1
- package/front_end/ui/components/dialogs/dialogs.ts +1 -1
- package/front_end/ui/components/dialogs/shortcutDialog.css +1 -1
- package/front_end/ui/components/diff_view/DiffView.ts +1 -1
- package/front_end/ui/components/diff_view/diffView.css +1 -1
- package/front_end/ui/components/diff_view/diff_view.ts +1 -1
- package/front_end/ui/components/docs/breadcrumbs_perf/initial-breadcrumb-perf.html +1 -1
- package/front_end/ui/components/docs/breadcrumbs_perf/initial-breadcrumb-perf.ts +1 -1
- package/front_end/ui/components/docs/breadcrumbs_perf/nested-breadcrumbs-perf.html +1 -1
- package/front_end/ui/components/docs/breadcrumbs_perf/nested-breadcrumbs-perf.ts +1 -1
- package/front_end/ui/components/docs/button/basic.html +1 -1
- package/front_end/ui/components/docs/button/basic.ts +1 -1
- package/front_end/ui/components/docs/color_swatch/basic.html +1 -1
- package/front_end/ui/components/docs/color_swatch/basic.ts +1 -1
- package/front_end/ui/components/docs/color_swatch/change-color.html +1 -1
- package/front_end/ui/components/docs/color_swatch/change-color.ts +1 -1
- package/front_end/ui/components/docs/combo_box/basic.html +1 -1
- package/front_end/ui/components/docs/combo_box/basic.ts +1 -1
- package/front_end/ui/components/docs/component_docs.ts +1 -1
- package/front_end/ui/components/docs/component_docs_styles.css +1 -1
- package/front_end/ui/components/docs/computed_style_property/basic.html +1 -1
- package/front_end/ui/components/docs/computed_style_property/basic.ts +1 -1
- package/front_end/ui/components/docs/computed_style_property/traceable.html +1 -1
- package/front_end/ui/components/docs/computed_style_property/traceable.ts +1 -1
- package/front_end/ui/components/docs/computed_style_trace/basic.html +1 -1
- package/front_end/ui/components/docs/computed_style_trace/basic.ts +1 -1
- package/front_end/ui/components/docs/console_insight/basic.html +1 -1
- package/front_end/ui/components/docs/console_insight/basic.ts +1 -1
- package/front_end/ui/components/docs/console_insight/error.html +1 -1
- package/front_end/ui/components/docs/console_insight/error.ts +1 -1
- package/front_end/ui/components/docs/console_insight/loading.html +1 -1
- package/front_end/ui/components/docs/console_insight/loading.ts +1 -1
- package/front_end/ui/components/docs/context_menu/basic.html +1 -1
- package/front_end/ui/components/docs/context_menu/basic.ts +1 -1
- package/front_end/ui/components/docs/create_breadcrumbs.ts +1 -1
- package/front_end/ui/components/docs/elements_breadcrumbs/basic.html +1 -1
- package/front_end/ui/components/docs/elements_breadcrumbs/basic.ts +1 -1
- package/front_end/ui/components/docs/elements_breadcrumbs/helpers.ts +1 -1
- package/front_end/ui/components/docs/elements_breadcrumbs/scroll-to-active-element.html +1 -1
- package/front_end/ui/components/docs/elements_breadcrumbs/scroll-to-active-element.ts +1 -1
- package/front_end/ui/components/docs/elements_breadcrumbs/scroll.html +1 -1
- package/front_end/ui/components/docs/elements_breadcrumbs/scroll.ts +1 -1
- package/front_end/ui/components/docs/expandable_list/basic.html +1 -1
- package/front_end/ui/components/docs/expandable_list/basic.ts +1 -1
- package/front_end/ui/components/docs/icon_button/basic.html +1 -1
- package/front_end/ui/components/docs/icon_button/basic.ts +1 -1
- package/front_end/ui/components/docs/icon_component/basic.html +1 -1
- package/front_end/ui/components/docs/icon_component/basic.ts +1 -1
- package/front_end/ui/components/docs/input/basic.html +1 -1
- package/front_end/ui/components/docs/input/basic.ts +1 -1
- package/front_end/ui/components/docs/issue_counter/basic.html +1 -1
- package/front_end/ui/components/docs/issue_counter/basic.ts +1 -1
- package/front_end/ui/components/docs/issue_link_icon/basic.html +1 -1
- package/front_end/ui/components/docs/issue_link_icon/basic.ts +1 -1
- package/front_end/ui/components/docs/legacy_color_invert/basic.html +1 -1
- package/front_end/ui/components/docs/legacy_color_invert/basic.ts +1 -1
- package/front_end/ui/components/docs/linear_memory_inspector/basic.html +1 -1
- package/front_end/ui/components/docs/linear_memory_inspector/basic.ts +1 -1
- package/front_end/ui/components/docs/linkifier/simple-url.html +1 -1
- package/front_end/ui/components/docs/linkifier/simple-url.ts +1 -1
- package/front_end/ui/components/docs/markdown_image/basic.html +1 -1
- package/front_end/ui/components/docs/markdown_image/basic.ts +1 -1
- package/front_end/ui/components/docs/markdown_link/basic.html +1 -1
- package/front_end/ui/components/docs/markdown_link/basic.ts +1 -1
- package/front_end/ui/components/docs/markdown_view/basic.html +1 -1
- package/front_end/ui/components/docs/markdown_view/basic.ts +1 -1
- package/front_end/ui/components/docs/markdown_view/code-block.html +1 -1
- package/front_end/ui/components/docs/markdown_view/code-block.ts +1 -1
- package/front_end/ui/components/docs/menu/basic.html +2 -2
- package/front_end/ui/components/docs/menu/basic.ts +1 -1
- package/front_end/ui/components/docs/panel_feedback/basic.html +1 -1
- package/front_end/ui/components/docs/panel_feedback/basic.ts +1 -1
- package/front_end/ui/components/docs/panel_feedback/button.html +1 -1
- package/front_end/ui/components/docs/panel_feedback/button.ts +1 -1
- package/front_end/ui/components/docs/panel_introduction_steps/basic.html +1 -1
- package/front_end/ui/components/docs/panel_introduction_steps/basic.ts +1 -1
- package/front_end/ui/components/docs/perf_piechart/basic-with-legend.html +1 -1
- package/front_end/ui/components/docs/perf_piechart/basic-with-legend.ts +1 -1
- package/front_end/ui/components/docs/perf_piechart/basic-without-legend.html +1 -1
- package/front_end/ui/components/docs/perf_piechart/basic-without-legend.ts +1 -1
- package/front_end/ui/components/docs/radio_button/basic.html +1 -1
- package/front_end/ui/components/docs/radio_button/basic.ts +1 -1
- package/front_end/ui/components/docs/recorder_control_button/basic.html +1 -1
- package/front_end/ui/components/docs/recorder_control_button/basic.ts +1 -1
- package/front_end/ui/components/docs/recorder_create_recording_view/basic.html +1 -1
- package/front_end/ui/components/docs/recorder_create_recording_view/basic.ts +1 -1
- package/front_end/ui/components/docs/recorder_recording_list_view/basic.html +1 -1
- package/front_end/ui/components/docs/recorder_recording_list_view/basic.ts +1 -1
- package/front_end/ui/components/docs/recorder_select_button/basic.html +1 -1
- package/front_end/ui/components/docs/recorder_select_button/basic.ts +1 -1
- package/front_end/ui/components/docs/recorder_split_view/basic.html +1 -1
- package/front_end/ui/components/docs/recorder_split_view/basic.ts +1 -1
- package/front_end/ui/components/docs/report/basic.html +1 -1
- package/front_end/ui/components/docs/report/basic.ts +1 -1
- package/front_end/ui/components/docs/request_link_icon/basic.html +1 -1
- package/front_end/ui/components/docs/request_link_icon/basic.ts +1 -1
- package/front_end/ui/components/docs/select_menu/basic.html +1 -1
- package/front_end/ui/components/docs/select_menu/basic.ts +1 -1
- package/front_end/ui/components/docs/select_menu/wide-option.html +1 -1
- package/front_end/ui/components/docs/select_menu/wide-option.ts +1 -1
- package/front_end/ui/components/docs/slider/basic.html +1 -1
- package/front_end/ui/components/docs/slider/basic.ts +1 -1
- package/front_end/ui/components/docs/snackbars/basic.html +1 -1
- package/front_end/ui/components/docs/snackbars/basic.ts +1 -1
- package/front_end/ui/components/docs/spinners/basic.html +1 -1
- package/front_end/ui/components/docs/spinners/basic.ts +1 -1
- package/front_end/ui/components/docs/style_property_editor/flex.html +1 -2
- package/front_end/ui/components/docs/style_property_editor/flex.ts +1 -1
- package/front_end/ui/components/docs/style_property_editor/grid.html +1 -1
- package/front_end/ui/components/docs/style_property_editor/grid.ts +1 -1
- package/front_end/ui/components/docs/survey_link/basic.html +1 -1
- package/front_end/ui/components/docs/survey_link/basic.ts +1 -1
- package/front_end/ui/components/docs/switch/basic.html +1 -1
- package/front_end/ui/components/docs/switch/basic.ts +1 -1
- package/front_end/ui/components/docs/text_prompt/basic.html +2 -2
- package/front_end/ui/components/docs/text_prompt/basic.ts +1 -1
- package/front_end/ui/components/docs/theme_colors/basic.html +1 -1
- package/front_end/ui/components/docs/theme_colors/basic.ts +1 -1
- package/front_end/ui/components/docs/toggle_dark_mode.ts +1 -1
- package/front_end/ui/components/docs/toggle_fonts.ts +1 -1
- package/front_end/ui/components/docs/tooltip/basic.html +1 -1
- package/front_end/ui/components/docs/tooltip/basic.ts +1 -1
- package/front_end/ui/components/docs/tree_outline/basic.html +1 -1
- package/front_end/ui/components/docs/tree_outline/basic.ts +1 -1
- package/front_end/ui/components/docs/tree_outline/custom-renderers.html +1 -1
- package/front_end/ui/components/docs/tree_outline/custom-renderers.ts +1 -1
- package/front_end/ui/components/docs/tree_outline/lazy-children.html +1 -1
- package/front_end/ui/components/docs/tree_outline/lazy-children.ts +1 -1
- package/front_end/ui/components/docs/tree_outline/sample-data.ts +1 -1
- package/front_end/ui/components/docs/user_agent_client_hints/basic.html +1 -1
- package/front_end/ui/components/docs/user_agent_client_hints/basic.ts +1 -1
- package/front_end/ui/components/expandable_list/ExpandableList.ts +1 -1
- package/front_end/ui/components/expandable_list/expandableList.css +1 -1
- package/front_end/ui/components/expandable_list/expandable_list.ts +1 -1
- package/front_end/ui/components/helpers/component-server-setup.ts +1 -1
- package/front_end/ui/components/helpers/directives.ts +1 -1
- package/front_end/ui/components/helpers/get-root-node.ts +1 -1
- package/front_end/ui/components/helpers/helpers.ts +1 -1
- package/front_end/ui/components/helpers/scheduled-render.ts +1 -1
- package/front_end/ui/components/highlighting/HighlightManager.ts +1 -1
- package/front_end/ui/components/highlighting/highlighting.ts +1 -1
- package/front_end/ui/components/icon_button/FileSourceIcon.ts +1 -1
- package/front_end/ui/components/icon_button/Icon.ts +1 -1
- package/front_end/ui/components/icon_button/IconButton.ts +1 -1
- package/front_end/ui/components/icon_button/fileSourceIcon.css +1 -1
- package/front_end/ui/components/icon_button/icon.css +1 -1
- package/front_end/ui/components/icon_button/iconButton.css +1 -1
- package/front_end/ui/components/icon_button/icon_button.ts +1 -1
- package/front_end/ui/components/input/checkbox.css +1 -1
- package/front_end/ui/components/input/input.ts +1 -1
- package/front_end/ui/components/input/textInput.css +1 -1
- package/front_end/ui/components/issue_counter/IssueCounter.ts +1 -1
- package/front_end/ui/components/issue_counter/IssueLinkIcon.ts +1 -1
- package/front_end/ui/components/issue_counter/issueCounter.css +1 -1
- package/front_end/ui/components/issue_counter/issueLinkIcon.css +1 -1
- package/front_end/ui/components/issue_counter/issue_counter.ts +1 -1
- package/front_end/ui/components/legacy_wrapper/LegacyWrapper.ts +1 -1
- package/front_end/ui/components/legacy_wrapper/legacy_wrapper.ts +1 -1
- package/front_end/ui/components/linkifier/LinkifierImpl.ts +1 -1
- package/front_end/ui/components/linkifier/LinkifierUtils.ts +1 -1
- package/front_end/ui/components/linkifier/linkifier.ts +1 -1
- package/front_end/ui/components/linkifier/linkifierImpl.css +1 -1
- package/front_end/ui/components/markdown_view/CodeBlock.ts +1 -1
- package/front_end/ui/components/markdown_view/MarkdownImage.ts +1 -1
- package/front_end/ui/components/markdown_view/MarkdownImagesMap.ts +1 -1
- package/front_end/ui/components/markdown_view/MarkdownLink.ts +1 -1
- package/front_end/ui/components/markdown_view/MarkdownLinksMap.ts +1 -1
- package/front_end/ui/components/markdown_view/MarkdownView.ts +1 -1
- package/front_end/ui/components/markdown_view/codeBlock.css +1 -1
- package/front_end/ui/components/markdown_view/markdownImage.css +1 -1
- package/front_end/ui/components/markdown_view/markdownLink.css +1 -1
- package/front_end/ui/components/markdown_view/markdownView.css +1 -1
- package/front_end/ui/components/markdown_view/markdown_view.ts +1 -1
- package/front_end/ui/components/menus/Menu.ts +1 -1
- package/front_end/ui/components/menus/SelectMenu.ts +1 -1
- package/front_end/ui/components/menus/menu.css +1 -1
- package/front_end/ui/components/menus/menuGroup.css +1 -1
- package/front_end/ui/components/menus/menuItem.css +1 -1
- package/front_end/ui/components/menus/menus.ts +1 -1
- package/front_end/ui/components/menus/selectMenu.css +1 -1
- package/front_end/ui/components/menus/selectMenuButton.css +1 -1
- package/front_end/ui/components/node_text/NodeText.ts +1 -1
- package/front_end/ui/components/node_text/nodeText.css +1 -1
- package/front_end/ui/components/node_text/node_text.ts +1 -1
- package/front_end/ui/components/panel_feedback/FeedbackButton.ts +1 -1
- package/front_end/ui/components/panel_feedback/PanelFeedback.ts +1 -1
- package/front_end/ui/components/panel_feedback/PreviewToggle.ts +1 -1
- package/front_end/ui/components/panel_feedback/panelFeedback.css +1 -5
- package/front_end/ui/components/panel_feedback/panel_feedback.ts +1 -1
- package/front_end/ui/components/panel_feedback/previewToggle.css +1 -1
- package/front_end/ui/components/panel_introduction_steps/PanelIntroductionSteps.ts +1 -1
- package/front_end/ui/components/panel_introduction_steps/panelIntroductionSteps.css +1 -1
- package/front_end/ui/components/panel_introduction_steps/panel_introduction_steps.ts +1 -1
- package/front_end/ui/components/render_coordinator/render_coordinator.ts +1 -1
- package/front_end/ui/components/report_view/ReportView.ts +1 -1
- package/front_end/ui/components/report_view/report.css +1 -1
- package/front_end/ui/components/report_view/reportKey.css +1 -1
- package/front_end/ui/components/report_view/reportSection.css +1 -1
- package/front_end/ui/components/report_view/reportSectionDivider.css +1 -1
- package/front_end/ui/components/report_view/reportSectionHeader.css +1 -1
- package/front_end/ui/components/report_view/reportValue.css +1 -1
- package/front_end/ui/components/report_view/report_view.ts +1 -1
- package/front_end/ui/components/request_link_icon/RequestLinkIcon.ts +1 -1
- package/front_end/ui/components/request_link_icon/requestLinkIcon.css +1 -1
- package/front_end/ui/components/request_link_icon/request_link_icon.ts +1 -1
- package/front_end/ui/components/settings/SettingCheckbox.ts +10 -2
- package/front_end/ui/components/settings/SettingDeprecationWarning.ts +1 -1
- package/front_end/ui/components/settings/settingCheckbox.css +1 -1
- package/front_end/ui/components/settings/settingDeprecationWarning.css +1 -1
- package/front_end/ui/components/settings/settings.ts +1 -1
- package/front_end/ui/components/snackbars/Snackbar.ts +1 -1
- package/front_end/ui/components/snackbars/snackbar.css +1 -1
- package/front_end/ui/components/snackbars/snackbars.ts +1 -1
- package/front_end/ui/components/spinners/Spinner.ts +1 -1
- package/front_end/ui/components/spinners/spinner.css +1 -1
- package/front_end/ui/components/spinners/spinners.ts +1 -1
- package/front_end/ui/components/srgb_overlay/SrgbOverlay.ts +1 -1
- package/front_end/ui/components/srgb_overlay/srgbOverlay.css +1 -1
- package/front_end/ui/components/srgb_overlay/srgb_overlay.ts +1 -1
- package/front_end/ui/components/suggestion_input/SuggestionInput.ts +1 -1
- package/front_end/ui/components/suggestion_input/suggestionInput.css +1 -1
- package/front_end/ui/components/suggestion_input/suggestion_input.ts +1 -1
- package/front_end/ui/components/survey_link/SurveyLink.ts +1 -1
- package/front_end/ui/components/survey_link/surveyLink.css +1 -1
- package/front_end/ui/components/survey_link/survey_link.ts +1 -1
- package/front_end/ui/components/switch/SwitchImpl.ts +1 -1
- package/front_end/ui/components/switch/switch.css +1 -1
- package/front_end/ui/components/switch/switch.ts +1 -1
- package/front_end/ui/components/text_editor/AiCodeCompletionTeaserPlaceholder.ts +1 -1
- package/front_end/ui/components/text_editor/AutocompleteHistory.ts +1 -1
- package/front_end/ui/components/text_editor/ExecutionPositionHighlighter.ts +1 -1
- package/front_end/ui/components/text_editor/TextEditor.ts +1 -1
- package/front_end/ui/components/text_editor/TextEditorHistory.ts +1 -1
- package/front_end/ui/components/text_editor/config.ts +1 -1
- package/front_end/ui/components/text_editor/cursor_tooltip.ts +1 -1
- package/front_end/ui/components/text_editor/javascript.ts +1 -1
- package/front_end/ui/components/text_editor/position.ts +1 -1
- package/front_end/ui/components/text_editor/textEditor.css +1 -1
- package/front_end/ui/components/text_editor/text_editor.ts +1 -1
- package/front_end/ui/components/text_editor/theme.ts +1 -1
- package/front_end/ui/components/text_prompt/TextPrompt.ts +1 -1
- package/front_end/ui/components/text_prompt/textPrompt.css +1 -1
- package/front_end/ui/components/text_prompt/text_prompt.ts +1 -1
- package/front_end/ui/components/tooltips/Tooltip.ts +1 -1
- package/front_end/ui/components/tooltips/tooltip.css +1 -1
- package/front_end/ui/components/tooltips/tooltips.ts +1 -1
- package/front_end/ui/components/tree_outline/TreeOutline.ts +1 -1
- package/front_end/ui/components/tree_outline/TreeOutlineUtils.ts +1 -1
- package/front_end/ui/components/tree_outline/treeOutline.css +1 -1
- package/front_end/ui/components/tree_outline/tree_outline.ts +1 -1
- package/front_end/ui/components/visibility.gni +1 -1
- package/front_end/ui/legacy/ARIAUtils.ts +1 -1
- package/front_end/ui/legacy/ActionRegistration.ts +10 -10
- package/front_end/ui/legacy/ActionRegistry.ts +1 -1
- package/front_end/ui/legacy/Context.ts +1 -1
- package/front_end/ui/legacy/ContextFlavorListener.ts +1 -1
- package/front_end/ui/legacy/ContextMenu.ts +3 -29
- package/front_end/ui/legacy/Dialog.ts +3 -29
- package/front_end/ui/legacy/DockController.ts +21 -47
- package/front_end/ui/legacy/DropTarget.ts +1 -1
- package/front_end/ui/legacy/EmptyWidget.ts +3 -29
- package/front_end/ui/legacy/FilterBar.ts +10 -36
- package/front_end/ui/legacy/FilterSuggestionBuilder.ts +1 -1
- package/front_end/ui/legacy/ForwardedInputEventHandler.ts +1 -1
- package/front_end/ui/legacy/Fragment.ts +5 -5
- package/front_end/ui/legacy/GlassPane.ts +13 -13
- package/front_end/ui/legacy/Infobar.ts +1 -1
- package/front_end/ui/legacy/InplaceEditor.ts +1 -1
- package/front_end/ui/legacy/InspectorView.ts +8 -44
- package/front_end/ui/legacy/KeyboardShortcut.ts +1 -1
- package/front_end/ui/legacy/ListControl.ts +28 -28
- package/front_end/ui/legacy/ListModel.ts +1 -1
- package/front_end/ui/legacy/ListWidget.ts +5 -5
- package/front_end/ui/legacy/Panel.ts +1 -1
- package/front_end/ui/legacy/PopoverHelper.ts +7 -33
- package/front_end/ui/legacy/ProgressIndicator.ts +3 -29
- package/front_end/ui/legacy/RemoteDebuggingTerminatedScreen.ts +1 -1
- package/front_end/ui/legacy/ReportView.ts +1 -1
- package/front_end/ui/legacy/ResizerWidget.ts +1 -1
- package/front_end/ui/legacy/RootView.ts +1 -1
- package/front_end/ui/legacy/SearchableView.ts +1 -1
- package/front_end/ui/legacy/SettingsUI.ts +3 -29
- package/front_end/ui/legacy/ShortcutRegistry.ts +18 -18
- package/front_end/ui/legacy/SoftContextMenu.ts +7 -30
- package/front_end/ui/legacy/SoftDropDown.ts +1 -1
- package/front_end/ui/legacy/SplitWidget.ts +3 -29
- package/front_end/ui/legacy/SuggestBox.ts +3 -29
- package/front_end/ui/legacy/TabbedPane.ts +90 -121
- package/front_end/ui/legacy/TargetCrashedScreen.ts +1 -1
- package/front_end/ui/legacy/TextPrompt.ts +32 -32
- package/front_end/ui/legacy/ThrottledWidget.ts +1 -1
- package/front_end/ui/legacy/Toolbar.ts +21 -44
- package/front_end/ui/legacy/Tooltip.ts +1 -1
- package/front_end/ui/legacy/Treeoutline.ts +1 -1
- package/front_end/ui/legacy/UIUtils.ts +1 -8
- package/front_end/ui/legacy/View.ts +1 -1
- package/front_end/ui/legacy/ViewManager.ts +31 -32
- package/front_end/ui/legacy/ViewRegistration.ts +1 -1
- package/front_end/ui/legacy/Widget.ts +7 -7
- package/front_end/ui/legacy/XElement.ts +1 -1
- package/front_end/ui/legacy/XLink.ts +10 -10
- package/front_end/ui/legacy/XWidget.ts +1 -1
- package/front_end/ui/legacy/ZoomManager.ts +10 -10
- package/front_end/ui/legacy/checkboxTextLabel.css +1 -1
- package/front_end/ui/legacy/components/color_picker/ColorFormatSpec.ts +1 -1
- package/front_end/ui/legacy/components/color_picker/ContrastDetails.ts +28 -28
- package/front_end/ui/legacy/components/color_picker/ContrastInfo.ts +31 -33
- package/front_end/ui/legacy/components/color_picker/ContrastOverlay.ts +1 -1
- package/front_end/ui/legacy/components/color_picker/FormatPickerContextMenu.ts +1 -1
- package/front_end/ui/legacy/components/color_picker/Spectrum.ts +16 -16
- package/front_end/ui/legacy/components/color_picker/color_picker.ts +1 -1
- package/front_end/ui/legacy/components/color_picker/spectrum.css +1 -1
- package/front_end/ui/legacy/components/cookie_table/CookiesTable.ts +1 -1
- package/front_end/ui/legacy/components/cookie_table/cookie_table.ts +1 -1
- package/front_end/ui/legacy/components/cookie_table/cookiesTable.css +2 -2
- package/front_end/ui/legacy/components/data_grid/DataGrid.ts +64 -65
- package/front_end/ui/legacy/components/data_grid/DataGridElement.ts +1 -1
- package/front_end/ui/legacy/components/data_grid/ShowMoreDataGridNode.ts +5 -31
- package/front_end/ui/legacy/components/data_grid/SortableDataGrid.ts +1 -1
- package/front_end/ui/legacy/components/data_grid/ViewportDataGrid.ts +1 -1
- package/front_end/ui/legacy/components/data_grid/dataGrid.css +1 -1
- package/front_end/ui/legacy/components/data_grid/data_grid.ts +1 -1
- package/front_end/ui/legacy/components/inline_editor/AnimationTimingModel.ts +1 -1
- package/front_end/ui/legacy/components/inline_editor/AnimationTimingUI.ts +1 -1
- package/front_end/ui/legacy/components/inline_editor/BezierEditor.ts +1 -1
- package/front_end/ui/legacy/components/inline_editor/BezierUI.ts +1 -1
- package/front_end/ui/legacy/components/inline_editor/CSSAngle.ts +1 -1
- package/front_end/ui/legacy/components/inline_editor/CSSAngleEditor.ts +1 -1
- package/front_end/ui/legacy/components/inline_editor/CSSAngleSwatch.ts +1 -1
- package/front_end/ui/legacy/components/inline_editor/CSSAngleUtils.ts +1 -1
- package/front_end/ui/legacy/components/inline_editor/CSSLinearEasingModel.ts +1 -1
- package/front_end/ui/legacy/components/inline_editor/CSSShadowEditor.ts +1 -1
- package/front_end/ui/legacy/components/inline_editor/ColorMixSwatch.ts +1 -1
- package/front_end/ui/legacy/components/inline_editor/ColorSwatch.ts +1 -1
- package/front_end/ui/legacy/components/inline_editor/FontEditor.ts +1 -1
- package/front_end/ui/legacy/components/inline_editor/FontEditorUnitConverter.ts +1 -1
- package/front_end/ui/legacy/components/inline_editor/FontEditorUtils.ts +1 -1
- package/front_end/ui/legacy/components/inline_editor/InlineEditorUtils.ts +1 -1
- package/front_end/ui/legacy/components/inline_editor/LinkSwatch.ts +1 -1
- package/front_end/ui/legacy/components/inline_editor/SwatchPopoverHelper.ts +1 -1
- package/front_end/ui/legacy/components/inline_editor/Swatches.ts +1 -1
- package/front_end/ui/legacy/components/inline_editor/animationNameSwatch.css +1 -1
- package/front_end/ui/legacy/components/inline_editor/bezierEditor.css +1 -1
- package/front_end/ui/legacy/components/inline_editor/colorMixSwatch.css +1 -1
- package/front_end/ui/legacy/components/inline_editor/colorSwatch.css +1 -1
- package/front_end/ui/legacy/components/inline_editor/cssAngle.css +1 -1
- package/front_end/ui/legacy/components/inline_editor/cssAngleEditor.css +1 -1
- package/front_end/ui/legacy/components/inline_editor/cssAngleSwatch.css +1 -1
- package/front_end/ui/legacy/components/inline_editor/cssShadowEditor.css +1 -1
- package/front_end/ui/legacy/components/inline_editor/cssShadowSwatch.css +1 -1
- package/front_end/ui/legacy/components/inline_editor/fontEditor.css +1 -1
- package/front_end/ui/legacy/components/inline_editor/inline_editor.ts +1 -1
- package/front_end/ui/legacy/components/inline_editor/linkSwatch.css +1 -1
- package/front_end/ui/legacy/components/inline_editor/swatchPopover.css +1 -1
- package/front_end/ui/legacy/components/object_ui/CustomPreviewComponent.ts +1 -1
- package/front_end/ui/legacy/components/object_ui/JavaScriptREPL.ts +1 -1
- package/front_end/ui/legacy/components/object_ui/ObjectPopoverHelper.ts +3 -29
- package/front_end/ui/legacy/components/object_ui/ObjectPropertiesSection.ts +11 -12
- package/front_end/ui/legacy/components/object_ui/RemoteObjectPreviewFormatter.ts +1 -1
- package/front_end/ui/legacy/components/object_ui/customPreviewComponent.css +1 -1
- package/front_end/ui/legacy/components/object_ui/objectPopover.css +1 -1
- package/front_end/ui/legacy/components/object_ui/objectPropertiesSection.css +1 -1
- package/front_end/ui/legacy/components/object_ui/objectValue.css +1 -1
- package/front_end/ui/legacy/components/object_ui/object_ui-meta.ts +1 -1
- package/front_end/ui/legacy/components/object_ui/object_ui.ts +1 -1
- package/front_end/ui/legacy/components/perf_ui/BrickBreaker.ts +1 -1
- package/front_end/ui/legacy/components/perf_ui/CanvasHelper.ts +1 -1
- package/front_end/ui/legacy/components/perf_ui/ChartViewport.ts +13 -13
- package/front_end/ui/legacy/components/perf_ui/FilmStripView.ts +1 -1
- package/front_end/ui/legacy/components/perf_ui/FlameChart.ts +3 -3
- package/front_end/ui/legacy/components/perf_ui/Font.ts +1 -1
- package/front_end/ui/legacy/components/perf_ui/GCActionDelegate.ts +1 -1
- package/front_end/ui/legacy/components/perf_ui/LineLevelProfile.ts +1 -1
- package/front_end/ui/legacy/components/perf_ui/LiveHeapProfile.ts +1 -1
- package/front_end/ui/legacy/components/perf_ui/NetworkPriorities.ts +1 -1
- package/front_end/ui/legacy/components/perf_ui/OverviewGrid.ts +3 -29
- package/front_end/ui/legacy/components/perf_ui/PieChart.ts +1 -1
- package/front_end/ui/legacy/components/perf_ui/TimelineGrid.ts +15 -15
- package/front_end/ui/legacy/components/perf_ui/TimelineOverviewCalculator.ts +1 -1
- package/front_end/ui/legacy/components/perf_ui/TimelineOverviewPane.ts +11 -37
- package/front_end/ui/legacy/components/perf_ui/chartViewport.css +1 -1
- package/front_end/ui/legacy/components/perf_ui/filmStripView.css +1 -1
- package/front_end/ui/legacy/components/perf_ui/flameChart.css +1 -1
- package/front_end/ui/legacy/components/perf_ui/overviewGrid.css +1 -1
- package/front_end/ui/legacy/components/perf_ui/perf_ui-meta.ts +1 -1
- package/front_end/ui/legacy/components/perf_ui/perf_ui.ts +1 -1
- package/front_end/ui/legacy/components/perf_ui/pieChart.css +1 -1
- package/front_end/ui/legacy/components/perf_ui/timelineGrid.css +1 -1
- package/front_end/ui/legacy/components/perf_ui/timelineOverviewInfo.css +1 -1
- package/front_end/ui/legacy/components/quick_open/CommandMenu.ts +6 -6
- package/front_end/ui/legacy/components/quick_open/FilteredListWidget.ts +1 -1
- package/front_end/ui/legacy/components/quick_open/HelpQuickOpen.ts +1 -1
- package/front_end/ui/legacy/components/quick_open/QuickOpen.ts +1 -1
- package/front_end/ui/legacy/components/quick_open/filteredListWidget.css +1 -1
- package/front_end/ui/legacy/components/quick_open/quick_open-meta.ts +1 -1
- package/front_end/ui/legacy/components/quick_open/quick_open.ts +1 -1
- package/front_end/ui/legacy/components/source_frame/BinaryResourceViewFactory.ts +1 -1
- package/front_end/ui/legacy/components/source_frame/FontView.ts +1 -1
- package/front_end/ui/legacy/components/source_frame/ImageView.ts +1 -1
- package/front_end/ui/legacy/components/source_frame/JSONView.ts +3 -29
- package/front_end/ui/legacy/components/source_frame/PreviewFactory.ts +1 -1
- package/front_end/ui/legacy/components/source_frame/ResourceSourceFrame.ts +5 -5
- package/front_end/ui/legacy/components/source_frame/SourceFrame.ts +3 -29
- package/front_end/ui/legacy/components/source_frame/StreamingContentHexView.ts +1 -1
- package/front_end/ui/legacy/components/source_frame/XMLView.ts +3 -3
- package/front_end/ui/legacy/components/source_frame/fontView.css +1 -1
- package/front_end/ui/legacy/components/source_frame/imageView.css +1 -1
- package/front_end/ui/legacy/components/source_frame/jsonView.css +1 -1
- package/front_end/ui/legacy/components/source_frame/resourceSourceFrame.css +1 -1
- package/front_end/ui/legacy/components/source_frame/source_frame-meta.ts +1 -1
- package/front_end/ui/legacy/components/source_frame/source_frame.ts +1 -1
- package/front_end/ui/legacy/components/source_frame/xmlTree.css +1 -1
- package/front_end/ui/legacy/components/source_frame/xmlView.css +1 -1
- package/front_end/ui/legacy/components/utils/ImagePreview.ts +1 -1
- package/front_end/ui/legacy/components/utils/JSPresentationUtils.ts +1 -1
- package/front_end/ui/legacy/components/utils/Linkifier.ts +3 -29
- package/front_end/ui/legacy/components/utils/Reload.ts +1 -1
- package/front_end/ui/legacy/components/utils/TargetDetachedDialog.ts +1 -1
- package/front_end/ui/legacy/components/utils/imagePreview.css +1 -1
- package/front_end/ui/legacy/components/utils/jsUtils.css +1 -1
- package/front_end/ui/legacy/components/utils/utils.ts +1 -1
- package/front_end/ui/legacy/confirmDialog.css +1 -1
- package/front_end/ui/legacy/dialog.css +1 -1
- package/front_end/ui/legacy/dropTarget.css +1 -1
- package/front_end/ui/legacy/emptyWidget.css +1 -1
- package/front_end/ui/legacy/filter.css +3 -27
- package/front_end/ui/legacy/glassPane.css +1 -1
- package/front_end/ui/legacy/infobar.css +1 -1
- package/front_end/ui/legacy/inlineButton.css +1 -1
- package/front_end/ui/legacy/inspectorCommon.css +1 -1
- package/front_end/ui/legacy/legacy.ts +1 -1
- package/front_end/ui/legacy/listWidget.css +1 -1
- package/front_end/ui/legacy/popover.css +1 -1
- package/front_end/ui/legacy/progressIndicator.css +1 -1
- package/front_end/ui/legacy/remoteDebuggingTerminatedScreen.css +1 -1
- package/front_end/ui/legacy/reportView.css +1 -1
- package/front_end/ui/legacy/rootView.css +1 -1
- package/front_end/ui/legacy/searchableView.css +1 -1
- package/front_end/ui/legacy/smallBubble.css +1 -1
- package/front_end/ui/legacy/softContextMenu.css +1 -1
- package/front_end/ui/legacy/softDropDown.css +1 -1
- package/front_end/ui/legacy/softDropDownButton.css +1 -1
- package/front_end/ui/legacy/suggestBox.css +3 -27
- package/front_end/ui/legacy/targetCrashedScreen.css +1 -1
- package/front_end/ui/legacy/textPrompt.css +1 -1
- package/front_end/ui/legacy/theme_support/ThemeSupport.ts +5 -5
- package/front_end/ui/legacy/theme_support/theme_support.ts +1 -1
- package/front_end/ui/legacy/toolbar.css +1 -1
- package/front_end/ui/legacy/treeoutline.css +1 -1
- package/front_end/ui/legacy/viewContainers.css +1 -1
- package/front_end/ui/legacy/visibility.gni +1 -1
- package/front_end/ui/lit/i18n-template.ts +1 -1
- package/front_end/ui/lit/lit.ts +1 -1
- package/front_end/ui/lit/strip-whitespace.ts +1 -1
- package/front_end/ui/lit/visibility.gni +1 -1
- package/front_end/ui/visual_logging/Debugging.ts +1 -1
- package/front_end/ui/visual_logging/DomState.ts +1 -1
- package/front_end/ui/visual_logging/KnownContextValues.ts +5 -3
- package/front_end/ui/visual_logging/Loggable.ts +1 -1
- package/front_end/ui/visual_logging/LoggingConfig.ts +1 -1
- package/front_end/ui/visual_logging/LoggingDriver.ts +1 -1
- package/front_end/ui/visual_logging/LoggingEvents.ts +1 -1
- package/front_end/ui/visual_logging/LoggingState.ts +1 -1
- package/front_end/ui/visual_logging/NonDomState.ts +1 -1
- package/front_end/ui/visual_logging/visual_logging-testing.ts +1 -1
- package/front_end/ui/visual_logging/visual_logging.ts +1 -1
- package/front_end/visibility.gni +1 -1
- package/inspector_overlay/common.css +1 -1
- package/inspector_overlay/common.ts +1 -1
- package/inspector_overlay/css_grid_label_helpers.ts +1 -1
- package/inspector_overlay/debug/main.html +1 -1
- package/inspector_overlay/debug/tool_highlight_bottom_arrow.html +1 -1
- package/inspector_overlay/debug/tool_highlight_explicit_grid.html +1 -1
- package/inspector_overlay/debug/tool_highlight_flex.html +1 -1
- package/inspector_overlay/debug/tool_highlight_flex_alignment.html +1 -1
- package/inspector_overlay/debug/tool_highlight_flex_baseline.html +1 -1
- package/inspector_overlay/debug/tool_highlight_flex_gap.html +1 -1
- package/inspector_overlay/debug/tool_highlight_flex_item_base_size.html +1 -1
- package/inspector_overlay/debug/tool_highlight_flex_multiple.html +1 -1
- package/inspector_overlay/debug/tool_highlight_flex_transformed.html +1 -1
- package/inspector_overlay/debug/tool_highlight_fullpage_grid.html +1 -1
- package/inspector_overlay/debug/tool_highlight_grid.html +1 -1
- package/inspector_overlay/debug/tool_highlight_grid_multiple.html +1 -1
- package/inspector_overlay/debug/tool_highlight_grid_rtl.html +1 -1
- package/inspector_overlay/debug/tool_highlight_grid_sizes.html +1 -1
- package/inspector_overlay/debug/tool_highlight_grid_transformed.html +1 -1
- package/inspector_overlay/debug/tool_highlight_grid_vertical.html +1 -1
- package/inspector_overlay/debug/tool_highlight_huge_grid.html +1 -1
- package/inspector_overlay/debug/tool_highlight_implicit_grid.html +1 -1
- package/inspector_overlay/debug/tool_highlight_named_areas_grid.html +1 -1
- package/inspector_overlay/debug/tool_highlight_named_lines_grid.html +1 -1
- package/inspector_overlay/debug/tool_highlight_narrow_tracks_grid.html +1 -1
- package/inspector_overlay/debug/tool_highlight_rulers.html +1 -1
- package/inspector_overlay/debug/tool_highlight_subpixel_grid.html +1 -1
- package/inspector_overlay/debug/tool_highlight_top_arrow.html +1 -1
- package/inspector_overlay/debug/tool_highlight_with_persistent_grid.html +1 -1
- package/inspector_overlay/debug/tool_paused.html +1 -1
- package/inspector_overlay/debug/tool_persistent_flex.html +1 -3
- package/inspector_overlay/debug/tool_persistent_isolated_element.html +1 -5
- package/inspector_overlay/debug/tool_persistent_scroll_snap.html +1 -5
- package/inspector_overlay/debug/tool_screenshot.html +1 -1
- package/inspector_overlay/debug/tool_source_order.html +1 -1
- package/inspector_overlay/debug/tool_viewport_size.html +1 -1
- package/inspector_overlay/debug/tool_window_controls.html +2 -2
- package/inspector_overlay/debug/tool_window_controls_overlay.html +2 -2
- package/inspector_overlay/drag_resize_handler.ts +1 -1
- package/inspector_overlay/highlight_common.ts +1 -1
- package/inspector_overlay/highlight_container_query.ts +1 -1
- package/inspector_overlay/highlight_flex_common.ts +1 -1
- package/inspector_overlay/highlight_grid_common.ts +1 -1
- package/inspector_overlay/highlight_isolated_element.ts +1 -1
- package/inspector_overlay/highlight_scroll_snap.ts +1 -1
- package/inspector_overlay/loadCSS.rollup.js +1 -1
- package/inspector_overlay/main.ts +1 -1
- package/inspector_overlay/testing/InspectorOverlayHelpers.ts +1 -1
- package/inspector_overlay/tool_grid.css +1 -1
- package/inspector_overlay/tool_highlight.css +1 -1
- package/inspector_overlay/tool_highlight.ts +1 -1
- package/inspector_overlay/tool_paused.css +1 -1
- package/inspector_overlay/tool_paused.ts +1 -1
- package/inspector_overlay/tool_persistent.ts +1 -1
- package/inspector_overlay/tool_screenshot.css +1 -1
- package/inspector_overlay/tool_screenshot.ts +1 -1
- package/inspector_overlay/tool_source_order.css +1 -1
- package/inspector_overlay/tool_source_order.ts +1 -1
- package/inspector_overlay/tool_viewport_size.ts +1 -1
- package/inspector_overlay/tool_window_controls.css +1 -1
- package/inspector_overlay/tool_window_controls.ts +1 -1
- package/package.json +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/AriaQueryHandler.d.ts.map +0 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/AriaQueryHandler.js.map +0 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/AriaQueryHandler.d.ts.map +0 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/AriaQueryHandler.js.map +0 -1
@@ -1,2 +1,2 @@
|
|
1
|
-
import{H as O,E as e,s as t,t as o,b as r,L as n,i as a,e as l,Y as s,a as i,o as c}from"./codemirror.js";function $(O){return 45==O||46==O||58==O||O>=65&&O<=90||95==O||O>=97&&O<=122||O>=161}let S=null,p=null,x=0;function m(O,e){let t=O.pos+e;if(p==O&&x==t)return S;for(;9==(o=O.peek(e))||10==o||13==o||32==o;)e++;var o;let r="";for(;;){let t=O.peek(e);if(!$(t))break;r+=String.fromCharCode(t),e++}return p=O,x=t,S=r||null}function u(O,e){this.name=O,this.parent=e}const q=new O({start:null,shift:(O,e,t,o)=>1==e?new u(m(o,1)||"",O):O,reduce:(O,e)=>11==e&&O?O.parent:O,reuse(O,e,t,o){let r=e.type.id;return 1==r||13==r?new u(m(o,1)||"",O):O},strict:!1}),g=new e(((O,e)=>{if(60==O.next)if(O.advance(),47==O.next){O.advance();let t=m(O,0);if(!t)return O.acceptToken(5);if(e.context&&t==e.context.name)return O.acceptToken(2);for(let o=e.context;o;o=o.parent)if(o.name==t)return O.acceptToken(3,-2);O.acceptToken(4)}else if(33!=O.next&&63!=O.next)return O.acceptToken(1)}),{contextual:!0});function f(O,t){return new e((e=>{let o=0,r=t.charCodeAt(0);O:for(;!(e.next<0);e.advance(),o++)if(e.next==r){for(let O=1;O<t.length;O++)if(e.peek(O)!=t.charCodeAt(O))continue O;break}o&&e.acceptToken(O)}))}const P=f(36,"--\x3e"),d=f(37,"?>"),v=f(38,"]]>"),T=t({Text:o.content,"StartTag StartCloseTag EndTag SelfCloseEndTag":o.angleBracket,TagName:o.tagName,"MismatchedCloseTag/TagName":[o.tagName,o.invalid],AttributeName:o.attributeName,AttributeValue:o.attributeValue,Is:o.definitionOperator,"EntityReference CharacterReference":o.character,Comment:o.blockComment,ProcessingInst:o.processingInstruction,DoctypeDecl:o.documentMeta,Cdata:o.special(o.string)}),b=r.deserialize({version:14,states:",lOQOaOOOrOxO'#CfOzOpO'#CiO!tOaO'#CgOOOP'#Cg'#CgO!{OrO'#CrO#TOtO'#CsO#]OpO'#CtOOOP'#DT'#DTOOOP'#Cv'#CvQQOaOOOOOW'#Cw'#CwO#eOxO,59QOOOP,59Q,59QOOOO'#Cx'#CxO#mOpO,59TO#uO!bO,59TOOOP'#C|'#C|O$TOaO,59RO$[OpO'#CoOOOP,59R,59ROOOQ'#C}'#C}O$dOrO,59^OOOP,59^,59^OOOS'#DO'#DOO$lOtO,59_OOOP,59_,59_O$tOpO,59`O$|OpO,59`OOOP-E6t-E6tOOOW-E6u-E6uOOOP1G.l1G.lOOOO-E6v-E6vO%UO!bO1G.oO%UO!bO1G.oO%dOpO'#CkO%lO!bO'#CyO%zO!bO1G.oOOOP1G.o1G.oOOOP1G.w1G.wOOOP-E6z-E6zOOOP1G.m1G.mO&VOpO,59ZO&_OpO,59ZOOOQ-E6{-E6{OOOP1G.x1G.xOOOS-E6|-E6|OOOP1G.y1G.yO&gOpO1G.zO&gOpO1G.zOOOP1G.z1G.zO&oO!bO7+$ZO&}O!bO7+$ZOOOP7+$Z7+$ZOOOP7+$c7+$cO'YOpO,59VO'bOpO,59VO'mO!bO,59eOOOO-E6w-E6wO'{OpO1G.uO'{OpO1G.uOOOP1G.u1G.uO(TOpO7+$fOOOP7+$f7+$fO(]O!bO<<GuOOOP<<Gu<<GuOOOP<<G}<<G}O'bOpO1G.qO'bOpO1G.qO(hO#tO'#CnO(vO&jO'#CnOOOO1G.q1G.qO)UOpO7+$aOOOP7+$a7+$aOOOP<<HQ<<HQOOOPAN=aAN=aOOOPAN=iAN=iO'bOpO7+$]OOOO7+$]7+$]OOOO'#Cz'#CzO)^O#tO,59YOOOO,59Y,59YOOOO'#C{'#C{O)lO&jO,59YOOOP<<G{<<G{OOOO<<Gw<<GwOOOO-E6x-E6xOOOO1G.t1G.tOOOO-E6y-E6y",stateData:")z~OPQOSVOTWOVWOWWOXWOiXOyPO!QTO!SUO~OvZOx]O~O^`Oz^O~OPQOQcOSVOTWOVWOWWOXWOyPO!QTO!SUO~ORdO~P!SOteO!PgO~OuhO!RjO~O^lOz^O~OvZOxoO~O^qOz^O~O[vO`sOdwOz^O~ORyO~P!SO^{Oz^O~OteO!P}O~OuhO!R!PO~O^!QOz^O~O[!SOz^O~O[!VO`sOd!WOz^O~Oa!YOz^O~Oz^O[mX`mXdmX~O[!VO`sOd!WO~O^!]Oz^O~O[!_Oz^O~O[!aOz^O~O[!cO`sOd!dOz^O~O[!cO`sOd!dO~Oa!eOz^O~Oz^O{!gO}!hO~Oz^O[ma`madma~O[!kOz^O~O[!lOz^O~O[!mO`sOd!nO~OW!qOX!qO{!sO|!qO~OW!tOX!tO}!sO!O!tO~O[!vOz^O~OW!qOX!qO{!yO|!qO~OW!tOX!tO}!yO!O!tO~O",goto:"%cxPPPPPPPPPPyyP!PP!VPP!`!jP!pyyyP!v!|#S$[$k$q$w$}%TPPPP%ZXWORYbXRORYb_t`qru!T!U!bQ!i!YS!p!e!fR!w!oQdRRybXSORYbQYORmYQ[PRn[Q_QQkVjp_krz!R!T!X!Z!^!`!f!j!oQr`QzcQ!RlQ!TqQ!XsQ!ZtQ!^{Q!`!QQ!f!YQ!j!]R!o!eQu`S!UqrU![u!U!bR!b!TQ!r!gR!x!rQ!u!hR!z!uQbRRxbQfTR|fQiUR!OiSXOYTaRb",nodeNames:"⚠ StartTag StartCloseTag MissingCloseTag StartCloseTag StartCloseTag Document Text EntityReference CharacterReference Cdata Element EndTag OpenTag TagName Attribute AttributeName Is AttributeValue CloseTag SelfCloseEndTag SelfClosingTag Comment ProcessingInst MismatchedCloseTag DoctypeDecl",maxTerm:50,context:q,nodeProps:[["closedBy",1,"SelfCloseEndTag EndTag",13,"CloseTag MissingCloseTag"],["openedBy",12,"StartTag StartCloseTag",19,"OpenTag",20,"StartTag"],["isolate",-6,13,18,19,21,22,24,""]],propSources:[T],skippedNodes:[0],repeatNodeCount:9,tokenData:"!)v~R!YOX$qXY)iYZ)iZ]$q]^)i^p$qpq)iqr$qrs*vsv$qvw+fwx/ix}$q}!O0[!O!P$q!P!Q2z!Q![$q![!]4n!]!^$q!^!_8U!_!`!#t!`!a!$l!a!b!%d!b!c$q!c!}4n!}#P$q#P#Q!'W#Q#R$q#R#S4n#S#T$q#T#o4n#o%W$q%W%o4n%o%p$q%p&a4n&a&b$q&b1p4n1p4U$q4U4d4n4d4e$q4e$IS4n$IS$I`$q$I`$Ib4n$Ib$Kh$q$Kh%#t4n%#t&/x$q&/x&Et4n&Et&FV$q&FV;'S4n;'S;:j8O;:j;=`)c<%l?&r$q?&r?Ah4n?Ah?BY$q?BY?Mn4n?MnO$qi$zXVP|W!O`Or$qrs%gsv$qwx'^x!^$q!^!_(o!_;'S$q;'S;=`)c<%lO$qa%nVVP!O`Ov%gwx&Tx!^%g!^!_&o!_;'S%g;'S;=`'W<%lO%gP&YTVPOv&Tw!^&T!_;'S&T;'S;=`&i<%lO&TP&lP;=`<%l&T`&tS!O`Ov&ox;'S&o;'S;=`'Q<%lO&o`'TP;=`<%l&oa'ZP;=`<%l%gX'eWVP|WOr'^rs&Tsv'^w!^'^!^!_'}!_;'S'^;'S;=`(i<%lO'^W(ST|WOr'}sv'}w;'S'};'S;=`(c<%lO'}W(fP;=`<%l'}X(lP;=`<%l'^h(vV|W!O`Or(ors&osv(owx'}x;'S(o;'S;=`)]<%lO(oh)`P;=`<%l(oi)fP;=`<%l$qo)t`VP|W!O`zUOX$qXY)iYZ)iZ]$q]^)i^p$qpq)iqr$qrs%gsv$qwx'^x!^$q!^!_(o!_;'S$q;'S;=`)c<%lO$qk+PV{YVP!O`Ov%gwx&Tx!^%g!^!_&o!_;'S%g;'S;=`'W<%lO%g~+iast,n![!]-r!c!}-r#R#S-r#T#o-r%W%o-r%p&a-r&b1p-r4U4d-r4e$IS-r$I`$Ib-r$Kh%#t-r&/x&Et-r&FV;'S-r;'S;:j/c?&r?Ah-r?BY?Mn-r~,qQ!Q![,w#l#m-V~,zQ!Q![,w!]!^-Q~-VOX~~-YR!Q![-c!c!i-c#T#Z-c~-fS!Q![-c!]!^-Q!c!i-c#T#Z-c~-ug}!O-r!O!P-r!Q![-r![!]-r!]!^/^!c!}-r#R#S-r#T#o-r$}%O-r%W%o-r%p&a-r&b1p-r1p4U-r4U4d-r4e$IS-r$I`$Ib-r$Je$Jg-r$Kh%#t-r&/x&Et-r&FV;'S-r;'S;:j/c?&r?Ah-r?BY?Mn-r~/cOW~~/fP;=`<%l-rk/rW}bVP|WOr'^rs&Tsv'^w!^'^!^!_'}!_;'S'^;'S;=`(i<%lO'^k0eZVP|W!O`Or$qrs%gsv$qwx'^x}$q}!O1W!O!^$q!^!_(o!_;'S$q;'S;=`)c<%lO$qk1aZVP|W!O`Or$qrs%gsv$qwx'^x!^$q!^!_(o!_!`$q!`!a2S!a;'S$q;'S;=`)c<%lO$qk2_X!PQVP|W!O`Or$qrs%gsv$qwx'^x!^$q!^!_(o!_;'S$q;'S;=`)c<%lO$qm3TZVP|W!O`Or$qrs%gsv$qwx'^x!^$q!^!_(o!_!`$q!`!a3v!a;'S$q;'S;=`)c<%lO$qm4RXdSVP|W!O`Or$qrs%gsv$qwx'^x!^$q!^!_(o!_;'S$q;'S;=`)c<%lO$qo4{!P`S^QVP|W!O`Or$qrs%gsv$qwx'^x}$q}!O4n!O!P4n!P!Q$q!Q![4n![!]4n!]!^$q!^!_(o!_!c$q!c!}4n!}#R$q#R#S4n#S#T$q#T#o4n#o$}$q$}%O4n%O%W$q%W%o4n%o%p$q%p&a4n&a&b$q&b1p4n1p4U4n4U4d4n4d4e$q4e$IS4n$IS$I`$q$I`$Ib4n$Ib$Je$q$Je$Jg4n$Jg$Kh$q$Kh%#t4n%#t&/x$q&/x&Et4n&Et&FV$q&FV;'S4n;'S;:j8O;:j;=`)c<%l?&r$q?&r?Ah4n?Ah?BY$q?BY?Mn4n?MnO$qo8RP;=`<%l4ni8]Y|W!O`Oq(oqr8{rs&osv(owx'}x!a(o!a!b!#U!b;'S(o;'S;=`)]<%lO(oi9S_|W!O`Or(ors&osv(owx'}x}(o}!O:R!O!f(o!f!g;e!g!}(o!}#ODh#O#W(o#W#XLp#X;'S(o;'S;=`)]<%lO(oi:YX|W!O`Or(ors&osv(owx'}x}(o}!O:u!O;'S(o;'S;=`)]<%lO(oi;OV!QP|W!O`Or(ors&osv(owx'}x;'S(o;'S;=`)]<%lO(oi;lX|W!O`Or(ors&osv(owx'}x!q(o!q!r<X!r;'S(o;'S;=`)]<%lO(oi<`X|W!O`Or(ors&osv(owx'}x!e(o!e!f<{!f;'S(o;'S;=`)]<%lO(oi=SX|W!O`Or(ors&osv(owx'}x!v(o!v!w=o!w;'S(o;'S;=`)]<%lO(oi=vX|W!O`Or(ors&osv(owx'}x!{(o!{!|>c!|;'S(o;'S;=`)]<%lO(oi>jX|W!O`Or(ors&osv(owx'}x!r(o!r!s?V!s;'S(o;'S;=`)]<%lO(oi?^X|W!O`Or(ors&osv(owx'}x!g(o!g!h?y!h;'S(o;'S;=`)]<%lO(oi@QY|W!O`Or?yrs@psv?yvwA[wxBdx!`?y!`!aCr!a;'S?y;'S;=`Db<%lO?ya@uV!O`Ov@pvxA[x!`@p!`!aAy!a;'S@p;'S;=`B^<%lO@pPA_TO!`A[!`!aAn!a;'SA[;'S;=`As<%lOA[PAsOiPPAvP;=`<%lA[aBQSiP!O`Ov&ox;'S&o;'S;=`'Q<%lO&oaBaP;=`<%l@pXBiX|WOrBdrsA[svBdvwA[w!`Bd!`!aCU!a;'SBd;'S;=`Cl<%lOBdXC]TiP|WOr'}sv'}w;'S'};'S;=`(c<%lO'}XCoP;=`<%lBdiC{ViP|W!O`Or(ors&osv(owx'}x;'S(o;'S;=`)]<%lO(oiDeP;=`<%l?yiDoZ|W!O`Or(ors&osv(owx'}x!e(o!e!fEb!f#V(o#V#WIr#W;'S(o;'S;=`)]<%lO(oiEiX|W!O`Or(ors&osv(owx'}x!f(o!f!gFU!g;'S(o;'S;=`)]<%lO(oiF]X|W!O`Or(ors&osv(owx'}x!c(o!c!dFx!d;'S(o;'S;=`)]<%lO(oiGPX|W!O`Or(ors&osv(owx'}x!v(o!v!wGl!w;'S(o;'S;=`)]<%lO(oiGsX|W!O`Or(ors&osv(owx'}x!c(o!c!dH`!d;'S(o;'S;=`)]<%lO(oiHgX|W!O`Or(ors&osv(owx'}x!}(o!}#OIS#O;'S(o;'S;=`)]<%lO(oiI]V|W!O`yPOr(ors&osv(owx'}x;'S(o;'S;=`)]<%lO(oiIyX|W!O`Or(ors&osv(owx'}x#W(o#W#XJf#X;'S(o;'S;=`)]<%lO(oiJmX|W!O`Or(ors&osv(owx'}x#T(o#T#UKY#U;'S(o;'S;=`)]<%lO(oiKaX|W!O`Or(ors&osv(owx'}x#h(o#h#iK|#i;'S(o;'S;=`)]<%lO(oiLTX|W!O`Or(ors&osv(owx'}x#T(o#T#UH`#U;'S(o;'S;=`)]<%lO(oiLwX|W!O`Or(ors&osv(owx'}x#c(o#c#dMd#d;'S(o;'S;=`)]<%lO(oiMkX|W!O`Or(ors&osv(owx'}x#V(o#V#WNW#W;'S(o;'S;=`)]<%lO(oiN_X|W!O`Or(ors&osv(owx'}x#h(o#h#iNz#i;'S(o;'S;=`)]<%lO(oi! RX|W!O`Or(ors&osv(owx'}x#m(o#m#n! n#n;'S(o;'S;=`)]<%lO(oi! uX|W!O`Or(ors&osv(owx'}x#d(o#d#e!!b#e;'S(o;'S;=`)]<%lO(oi!!iX|W!O`Or(ors&osv(owx'}x#X(o#X#Y?y#Y;'S(o;'S;=`)]<%lO(oi!#_V!SP|W!O`Or(ors&osv(owx'}x;'S(o;'S;=`)]<%lO(ok!$PXaQVP|W!O`Or$qrs%gsv$qwx'^x!^$q!^!_(o!_;'S$q;'S;=`)c<%lO$qo!$wX[UVP|W!O`Or$qrs%gsv$qwx'^x!^$q!^!_(o!_;'S$q;'S;=`)c<%lO$qk!%mZVP|W!O`Or$qrs%gsv$qwx'^x!^$q!^!_(o!_!`$q!`!a!&`!a;'S$q;'S;=`)c<%lO$qk!&kX!RQVP|W!O`Or$qrs%gsv$qwx'^x!^$q!^!_(o!_;'S$q;'S;=`)c<%lO$qk!'aZVP|W!O`Or$qrs%gsv$qwx'^x!^$q!^!_(o!_#P$q#P#Q!(S#Q;'S$q;'S;=`)c<%lO$qk!(]ZVP|W!O`Or$qrs%gsv$qwx'^x!^$q!^!_(o!_!`$q!`!a!)O!a;'S$q;'S;=`)c<%lO$qk!)ZXxQVP|W!O`Or$qrs%gsv$qwx'^x!^$q!^!_(o!_;'S$q;'S;=`)c<%lO$q",tokenizers:[g,P,d,v,0,1,2,3,4],topRules:{Document:[0,6]},tokenPrec:0});function W(O,e){let t=e&&e.getChild("TagName");return t?O.sliceString(t.from,t.to):""}function C(O,e){let t=e&&e.firstChild;return t&&"OpenTag"==t.name?W(O,t):""}function w(O){for(let e=O&&O.parent;e;e=e.parent)if("Element"==e.name)return e;return null}class h{constructor(O,e,t){this.attrs=e,this.attrValues=t,this.children=[],this.name=O.name,this.completion=Object.assign(Object.assign({type:"type"},O.completion||{}),{label:this.name}),this.openCompletion=Object.assign(Object.assign({},this.completion),{label:"<"+this.name}),this.closeCompletion=Object.assign(Object.assign({},this.completion),{label:"</"+this.name+">",boost:2}),this.closeNameCompletion=Object.assign(Object.assign({},this.completion),{label:this.name+">"}),this.text=O.textContent?O.textContent.map((O=>({label:O,type:"text"}))):[]}}const Q=/^[:\-\.\w\u00b7-\uffff]*$/;function X(O){return Object.assign(Object.assign({type:"property"},O.completion||{}),{label:O.name})}function y(O){return"string"==typeof O?{label:`"${O}"`,type:"constant"}:/^"/.test(O.label)?O:Object.assign(Object.assign({},O),{label:`"${O.label}"`})}function V(O,e){let t=[],o=[],r=Object.create(null);for(let O of e){let e=X(O);t.push(e),O.global&&o.push(e),O.values&&(r[O.name]=O.values.map(y))}let n=[],a=[],l=Object.create(null);for(let e of O){let O=o,s=r;e.attributes&&(O=O.concat(e.attributes.map((O=>"string"==typeof O?t.find((e=>e.label==O))||{label:O,type:"property"}:(O.values&&(s==r&&(s=Object.create(s)),s[O.name]=O.values.map(y)),X(O))))));let i=new h(e,O,s);l[i.name]=i,n.push(i),e.top&&a.push(i)}a.length||(a=n);for(let e=0;e<n.length;e++){let t=O[e],o=n[e];if(t.children)for(let O of t.children)l[O]&&o.children.push(l[O]);else o.children=n}return O=>{var e;let{doc:t}=O.state,s=function(O,e){var t;let o=c(O).resolveInner(e,-1),r=null;for(let O=o;!r&&O.parent;O=O.parent)"OpenTag"!=O.name&&"CloseTag"!=O.name&&"SelfClosingTag"!=O.name&&"MismatchedCloseTag"!=O.name||(r=O);if(r&&(r.to>e||r.lastChild.type.isError)){let O=r.parent;if("TagName"==o.name)return"CloseTag"==r.name||"MismatchedCloseTag"==r.name?{type:"closeTag",from:o.from,context:O}:{type:"openTag",from:o.from,context:w(O)};if("AttributeName"==o.name)return{type:"attrName",from:o.from,context:r};if("AttributeValue"==o.name)return{type:"attrValue",from:o.from,context:r};let t=o==r||"Attribute"==o.name?o.childBefore(e):o;return"StartTag"==(null==t?void 0:t.name)?{type:"openTag",from:e,context:w(O)}:"StartCloseTag"==(null==t?void 0:t.name)&&t.to<=e?{type:"closeTag",from:e,context:O}:"Is"==(null==t?void 0:t.name)?{type:"attrValue",from:e,context:r}:t?{type:"attrName",from:e,context:r}:null}if("StartCloseTag"==o.name)return{type:"closeTag",from:e,context:o.parent};for(;o.parent&&o.to==e&&!(null===(t=o.lastChild)||void 0===t?void 0:t.type.isError);)o=o.parent;return"Element"==o.name||"Text"==o.name||"Document"==o.name?{type:"tag",from:e,context:"Element"==o.name?o:w(o)}:null}(O.state,O.pos);if(!s||"tag"==s.type&&!O.explicit)return null;let{type:i,from:$,context:S}=s;if("openTag"==i){let O=a,e=C(t,S);if(e){let t=l[e];O=(null==t?void 0:t.children)||n}return{from:$,options:O.map((O=>O.completion)),validFor:Q}}if("closeTag"==i){let o=C(t,S);return o?{from:$,to:O.pos+(">"==t.sliceString(O.pos,O.pos+1)?1:0),options:[(null===(e=l[o])||void 0===e?void 0:e.closeNameCompletion)||{label:o+">",type:"type"}],validFor:Q}:null}if("attrName"==i){let O=l[W(t,S)];return{from:$,options:(null==O?void 0:O.attrs)||o,validFor:Q}}if("attrValue"==i){let e=function(O,e,t){let o=e&&e.getChildren("Attribute").find((O=>O.from<=t&&O.to>=t)),r=o&&o.getChild("AttributeName");return r?O.sliceString(r.from,r.to):""}(t,S,$);if(!e)return null;let o=l[W(t,S)],n=((null==o?void 0:o.attrValues)||r)[e];return n&&n.length?{from:$,to:O.pos+('"'==t.sliceString(O.pos,O.pos+1)?1:0),options:n,validFor:/^"[^"]*"?$/}:null}if("tag"==i){let e=C(t,S),o=l[e],r=[],s=S&&S.lastChild;!e||s&&"CloseTag"==s.name&&W(t,s)==e||r.push(o?o.closeCompletion:{label:"</"+e+">",type:"type",boost:2});let i=r.concat(((null==o?void 0:o.children)||(S?n:a)).map((O=>O.openCompletion)));if(S&&(null==o?void 0:o.text.length)){let e=S.firstChild;e.to>O.pos-20&&!/\S/.test(O.state.sliceDoc(e.to,O.pos))&&(i=i.concat(o.text))}return{from:$,options:i,validFor:/^<\/?[:\-\.\w\u00b7-\uffff]*$/}}return null}}const _=n.define({name:"xml",parser:b.configure({props:[a.add({Element(O){let e=/^\s*<\//.test(O.textAfter);return O.lineIndent(O.node.from)+(e?0:O.unit)},"OpenTag CloseTag SelfClosingTag":O=>O.column(O.node.from)+O.unit}),l.add({Element(O){let e=O.firstChild,t=O.lastChild;return e&&"OpenTag"==e.name?{from:e.to,to:"CloseTag"==t.name?t.from:O.to}:null}}),s.add({"OpenTag CloseTag":O=>O.getChild("TagName")})]}),languageData:{commentTokens:{block:{open:"\x3c!--",close:"--\x3e"}},indentOnInput:/^\s*<\/$/}});function R(O={}){return new i(_,_.data.of({autocomplete:V(O.elements||[],O.attributes||[])}))}export{V as completeFromSchema,R as xml,_ as xmlLanguage};
|
1
|
+
import{b as O,E as e,s as t,H as o,t as r,L as n,a,i as l,f as s,Y as i,u as c}from"./codemirror.js";function $(O){return 45==O||46==O||58==O||O>=65&&O<=90||95==O||O>=97&&O<=122||O>=161}function S(O){return 9==O||10==O||13==O||32==O}let p=null,x=null,u=0;function m(O,e){let t=O.pos+e;if(x==O&&u==t)return p;for(;S(O.peek(e));)e++;let o="";for(;;){let t=O.peek(e);if(!$(t))break;o+=String.fromCharCode(t),e++}return x=O,u=t,p=o||null}function q(O,e){this.name=O,this.parent=e}const g=new o({start:null,shift:(O,e,t,o)=>1==e?new q(m(o,1)||"",O):O,reduce:(O,e)=>11==e&&O?O.parent:O,reuse(O,e,t,o){let r=e.type.id;return 1==r||13==r?new q(m(o,1)||"",O):O},strict:!1}),f=new e((O,e)=>{if(60==O.next)if(O.advance(),47==O.next){O.advance();let t=m(O,0);if(!t)return O.acceptToken(5);if(e.context&&t==e.context.name)return O.acceptToken(2);for(let o=e.context;o;o=o.parent)if(o.name==t)return O.acceptToken(3,-2);O.acceptToken(4)}else if(33!=O.next&&63!=O.next)return O.acceptToken(1)},{contextual:!0});function P(O,t){return new e(e=>{let o=0,r=t.charCodeAt(0);O:for(;!(e.next<0);e.advance(),o++)if(e.next==r){for(let O=1;O<t.length;O++)if(e.peek(O)!=t.charCodeAt(O))continue O;break}o&&e.acceptToken(O)})}const d=P(36,"--\x3e"),T=P(37,"?>"),v=P(38,"]]>"),b=t({Text:r.content,"StartTag StartCloseTag EndTag SelfCloseEndTag":r.angleBracket,TagName:r.tagName,"MismatchedCloseTag/TagName":[r.tagName,r.invalid],AttributeName:r.attributeName,AttributeValue:r.attributeValue,Is:r.definitionOperator,"EntityReference CharacterReference":r.character,Comment:r.blockComment,ProcessingInst:r.processingInstruction,DoctypeDecl:r.documentMeta,Cdata:r.special(r.string)}),W=O.deserialize({version:14,states:",lOQOaOOOrOxO'#CfOzOpO'#CiO!tOaO'#CgOOOP'#Cg'#CgO!{OrO'#CrO#TOtO'#CsO#]OpO'#CtOOOP'#DT'#DTOOOP'#Cv'#CvQQOaOOOOOW'#Cw'#CwO#eOxO,59QOOOP,59Q,59QOOOO'#Cx'#CxO#mOpO,59TO#uO!bO,59TOOOP'#C|'#C|O$TOaO,59RO$[OpO'#CoOOOP,59R,59ROOOQ'#C}'#C}O$dOrO,59^OOOP,59^,59^OOOS'#DO'#DOO$lOtO,59_OOOP,59_,59_O$tOpO,59`O$|OpO,59`OOOP-E6t-E6tOOOW-E6u-E6uOOOP1G.l1G.lOOOO-E6v-E6vO%UO!bO1G.oO%UO!bO1G.oO%dOpO'#CkO%lO!bO'#CyO%zO!bO1G.oOOOP1G.o1G.oOOOP1G.w1G.wOOOP-E6z-E6zOOOP1G.m1G.mO&VOpO,59ZO&_OpO,59ZOOOQ-E6{-E6{OOOP1G.x1G.xOOOS-E6|-E6|OOOP1G.y1G.yO&gOpO1G.zO&gOpO1G.zOOOP1G.z1G.zO&oO!bO7+$ZO&}O!bO7+$ZOOOP7+$Z7+$ZOOOP7+$c7+$cO'YOpO,59VO'bOpO,59VO'mO!bO,59eOOOO-E6w-E6wO'{OpO1G.uO'{OpO1G.uOOOP1G.u1G.uO(TOpO7+$fOOOP7+$f7+$fO(]O!bO<<GuOOOP<<Gu<<GuOOOP<<G}<<G}O'bOpO1G.qO'bOpO1G.qO(hO#tO'#CnO(vO&jO'#CnOOOO1G.q1G.qO)UOpO7+$aOOOP7+$a7+$aOOOP<<HQ<<HQOOOPAN=aAN=aOOOPAN=iAN=iO'bOpO7+$]OOOO7+$]7+$]OOOO'#Cz'#CzO)^O#tO,59YOOOO,59Y,59YOOOO'#C{'#C{O)lO&jO,59YOOOP<<G{<<G{OOOO<<Gw<<GwOOOO-E6x-E6xOOOO1G.t1G.tOOOO-E6y-E6y",stateData:")z~OPQOSVOTWOVWOWWOXWOiXOyPO!QTO!SUO~OvZOx]O~O^`Oz^O~OPQOQcOSVOTWOVWOWWOXWOyPO!QTO!SUO~ORdO~P!SOteO!PgO~OuhO!RjO~O^lOz^O~OvZOxoO~O^qOz^O~O[vO`sOdwOz^O~ORyO~P!SO^{Oz^O~OteO!P}O~OuhO!R!PO~O^!QOz^O~O[!SOz^O~O[!VO`sOd!WOz^O~Oa!YOz^O~Oz^O[mX`mXdmX~O[!VO`sOd!WO~O^!]Oz^O~O[!_Oz^O~O[!aOz^O~O[!cO`sOd!dOz^O~O[!cO`sOd!dO~Oa!eOz^O~Oz^O{!gO}!hO~Oz^O[ma`madma~O[!kOz^O~O[!lOz^O~O[!mO`sOd!nO~OW!qOX!qO{!sO|!qO~OW!tOX!tO}!sO!O!tO~O[!vOz^O~OW!qOX!qO{!yO|!qO~OW!tOX!tO}!yO!O!tO~O",goto:"%cxPPPPPPPPPPyyP!PP!VPP!`!jP!pyyyP!v!|#S$[$k$q$w$}%TPPPP%ZXWORYbXRORYb_t`qru!T!U!bQ!i!YS!p!e!fR!w!oQdRRybXSORYbQYORmYQ[PRn[Q_QQkVjp_krz!R!T!X!Z!^!`!f!j!oQr`QzcQ!RlQ!TqQ!XsQ!ZtQ!^{Q!`!QQ!f!YQ!j!]R!o!eQu`S!UqrU![u!U!bR!b!TQ!r!gR!x!rQ!u!hR!z!uQbRRxbQfTR|fQiUR!OiSXOYTaRb",nodeNames:"⚠ StartTag StartCloseTag MissingCloseTag StartCloseTag StartCloseTag Document Text EntityReference CharacterReference Cdata Element EndTag OpenTag TagName Attribute AttributeName Is AttributeValue CloseTag SelfCloseEndTag SelfClosingTag Comment ProcessingInst MismatchedCloseTag DoctypeDecl",maxTerm:50,context:g,nodeProps:[["closedBy",1,"SelfCloseEndTag EndTag",13,"CloseTag MissingCloseTag"],["openedBy",12,"StartTag StartCloseTag",19,"OpenTag",20,"StartTag"],["isolate",-6,13,18,19,21,22,24,""]],propSources:[b],skippedNodes:[0],repeatNodeCount:9,tokenData:"!)v~R!YOX$qXY)iYZ)iZ]$q]^)i^p$qpq)iqr$qrs*vsv$qvw+fwx/ix}$q}!O0[!O!P$q!P!Q2z!Q![$q![!]4n!]!^$q!^!_8U!_!`!#t!`!a!$l!a!b!%d!b!c$q!c!}4n!}#P$q#P#Q!'W#Q#R$q#R#S4n#S#T$q#T#o4n#o%W$q%W%o4n%o%p$q%p&a4n&a&b$q&b1p4n1p4U$q4U4d4n4d4e$q4e$IS4n$IS$I`$q$I`$Ib4n$Ib$Kh$q$Kh%#t4n%#t&/x$q&/x&Et4n&Et&FV$q&FV;'S4n;'S;:j8O;:j;=`)c<%l?&r$q?&r?Ah4n?Ah?BY$q?BY?Mn4n?MnO$qi$zXVP|W!O`Or$qrs%gsv$qwx'^x!^$q!^!_(o!_;'S$q;'S;=`)c<%lO$qa%nVVP!O`Ov%gwx&Tx!^%g!^!_&o!_;'S%g;'S;=`'W<%lO%gP&YTVPOv&Tw!^&T!_;'S&T;'S;=`&i<%lO&TP&lP;=`<%l&T`&tS!O`Ov&ox;'S&o;'S;=`'Q<%lO&o`'TP;=`<%l&oa'ZP;=`<%l%gX'eWVP|WOr'^rs&Tsv'^w!^'^!^!_'}!_;'S'^;'S;=`(i<%lO'^W(ST|WOr'}sv'}w;'S'};'S;=`(c<%lO'}W(fP;=`<%l'}X(lP;=`<%l'^h(vV|W!O`Or(ors&osv(owx'}x;'S(o;'S;=`)]<%lO(oh)`P;=`<%l(oi)fP;=`<%l$qo)t`VP|W!O`zUOX$qXY)iYZ)iZ]$q]^)i^p$qpq)iqr$qrs%gsv$qwx'^x!^$q!^!_(o!_;'S$q;'S;=`)c<%lO$qk+PV{YVP!O`Ov%gwx&Tx!^%g!^!_&o!_;'S%g;'S;=`'W<%lO%g~+iast,n![!]-r!c!}-r#R#S-r#T#o-r%W%o-r%p&a-r&b1p-r4U4d-r4e$IS-r$I`$Ib-r$Kh%#t-r&/x&Et-r&FV;'S-r;'S;:j/c?&r?Ah-r?BY?Mn-r~,qQ!Q![,w#l#m-V~,zQ!Q![,w!]!^-Q~-VOX~~-YR!Q![-c!c!i-c#T#Z-c~-fS!Q![-c!]!^-Q!c!i-c#T#Z-c~-ug}!O-r!O!P-r!Q![-r![!]-r!]!^/^!c!}-r#R#S-r#T#o-r$}%O-r%W%o-r%p&a-r&b1p-r1p4U-r4U4d-r4e$IS-r$I`$Ib-r$Je$Jg-r$Kh%#t-r&/x&Et-r&FV;'S-r;'S;:j/c?&r?Ah-r?BY?Mn-r~/cOW~~/fP;=`<%l-rk/rW}bVP|WOr'^rs&Tsv'^w!^'^!^!_'}!_;'S'^;'S;=`(i<%lO'^k0eZVP|W!O`Or$qrs%gsv$qwx'^x}$q}!O1W!O!^$q!^!_(o!_;'S$q;'S;=`)c<%lO$qk1aZVP|W!O`Or$qrs%gsv$qwx'^x!^$q!^!_(o!_!`$q!`!a2S!a;'S$q;'S;=`)c<%lO$qk2_X!PQVP|W!O`Or$qrs%gsv$qwx'^x!^$q!^!_(o!_;'S$q;'S;=`)c<%lO$qm3TZVP|W!O`Or$qrs%gsv$qwx'^x!^$q!^!_(o!_!`$q!`!a3v!a;'S$q;'S;=`)c<%lO$qm4RXdSVP|W!O`Or$qrs%gsv$qwx'^x!^$q!^!_(o!_;'S$q;'S;=`)c<%lO$qo4{!P`S^QVP|W!O`Or$qrs%gsv$qwx'^x}$q}!O4n!O!P4n!P!Q$q!Q![4n![!]4n!]!^$q!^!_(o!_!c$q!c!}4n!}#R$q#R#S4n#S#T$q#T#o4n#o$}$q$}%O4n%O%W$q%W%o4n%o%p$q%p&a4n&a&b$q&b1p4n1p4U4n4U4d4n4d4e$q4e$IS4n$IS$I`$q$I`$Ib4n$Ib$Je$q$Je$Jg4n$Jg$Kh$q$Kh%#t4n%#t&/x$q&/x&Et4n&Et&FV$q&FV;'S4n;'S;:j8O;:j;=`)c<%l?&r$q?&r?Ah4n?Ah?BY$q?BY?Mn4n?MnO$qo8RP;=`<%l4ni8]Y|W!O`Oq(oqr8{rs&osv(owx'}x!a(o!a!b!#U!b;'S(o;'S;=`)]<%lO(oi9S_|W!O`Or(ors&osv(owx'}x}(o}!O:R!O!f(o!f!g;e!g!}(o!}#ODh#O#W(o#W#XLp#X;'S(o;'S;=`)]<%lO(oi:YX|W!O`Or(ors&osv(owx'}x}(o}!O:u!O;'S(o;'S;=`)]<%lO(oi;OV!QP|W!O`Or(ors&osv(owx'}x;'S(o;'S;=`)]<%lO(oi;lX|W!O`Or(ors&osv(owx'}x!q(o!q!r<X!r;'S(o;'S;=`)]<%lO(oi<`X|W!O`Or(ors&osv(owx'}x!e(o!e!f<{!f;'S(o;'S;=`)]<%lO(oi=SX|W!O`Or(ors&osv(owx'}x!v(o!v!w=o!w;'S(o;'S;=`)]<%lO(oi=vX|W!O`Or(ors&osv(owx'}x!{(o!{!|>c!|;'S(o;'S;=`)]<%lO(oi>jX|W!O`Or(ors&osv(owx'}x!r(o!r!s?V!s;'S(o;'S;=`)]<%lO(oi?^X|W!O`Or(ors&osv(owx'}x!g(o!g!h?y!h;'S(o;'S;=`)]<%lO(oi@QY|W!O`Or?yrs@psv?yvwA[wxBdx!`?y!`!aCr!a;'S?y;'S;=`Db<%lO?ya@uV!O`Ov@pvxA[x!`@p!`!aAy!a;'S@p;'S;=`B^<%lO@pPA_TO!`A[!`!aAn!a;'SA[;'S;=`As<%lOA[PAsOiPPAvP;=`<%lA[aBQSiP!O`Ov&ox;'S&o;'S;=`'Q<%lO&oaBaP;=`<%l@pXBiX|WOrBdrsA[svBdvwA[w!`Bd!`!aCU!a;'SBd;'S;=`Cl<%lOBdXC]TiP|WOr'}sv'}w;'S'};'S;=`(c<%lO'}XCoP;=`<%lBdiC{ViP|W!O`Or(ors&osv(owx'}x;'S(o;'S;=`)]<%lO(oiDeP;=`<%l?yiDoZ|W!O`Or(ors&osv(owx'}x!e(o!e!fEb!f#V(o#V#WIr#W;'S(o;'S;=`)]<%lO(oiEiX|W!O`Or(ors&osv(owx'}x!f(o!f!gFU!g;'S(o;'S;=`)]<%lO(oiF]X|W!O`Or(ors&osv(owx'}x!c(o!c!dFx!d;'S(o;'S;=`)]<%lO(oiGPX|W!O`Or(ors&osv(owx'}x!v(o!v!wGl!w;'S(o;'S;=`)]<%lO(oiGsX|W!O`Or(ors&osv(owx'}x!c(o!c!dH`!d;'S(o;'S;=`)]<%lO(oiHgX|W!O`Or(ors&osv(owx'}x!}(o!}#OIS#O;'S(o;'S;=`)]<%lO(oiI]V|W!O`yPOr(ors&osv(owx'}x;'S(o;'S;=`)]<%lO(oiIyX|W!O`Or(ors&osv(owx'}x#W(o#W#XJf#X;'S(o;'S;=`)]<%lO(oiJmX|W!O`Or(ors&osv(owx'}x#T(o#T#UKY#U;'S(o;'S;=`)]<%lO(oiKaX|W!O`Or(ors&osv(owx'}x#h(o#h#iK|#i;'S(o;'S;=`)]<%lO(oiLTX|W!O`Or(ors&osv(owx'}x#T(o#T#UH`#U;'S(o;'S;=`)]<%lO(oiLwX|W!O`Or(ors&osv(owx'}x#c(o#c#dMd#d;'S(o;'S;=`)]<%lO(oiMkX|W!O`Or(ors&osv(owx'}x#V(o#V#WNW#W;'S(o;'S;=`)]<%lO(oiN_X|W!O`Or(ors&osv(owx'}x#h(o#h#iNz#i;'S(o;'S;=`)]<%lO(oi! RX|W!O`Or(ors&osv(owx'}x#m(o#m#n! n#n;'S(o;'S;=`)]<%lO(oi! uX|W!O`Or(ors&osv(owx'}x#d(o#d#e!!b#e;'S(o;'S;=`)]<%lO(oi!!iX|W!O`Or(ors&osv(owx'}x#X(o#X#Y?y#Y;'S(o;'S;=`)]<%lO(oi!#_V!SP|W!O`Or(ors&osv(owx'}x;'S(o;'S;=`)]<%lO(ok!$PXaQVP|W!O`Or$qrs%gsv$qwx'^x!^$q!^!_(o!_;'S$q;'S;=`)c<%lO$qo!$wX[UVP|W!O`Or$qrs%gsv$qwx'^x!^$q!^!_(o!_;'S$q;'S;=`)c<%lO$qk!%mZVP|W!O`Or$qrs%gsv$qwx'^x!^$q!^!_(o!_!`$q!`!a!&`!a;'S$q;'S;=`)c<%lO$qk!&kX!RQVP|W!O`Or$qrs%gsv$qwx'^x!^$q!^!_(o!_;'S$q;'S;=`)c<%lO$qk!'aZVP|W!O`Or$qrs%gsv$qwx'^x!^$q!^!_(o!_#P$q#P#Q!(S#Q;'S$q;'S;=`)c<%lO$qk!(]ZVP|W!O`Or$qrs%gsv$qwx'^x!^$q!^!_(o!_!`$q!`!a!)O!a;'S$q;'S;=`)c<%lO$qk!)ZXxQVP|W!O`Or$qrs%gsv$qwx'^x!^$q!^!_(o!_;'S$q;'S;=`)c<%lO$q",tokenizers:[f,d,T,v,0,1,2,3,4],topRules:{Document:[0,6]},tokenPrec:0});function C(O,e){let t=e&&e.getChild("TagName");return t?O.sliceString(t.from,t.to):""}function w(O,e){let t=e&&e.firstChild;return t&&"OpenTag"==t.name?C(O,t):""}function h(O){for(let e=O&&O.parent;e;e=e.parent)if("Element"==e.name)return e;return null}class Q{constructor(O,e,t){this.attrs=e,this.attrValues=t,this.children=[],this.name=O.name,this.completion=Object.assign(Object.assign({type:"type"},O.completion||{}),{label:this.name}),this.openCompletion=Object.assign(Object.assign({},this.completion),{label:"<"+this.name}),this.closeCompletion=Object.assign(Object.assign({},this.completion),{label:"</"+this.name+">",boost:2}),this.closeNameCompletion=Object.assign(Object.assign({},this.completion),{label:this.name+">"}),this.text=O.textContent?O.textContent.map(O=>({label:O,type:"text"})):[]}}const X=/^[:\-\.\w\u00b7-\uffff]*$/;function y(O){return Object.assign(Object.assign({type:"property"},O.completion||{}),{label:O.name})}function V(O){return"string"==typeof O?{label:`"${O}"`,type:"constant"}:/^"/.test(O.label)?O:Object.assign(Object.assign({},O),{label:`"${O.label}"`})}function _(O,e){let t=[],o=[],r=Object.create(null);for(let O of e){let e=y(O);t.push(e),O.global&&o.push(e),O.values&&(r[O.name]=O.values.map(V))}let n=[],a=[],l=Object.create(null);for(let e of O){let O=o,s=r;e.attributes&&(O=O.concat(e.attributes.map(O=>"string"==typeof O?t.find(e=>e.label==O)||{label:O,type:"property"}:(O.values&&(s==r&&(s=Object.create(s)),s[O.name]=O.values.map(V)),y(O)))));let i=new Q(e,O,s);l[i.name]=i,n.push(i),e.top&&a.push(i)}a.length||(a=n);for(let e=0;e<n.length;e++){let t=O[e],o=n[e];if(t.children)for(let O of t.children)l[O]&&o.children.push(l[O]);else o.children=n}return O=>{var e;let{doc:t}=O.state,s=function(O,e){var t;let o=c(O).resolveInner(e,-1),r=null;for(let O=o;!r&&O.parent;O=O.parent)"OpenTag"!=O.name&&"CloseTag"!=O.name&&"SelfClosingTag"!=O.name&&"MismatchedCloseTag"!=O.name||(r=O);if(r&&(r.to>e||r.lastChild.type.isError)){let O=r.parent;if("TagName"==o.name)return"CloseTag"==r.name||"MismatchedCloseTag"==r.name?{type:"closeTag",from:o.from,context:O}:{type:"openTag",from:o.from,context:h(O)};if("AttributeName"==o.name)return{type:"attrName",from:o.from,context:r};if("AttributeValue"==o.name)return{type:"attrValue",from:o.from,context:r};let t=o==r||"Attribute"==o.name?o.childBefore(e):o;return"StartTag"==(null==t?void 0:t.name)?{type:"openTag",from:e,context:h(O)}:"StartCloseTag"==(null==t?void 0:t.name)&&t.to<=e?{type:"closeTag",from:e,context:O}:"Is"==(null==t?void 0:t.name)?{type:"attrValue",from:e,context:r}:t?{type:"attrName",from:e,context:r}:null}if("StartCloseTag"==o.name)return{type:"closeTag",from:e,context:o.parent};for(;o.parent&&o.to==e&&!(null===(t=o.lastChild)||void 0===t?void 0:t.type.isError);)o=o.parent;return"Element"==o.name||"Text"==o.name||"Document"==o.name?{type:"tag",from:e,context:"Element"==o.name?o:h(o)}:null}(O.state,O.pos);if(!s||"tag"==s.type&&!O.explicit)return null;let{type:i,from:$,context:S}=s;if("openTag"==i){let O=a,e=w(t,S);if(e){let t=l[e];O=(null==t?void 0:t.children)||n}return{from:$,options:O.map(O=>O.completion),validFor:X}}if("closeTag"==i){let o=w(t,S);return o?{from:$,to:O.pos+(">"==t.sliceString(O.pos,O.pos+1)?1:0),options:[(null===(e=l[o])||void 0===e?void 0:e.closeNameCompletion)||{label:o+">",type:"type"}],validFor:X}:null}if("attrName"==i){let O=l[C(t,S)];return{from:$,options:(null==O?void 0:O.attrs)||o,validFor:X}}if("attrValue"==i){let e=function(O,e,t){let o=e&&e.getChildren("Attribute").find(O=>O.from<=t&&O.to>=t),r=o&&o.getChild("AttributeName");return r?O.sliceString(r.from,r.to):""}(t,S,$);if(!e)return null;let o=l[C(t,S)],n=((null==o?void 0:o.attrValues)||r)[e];return n&&n.length?{from:$,to:O.pos+('"'==t.sliceString(O.pos,O.pos+1)?1:0),options:n,validFor:/^"[^"]*"?$/}:null}if("tag"==i){let e=w(t,S),o=l[e],r=[],s=S&&S.lastChild;!e||s&&"CloseTag"==s.name&&C(t,s)==e||r.push(o?o.closeCompletion:{label:"</"+e+">",type:"type",boost:2});let i=r.concat(((null==o?void 0:o.children)||(S?n:a)).map(O=>O.openCompletion));if(S&&(null==o?void 0:o.text.length)){let e=S.firstChild;e.to>O.pos-20&&!/\S/.test(O.state.sliceDoc(e.to,O.pos))&&(i=i.concat(o.text))}return{from:$,options:i,validFor:/^<\/?[:\-\.\w\u00b7-\uffff]*$/}}return null}}const R=n.define({name:"xml",parser:W.configure({props:[l.add({Element(O){let e=/^\s*<\//.test(O.textAfter);return O.lineIndent(O.node.from)+(e?0:O.unit)},"OpenTag CloseTag SelfClosingTag":O=>O.column(O.node.from)+O.unit}),s.add({Element(O){let e=O.firstChild,t=O.lastChild;return e&&"OpenTag"==e.name?{from:e.to,to:"CloseTag"==t.name?t.from:O.to}:null}}),i.add({"OpenTag CloseTag":O=>O.getChild("TagName")})]}),languageData:{commentTokens:{block:{open:"\x3c!--",close:"--\x3e"}},indentOnInput:/^\s*<\/$/}});function E(O={}){return new a(R,R.data.of({autocomplete:_(O.elements||[],O.attributes||[])}))}export{_ as completeFromSchema,E as xml,R as xmlLanguage};
|
2
2
|
//# sourceMappingURL=xml.js.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"xml.js","sources":["../node_modules/@lezer/xml/dist/index.js","../node_modules/@codemirror/lang-xml/dist/index.js"],"sourcesContent":["import { ContextTracker, ExternalTokenizer, LRParser } from '@lezer/lr';\nimport { styleTags, tags } from '@lezer/highlight';\n\n// This file was generated by lezer-generator. You probably shouldn't edit it.\nconst StartTag = 1,\n StartCloseTag = 2,\n MissingCloseTag = 3,\n mismatchedStartCloseTag = 4,\n incompleteStartCloseTag = 5,\n commentContent$1 = 36,\n piContent$1 = 37,\n cdataContent$1 = 38,\n Element = 11,\n OpenTag = 13;\n\n/* Hand-written tokenizer for XML tag matching. */\n\nfunction nameChar(ch) {\n return ch == 45 || ch == 46 || ch == 58 || ch >= 65 && ch <= 90 || ch == 95 || ch >= 97 && ch <= 122 || ch >= 161\n}\n\nfunction isSpace(ch) {\n return ch == 9 || ch == 10 || ch == 13 || ch == 32\n}\n\nlet cachedName = null, cachedInput = null, cachedPos = 0;\nfunction tagNameAfter(input, offset) {\n let pos = input.pos + offset;\n if (cachedInput == input && cachedPos == pos) return cachedName\n while (isSpace(input.peek(offset))) offset++;\n let name = \"\";\n for (;;) {\n let next = input.peek(offset);\n if (!nameChar(next)) break\n name += String.fromCharCode(next);\n offset++;\n }\n cachedInput = input; cachedPos = pos;\n return cachedName = name || null\n}\n\nfunction ElementContext(name, parent) {\n this.name = name;\n this.parent = parent;\n}\n\nconst elementContext = new ContextTracker({\n start: null,\n shift(context, term, stack, input) {\n return term == StartTag ? new ElementContext(tagNameAfter(input, 1) || \"\", context) : context\n },\n reduce(context, term) {\n return term == Element && context ? context.parent : context\n },\n reuse(context, node, _stack, input) {\n let type = node.type.id;\n return type == StartTag || type == OpenTag\n ? new ElementContext(tagNameAfter(input, 1) || \"\", context) : context\n },\n strict: false\n});\n\nconst startTag = new ExternalTokenizer((input, stack) => {\n if (input.next != 60 /* '<' */) return\n input.advance();\n if (input.next == 47 /* '/' */) {\n input.advance();\n let name = tagNameAfter(input, 0);\n if (!name) return input.acceptToken(incompleteStartCloseTag)\n if (stack.context && name == stack.context.name) return input.acceptToken(StartCloseTag)\n for (let cx = stack.context; cx; cx = cx.parent) if (cx.name == name) return input.acceptToken(MissingCloseTag, -2)\n input.acceptToken(mismatchedStartCloseTag);\n } else if (input.next != 33 /* '!' */ && input.next != 63 /* '?' */) {\n return input.acceptToken(StartTag)\n }\n}, {contextual: true});\n\nfunction scanTo(type, end) {\n return new ExternalTokenizer(input => {\n let len = 0, first = end.charCodeAt(0);\n scan: for (;; input.advance(), len++) {\n if (input.next < 0) break\n if (input.next == first) {\n for (let i = 1; i < end.length; i++)\n if (input.peek(i) != end.charCodeAt(i)) continue scan\n break\n }\n }\n if (len) input.acceptToken(type);\n })\n}\n\nconst commentContent = scanTo(commentContent$1, \"-->\");\nconst piContent = scanTo(piContent$1, \"?>\");\nconst cdataContent = scanTo(cdataContent$1, \"]]>\");\n\nconst xmlHighlighting = styleTags({\n Text: tags.content,\n \"StartTag StartCloseTag EndTag SelfCloseEndTag\": tags.angleBracket,\n TagName: tags.tagName,\n \"MismatchedCloseTag/TagName\": [tags.tagName, tags.invalid],\n AttributeName: tags.attributeName,\n AttributeValue: tags.attributeValue,\n Is: tags.definitionOperator,\n \"EntityReference CharacterReference\": tags.character,\n Comment: tags.blockComment,\n ProcessingInst: tags.processingInstruction,\n DoctypeDecl: tags.documentMeta,\n Cdata: tags.special(tags.string)\n});\n\n// This file was generated by lezer-generator. You probably shouldn't edit it.\nconst parser = LRParser.deserialize({\n version: 14,\n states: \",lOQOaOOOrOxO'#CfOzOpO'#CiO!tOaO'#CgOOOP'#Cg'#CgO!{OrO'#CrO#TOtO'#CsO#]OpO'#CtOOOP'#DT'#DTOOOP'#Cv'#CvQQOaOOOOOW'#Cw'#CwO#eOxO,59QOOOP,59Q,59QOOOO'#Cx'#CxO#mOpO,59TO#uO!bO,59TOOOP'#C|'#C|O$TOaO,59RO$[OpO'#CoOOOP,59R,59ROOOQ'#C}'#C}O$dOrO,59^OOOP,59^,59^OOOS'#DO'#DOO$lOtO,59_OOOP,59_,59_O$tOpO,59`O$|OpO,59`OOOP-E6t-E6tOOOW-E6u-E6uOOOP1G.l1G.lOOOO-E6v-E6vO%UO!bO1G.oO%UO!bO1G.oO%dOpO'#CkO%lO!bO'#CyO%zO!bO1G.oOOOP1G.o1G.oOOOP1G.w1G.wOOOP-E6z-E6zOOOP1G.m1G.mO&VOpO,59ZO&_OpO,59ZOOOQ-E6{-E6{OOOP1G.x1G.xOOOS-E6|-E6|OOOP1G.y1G.yO&gOpO1G.zO&gOpO1G.zOOOP1G.z1G.zO&oO!bO7+$ZO&}O!bO7+$ZOOOP7+$Z7+$ZOOOP7+$c7+$cO'YOpO,59VO'bOpO,59VO'mO!bO,59eOOOO-E6w-E6wO'{OpO1G.uO'{OpO1G.uOOOP1G.u1G.uO(TOpO7+$fOOOP7+$f7+$fO(]O!bO<<GuOOOP<<Gu<<GuOOOP<<G}<<G}O'bOpO1G.qO'bOpO1G.qO(hO#tO'#CnO(vO&jO'#CnOOOO1G.q1G.qO)UOpO7+$aOOOP7+$a7+$aOOOP<<HQ<<HQOOOPAN=aAN=aOOOPAN=iAN=iO'bOpO7+$]OOOO7+$]7+$]OOOO'#Cz'#CzO)^O#tO,59YOOOO,59Y,59YOOOO'#C{'#C{O)lO&jO,59YOOOP<<G{<<G{OOOO<<Gw<<GwOOOO-E6x-E6xOOOO1G.t1G.tOOOO-E6y-E6y\",\n stateData: \")z~OPQOSVOTWOVWOWWOXWOiXOyPO!QTO!SUO~OvZOx]O~O^`Oz^O~OPQOQcOSVOTWOVWOWWOXWOyPO!QTO!SUO~ORdO~P!SOteO!PgO~OuhO!RjO~O^lOz^O~OvZOxoO~O^qOz^O~O[vO`sOdwOz^O~ORyO~P!SO^{Oz^O~OteO!P}O~OuhO!R!PO~O^!QOz^O~O[!SOz^O~O[!VO`sOd!WOz^O~Oa!YOz^O~Oz^O[mX`mXdmX~O[!VO`sOd!WO~O^!]Oz^O~O[!_Oz^O~O[!aOz^O~O[!cO`sOd!dOz^O~O[!cO`sOd!dO~Oa!eOz^O~Oz^O{!gO}!hO~Oz^O[ma`madma~O[!kOz^O~O[!lOz^O~O[!mO`sOd!nO~OW!qOX!qO{!sO|!qO~OW!tOX!tO}!sO!O!tO~O[!vOz^O~OW!qOX!qO{!yO|!qO~OW!tOX!tO}!yO!O!tO~O\",\n goto: \"%cxPPPPPPPPPPyyP!PP!VPP!`!jP!pyyyP!v!|#S$[$k$q$w$}%TPPPP%ZXWORYbXRORYb_t`qru!T!U!bQ!i!YS!p!e!fR!w!oQdRRybXSORYbQYORmYQ[PRn[Q_QQkVjp_krz!R!T!X!Z!^!`!f!j!oQr`QzcQ!RlQ!TqQ!XsQ!ZtQ!^{Q!`!QQ!f!YQ!j!]R!o!eQu`S!UqrU![u!U!bR!b!TQ!r!gR!x!rQ!u!hR!z!uQbRRxbQfTR|fQiUR!OiSXOYTaRb\",\n nodeNames: \"⚠ StartTag StartCloseTag MissingCloseTag StartCloseTag StartCloseTag Document Text EntityReference CharacterReference Cdata Element EndTag OpenTag TagName Attribute AttributeName Is AttributeValue CloseTag SelfCloseEndTag SelfClosingTag Comment ProcessingInst MismatchedCloseTag DoctypeDecl\",\n maxTerm: 50,\n context: elementContext,\n nodeProps: [\n [\"closedBy\", 1,\"SelfCloseEndTag EndTag\",13,\"CloseTag MissingCloseTag\"],\n [\"openedBy\", 12,\"StartTag StartCloseTag\",19,\"OpenTag\",20,\"StartTag\"],\n [\"isolate\", -6,13,18,19,21,22,24,\"\"]\n ],\n propSources: [xmlHighlighting],\n skippedNodes: [0],\n repeatNodeCount: 9,\n tokenData: \"!)v~R!YOX$qXY)iYZ)iZ]$q]^)i^p$qpq)iqr$qrs*vsv$qvw+fwx/ix}$q}!O0[!O!P$q!P!Q2z!Q![$q![!]4n!]!^$q!^!_8U!_!`!#t!`!a!$l!a!b!%d!b!c$q!c!}4n!}#P$q#P#Q!'W#Q#R$q#R#S4n#S#T$q#T#o4n#o%W$q%W%o4n%o%p$q%p&a4n&a&b$q&b1p4n1p4U$q4U4d4n4d4e$q4e$IS4n$IS$I`$q$I`$Ib4n$Ib$Kh$q$Kh%#t4n%#t&/x$q&/x&Et4n&Et&FV$q&FV;'S4n;'S;:j8O;:j;=`)c<%l?&r$q?&r?Ah4n?Ah?BY$q?BY?Mn4n?MnO$qi$zXVP|W!O`Or$qrs%gsv$qwx'^x!^$q!^!_(o!_;'S$q;'S;=`)c<%lO$qa%nVVP!O`Ov%gwx&Tx!^%g!^!_&o!_;'S%g;'S;=`'W<%lO%gP&YTVPOv&Tw!^&T!_;'S&T;'S;=`&i<%lO&TP&lP;=`<%l&T`&tS!O`Ov&ox;'S&o;'S;=`'Q<%lO&o`'TP;=`<%l&oa'ZP;=`<%l%gX'eWVP|WOr'^rs&Tsv'^w!^'^!^!_'}!_;'S'^;'S;=`(i<%lO'^W(ST|WOr'}sv'}w;'S'};'S;=`(c<%lO'}W(fP;=`<%l'}X(lP;=`<%l'^h(vV|W!O`Or(ors&osv(owx'}x;'S(o;'S;=`)]<%lO(oh)`P;=`<%l(oi)fP;=`<%l$qo)t`VP|W!O`zUOX$qXY)iYZ)iZ]$q]^)i^p$qpq)iqr$qrs%gsv$qwx'^x!^$q!^!_(o!_;'S$q;'S;=`)c<%lO$qk+PV{YVP!O`Ov%gwx&Tx!^%g!^!_&o!_;'S%g;'S;=`'W<%lO%g~+iast,n![!]-r!c!}-r#R#S-r#T#o-r%W%o-r%p&a-r&b1p-r4U4d-r4e$IS-r$I`$Ib-r$Kh%#t-r&/x&Et-r&FV;'S-r;'S;:j/c?&r?Ah-r?BY?Mn-r~,qQ!Q![,w#l#m-V~,zQ!Q![,w!]!^-Q~-VOX~~-YR!Q![-c!c!i-c#T#Z-c~-fS!Q![-c!]!^-Q!c!i-c#T#Z-c~-ug}!O-r!O!P-r!Q![-r![!]-r!]!^/^!c!}-r#R#S-r#T#o-r$}%O-r%W%o-r%p&a-r&b1p-r1p4U-r4U4d-r4e$IS-r$I`$Ib-r$Je$Jg-r$Kh%#t-r&/x&Et-r&FV;'S-r;'S;:j/c?&r?Ah-r?BY?Mn-r~/cOW~~/fP;=`<%l-rk/rW}bVP|WOr'^rs&Tsv'^w!^'^!^!_'}!_;'S'^;'S;=`(i<%lO'^k0eZVP|W!O`Or$qrs%gsv$qwx'^x}$q}!O1W!O!^$q!^!_(o!_;'S$q;'S;=`)c<%lO$qk1aZVP|W!O`Or$qrs%gsv$qwx'^x!^$q!^!_(o!_!`$q!`!a2S!a;'S$q;'S;=`)c<%lO$qk2_X!PQVP|W!O`Or$qrs%gsv$qwx'^x!^$q!^!_(o!_;'S$q;'S;=`)c<%lO$qm3TZVP|W!O`Or$qrs%gsv$qwx'^x!^$q!^!_(o!_!`$q!`!a3v!a;'S$q;'S;=`)c<%lO$qm4RXdSVP|W!O`Or$qrs%gsv$qwx'^x!^$q!^!_(o!_;'S$q;'S;=`)c<%lO$qo4{!P`S^QVP|W!O`Or$qrs%gsv$qwx'^x}$q}!O4n!O!P4n!P!Q$q!Q![4n![!]4n!]!^$q!^!_(o!_!c$q!c!}4n!}#R$q#R#S4n#S#T$q#T#o4n#o$}$q$}%O4n%O%W$q%W%o4n%o%p$q%p&a4n&a&b$q&b1p4n1p4U4n4U4d4n4d4e$q4e$IS4n$IS$I`$q$I`$Ib4n$Ib$Je$q$Je$Jg4n$Jg$Kh$q$Kh%#t4n%#t&/x$q&/x&Et4n&Et&FV$q&FV;'S4n;'S;:j8O;:j;=`)c<%l?&r$q?&r?Ah4n?Ah?BY$q?BY?Mn4n?MnO$qo8RP;=`<%l4ni8]Y|W!O`Oq(oqr8{rs&osv(owx'}x!a(o!a!b!#U!b;'S(o;'S;=`)]<%lO(oi9S_|W!O`Or(ors&osv(owx'}x}(o}!O:R!O!f(o!f!g;e!g!}(o!}#ODh#O#W(o#W#XLp#X;'S(o;'S;=`)]<%lO(oi:YX|W!O`Or(ors&osv(owx'}x}(o}!O:u!O;'S(o;'S;=`)]<%lO(oi;OV!QP|W!O`Or(ors&osv(owx'}x;'S(o;'S;=`)]<%lO(oi;lX|W!O`Or(ors&osv(owx'}x!q(o!q!r<X!r;'S(o;'S;=`)]<%lO(oi<`X|W!O`Or(ors&osv(owx'}x!e(o!e!f<{!f;'S(o;'S;=`)]<%lO(oi=SX|W!O`Or(ors&osv(owx'}x!v(o!v!w=o!w;'S(o;'S;=`)]<%lO(oi=vX|W!O`Or(ors&osv(owx'}x!{(o!{!|>c!|;'S(o;'S;=`)]<%lO(oi>jX|W!O`Or(ors&osv(owx'}x!r(o!r!s?V!s;'S(o;'S;=`)]<%lO(oi?^X|W!O`Or(ors&osv(owx'}x!g(o!g!h?y!h;'S(o;'S;=`)]<%lO(oi@QY|W!O`Or?yrs@psv?yvwA[wxBdx!`?y!`!aCr!a;'S?y;'S;=`Db<%lO?ya@uV!O`Ov@pvxA[x!`@p!`!aAy!a;'S@p;'S;=`B^<%lO@pPA_TO!`A[!`!aAn!a;'SA[;'S;=`As<%lOA[PAsOiPPAvP;=`<%lA[aBQSiP!O`Ov&ox;'S&o;'S;=`'Q<%lO&oaBaP;=`<%l@pXBiX|WOrBdrsA[svBdvwA[w!`Bd!`!aCU!a;'SBd;'S;=`Cl<%lOBdXC]TiP|WOr'}sv'}w;'S'};'S;=`(c<%lO'}XCoP;=`<%lBdiC{ViP|W!O`Or(ors&osv(owx'}x;'S(o;'S;=`)]<%lO(oiDeP;=`<%l?yiDoZ|W!O`Or(ors&osv(owx'}x!e(o!e!fEb!f#V(o#V#WIr#W;'S(o;'S;=`)]<%lO(oiEiX|W!O`Or(ors&osv(owx'}x!f(o!f!gFU!g;'S(o;'S;=`)]<%lO(oiF]X|W!O`Or(ors&osv(owx'}x!c(o!c!dFx!d;'S(o;'S;=`)]<%lO(oiGPX|W!O`Or(ors&osv(owx'}x!v(o!v!wGl!w;'S(o;'S;=`)]<%lO(oiGsX|W!O`Or(ors&osv(owx'}x!c(o!c!dH`!d;'S(o;'S;=`)]<%lO(oiHgX|W!O`Or(ors&osv(owx'}x!}(o!}#OIS#O;'S(o;'S;=`)]<%lO(oiI]V|W!O`yPOr(ors&osv(owx'}x;'S(o;'S;=`)]<%lO(oiIyX|W!O`Or(ors&osv(owx'}x#W(o#W#XJf#X;'S(o;'S;=`)]<%lO(oiJmX|W!O`Or(ors&osv(owx'}x#T(o#T#UKY#U;'S(o;'S;=`)]<%lO(oiKaX|W!O`Or(ors&osv(owx'}x#h(o#h#iK|#i;'S(o;'S;=`)]<%lO(oiLTX|W!O`Or(ors&osv(owx'}x#T(o#T#UH`#U;'S(o;'S;=`)]<%lO(oiLwX|W!O`Or(ors&osv(owx'}x#c(o#c#dMd#d;'S(o;'S;=`)]<%lO(oiMkX|W!O`Or(ors&osv(owx'}x#V(o#V#WNW#W;'S(o;'S;=`)]<%lO(oiN_X|W!O`Or(ors&osv(owx'}x#h(o#h#iNz#i;'S(o;'S;=`)]<%lO(oi! RX|W!O`Or(ors&osv(owx'}x#m(o#m#n! n#n;'S(o;'S;=`)]<%lO(oi! uX|W!O`Or(ors&osv(owx'}x#d(o#d#e!!b#e;'S(o;'S;=`)]<%lO(oi!!iX|W!O`Or(ors&osv(owx'}x#X(o#X#Y?y#Y;'S(o;'S;=`)]<%lO(oi!#_V!SP|W!O`Or(ors&osv(owx'}x;'S(o;'S;=`)]<%lO(ok!$PXaQVP|W!O`Or$qrs%gsv$qwx'^x!^$q!^!_(o!_;'S$q;'S;=`)c<%lO$qo!$wX[UVP|W!O`Or$qrs%gsv$qwx'^x!^$q!^!_(o!_;'S$q;'S;=`)c<%lO$qk!%mZVP|W!O`Or$qrs%gsv$qwx'^x!^$q!^!_(o!_!`$q!`!a!&`!a;'S$q;'S;=`)c<%lO$qk!&kX!RQVP|W!O`Or$qrs%gsv$qwx'^x!^$q!^!_(o!_;'S$q;'S;=`)c<%lO$qk!'aZVP|W!O`Or$qrs%gsv$qwx'^x!^$q!^!_(o!_#P$q#P#Q!(S#Q;'S$q;'S;=`)c<%lO$qk!(]ZVP|W!O`Or$qrs%gsv$qwx'^x!^$q!^!_(o!_!`$q!`!a!)O!a;'S$q;'S;=`)c<%lO$qk!)ZXxQVP|W!O`Or$qrs%gsv$qwx'^x!^$q!^!_(o!_;'S$q;'S;=`)c<%lO$q\",\n tokenizers: [startTag, commentContent, piContent, cdataContent, 0, 1, 2, 3, 4],\n topRules: {\"Document\":[0,6]},\n tokenPrec: 0\n});\n\nexport { parser };\n","import { parser } from '@lezer/xml';\nimport { syntaxTree, LRLanguage, indentNodeProp, foldNodeProp, bracketMatchingHandle, LanguageSupport } from '@codemirror/language';\n\nfunction tagName(doc, tag) {\n let name = tag && tag.getChild(\"TagName\");\n return name ? doc.sliceString(name.from, name.to) : \"\";\n}\nfunction elementName(doc, tree) {\n let tag = tree && tree.firstChild;\n return !tag || tag.name != \"OpenTag\" ? \"\" : tagName(doc, tag);\n}\nfunction attrName(doc, tag, pos) {\n let attr = tag && tag.getChildren(\"Attribute\").find(a => a.from <= pos && a.to >= pos);\n let name = attr && attr.getChild(\"AttributeName\");\n return name ? doc.sliceString(name.from, name.to) : \"\";\n}\nfunction findParentElement(tree) {\n for (let cur = tree && tree.parent; cur; cur = cur.parent)\n if (cur.name == \"Element\")\n return cur;\n return null;\n}\nfunction findLocation(state, pos) {\n var _a;\n let at = syntaxTree(state).resolveInner(pos, -1), inTag = null;\n for (let cur = at; !inTag && cur.parent; cur = cur.parent)\n if (cur.name == \"OpenTag\" || cur.name == \"CloseTag\" || cur.name == \"SelfClosingTag\" || cur.name == \"MismatchedCloseTag\")\n inTag = cur;\n if (inTag && (inTag.to > pos || inTag.lastChild.type.isError)) {\n let elt = inTag.parent;\n if (at.name == \"TagName\")\n return inTag.name == \"CloseTag\" || inTag.name == \"MismatchedCloseTag\"\n ? { type: \"closeTag\", from: at.from, context: elt }\n : { type: \"openTag\", from: at.from, context: findParentElement(elt) };\n if (at.name == \"AttributeName\")\n return { type: \"attrName\", from: at.from, context: inTag };\n if (at.name == \"AttributeValue\")\n return { type: \"attrValue\", from: at.from, context: inTag };\n let before = at == inTag || at.name == \"Attribute\" ? at.childBefore(pos) : at;\n if ((before === null || before === void 0 ? void 0 : before.name) == \"StartTag\")\n return { type: \"openTag\", from: pos, context: findParentElement(elt) };\n if ((before === null || before === void 0 ? void 0 : before.name) == \"StartCloseTag\" && before.to <= pos)\n return { type: \"closeTag\", from: pos, context: elt };\n if ((before === null || before === void 0 ? void 0 : before.name) == \"Is\")\n return { type: \"attrValue\", from: pos, context: inTag };\n if (before)\n return { type: \"attrName\", from: pos, context: inTag };\n return null;\n }\n else if (at.name == \"StartCloseTag\") {\n return { type: \"closeTag\", from: pos, context: at.parent };\n }\n while (at.parent && at.to == pos && !((_a = at.lastChild) === null || _a === void 0 ? void 0 : _a.type.isError))\n at = at.parent;\n if (at.name == \"Element\" || at.name == \"Text\" || at.name == \"Document\")\n return { type: \"tag\", from: pos, context: at.name == \"Element\" ? at : findParentElement(at) };\n return null;\n}\nclass Element {\n constructor(spec, attrs, attrValues) {\n this.attrs = attrs;\n this.attrValues = attrValues;\n this.children = [];\n this.name = spec.name;\n this.completion = Object.assign(Object.assign({ type: \"type\" }, spec.completion || {}), { label: this.name });\n this.openCompletion = Object.assign(Object.assign({}, this.completion), { label: \"<\" + this.name });\n this.closeCompletion = Object.assign(Object.assign({}, this.completion), { label: \"</\" + this.name + \">\", boost: 2 });\n this.closeNameCompletion = Object.assign(Object.assign({}, this.completion), { label: this.name + \">\" });\n this.text = spec.textContent ? spec.textContent.map(s => ({ label: s, type: \"text\" })) : [];\n }\n}\nconst Identifier = /^[:\\-\\.\\w\\u00b7-\\uffff]*$/;\nfunction attrCompletion(spec) {\n return Object.assign(Object.assign({ type: \"property\" }, spec.completion || {}), { label: spec.name });\n}\nfunction valueCompletion(spec) {\n return typeof spec == \"string\" ? { label: `\"${spec}\"`, type: \"constant\" }\n : /^\"/.test(spec.label) ? spec\n : Object.assign(Object.assign({}, spec), { label: `\"${spec.label}\"` });\n}\n/**\nCreate a completion source for the given schema.\n*/\nfunction completeFromSchema(eltSpecs, attrSpecs) {\n let allAttrs = [], globalAttrs = [];\n let attrValues = Object.create(null);\n for (let s of attrSpecs) {\n let completion = attrCompletion(s);\n allAttrs.push(completion);\n if (s.global)\n globalAttrs.push(completion);\n if (s.values)\n attrValues[s.name] = s.values.map(valueCompletion);\n }\n let allElements = [], topElements = [];\n let byName = Object.create(null);\n for (let s of eltSpecs) {\n let attrs = globalAttrs, attrVals = attrValues;\n if (s.attributes)\n attrs = attrs.concat(s.attributes.map(s => {\n if (typeof s == \"string\")\n return allAttrs.find(a => a.label == s) || { label: s, type: \"property\" };\n if (s.values) {\n if (attrVals == attrValues)\n attrVals = Object.create(attrVals);\n attrVals[s.name] = s.values.map(valueCompletion);\n }\n return attrCompletion(s);\n }));\n let elt = new Element(s, attrs, attrVals);\n byName[elt.name] = elt;\n allElements.push(elt);\n if (s.top)\n topElements.push(elt);\n }\n if (!topElements.length)\n topElements = allElements;\n for (let i = 0; i < allElements.length; i++) {\n let s = eltSpecs[i], elt = allElements[i];\n if (s.children) {\n for (let ch of s.children)\n if (byName[ch])\n elt.children.push(byName[ch]);\n }\n else {\n elt.children = allElements;\n }\n }\n return cx => {\n var _a;\n let { doc } = cx.state, loc = findLocation(cx.state, cx.pos);\n if (!loc || (loc.type == \"tag\" && !cx.explicit))\n return null;\n let { type, from, context } = loc;\n if (type == \"openTag\") {\n let children = topElements;\n let parentName = elementName(doc, context);\n if (parentName) {\n let parent = byName[parentName];\n children = (parent === null || parent === void 0 ? void 0 : parent.children) || allElements;\n }\n return {\n from,\n options: children.map(ch => ch.completion),\n validFor: Identifier\n };\n }\n else if (type == \"closeTag\") {\n let parentName = elementName(doc, context);\n return parentName ? {\n from,\n to: cx.pos + (doc.sliceString(cx.pos, cx.pos + 1) == \">\" ? 1 : 0),\n options: [((_a = byName[parentName]) === null || _a === void 0 ? void 0 : _a.closeNameCompletion) || { label: parentName + \">\", type: \"type\" }],\n validFor: Identifier\n } : null;\n }\n else if (type == \"attrName\") {\n let parent = byName[tagName(doc, context)];\n return {\n from,\n options: (parent === null || parent === void 0 ? void 0 : parent.attrs) || globalAttrs,\n validFor: Identifier\n };\n }\n else if (type == \"attrValue\") {\n let attr = attrName(doc, context, from);\n if (!attr)\n return null;\n let parent = byName[tagName(doc, context)];\n let values = ((parent === null || parent === void 0 ? void 0 : parent.attrValues) || attrValues)[attr];\n if (!values || !values.length)\n return null;\n return {\n from,\n to: cx.pos + (doc.sliceString(cx.pos, cx.pos + 1) == '\"' ? 1 : 0),\n options: values,\n validFor: /^\"[^\"]*\"?$/\n };\n }\n else if (type == \"tag\") {\n let parentName = elementName(doc, context), parent = byName[parentName];\n let closing = [], last = context && context.lastChild;\n if (parentName && (!last || last.name != \"CloseTag\" || tagName(doc, last) != parentName))\n closing.push(parent ? parent.closeCompletion : { label: \"</\" + parentName + \">\", type: \"type\", boost: 2 });\n let options = closing.concat(((parent === null || parent === void 0 ? void 0 : parent.children) || (context ? allElements : topElements)).map(e => e.openCompletion));\n if (context && (parent === null || parent === void 0 ? void 0 : parent.text.length)) {\n let openTag = context.firstChild;\n if (openTag.to > cx.pos - 20 && !/\\S/.test(cx.state.sliceDoc(openTag.to, cx.pos)))\n options = options.concat(parent.text);\n }\n return {\n from,\n options,\n validFor: /^<\\/?[:\\-\\.\\w\\u00b7-\\uffff]*$/\n };\n }\n else {\n return null;\n }\n };\n}\n\n/**\nA language provider based on the [Lezer XML\nparser](https://github.com/lezer-parser/xml), extended with\nhighlighting and indentation information.\n*/\nconst xmlLanguage = /*@__PURE__*/LRLanguage.define({\n name: \"xml\",\n parser: /*@__PURE__*/parser.configure({\n props: [\n /*@__PURE__*/indentNodeProp.add({\n Element(context) {\n let closed = /^\\s*<\\//.test(context.textAfter);\n return context.lineIndent(context.node.from) + (closed ? 0 : context.unit);\n },\n \"OpenTag CloseTag SelfClosingTag\"(context) {\n return context.column(context.node.from) + context.unit;\n }\n }),\n /*@__PURE__*/foldNodeProp.add({\n Element(subtree) {\n let first = subtree.firstChild, last = subtree.lastChild;\n if (!first || first.name != \"OpenTag\")\n return null;\n return { from: first.to, to: last.name == \"CloseTag\" ? last.from : subtree.to };\n }\n }),\n /*@__PURE__*/bracketMatchingHandle.add({\n \"OpenTag CloseTag\": node => node.getChild(\"TagName\")\n })\n ]\n }),\n languageData: {\n commentTokens: { block: { open: \"<!--\", close: \"-->\" } },\n indentOnInput: /^\\s*<\\/$/\n }\n});\n/**\nXML language support. Includes schema-based autocompletion when\nconfigured.\n*/\nfunction xml(conf = {}) {\n return new LanguageSupport(xmlLanguage, xmlLanguage.data.of({\n autocomplete: completeFromSchema(conf.elements || [], conf.attributes || [])\n }));\n}\n\nexport { completeFromSchema, xml, xmlLanguage };\n"],"names":["nameChar","ch","cachedName","cachedInput","cachedPos","tagNameAfter","input","offset","pos","peek","name","next","String","fromCharCode","ElementContext","parent","this","elementContext","ContextTracker","start","shift","context","term","stack","reduce","reuse","node","_stack","type","id","strict","startTag","ExternalTokenizer","advance","acceptToken","cx","contextual","scanTo","end","len","first","charCodeAt","scan","i","length","commentContent","piContent","cdataContent","xmlHighlighting","styleTags","Text","tags","content","angleBracket","TagName","tagName","invalid","AttributeName","attributeName","AttributeValue","attributeValue","Is","definitionOperator","character","Comment","blockComment","ProcessingInst","processingInstruction","DoctypeDecl","documentMeta","Cdata","special","string","parser","LRParser","deserialize","version","states","stateData","goto","nodeNames","maxTerm","nodeProps","propSources","skippedNodes","repeatNodeCount","tokenData","tokenizers","topRules","Document","tokenPrec","doc","tag","getChild","sliceString","from","to","elementName","tree","firstChild","findParentElement","cur","Element","constructor","spec","attrs","attrValues","children","completion","Object","assign","label","openCompletion","closeCompletion","boost","closeNameCompletion","text","textContent","map","s","Identifier","attrCompletion","valueCompletion","test","completeFromSchema","eltSpecs","attrSpecs","allAttrs","globalAttrs","create","push","global","values","allElements","topElements","byName","attrVals","attributes","concat","find","a","elt","top","_a","state","loc","at","syntaxTree","resolveInner","inTag","lastChild","isError","before","childBefore","findLocation","explicit","parentName","options","validFor","attr","getChildren","attrName","closing","last","e","openTag","sliceDoc","xmlLanguage","LRLanguage","define","configure","props","indentNodeProp","add","closed","textAfter","lineIndent","unit","column","foldNodeProp","subtree","bracketMatchingHandle","languageData","commentTokens","block","open","close","indentOnInput","xml","conf","LanguageSupport","data","of","autocomplete","elements"],"mappings":"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","x_google_ignoreList":[0,1]}
|
1
|
+
{"version":3,"file":"xml.js","sources":["../node_modules/@lezer/xml/dist/index.js","../node_modules/@codemirror/lang-xml/dist/index.js"],"sourcesContent":["import { ContextTracker, ExternalTokenizer, LRParser } from '@lezer/lr';\nimport { styleTags, tags } from '@lezer/highlight';\n\n// This file was generated by lezer-generator. You probably shouldn't edit it.\nconst StartTag = 1,\n StartCloseTag = 2,\n MissingCloseTag = 3,\n mismatchedStartCloseTag = 4,\n incompleteStartCloseTag = 5,\n commentContent$1 = 36,\n piContent$1 = 37,\n cdataContent$1 = 38,\n Element = 11,\n OpenTag = 13;\n\n/* Hand-written tokenizer for XML tag matching. */\n\nfunction nameChar(ch) {\n return ch == 45 || ch == 46 || ch == 58 || ch >= 65 && ch <= 90 || ch == 95 || ch >= 97 && ch <= 122 || ch >= 161\n}\n\nfunction isSpace(ch) {\n return ch == 9 || ch == 10 || ch == 13 || ch == 32\n}\n\nlet cachedName = null, cachedInput = null, cachedPos = 0;\nfunction tagNameAfter(input, offset) {\n let pos = input.pos + offset;\n if (cachedInput == input && cachedPos == pos) return cachedName\n while (isSpace(input.peek(offset))) offset++;\n let name = \"\";\n for (;;) {\n let next = input.peek(offset);\n if (!nameChar(next)) break\n name += String.fromCharCode(next);\n offset++;\n }\n cachedInput = input; cachedPos = pos;\n return cachedName = name || null\n}\n\nfunction ElementContext(name, parent) {\n this.name = name;\n this.parent = parent;\n}\n\nconst elementContext = new ContextTracker({\n start: null,\n shift(context, term, stack, input) {\n return term == StartTag ? new ElementContext(tagNameAfter(input, 1) || \"\", context) : context\n },\n reduce(context, term) {\n return term == Element && context ? context.parent : context\n },\n reuse(context, node, _stack, input) {\n let type = node.type.id;\n return type == StartTag || type == OpenTag\n ? new ElementContext(tagNameAfter(input, 1) || \"\", context) : context\n },\n strict: false\n});\n\nconst startTag = new ExternalTokenizer((input, stack) => {\n if (input.next != 60 /* '<' */) return\n input.advance();\n if (input.next == 47 /* '/' */) {\n input.advance();\n let name = tagNameAfter(input, 0);\n if (!name) return input.acceptToken(incompleteStartCloseTag)\n if (stack.context && name == stack.context.name) return input.acceptToken(StartCloseTag)\n for (let cx = stack.context; cx; cx = cx.parent) if (cx.name == name) return input.acceptToken(MissingCloseTag, -2)\n input.acceptToken(mismatchedStartCloseTag);\n } else if (input.next != 33 /* '!' */ && input.next != 63 /* '?' */) {\n return input.acceptToken(StartTag)\n }\n}, {contextual: true});\n\nfunction scanTo(type, end) {\n return new ExternalTokenizer(input => {\n let len = 0, first = end.charCodeAt(0);\n scan: for (;; input.advance(), len++) {\n if (input.next < 0) break\n if (input.next == first) {\n for (let i = 1; i < end.length; i++)\n if (input.peek(i) != end.charCodeAt(i)) continue scan\n break\n }\n }\n if (len) input.acceptToken(type);\n })\n}\n\nconst commentContent = scanTo(commentContent$1, \"-->\");\nconst piContent = scanTo(piContent$1, \"?>\");\nconst cdataContent = scanTo(cdataContent$1, \"]]>\");\n\nconst xmlHighlighting = styleTags({\n Text: tags.content,\n \"StartTag StartCloseTag EndTag SelfCloseEndTag\": tags.angleBracket,\n TagName: tags.tagName,\n \"MismatchedCloseTag/TagName\": [tags.tagName, tags.invalid],\n AttributeName: tags.attributeName,\n AttributeValue: tags.attributeValue,\n Is: tags.definitionOperator,\n \"EntityReference CharacterReference\": tags.character,\n Comment: tags.blockComment,\n ProcessingInst: tags.processingInstruction,\n DoctypeDecl: tags.documentMeta,\n Cdata: tags.special(tags.string)\n});\n\n// This file was generated by lezer-generator. You probably shouldn't edit it.\nconst parser = LRParser.deserialize({\n version: 14,\n states: \",lOQOaOOOrOxO'#CfOzOpO'#CiO!tOaO'#CgOOOP'#Cg'#CgO!{OrO'#CrO#TOtO'#CsO#]OpO'#CtOOOP'#DT'#DTOOOP'#Cv'#CvQQOaOOOOOW'#Cw'#CwO#eOxO,59QOOOP,59Q,59QOOOO'#Cx'#CxO#mOpO,59TO#uO!bO,59TOOOP'#C|'#C|O$TOaO,59RO$[OpO'#CoOOOP,59R,59ROOOQ'#C}'#C}O$dOrO,59^OOOP,59^,59^OOOS'#DO'#DOO$lOtO,59_OOOP,59_,59_O$tOpO,59`O$|OpO,59`OOOP-E6t-E6tOOOW-E6u-E6uOOOP1G.l1G.lOOOO-E6v-E6vO%UO!bO1G.oO%UO!bO1G.oO%dOpO'#CkO%lO!bO'#CyO%zO!bO1G.oOOOP1G.o1G.oOOOP1G.w1G.wOOOP-E6z-E6zOOOP1G.m1G.mO&VOpO,59ZO&_OpO,59ZOOOQ-E6{-E6{OOOP1G.x1G.xOOOS-E6|-E6|OOOP1G.y1G.yO&gOpO1G.zO&gOpO1G.zOOOP1G.z1G.zO&oO!bO7+$ZO&}O!bO7+$ZOOOP7+$Z7+$ZOOOP7+$c7+$cO'YOpO,59VO'bOpO,59VO'mO!bO,59eOOOO-E6w-E6wO'{OpO1G.uO'{OpO1G.uOOOP1G.u1G.uO(TOpO7+$fOOOP7+$f7+$fO(]O!bO<<GuOOOP<<Gu<<GuOOOP<<G}<<G}O'bOpO1G.qO'bOpO1G.qO(hO#tO'#CnO(vO&jO'#CnOOOO1G.q1G.qO)UOpO7+$aOOOP7+$a7+$aOOOP<<HQ<<HQOOOPAN=aAN=aOOOPAN=iAN=iO'bOpO7+$]OOOO7+$]7+$]OOOO'#Cz'#CzO)^O#tO,59YOOOO,59Y,59YOOOO'#C{'#C{O)lO&jO,59YOOOP<<G{<<G{OOOO<<Gw<<GwOOOO-E6x-E6xOOOO1G.t1G.tOOOO-E6y-E6y\",\n stateData: \")z~OPQOSVOTWOVWOWWOXWOiXOyPO!QTO!SUO~OvZOx]O~O^`Oz^O~OPQOQcOSVOTWOVWOWWOXWOyPO!QTO!SUO~ORdO~P!SOteO!PgO~OuhO!RjO~O^lOz^O~OvZOxoO~O^qOz^O~O[vO`sOdwOz^O~ORyO~P!SO^{Oz^O~OteO!P}O~OuhO!R!PO~O^!QOz^O~O[!SOz^O~O[!VO`sOd!WOz^O~Oa!YOz^O~Oz^O[mX`mXdmX~O[!VO`sOd!WO~O^!]Oz^O~O[!_Oz^O~O[!aOz^O~O[!cO`sOd!dOz^O~O[!cO`sOd!dO~Oa!eOz^O~Oz^O{!gO}!hO~Oz^O[ma`madma~O[!kOz^O~O[!lOz^O~O[!mO`sOd!nO~OW!qOX!qO{!sO|!qO~OW!tOX!tO}!sO!O!tO~O[!vOz^O~OW!qOX!qO{!yO|!qO~OW!tOX!tO}!yO!O!tO~O\",\n goto: \"%cxPPPPPPPPPPyyP!PP!VPP!`!jP!pyyyP!v!|#S$[$k$q$w$}%TPPPP%ZXWORYbXRORYb_t`qru!T!U!bQ!i!YS!p!e!fR!w!oQdRRybXSORYbQYORmYQ[PRn[Q_QQkVjp_krz!R!T!X!Z!^!`!f!j!oQr`QzcQ!RlQ!TqQ!XsQ!ZtQ!^{Q!`!QQ!f!YQ!j!]R!o!eQu`S!UqrU![u!U!bR!b!TQ!r!gR!x!rQ!u!hR!z!uQbRRxbQfTR|fQiUR!OiSXOYTaRb\",\n nodeNames: \"⚠ StartTag StartCloseTag MissingCloseTag StartCloseTag StartCloseTag Document Text EntityReference CharacterReference Cdata Element EndTag OpenTag TagName Attribute AttributeName Is AttributeValue CloseTag SelfCloseEndTag SelfClosingTag Comment ProcessingInst MismatchedCloseTag DoctypeDecl\",\n maxTerm: 50,\n context: elementContext,\n nodeProps: [\n [\"closedBy\", 1,\"SelfCloseEndTag EndTag\",13,\"CloseTag MissingCloseTag\"],\n [\"openedBy\", 12,\"StartTag StartCloseTag\",19,\"OpenTag\",20,\"StartTag\"],\n [\"isolate\", -6,13,18,19,21,22,24,\"\"]\n ],\n propSources: [xmlHighlighting],\n skippedNodes: [0],\n repeatNodeCount: 9,\n tokenData: \"!)v~R!YOX$qXY)iYZ)iZ]$q]^)i^p$qpq)iqr$qrs*vsv$qvw+fwx/ix}$q}!O0[!O!P$q!P!Q2z!Q![$q![!]4n!]!^$q!^!_8U!_!`!#t!`!a!$l!a!b!%d!b!c$q!c!}4n!}#P$q#P#Q!'W#Q#R$q#R#S4n#S#T$q#T#o4n#o%W$q%W%o4n%o%p$q%p&a4n&a&b$q&b1p4n1p4U$q4U4d4n4d4e$q4e$IS4n$IS$I`$q$I`$Ib4n$Ib$Kh$q$Kh%#t4n%#t&/x$q&/x&Et4n&Et&FV$q&FV;'S4n;'S;:j8O;:j;=`)c<%l?&r$q?&r?Ah4n?Ah?BY$q?BY?Mn4n?MnO$qi$zXVP|W!O`Or$qrs%gsv$qwx'^x!^$q!^!_(o!_;'S$q;'S;=`)c<%lO$qa%nVVP!O`Ov%gwx&Tx!^%g!^!_&o!_;'S%g;'S;=`'W<%lO%gP&YTVPOv&Tw!^&T!_;'S&T;'S;=`&i<%lO&TP&lP;=`<%l&T`&tS!O`Ov&ox;'S&o;'S;=`'Q<%lO&o`'TP;=`<%l&oa'ZP;=`<%l%gX'eWVP|WOr'^rs&Tsv'^w!^'^!^!_'}!_;'S'^;'S;=`(i<%lO'^W(ST|WOr'}sv'}w;'S'};'S;=`(c<%lO'}W(fP;=`<%l'}X(lP;=`<%l'^h(vV|W!O`Or(ors&osv(owx'}x;'S(o;'S;=`)]<%lO(oh)`P;=`<%l(oi)fP;=`<%l$qo)t`VP|W!O`zUOX$qXY)iYZ)iZ]$q]^)i^p$qpq)iqr$qrs%gsv$qwx'^x!^$q!^!_(o!_;'S$q;'S;=`)c<%lO$qk+PV{YVP!O`Ov%gwx&Tx!^%g!^!_&o!_;'S%g;'S;=`'W<%lO%g~+iast,n![!]-r!c!}-r#R#S-r#T#o-r%W%o-r%p&a-r&b1p-r4U4d-r4e$IS-r$I`$Ib-r$Kh%#t-r&/x&Et-r&FV;'S-r;'S;:j/c?&r?Ah-r?BY?Mn-r~,qQ!Q![,w#l#m-V~,zQ!Q![,w!]!^-Q~-VOX~~-YR!Q![-c!c!i-c#T#Z-c~-fS!Q![-c!]!^-Q!c!i-c#T#Z-c~-ug}!O-r!O!P-r!Q![-r![!]-r!]!^/^!c!}-r#R#S-r#T#o-r$}%O-r%W%o-r%p&a-r&b1p-r1p4U-r4U4d-r4e$IS-r$I`$Ib-r$Je$Jg-r$Kh%#t-r&/x&Et-r&FV;'S-r;'S;:j/c?&r?Ah-r?BY?Mn-r~/cOW~~/fP;=`<%l-rk/rW}bVP|WOr'^rs&Tsv'^w!^'^!^!_'}!_;'S'^;'S;=`(i<%lO'^k0eZVP|W!O`Or$qrs%gsv$qwx'^x}$q}!O1W!O!^$q!^!_(o!_;'S$q;'S;=`)c<%lO$qk1aZVP|W!O`Or$qrs%gsv$qwx'^x!^$q!^!_(o!_!`$q!`!a2S!a;'S$q;'S;=`)c<%lO$qk2_X!PQVP|W!O`Or$qrs%gsv$qwx'^x!^$q!^!_(o!_;'S$q;'S;=`)c<%lO$qm3TZVP|W!O`Or$qrs%gsv$qwx'^x!^$q!^!_(o!_!`$q!`!a3v!a;'S$q;'S;=`)c<%lO$qm4RXdSVP|W!O`Or$qrs%gsv$qwx'^x!^$q!^!_(o!_;'S$q;'S;=`)c<%lO$qo4{!P`S^QVP|W!O`Or$qrs%gsv$qwx'^x}$q}!O4n!O!P4n!P!Q$q!Q![4n![!]4n!]!^$q!^!_(o!_!c$q!c!}4n!}#R$q#R#S4n#S#T$q#T#o4n#o$}$q$}%O4n%O%W$q%W%o4n%o%p$q%p&a4n&a&b$q&b1p4n1p4U4n4U4d4n4d4e$q4e$IS4n$IS$I`$q$I`$Ib4n$Ib$Je$q$Je$Jg4n$Jg$Kh$q$Kh%#t4n%#t&/x$q&/x&Et4n&Et&FV$q&FV;'S4n;'S;:j8O;:j;=`)c<%l?&r$q?&r?Ah4n?Ah?BY$q?BY?Mn4n?MnO$qo8RP;=`<%l4ni8]Y|W!O`Oq(oqr8{rs&osv(owx'}x!a(o!a!b!#U!b;'S(o;'S;=`)]<%lO(oi9S_|W!O`Or(ors&osv(owx'}x}(o}!O:R!O!f(o!f!g;e!g!}(o!}#ODh#O#W(o#W#XLp#X;'S(o;'S;=`)]<%lO(oi:YX|W!O`Or(ors&osv(owx'}x}(o}!O:u!O;'S(o;'S;=`)]<%lO(oi;OV!QP|W!O`Or(ors&osv(owx'}x;'S(o;'S;=`)]<%lO(oi;lX|W!O`Or(ors&osv(owx'}x!q(o!q!r<X!r;'S(o;'S;=`)]<%lO(oi<`X|W!O`Or(ors&osv(owx'}x!e(o!e!f<{!f;'S(o;'S;=`)]<%lO(oi=SX|W!O`Or(ors&osv(owx'}x!v(o!v!w=o!w;'S(o;'S;=`)]<%lO(oi=vX|W!O`Or(ors&osv(owx'}x!{(o!{!|>c!|;'S(o;'S;=`)]<%lO(oi>jX|W!O`Or(ors&osv(owx'}x!r(o!r!s?V!s;'S(o;'S;=`)]<%lO(oi?^X|W!O`Or(ors&osv(owx'}x!g(o!g!h?y!h;'S(o;'S;=`)]<%lO(oi@QY|W!O`Or?yrs@psv?yvwA[wxBdx!`?y!`!aCr!a;'S?y;'S;=`Db<%lO?ya@uV!O`Ov@pvxA[x!`@p!`!aAy!a;'S@p;'S;=`B^<%lO@pPA_TO!`A[!`!aAn!a;'SA[;'S;=`As<%lOA[PAsOiPPAvP;=`<%lA[aBQSiP!O`Ov&ox;'S&o;'S;=`'Q<%lO&oaBaP;=`<%l@pXBiX|WOrBdrsA[svBdvwA[w!`Bd!`!aCU!a;'SBd;'S;=`Cl<%lOBdXC]TiP|WOr'}sv'}w;'S'};'S;=`(c<%lO'}XCoP;=`<%lBdiC{ViP|W!O`Or(ors&osv(owx'}x;'S(o;'S;=`)]<%lO(oiDeP;=`<%l?yiDoZ|W!O`Or(ors&osv(owx'}x!e(o!e!fEb!f#V(o#V#WIr#W;'S(o;'S;=`)]<%lO(oiEiX|W!O`Or(ors&osv(owx'}x!f(o!f!gFU!g;'S(o;'S;=`)]<%lO(oiF]X|W!O`Or(ors&osv(owx'}x!c(o!c!dFx!d;'S(o;'S;=`)]<%lO(oiGPX|W!O`Or(ors&osv(owx'}x!v(o!v!wGl!w;'S(o;'S;=`)]<%lO(oiGsX|W!O`Or(ors&osv(owx'}x!c(o!c!dH`!d;'S(o;'S;=`)]<%lO(oiHgX|W!O`Or(ors&osv(owx'}x!}(o!}#OIS#O;'S(o;'S;=`)]<%lO(oiI]V|W!O`yPOr(ors&osv(owx'}x;'S(o;'S;=`)]<%lO(oiIyX|W!O`Or(ors&osv(owx'}x#W(o#W#XJf#X;'S(o;'S;=`)]<%lO(oiJmX|W!O`Or(ors&osv(owx'}x#T(o#T#UKY#U;'S(o;'S;=`)]<%lO(oiKaX|W!O`Or(ors&osv(owx'}x#h(o#h#iK|#i;'S(o;'S;=`)]<%lO(oiLTX|W!O`Or(ors&osv(owx'}x#T(o#T#UH`#U;'S(o;'S;=`)]<%lO(oiLwX|W!O`Or(ors&osv(owx'}x#c(o#c#dMd#d;'S(o;'S;=`)]<%lO(oiMkX|W!O`Or(ors&osv(owx'}x#V(o#V#WNW#W;'S(o;'S;=`)]<%lO(oiN_X|W!O`Or(ors&osv(owx'}x#h(o#h#iNz#i;'S(o;'S;=`)]<%lO(oi! RX|W!O`Or(ors&osv(owx'}x#m(o#m#n! n#n;'S(o;'S;=`)]<%lO(oi! uX|W!O`Or(ors&osv(owx'}x#d(o#d#e!!b#e;'S(o;'S;=`)]<%lO(oi!!iX|W!O`Or(ors&osv(owx'}x#X(o#X#Y?y#Y;'S(o;'S;=`)]<%lO(oi!#_V!SP|W!O`Or(ors&osv(owx'}x;'S(o;'S;=`)]<%lO(ok!$PXaQVP|W!O`Or$qrs%gsv$qwx'^x!^$q!^!_(o!_;'S$q;'S;=`)c<%lO$qo!$wX[UVP|W!O`Or$qrs%gsv$qwx'^x!^$q!^!_(o!_;'S$q;'S;=`)c<%lO$qk!%mZVP|W!O`Or$qrs%gsv$qwx'^x!^$q!^!_(o!_!`$q!`!a!&`!a;'S$q;'S;=`)c<%lO$qk!&kX!RQVP|W!O`Or$qrs%gsv$qwx'^x!^$q!^!_(o!_;'S$q;'S;=`)c<%lO$qk!'aZVP|W!O`Or$qrs%gsv$qwx'^x!^$q!^!_(o!_#P$q#P#Q!(S#Q;'S$q;'S;=`)c<%lO$qk!(]ZVP|W!O`Or$qrs%gsv$qwx'^x!^$q!^!_(o!_!`$q!`!a!)O!a;'S$q;'S;=`)c<%lO$qk!)ZXxQVP|W!O`Or$qrs%gsv$qwx'^x!^$q!^!_(o!_;'S$q;'S;=`)c<%lO$q\",\n tokenizers: [startTag, commentContent, piContent, cdataContent, 0, 1, 2, 3, 4],\n topRules: {\"Document\":[0,6]},\n tokenPrec: 0\n});\n\nexport { parser };\n","import { parser } from '@lezer/xml';\nimport { syntaxTree, LRLanguage, indentNodeProp, foldNodeProp, bracketMatchingHandle, LanguageSupport } from '@codemirror/language';\n\nfunction tagName(doc, tag) {\n let name = tag && tag.getChild(\"TagName\");\n return name ? doc.sliceString(name.from, name.to) : \"\";\n}\nfunction elementName(doc, tree) {\n let tag = tree && tree.firstChild;\n return !tag || tag.name != \"OpenTag\" ? \"\" : tagName(doc, tag);\n}\nfunction attrName(doc, tag, pos) {\n let attr = tag && tag.getChildren(\"Attribute\").find(a => a.from <= pos && a.to >= pos);\n let name = attr && attr.getChild(\"AttributeName\");\n return name ? doc.sliceString(name.from, name.to) : \"\";\n}\nfunction findParentElement(tree) {\n for (let cur = tree && tree.parent; cur; cur = cur.parent)\n if (cur.name == \"Element\")\n return cur;\n return null;\n}\nfunction findLocation(state, pos) {\n var _a;\n let at = syntaxTree(state).resolveInner(pos, -1), inTag = null;\n for (let cur = at; !inTag && cur.parent; cur = cur.parent)\n if (cur.name == \"OpenTag\" || cur.name == \"CloseTag\" || cur.name == \"SelfClosingTag\" || cur.name == \"MismatchedCloseTag\")\n inTag = cur;\n if (inTag && (inTag.to > pos || inTag.lastChild.type.isError)) {\n let elt = inTag.parent;\n if (at.name == \"TagName\")\n return inTag.name == \"CloseTag\" || inTag.name == \"MismatchedCloseTag\"\n ? { type: \"closeTag\", from: at.from, context: elt }\n : { type: \"openTag\", from: at.from, context: findParentElement(elt) };\n if (at.name == \"AttributeName\")\n return { type: \"attrName\", from: at.from, context: inTag };\n if (at.name == \"AttributeValue\")\n return { type: \"attrValue\", from: at.from, context: inTag };\n let before = at == inTag || at.name == \"Attribute\" ? at.childBefore(pos) : at;\n if ((before === null || before === void 0 ? void 0 : before.name) == \"StartTag\")\n return { type: \"openTag\", from: pos, context: findParentElement(elt) };\n if ((before === null || before === void 0 ? void 0 : before.name) == \"StartCloseTag\" && before.to <= pos)\n return { type: \"closeTag\", from: pos, context: elt };\n if ((before === null || before === void 0 ? void 0 : before.name) == \"Is\")\n return { type: \"attrValue\", from: pos, context: inTag };\n if (before)\n return { type: \"attrName\", from: pos, context: inTag };\n return null;\n }\n else if (at.name == \"StartCloseTag\") {\n return { type: \"closeTag\", from: pos, context: at.parent };\n }\n while (at.parent && at.to == pos && !((_a = at.lastChild) === null || _a === void 0 ? void 0 : _a.type.isError))\n at = at.parent;\n if (at.name == \"Element\" || at.name == \"Text\" || at.name == \"Document\")\n return { type: \"tag\", from: pos, context: at.name == \"Element\" ? at : findParentElement(at) };\n return null;\n}\nclass Element {\n constructor(spec, attrs, attrValues) {\n this.attrs = attrs;\n this.attrValues = attrValues;\n this.children = [];\n this.name = spec.name;\n this.completion = Object.assign(Object.assign({ type: \"type\" }, spec.completion || {}), { label: this.name });\n this.openCompletion = Object.assign(Object.assign({}, this.completion), { label: \"<\" + this.name });\n this.closeCompletion = Object.assign(Object.assign({}, this.completion), { label: \"</\" + this.name + \">\", boost: 2 });\n this.closeNameCompletion = Object.assign(Object.assign({}, this.completion), { label: this.name + \">\" });\n this.text = spec.textContent ? spec.textContent.map(s => ({ label: s, type: \"text\" })) : [];\n }\n}\nconst Identifier = /^[:\\-\\.\\w\\u00b7-\\uffff]*$/;\nfunction attrCompletion(spec) {\n return Object.assign(Object.assign({ type: \"property\" }, spec.completion || {}), { label: spec.name });\n}\nfunction valueCompletion(spec) {\n return typeof spec == \"string\" ? { label: `\"${spec}\"`, type: \"constant\" }\n : /^\"/.test(spec.label) ? spec\n : Object.assign(Object.assign({}, spec), { label: `\"${spec.label}\"` });\n}\n/**\nCreate a completion source for the given schema.\n*/\nfunction completeFromSchema(eltSpecs, attrSpecs) {\n let allAttrs = [], globalAttrs = [];\n let attrValues = Object.create(null);\n for (let s of attrSpecs) {\n let completion = attrCompletion(s);\n allAttrs.push(completion);\n if (s.global)\n globalAttrs.push(completion);\n if (s.values)\n attrValues[s.name] = s.values.map(valueCompletion);\n }\n let allElements = [], topElements = [];\n let byName = Object.create(null);\n for (let s of eltSpecs) {\n let attrs = globalAttrs, attrVals = attrValues;\n if (s.attributes)\n attrs = attrs.concat(s.attributes.map(s => {\n if (typeof s == \"string\")\n return allAttrs.find(a => a.label == s) || { label: s, type: \"property\" };\n if (s.values) {\n if (attrVals == attrValues)\n attrVals = Object.create(attrVals);\n attrVals[s.name] = s.values.map(valueCompletion);\n }\n return attrCompletion(s);\n }));\n let elt = new Element(s, attrs, attrVals);\n byName[elt.name] = elt;\n allElements.push(elt);\n if (s.top)\n topElements.push(elt);\n }\n if (!topElements.length)\n topElements = allElements;\n for (let i = 0; i < allElements.length; i++) {\n let s = eltSpecs[i], elt = allElements[i];\n if (s.children) {\n for (let ch of s.children)\n if (byName[ch])\n elt.children.push(byName[ch]);\n }\n else {\n elt.children = allElements;\n }\n }\n return cx => {\n var _a;\n let { doc } = cx.state, loc = findLocation(cx.state, cx.pos);\n if (!loc || (loc.type == \"tag\" && !cx.explicit))\n return null;\n let { type, from, context } = loc;\n if (type == \"openTag\") {\n let children = topElements;\n let parentName = elementName(doc, context);\n if (parentName) {\n let parent = byName[parentName];\n children = (parent === null || parent === void 0 ? void 0 : parent.children) || allElements;\n }\n return {\n from,\n options: children.map(ch => ch.completion),\n validFor: Identifier\n };\n }\n else if (type == \"closeTag\") {\n let parentName = elementName(doc, context);\n return parentName ? {\n from,\n to: cx.pos + (doc.sliceString(cx.pos, cx.pos + 1) == \">\" ? 1 : 0),\n options: [((_a = byName[parentName]) === null || _a === void 0 ? void 0 : _a.closeNameCompletion) || { label: parentName + \">\", type: \"type\" }],\n validFor: Identifier\n } : null;\n }\n else if (type == \"attrName\") {\n let parent = byName[tagName(doc, context)];\n return {\n from,\n options: (parent === null || parent === void 0 ? void 0 : parent.attrs) || globalAttrs,\n validFor: Identifier\n };\n }\n else if (type == \"attrValue\") {\n let attr = attrName(doc, context, from);\n if (!attr)\n return null;\n let parent = byName[tagName(doc, context)];\n let values = ((parent === null || parent === void 0 ? void 0 : parent.attrValues) || attrValues)[attr];\n if (!values || !values.length)\n return null;\n return {\n from,\n to: cx.pos + (doc.sliceString(cx.pos, cx.pos + 1) == '\"' ? 1 : 0),\n options: values,\n validFor: /^\"[^\"]*\"?$/\n };\n }\n else if (type == \"tag\") {\n let parentName = elementName(doc, context), parent = byName[parentName];\n let closing = [], last = context && context.lastChild;\n if (parentName && (!last || last.name != \"CloseTag\" || tagName(doc, last) != parentName))\n closing.push(parent ? parent.closeCompletion : { label: \"</\" + parentName + \">\", type: \"type\", boost: 2 });\n let options = closing.concat(((parent === null || parent === void 0 ? void 0 : parent.children) || (context ? allElements : topElements)).map(e => e.openCompletion));\n if (context && (parent === null || parent === void 0 ? void 0 : parent.text.length)) {\n let openTag = context.firstChild;\n if (openTag.to > cx.pos - 20 && !/\\S/.test(cx.state.sliceDoc(openTag.to, cx.pos)))\n options = options.concat(parent.text);\n }\n return {\n from,\n options,\n validFor: /^<\\/?[:\\-\\.\\w\\u00b7-\\uffff]*$/\n };\n }\n else {\n return null;\n }\n };\n}\n\n/**\nA language provider based on the [Lezer XML\nparser](https://github.com/lezer-parser/xml), extended with\nhighlighting and indentation information.\n*/\nconst xmlLanguage = /*@__PURE__*/LRLanguage.define({\n name: \"xml\",\n parser: /*@__PURE__*/parser.configure({\n props: [\n /*@__PURE__*/indentNodeProp.add({\n Element(context) {\n let closed = /^\\s*<\\//.test(context.textAfter);\n return context.lineIndent(context.node.from) + (closed ? 0 : context.unit);\n },\n \"OpenTag CloseTag SelfClosingTag\"(context) {\n return context.column(context.node.from) + context.unit;\n }\n }),\n /*@__PURE__*/foldNodeProp.add({\n Element(subtree) {\n let first = subtree.firstChild, last = subtree.lastChild;\n if (!first || first.name != \"OpenTag\")\n return null;\n return { from: first.to, to: last.name == \"CloseTag\" ? last.from : subtree.to };\n }\n }),\n /*@__PURE__*/bracketMatchingHandle.add({\n \"OpenTag CloseTag\": node => node.getChild(\"TagName\")\n })\n ]\n }),\n languageData: {\n commentTokens: { block: { open: \"<!--\", close: \"-->\" } },\n indentOnInput: /^\\s*<\\/$/\n }\n});\n/**\nXML language support. Includes schema-based autocompletion when\nconfigured.\n*/\nfunction xml(conf = {}) {\n return new LanguageSupport(xmlLanguage, xmlLanguage.data.of({\n autocomplete: completeFromSchema(conf.elements || [], conf.attributes || [])\n }));\n}\n\nexport { completeFromSchema, xml, xmlLanguage };\n"],"names":["nameChar","ch","isSpace","cachedName","cachedInput","cachedPos","tagNameAfter","input","offset","pos","peek","name","next","String","fromCharCode","ElementContext","parent","this","elementContext","ContextTracker","start","shift","context","term","stack","reduce","reuse","node","_stack","type","id","strict","startTag","ExternalTokenizer","advance","acceptToken","cx","contextual","scanTo","end","len","first","charCodeAt","scan","i","length","commentContent","piContent","cdataContent","xmlHighlighting","styleTags","Text","tags","content","angleBracket","TagName","tagName","invalid","AttributeName","attributeName","AttributeValue","attributeValue","Is","definitionOperator","character","Comment","blockComment","ProcessingInst","processingInstruction","DoctypeDecl","documentMeta","Cdata","special","string","parser","LRParser","deserialize","version","states","stateData","goto","nodeNames","maxTerm","nodeProps","propSources","skippedNodes","repeatNodeCount","tokenData","tokenizers","topRules","Document","tokenPrec","doc","tag","getChild","sliceString","from","to","elementName","tree","firstChild","findParentElement","cur","Element","constructor","spec","attrs","attrValues","children","completion","Object","assign","label","openCompletion","closeCompletion","boost","closeNameCompletion","text","textContent","map","s","Identifier","attrCompletion","valueCompletion","test","completeFromSchema","eltSpecs","attrSpecs","allAttrs","globalAttrs","create","push","global","values","allElements","topElements","byName","attrVals","attributes","concat","find","a","elt","top","_a","state","loc","at","syntaxTree","resolveInner","inTag","lastChild","isError","before","childBefore","findLocation","explicit","parentName","options","validFor","attr","getChildren","attrName","closing","last","e","openTag","sliceDoc","xmlLanguage","LRLanguage","define","configure","props","indentNodeProp","add","closed","textAfter","lineIndent","unit","column","foldNodeProp","subtree","bracketMatchingHandle","languageData","commentTokens","block","open","close","indentOnInput","xml","conf","LanguageSupport","data","of","autocomplete","elements"],"mappings":"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","x_google_ignoreList":[0,1]}
|
@@ -1,2 +1,2 @@
|
|
1
|
-
export{b5 as Annotation,b6 as AnnotationType,b7 as ChangeDesc,b8 as ChangeSet,b9 as Compartment,C as CompletionContext,bm as Decoration,
|
1
|
+
export{b5 as Annotation,b6 as AnnotationType,b7 as ChangeDesc,b8 as ChangeSet,b9 as Compartment,C as CompletionContext,bm as Decoration,v as EditorSelection,D as EditorState,S as EditorView,ba as Facet,bp as GutterMarker,aY as HighlightStyle,b as LRParser,o as Language,a as LanguageSupport,bb as Line,bc as MapMode,bu as MatchDecorator,l as NodeProp,m as NodeSet,N as NodeType,P as Parser,x as Prec,bd as Range,be as RangeSet,bf as RangeSetBuilder,bg as SelectionRange,bh as StateEffect,bi as StateEffectType,bj as StateField,a_ as StreamLanguage,a$ as StringStream,bG as StyleModule,T as Tag,bk as Text,bl as Transaction,n as Tree,bE as TreeCursor,bB as ViewPlugin,bC as ViewUpdate,bD as WidgetType,aj as acceptCompletion,Z as angular,ak as autocompletion,aU as bidiIsolates,aS as bracketMatching,_ as clojure,al as closeBrackets,am as closeBracketsKeymap,an as closeCompletion,aT as codeFolding,$ as coffeescript,ao as completeAnyWord,ap as completionStatus,a0 as cpp,a1 as css,af as cssStreamParser,aq as currentCompletions,aw as cursorGroupLeft,ax as cursorGroupRight,av as cursorMatchingBracket,ay as cursorSyntaxLeft,az as cursorSyntaxRight,a2 as dart,bn as drawSelection,aV as ensureSyntaxTree,aW as foldGutter,aX as foldKeymap,b2 as forceParsing,a4 as go,a3 as gss,bo as gutter,bq as gutters,b3 as highlightSelectionMatches,br as highlightSpecialChars,bF as highlightTree,aA as history,aB as historyKeymap,aQ as html,I as ifNotIn,aC as indentLess,aD as indentMore,aZ as indentOnInput,z as indentUnit,bH as indentationMarkers,aE as insertNewlineAndIndent,a5 as java,aR as javascript,y as keymap,a6 as kotlin,a7 as less,bs as lineNumberMarkers,bt as lineNumbers,a8 as markdown,ar as moveCompletionSelection,a9 as php,bv as placeholder,aa as python,aF as redo,aG as redoSelection,bw as repositionTooltips,ab as sass,ac as scala,bx as scrollPastEnd,aI as selectGroupLeft,aJ as selectGroupRight,aH as selectMatchingBracket,b4 as selectNextOccurrence,aK as selectSyntaxLeft,aL as selectSyntaxRight,as as selectedCompletion,at as selectedCompletionIndex,ad as shell,by as showPanel,bz as showTooltip,aM as standardKeymap,au as startCompletion,ae as svelte,b0 as syntaxHighlighting,b1 as syntaxParserRunning,u as syntaxTree,t as tags,aN as toggleComment,bA as tooltips,aO as undo,aP as undoSelection,ag as vue,ah as wast,ai as xml}from"./chunk/codemirror.js";
|
2
2
|
//# sourceMappingURL=codemirror.next.js.map
|
@@ -29,7 +29,7 @@
|
|
29
29
|
"@lezer/css": "1.3.0",
|
30
30
|
"@lezer/highlight": "1.2.1",
|
31
31
|
"@lezer/html": "1.3.10",
|
32
|
-
"@lezer/javascript": "1.5.
|
32
|
+
"@lezer/javascript": "1.5.3",
|
33
33
|
"@lezer/lr": "1.4.2",
|
34
34
|
"@replit/codemirror-indentation-markers": "6.5.0",
|
35
35
|
"@replit/codemirror-lang-svelte": "6.0.0",
|
@@ -1,6 +1,6 @@
|
|
1
1
|
npm install
|
2
2
|
../../../node_modules/.bin/tsc -d -t esnext -m esnext --moduleResolution node bundle.ts
|
3
3
|
../../../node_modules/@rollup/wasm-node/dist/bin/rollup -c
|
4
|
-
rm -rf node_modules
|
4
|
+
rm -rf node_modules bundle.js bundle.d.ts
|
5
5
|
# Because there's a bug in clang causing it to reformat import lists even where formatting is disabled, run it right away
|
6
6
|
git cl format --js
|
@@ -1,5 +1,5 @@
|
|
1
1
|
npm install
|
2
2
|
../../../third_party/esbuild/esbuild --bundle package/lib/index.js --format=esm --outdir=lib
|
3
|
-
rm -rf node_modules
|
3
|
+
rm -rf node_modules
|
4
4
|
# Because there's a bug in clang causing it to reformat import lists even where formatting is disabled, run it right away
|
5
5
|
git cl format --js
|
@@ -197,6 +197,24 @@ interface PropertyDeclaration<Type = unknown, TypeHint = unknown> {
|
|
197
197
|
* the property changes.
|
198
198
|
*/
|
199
199
|
readonly noAccessor?: boolean;
|
200
|
+
/**
|
201
|
+
* When `true`, uses the initial value of the property as the default value,
|
202
|
+
* which changes how attributes are handled:
|
203
|
+
* - The initial value does *not* reflect, even if the `reflect` option is `true`.
|
204
|
+
* Subsequent changes to the property will reflect, even if they are equal to the
|
205
|
+
* default value.
|
206
|
+
* - When the attribute is removed, the property is set to the default value
|
207
|
+
* - The initial value will not trigger an old value in the `changedProperties` map
|
208
|
+
* argument to update lifecycle methods.
|
209
|
+
*
|
210
|
+
* When set, properties must be initialized, either with a field initializer, or an
|
211
|
+
* assignment in the constructor. Not initializing the property may lead to
|
212
|
+
* improper handling of subsequent property assignments.
|
213
|
+
*
|
214
|
+
* While this behavior is opt-in, most properties that reflect to attributes should
|
215
|
+
* use `useDefault: true` so that their initial values do not reflect.
|
216
|
+
*/
|
217
|
+
useDefault?: boolean;
|
200
218
|
}
|
201
219
|
/**
|
202
220
|
* Map of properties to PropertyDeclaration options. For each property an
|
@@ -561,6 +579,11 @@ declare abstract class ReactiveElement extends HTMLElement implements ReactiveCo
|
|
561
579
|
* @category updates
|
562
580
|
*/
|
563
581
|
hasUpdated: boolean;
|
582
|
+
/**
|
583
|
+
* Records property default values when the
|
584
|
+
* `useDefault` option is used.
|
585
|
+
*/
|
586
|
+
private __defaultValues?;
|
564
587
|
/**
|
565
588
|
* Properties that should be reflected when updated.
|
566
589
|
*/
|
@@ -598,13 +621,7 @@ declare abstract class ReactiveElement extends HTMLElement implements ReactiveCo
|
|
598
621
|
* Fixes any properties set on the instance before upgrade time.
|
599
622
|
* Otherwise these would shadow the accessor and break these properties.
|
600
623
|
* The properties are stored in a Map which is played back after the
|
601
|
-
* constructor runs.
|
602
|
-
* (<=41), properties created for native platform properties like (`id` or
|
603
|
-
* `name`) may not have default values set in the element constructor. On
|
604
|
-
* these browsers native properties appear on instances and therefore their
|
605
|
-
* default value will overwrite any element default (e.g. if the element sets
|
606
|
-
* this.id = 'id' in the constructor, the 'id' will become '' since this is
|
607
|
-
* the native platform default).
|
624
|
+
* constructor runs.
|
608
625
|
*/
|
609
626
|
private __saveInstanceProperties;
|
610
627
|
/**
|
@@ -645,7 +662,7 @@ declare abstract class ReactiveElement extends HTMLElement implements ReactiveCo
|
|
645
662
|
* overridden, `super.attributeChangedCallback(name, _old, value)` must be
|
646
663
|
* called.
|
647
664
|
*
|
648
|
-
* See [
|
665
|
+
* See [responding to attribute changes](https://developer.mozilla.org/en-US/docs/Web/API/Web_components/Using_custom_elements#responding_to_attribute_changes)
|
649
666
|
* on MDN for more information about the `attributeChangedCallback`.
|
650
667
|
* @category attributes
|
651
668
|
*/
|
@@ -847,7 +864,7 @@ type StandardPropertyContext<C, V> = (ClassAccessorDecoratorContext<C, V> | Clas
|
|
847
864
|
* Wraps a class accessor or setter so that `requestUpdate()` is called with the
|
848
865
|
* property name and old value when the accessor is set.
|
849
866
|
*/
|
850
|
-
declare const standardProperty: <C extends Interface<ReactiveElement>, V>(options: PropertyDeclaration
|
867
|
+
declare const standardProperty: <C extends Interface<ReactiveElement>, V>(options: PropertyDeclaration | undefined, target: ClassAccessorDecoratorTarget<C, V> | ((value: V) => void), context: StandardPropertyContext<C, V>) => ClassAccessorDecoratorResult<C, V> | ((this: C, value: V) => void);
|
851
868
|
/**
|
852
869
|
* A class field or accessor decorator which creates a reactive property that
|
853
870
|
* reflects a corresponding attribute value. When a decorated property is set
|
@@ -3,26 +3,26 @@
|
|
3
3
|
* Copyright 2019 Google LLC
|
4
4
|
* SPDX-License-Identifier: BSD-3-Clause
|
5
5
|
*/
|
6
|
-
const t=globalThis,e=t.ShadowRoot&&(void 0===t.ShadyCSS||t.ShadyCSS.nativeShadow)&&"adoptedStyleSheets"in Document.prototype&&"replace"in CSSStyleSheet.prototype,s=Symbol(),i=new WeakMap;let r=class{constructor(t,e,i){if(this._$cssResult$=!0,i!==s)throw Error("CSSResult is not constructable. Use `unsafeCSS` or `css` instead.");this.cssText=t,this.t=e}get styleSheet(){let t=this.o;const s=this.t;if(e&&void 0===t){const e=void 0!==s&&1===s.length;e&&(t=i.get(s)),void 0===t&&((this.o=t=new CSSStyleSheet).replaceSync(this.cssText),e&&i.set(s,t))}return t}toString(){return this.cssText}};const o=e?t=>t:t=>t instanceof CSSStyleSheet?(t=>{let e="";for(const s of t.cssRules)e+=s.cssText;return(t=>new r("string"==typeof t?t:t+"",void 0,s))(e)})(t):t
|
6
|
+
const t=globalThis,e=t.ShadowRoot&&(void 0===t.ShadyCSS||t.ShadyCSS.nativeShadow)&&"adoptedStyleSheets"in Document.prototype&&"replace"in CSSStyleSheet.prototype,s=Symbol(),i=new WeakMap;let r=class{constructor(t,e,i){if(this._$cssResult$=!0,i!==s)throw Error("CSSResult is not constructable. Use `unsafeCSS` or `css` instead.");this.cssText=t,this.t=e}get styleSheet(){let t=this.o;const s=this.t;if(e&&void 0===t){const e=void 0!==s&&1===s.length;e&&(t=i.get(s)),void 0===t&&((this.o=t=new CSSStyleSheet).replaceSync(this.cssText),e&&i.set(s,t))}return t}toString(){return this.cssText}};const o=e?t=>t:t=>t instanceof CSSStyleSheet?(t=>{let e="";for(const s of t.cssRules)e+=s.cssText;return(t=>new r("string"==typeof t?t:t+"",void 0,s))(e)})(t):t,{is:n,defineProperty:a,getOwnPropertyDescriptor:h,getOwnPropertyNames:c,getOwnPropertySymbols:l,getPrototypeOf:d}=Object,p=globalThis,u=p.trustedTypes,f=u?u.emptyScript:"",y=p.reactiveElementPolyfillSupport,E=(t,e)=>t,m={toAttribute(t,e){switch(e){case Boolean:t=t?f:null;break;case Object:case Array:t=null==t?t:JSON.stringify(t)}return t},fromAttribute(t,e){let s=t;switch(e){case Boolean:s=null!==t;break;case Number:s=null===t?null:Number(t);break;case Object:case Array:try{s=JSON.parse(t)}catch(t){s=null}}return s}},_=(t,e)=>!n(t,e),$={attribute:!0,type:String,converter:m,reflect:!1,useDefault:!1,hasChanged:_};
|
7
7
|
/**
|
8
8
|
* @license
|
9
9
|
* Copyright 2017 Google LLC
|
10
10
|
* SPDX-License-Identifier: BSD-3-Clause
|
11
|
-
|
11
|
+
*/Symbol.metadata??=Symbol("metadata"),p.litPropertyMetadata??=new WeakMap;class S extends HTMLElement{static addInitializer(t){this._$Ei(),(this.l??=[]).push(t)}static get observedAttributes(){return this.finalize(),this._$Eh&&[...this._$Eh.keys()]}static createProperty(t,e=$){if(e.state&&(e.attribute=!1),this._$Ei(),this.prototype.hasOwnProperty(t)&&((e=Object.create(e)).wrapped=!0),this.elementProperties.set(t,e),!e.noAccessor){const s=Symbol(),i=this.getPropertyDescriptor(t,s,e);void 0!==i&&a(this.prototype,t,i)}}static getPropertyDescriptor(t,e,s){const{get:i,set:r}=h(this.prototype,t)??{get(){return this[e]},set(t){this[e]=t}};return{get:i,set(e){const o=i?.call(this);r?.call(this,e),this.requestUpdate(t,o,s)},configurable:!0,enumerable:!0}}static getPropertyOptions(t){return this.elementProperties.get(t)??$}static _$Ei(){if(this.hasOwnProperty(E("elementProperties")))return;const t=d(this);t.finalize(),void 0!==t.l&&(this.l=[...t.l]),this.elementProperties=new Map(t.elementProperties)}static finalize(){if(this.hasOwnProperty(E("finalized")))return;if(this.finalized=!0,this._$Ei(),this.hasOwnProperty(E("properties"))){const t=this.properties,e=[...c(t),...l(t)];for(const s of e)this.createProperty(s,t[s])}const t=this[Symbol.metadata];if(null!==t){const e=litPropertyMetadata.get(t);if(void 0!==e)for(const[t,s]of e)this.elementProperties.set(t,s)}this._$Eh=new Map;for(const[t,e]of this.elementProperties){const s=this._$Eu(t,e);void 0!==s&&this._$Eh.set(s,t)}this.elementStyles=this.finalizeStyles(this.styles)}static finalizeStyles(t){const e=[];if(Array.isArray(t)){const s=new Set(t.flat(1/0).reverse());for(const t of s)e.unshift(o(t))}else void 0!==t&&e.push(o(t));return e}static _$Eu(t,e){const s=e.attribute;return!1===s?void 0:"string"==typeof s?s:"string"==typeof t?t.toLowerCase():void 0}constructor(){super(),this._$Ep=void 0,this.isUpdatePending=!1,this.hasUpdated=!1,this._$Em=null,this._$Ev()}_$Ev(){this._$ES=new Promise(t=>this.enableUpdating=t),this._$AL=new Map,this._$E_(),this.requestUpdate(),this.constructor.l?.forEach(t=>t(this))}addController(t){(this._$EO??=new Set).add(t),void 0!==this.renderRoot&&this.isConnected&&t.hostConnected?.()}removeController(t){this._$EO?.delete(t)}_$E_(){const t=new Map,e=this.constructor.elementProperties;for(const s of e.keys())this.hasOwnProperty(s)&&(t.set(s,this[s]),delete this[s]);t.size>0&&(this._$Ep=t)}createRenderRoot(){const s=this.shadowRoot??this.attachShadow(this.constructor.shadowRootOptions);return((s,i)=>{if(e)s.adoptedStyleSheets=i.map(t=>t instanceof CSSStyleSheet?t:t.styleSheet);else for(const e of i){const i=document.createElement("style"),r=t.litNonce;void 0!==r&&i.setAttribute("nonce",r),i.textContent=e.cssText,s.appendChild(i)}})(s,this.constructor.elementStyles),s}connectedCallback(){this.renderRoot??=this.createRenderRoot(),this.enableUpdating(!0),this._$EO?.forEach(t=>t.hostConnected?.())}enableUpdating(t){}disconnectedCallback(){this._$EO?.forEach(t=>t.hostDisconnected?.())}attributeChangedCallback(t,e,s){this._$AK(t,s)}_$ET(t,e){const s=this.constructor.elementProperties.get(t),i=this.constructor._$Eu(t,s);if(void 0!==i&&!0===s.reflect){const r=(void 0!==s.converter?.toAttribute?s.converter:m).toAttribute(e,s.type);this._$Em=t,null==r?this.removeAttribute(i):this.setAttribute(i,r),this._$Em=null}}_$AK(t,e){const s=this.constructor,i=s._$Eh.get(t);if(void 0!==i&&this._$Em!==i){const t=s.getPropertyOptions(i),r="function"==typeof t.converter?{fromAttribute:t.converter}:void 0!==t.converter?.fromAttribute?t.converter:m;this._$Em=i;const o=r.fromAttribute(e,t.type);this[i]=o??this._$Ej?.get(i)??o,this._$Em=null}}requestUpdate(t,e,s){if(void 0!==t){const i=this.constructor,r=this[t];if(s??=i.getPropertyOptions(t),!((s.hasChanged??_)(r,e)||s.useDefault&&s.reflect&&r===this._$Ej?.get(t)&&!this.hasAttribute(i._$Eu(t,s))))return;this.C(t,e,s)}!1===this.isUpdatePending&&(this._$ES=this._$EP())}C(t,e,{useDefault:s,reflect:i,wrapped:r},o){s&&!(this._$Ej??=new Map).has(t)&&(this._$Ej.set(t,o??e??this[t]),!0!==r||void 0!==o)||(this._$AL.has(t)||(this.hasUpdated||s||(e=void 0),this._$AL.set(t,e)),!0===i&&this._$Em!==t&&(this._$Eq??=new Set).add(t))}async _$EP(){this.isUpdatePending=!0;try{await this._$ES}catch(t){Promise.reject(t)}const t=this.scheduleUpdate();return null!=t&&await t,!this.isUpdatePending}scheduleUpdate(){return this.performUpdate()}performUpdate(){if(!this.isUpdatePending)return;if(!this.hasUpdated){if(this.renderRoot??=this.createRenderRoot(),this._$Ep){for(const[t,e]of this._$Ep)this[t]=e;this._$Ep=void 0}const t=this.constructor.elementProperties;if(t.size>0)for(const[e,s]of t){const{wrapped:t}=s,i=this[e];!0!==t||this._$AL.has(e)||void 0===i||this.C(e,void 0,s,i)}}let t=!1;const e=this._$AL;try{t=this.shouldUpdate(e),t?(this.willUpdate(e),this._$EO?.forEach(t=>t.hostUpdate?.()),this.update(e)):this._$EM()}catch(e){throw t=!1,this._$EM(),e}t&&this._$AE(e)}willUpdate(t){}_$AE(t){this._$EO?.forEach(t=>t.hostUpdated?.()),this.hasUpdated||(this.hasUpdated=!0,this.firstUpdated(t)),this.updated(t)}_$EM(){this._$AL=new Map,this.isUpdatePending=!1}get updateComplete(){return this.getUpdateComplete()}getUpdateComplete(){return this._$ES}shouldUpdate(t){return!0}update(t){this._$Eq&&=this._$Eq.forEach(t=>this._$ET(t,this[t])),this._$EM()}updated(t){}firstUpdated(t){}}S.elementStyles=[],S.shadowRootOptions={mode:"open"},S[E("elementProperties")]=new Map,S[E("finalized")]=new Map,y?.({ReactiveElement:S}),(p.reactiveElementVersions??=[]).push("2.1.1");
|
12
12
|
/**
|
13
13
|
* @license
|
14
14
|
* Copyright 2017 Google LLC
|
15
15
|
* SPDX-License-Identifier: BSD-3-Clause
|
16
16
|
*/
|
17
|
-
const g={attribute:!0,type:String,converter:
|
17
|
+
const g={attribute:!0,type:String,converter:m,reflect:!1,hasChanged:_},b=(t=g,e,s)=>{const{kind:i,metadata:r}=s;let o=globalThis.litPropertyMetadata.get(r);if(void 0===o&&globalThis.litPropertyMetadata.set(r,o=new Map),"setter"===i&&((t=Object.create(t)).wrapped=!0),o.set(s.name,t),"accessor"===i){const{name:i}=s;return{set(s){const r=e.get.call(this);e.set.call(this,s),this.requestUpdate(i,r,t)},init(e){return void 0!==e&&this.C(i,void 0,t,e),e}}}if("setter"===i){const{name:i}=s;return function(s){const r=this[i];e.call(this,s),this.requestUpdate(i,r,t)}}throw Error("Unsupported decorator location: "+i)};function v(t){return(e,s)=>"object"==typeof s?b(t,e,s):((t,e,s)=>{const i=e.hasOwnProperty(s);return e.constructor.createProperty(s,t),i?Object.getOwnPropertyDescriptor(e,s):void 0})(t,e,s)}
|
18
18
|
/**
|
19
19
|
* @license
|
20
20
|
* Copyright 2017 Google LLC
|
21
21
|
* SPDX-License-Identifier: BSD-3-Clause
|
22
|
-
*/
|
22
|
+
*/function w(t){return v({...t,state:!0,attribute:!1})}
|
23
23
|
/**
|
24
24
|
* @license
|
25
25
|
* Copyright 2017 Google LLC
|
26
26
|
* SPDX-License-Identifier: BSD-3-Clause
|
27
|
-
*/const
|
27
|
+
*/const P=t=>(e,s)=>{void 0!==s?s.addInitializer(()=>{customElements.define(t,e)}):customElements.define(t,e)};export{P as customElement,v as property,b as standardProperty,w as state};
|
28
28
|
//# sourceMappingURL=decorators.js.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"decorators.js","sources":["../node_modules/@lit/reactive-element/css-tag.js","../node_modules/@lit/reactive-element/reactive-element.js","../node_modules/@lit/reactive-element/decorators/property.js","../node_modules/@lit/reactive-element/decorators/state.js","../node_modules/@lit/reactive-element/decorators/custom-element.js"],"sourcesContent":["/**\n * @license\n * Copyright 2019 Google LLC\n * SPDX-License-Identifier: BSD-3-Clause\n */\nconst t=globalThis,e=t.ShadowRoot&&(void 0===t.ShadyCSS||t.ShadyCSS.nativeShadow)&&\"adoptedStyleSheets\"in Document.prototype&&\"replace\"in CSSStyleSheet.prototype,s=Symbol(),o=new WeakMap;class n{constructor(t,e,o){if(this._$cssResult$=!0,o!==s)throw Error(\"CSSResult is not constructable. Use `unsafeCSS` or `css` instead.\");this.cssText=t,this.t=e}get styleSheet(){let t=this.o;const s=this.t;if(e&&void 0===t){const e=void 0!==s&&1===s.length;e&&(t=o.get(s)),void 0===t&&((this.o=t=new CSSStyleSheet).replaceSync(this.cssText),e&&o.set(s,t))}return t}toString(){return this.cssText}}const r=t=>new n(\"string\"==typeof t?t:t+\"\",void 0,s),i=(t,...e)=>{const o=1===t.length?t[0]:e.reduce(((e,s,o)=>e+(t=>{if(!0===t._$cssResult$)return t.cssText;if(\"number\"==typeof t)return t;throw Error(\"Value passed to 'css' function must be a 'css' function result: \"+t+\". Use 'unsafeCSS' to pass non-literal values, but take care to ensure page security.\")})(s)+t[o+1]),t[0]);return new n(o,t,s)},S=(s,o)=>{if(e)s.adoptedStyleSheets=o.map((t=>t instanceof CSSStyleSheet?t:t.styleSheet));else for(const e of o){const o=document.createElement(\"style\"),n=t.litNonce;void 0!==n&&o.setAttribute(\"nonce\",n),o.textContent=e.cssText,s.appendChild(o)}},c=e?t=>t:t=>t instanceof CSSStyleSheet?(t=>{let e=\"\";for(const s of t.cssRules)e+=s.cssText;return r(e)})(t):t;export{n as CSSResult,S as adoptStyles,i as css,c as getCompatibleStyle,e as supportsAdoptingStyleSheets,r as unsafeCSS};\n//# sourceMappingURL=css-tag.js.map\n","import{getCompatibleStyle as t,adoptStyles as s}from\"./css-tag.js\";export{CSSResult,adoptStyles,css,getCompatibleStyle,supportsAdoptingStyleSheets,unsafeCSS}from\"./css-tag.js\";\n/**\n * @license\n * Copyright 2017 Google LLC\n * SPDX-License-Identifier: BSD-3-Clause\n */const{is:i,defineProperty:e,getOwnPropertyDescriptor:r,getOwnPropertyNames:h,getOwnPropertySymbols:o,getPrototypeOf:n}=Object,a=globalThis,c=a.trustedTypes,l=c?c.emptyScript:\"\",p=a.reactiveElementPolyfillSupport,d=(t,s)=>t,u={toAttribute(t,s){switch(s){case Boolean:t=t?l:null;break;case Object:case Array:t=null==t?t:JSON.stringify(t)}return t},fromAttribute(t,s){let i=t;switch(s){case Boolean:i=null!==t;break;case Number:i=null===t?null:Number(t);break;case Object:case Array:try{i=JSON.parse(t)}catch(t){i=null}}return i}},f=(t,s)=>!i(t,s),y={attribute:!0,type:String,converter:u,reflect:!1,hasChanged:f};Symbol.metadata??=Symbol(\"metadata\"),a.litPropertyMetadata??=new WeakMap;class b extends HTMLElement{static addInitializer(t){this._$Ei(),(this.l??=[]).push(t)}static get observedAttributes(){return this.finalize(),this._$Eh&&[...this._$Eh.keys()]}static createProperty(t,s=y){if(s.state&&(s.attribute=!1),this._$Ei(),this.elementProperties.set(t,s),!s.noAccessor){const i=Symbol(),r=this.getPropertyDescriptor(t,i,s);void 0!==r&&e(this.prototype,t,r)}}static getPropertyDescriptor(t,s,i){const{get:e,set:h}=r(this.prototype,t)??{get(){return this[s]},set(t){this[s]=t}};return{get(){return e?.call(this)},set(s){const r=e?.call(this);h.call(this,s),this.requestUpdate(t,r,i)},configurable:!0,enumerable:!0}}static getPropertyOptions(t){return this.elementProperties.get(t)??y}static _$Ei(){if(this.hasOwnProperty(d(\"elementProperties\")))return;const t=n(this);t.finalize(),void 0!==t.l&&(this.l=[...t.l]),this.elementProperties=new Map(t.elementProperties)}static finalize(){if(this.hasOwnProperty(d(\"finalized\")))return;if(this.finalized=!0,this._$Ei(),this.hasOwnProperty(d(\"properties\"))){const t=this.properties,s=[...h(t),...o(t)];for(const i of s)this.createProperty(i,t[i])}const t=this[Symbol.metadata];if(null!==t){const s=litPropertyMetadata.get(t);if(void 0!==s)for(const[t,i]of s)this.elementProperties.set(t,i)}this._$Eh=new Map;for(const[t,s]of this.elementProperties){const i=this._$Eu(t,s);void 0!==i&&this._$Eh.set(i,t)}this.elementStyles=this.finalizeStyles(this.styles)}static finalizeStyles(s){const i=[];if(Array.isArray(s)){const e=new Set(s.flat(1/0).reverse());for(const s of e)i.unshift(t(s))}else void 0!==s&&i.push(t(s));return i}static _$Eu(t,s){const i=s.attribute;return!1===i?void 0:\"string\"==typeof i?i:\"string\"==typeof t?t.toLowerCase():void 0}constructor(){super(),this._$Ep=void 0,this.isUpdatePending=!1,this.hasUpdated=!1,this._$Em=null,this._$Ev()}_$Ev(){this._$ES=new Promise((t=>this.enableUpdating=t)),this._$AL=new Map,this._$E_(),this.requestUpdate(),this.constructor.l?.forEach((t=>t(this)))}addController(t){(this._$EO??=new Set).add(t),void 0!==this.renderRoot&&this.isConnected&&t.hostConnected?.()}removeController(t){this._$EO?.delete(t)}_$E_(){const t=new Map,s=this.constructor.elementProperties;for(const i of s.keys())this.hasOwnProperty(i)&&(t.set(i,this[i]),delete this[i]);t.size>0&&(this._$Ep=t)}createRenderRoot(){const t=this.shadowRoot??this.attachShadow(this.constructor.shadowRootOptions);return s(t,this.constructor.elementStyles),t}connectedCallback(){this.renderRoot??=this.createRenderRoot(),this.enableUpdating(!0),this._$EO?.forEach((t=>t.hostConnected?.()))}enableUpdating(t){}disconnectedCallback(){this._$EO?.forEach((t=>t.hostDisconnected?.()))}attributeChangedCallback(t,s,i){this._$AK(t,i)}_$EC(t,s){const i=this.constructor.elementProperties.get(t),e=this.constructor._$Eu(t,i);if(void 0!==e&&!0===i.reflect){const r=(void 0!==i.converter?.toAttribute?i.converter:u).toAttribute(s,i.type);this._$Em=t,null==r?this.removeAttribute(e):this.setAttribute(e,r),this._$Em=null}}_$AK(t,s){const i=this.constructor,e=i._$Eh.get(t);if(void 0!==e&&this._$Em!==e){const t=i.getPropertyOptions(e),r=\"function\"==typeof t.converter?{fromAttribute:t.converter}:void 0!==t.converter?.fromAttribute?t.converter:u;this._$Em=e,this[e]=r.fromAttribute(s,t.type),this._$Em=null}}requestUpdate(t,s,i){if(void 0!==t){if(i??=this.constructor.getPropertyOptions(t),!(i.hasChanged??f)(this[t],s))return;this.P(t,s,i)}!1===this.isUpdatePending&&(this._$ES=this._$ET())}P(t,s,i){this._$AL.has(t)||this._$AL.set(t,s),!0===i.reflect&&this._$Em!==t&&(this._$Ej??=new Set).add(t)}async _$ET(){this.isUpdatePending=!0;try{await this._$ES}catch(t){Promise.reject(t)}const t=this.scheduleUpdate();return null!=t&&await t,!this.isUpdatePending}scheduleUpdate(){return this.performUpdate()}performUpdate(){if(!this.isUpdatePending)return;if(!this.hasUpdated){if(this.renderRoot??=this.createRenderRoot(),this._$Ep){for(const[t,s]of this._$Ep)this[t]=s;this._$Ep=void 0}const t=this.constructor.elementProperties;if(t.size>0)for(const[s,i]of t)!0!==i.wrapped||this._$AL.has(s)||void 0===this[s]||this.P(s,this[s],i)}let t=!1;const s=this._$AL;try{t=this.shouldUpdate(s),t?(this.willUpdate(s),this._$EO?.forEach((t=>t.hostUpdate?.())),this.update(s)):this._$EU()}catch(s){throw t=!1,this._$EU(),s}t&&this._$AE(s)}willUpdate(t){}_$AE(t){this._$EO?.forEach((t=>t.hostUpdated?.())),this.hasUpdated||(this.hasUpdated=!0,this.firstUpdated(t)),this.updated(t)}_$EU(){this._$AL=new Map,this.isUpdatePending=!1}get updateComplete(){return this.getUpdateComplete()}getUpdateComplete(){return this._$ES}shouldUpdate(t){return!0}update(t){this._$Ej&&=this._$Ej.forEach((t=>this._$EC(t,this[t]))),this._$EU()}updated(t){}firstUpdated(t){}}b.elementStyles=[],b.shadowRootOptions={mode:\"open\"},b[d(\"elementProperties\")]=new Map,b[d(\"finalized\")]=new Map,p?.({ReactiveElement:b}),(a.reactiveElementVersions??=[]).push(\"2.0.4\");export{b as ReactiveElement,u as defaultConverter,f as notEqual};\n//# sourceMappingURL=reactive-element.js.map\n","import{defaultConverter as t,notEqual as e}from\"../reactive-element.js\";\n/**\n * @license\n * Copyright 2017 Google LLC\n * SPDX-License-Identifier: BSD-3-Clause\n */const o={attribute:!0,type:String,converter:t,reflect:!1,hasChanged:e},r=(t=o,e,r)=>{const{kind:n,metadata:i}=r;let s=globalThis.litPropertyMetadata.get(i);if(void 0===s&&globalThis.litPropertyMetadata.set(i,s=new Map),s.set(r.name,t),\"accessor\"===n){const{name:o}=r;return{set(r){const n=e.get.call(this);e.set.call(this,r),this.requestUpdate(o,n,t)},init(e){return void 0!==e&&this.P(o,void 0,t),e}}}if(\"setter\"===n){const{name:o}=r;return function(r){const n=this[o];e.call(this,r),this.requestUpdate(o,n,t)}}throw Error(\"Unsupported decorator location: \"+n)};function n(t){return(e,o)=>\"object\"==typeof o?r(t,e,o):((t,e,o)=>{const r=e.hasOwnProperty(o);return e.constructor.createProperty(o,r?{...t,wrapped:!0}:t),r?Object.getOwnPropertyDescriptor(e,o):void 0})(t,e,o)}export{n as property,r as standardProperty};\n//# sourceMappingURL=property.js.map\n","import{property as t}from\"./property.js\";\n/**\n * @license\n * Copyright 2017 Google LLC\n * SPDX-License-Identifier: BSD-3-Clause\n */function r(r){return t({...r,state:!0,attribute:!1})}export{r as state};\n//# sourceMappingURL=state.js.map\n","/**\n * @license\n * Copyright 2017 Google LLC\n * SPDX-License-Identifier: BSD-3-Clause\n */\nconst t=t=>(e,o)=>{void 0!==o?o.addInitializer((()=>{customElements.define(t,e)})):customElements.define(t,e)};export{t as customElement};\n//# sourceMappingURL=custom-element.js.map\n"],"names":["t","globalThis","e","ShadowRoot","ShadyCSS","nativeShadow","Document","prototype","CSSStyleSheet","s","Symbol","o","WeakMap","n$2","constructor","this","_$cssResult$","Error","cssText","styleSheet","length","get","replaceSync","set","toString","c","cssRules","n","r","is","i","defineProperty","getOwnPropertyDescriptor","getOwnPropertyNames","h","getOwnPropertySymbols","getPrototypeOf","Object","a","trustedTypes","l","emptyScript","p","reactiveElementPolyfillSupport","d","u","toAttribute","Boolean","Array","JSON","stringify","fromAttribute","Number","parse","f","y","attribute","type","String","converter","reflect","hasChanged","metadata","litPropertyMetadata","b","HTMLElement","addInitializer","_$Ei","push","observedAttributes","finalize","_$Eh","keys","createProperty","state","elementProperties","noAccessor","getPropertyDescriptor","call","requestUpdate","configurable","enumerable","getPropertyOptions","hasOwnProperty","Map","finalized","properties","_$Eu","elementStyles","finalizeStyles","styles","isArray","Set","flat","reverse","unshift","toLowerCase","super","_$Ep","isUpdatePending","hasUpdated","_$Em","_$Ev","_$ES","Promise","enableUpdating","_$AL","_$E_","forEach","addController","_$EO","add","renderRoot","isConnected","hostConnected","removeController","delete","size","createRenderRoot","shadowRoot","attachShadow","shadowRootOptions","adoptedStyleSheets","map","document","createElement","litNonce","setAttribute","textContent","appendChild","connectedCallback","disconnectedCallback","hostDisconnected","attributeChangedCallback","_$AK","_$EC","removeAttribute","P","_$ET","has","_$Ej","reject","scheduleUpdate","performUpdate","wrapped","shouldUpdate","willUpdate","hostUpdate","update","_$EU","_$AE","hostUpdated","firstUpdated","updated","updateComplete","getUpdateComplete","mode","ReactiveElement","reactiveElementVersions","kind","name","init","customElements","define"],"mappings":"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","x_google_ignoreList":[0,1,2,3,4]}
|
1
|
+
{"version":3,"file":"decorators.js","sources":["../node_modules/@lit/reactive-element/css-tag.js","../node_modules/@lit/reactive-element/reactive-element.js","../node_modules/@lit/reactive-element/decorators/property.js","../node_modules/@lit/reactive-element/decorators/state.js","../node_modules/@lit/reactive-element/decorators/custom-element.js"],"sourcesContent":["/**\n * @license\n * Copyright 2019 Google LLC\n * SPDX-License-Identifier: BSD-3-Clause\n */\nconst t=globalThis,e=t.ShadowRoot&&(void 0===t.ShadyCSS||t.ShadyCSS.nativeShadow)&&\"adoptedStyleSheets\"in Document.prototype&&\"replace\"in CSSStyleSheet.prototype,s=Symbol(),o=new WeakMap;class n{constructor(t,e,o){if(this._$cssResult$=!0,o!==s)throw Error(\"CSSResult is not constructable. Use `unsafeCSS` or `css` instead.\");this.cssText=t,this.t=e}get styleSheet(){let t=this.o;const s=this.t;if(e&&void 0===t){const e=void 0!==s&&1===s.length;e&&(t=o.get(s)),void 0===t&&((this.o=t=new CSSStyleSheet).replaceSync(this.cssText),e&&o.set(s,t))}return t}toString(){return this.cssText}}const r=t=>new n(\"string\"==typeof t?t:t+\"\",void 0,s),i=(t,...e)=>{const o=1===t.length?t[0]:e.reduce(((e,s,o)=>e+(t=>{if(!0===t._$cssResult$)return t.cssText;if(\"number\"==typeof t)return t;throw Error(\"Value passed to 'css' function must be a 'css' function result: \"+t+\". Use 'unsafeCSS' to pass non-literal values, but take care to ensure page security.\")})(s)+t[o+1]),t[0]);return new n(o,t,s)},S=(s,o)=>{if(e)s.adoptedStyleSheets=o.map((t=>t instanceof CSSStyleSheet?t:t.styleSheet));else for(const e of o){const o=document.createElement(\"style\"),n=t.litNonce;void 0!==n&&o.setAttribute(\"nonce\",n),o.textContent=e.cssText,s.appendChild(o)}},c=e?t=>t:t=>t instanceof CSSStyleSheet?(t=>{let e=\"\";for(const s of t.cssRules)e+=s.cssText;return r(e)})(t):t;export{n as CSSResult,S as adoptStyles,i as css,c as getCompatibleStyle,e as supportsAdoptingStyleSheets,r as unsafeCSS};\n//# sourceMappingURL=css-tag.js.map\n","import{getCompatibleStyle as t,adoptStyles as s}from\"./css-tag.js\";export{CSSResult,css,supportsAdoptingStyleSheets,unsafeCSS}from\"./css-tag.js\";\n/**\n * @license\n * Copyright 2017 Google LLC\n * SPDX-License-Identifier: BSD-3-Clause\n */const{is:i,defineProperty:e,getOwnPropertyDescriptor:h,getOwnPropertyNames:r,getOwnPropertySymbols:o,getPrototypeOf:n}=Object,a=globalThis,c=a.trustedTypes,l=c?c.emptyScript:\"\",p=a.reactiveElementPolyfillSupport,d=(t,s)=>t,u={toAttribute(t,s){switch(s){case Boolean:t=t?l:null;break;case Object:case Array:t=null==t?t:JSON.stringify(t)}return t},fromAttribute(t,s){let i=t;switch(s){case Boolean:i=null!==t;break;case Number:i=null===t?null:Number(t);break;case Object:case Array:try{i=JSON.parse(t)}catch(t){i=null}}return i}},f=(t,s)=>!i(t,s),b={attribute:!0,type:String,converter:u,reflect:!1,useDefault:!1,hasChanged:f};Symbol.metadata??=Symbol(\"metadata\"),a.litPropertyMetadata??=new WeakMap;class y extends HTMLElement{static addInitializer(t){this._$Ei(),(this.l??=[]).push(t)}static get observedAttributes(){return this.finalize(),this._$Eh&&[...this._$Eh.keys()]}static createProperty(t,s=b){if(s.state&&(s.attribute=!1),this._$Ei(),this.prototype.hasOwnProperty(t)&&((s=Object.create(s)).wrapped=!0),this.elementProperties.set(t,s),!s.noAccessor){const i=Symbol(),h=this.getPropertyDescriptor(t,i,s);void 0!==h&&e(this.prototype,t,h)}}static getPropertyDescriptor(t,s,i){const{get:e,set:r}=h(this.prototype,t)??{get(){return this[s]},set(t){this[s]=t}};return{get:e,set(s){const h=e?.call(this);r?.call(this,s),this.requestUpdate(t,h,i)},configurable:!0,enumerable:!0}}static getPropertyOptions(t){return this.elementProperties.get(t)??b}static _$Ei(){if(this.hasOwnProperty(d(\"elementProperties\")))return;const t=n(this);t.finalize(),void 0!==t.l&&(this.l=[...t.l]),this.elementProperties=new Map(t.elementProperties)}static finalize(){if(this.hasOwnProperty(d(\"finalized\")))return;if(this.finalized=!0,this._$Ei(),this.hasOwnProperty(d(\"properties\"))){const t=this.properties,s=[...r(t),...o(t)];for(const i of s)this.createProperty(i,t[i])}const t=this[Symbol.metadata];if(null!==t){const s=litPropertyMetadata.get(t);if(void 0!==s)for(const[t,i]of s)this.elementProperties.set(t,i)}this._$Eh=new Map;for(const[t,s]of this.elementProperties){const i=this._$Eu(t,s);void 0!==i&&this._$Eh.set(i,t)}this.elementStyles=this.finalizeStyles(this.styles)}static finalizeStyles(s){const i=[];if(Array.isArray(s)){const e=new Set(s.flat(1/0).reverse());for(const s of e)i.unshift(t(s))}else void 0!==s&&i.push(t(s));return i}static _$Eu(t,s){const i=s.attribute;return!1===i?void 0:\"string\"==typeof i?i:\"string\"==typeof t?t.toLowerCase():void 0}constructor(){super(),this._$Ep=void 0,this.isUpdatePending=!1,this.hasUpdated=!1,this._$Em=null,this._$Ev()}_$Ev(){this._$ES=new Promise((t=>this.enableUpdating=t)),this._$AL=new Map,this._$E_(),this.requestUpdate(),this.constructor.l?.forEach((t=>t(this)))}addController(t){(this._$EO??=new Set).add(t),void 0!==this.renderRoot&&this.isConnected&&t.hostConnected?.()}removeController(t){this._$EO?.delete(t)}_$E_(){const t=new Map,s=this.constructor.elementProperties;for(const i of s.keys())this.hasOwnProperty(i)&&(t.set(i,this[i]),delete this[i]);t.size>0&&(this._$Ep=t)}createRenderRoot(){const t=this.shadowRoot??this.attachShadow(this.constructor.shadowRootOptions);return s(t,this.constructor.elementStyles),t}connectedCallback(){this.renderRoot??=this.createRenderRoot(),this.enableUpdating(!0),this._$EO?.forEach((t=>t.hostConnected?.()))}enableUpdating(t){}disconnectedCallback(){this._$EO?.forEach((t=>t.hostDisconnected?.()))}attributeChangedCallback(t,s,i){this._$AK(t,i)}_$ET(t,s){const i=this.constructor.elementProperties.get(t),e=this.constructor._$Eu(t,i);if(void 0!==e&&!0===i.reflect){const h=(void 0!==i.converter?.toAttribute?i.converter:u).toAttribute(s,i.type);this._$Em=t,null==h?this.removeAttribute(e):this.setAttribute(e,h),this._$Em=null}}_$AK(t,s){const i=this.constructor,e=i._$Eh.get(t);if(void 0!==e&&this._$Em!==e){const t=i.getPropertyOptions(e),h=\"function\"==typeof t.converter?{fromAttribute:t.converter}:void 0!==t.converter?.fromAttribute?t.converter:u;this._$Em=e;const r=h.fromAttribute(s,t.type);this[e]=r??this._$Ej?.get(e)??r,this._$Em=null}}requestUpdate(t,s,i){if(void 0!==t){const e=this.constructor,h=this[t];if(i??=e.getPropertyOptions(t),!((i.hasChanged??f)(h,s)||i.useDefault&&i.reflect&&h===this._$Ej?.get(t)&&!this.hasAttribute(e._$Eu(t,i))))return;this.C(t,s,i)}!1===this.isUpdatePending&&(this._$ES=this._$EP())}C(t,s,{useDefault:i,reflect:e,wrapped:h},r){i&&!(this._$Ej??=new Map).has(t)&&(this._$Ej.set(t,r??s??this[t]),!0!==h||void 0!==r)||(this._$AL.has(t)||(this.hasUpdated||i||(s=void 0),this._$AL.set(t,s)),!0===e&&this._$Em!==t&&(this._$Eq??=new Set).add(t))}async _$EP(){this.isUpdatePending=!0;try{await this._$ES}catch(t){Promise.reject(t)}const t=this.scheduleUpdate();return null!=t&&await t,!this.isUpdatePending}scheduleUpdate(){return this.performUpdate()}performUpdate(){if(!this.isUpdatePending)return;if(!this.hasUpdated){if(this.renderRoot??=this.createRenderRoot(),this._$Ep){for(const[t,s]of this._$Ep)this[t]=s;this._$Ep=void 0}const t=this.constructor.elementProperties;if(t.size>0)for(const[s,i]of t){const{wrapped:t}=i,e=this[s];!0!==t||this._$AL.has(s)||void 0===e||this.C(s,void 0,i,e)}}let t=!1;const s=this._$AL;try{t=this.shouldUpdate(s),t?(this.willUpdate(s),this._$EO?.forEach((t=>t.hostUpdate?.())),this.update(s)):this._$EM()}catch(s){throw t=!1,this._$EM(),s}t&&this._$AE(s)}willUpdate(t){}_$AE(t){this._$EO?.forEach((t=>t.hostUpdated?.())),this.hasUpdated||(this.hasUpdated=!0,this.firstUpdated(t)),this.updated(t)}_$EM(){this._$AL=new Map,this.isUpdatePending=!1}get updateComplete(){return this.getUpdateComplete()}getUpdateComplete(){return this._$ES}shouldUpdate(t){return!0}update(t){this._$Eq&&=this._$Eq.forEach((t=>this._$ET(t,this[t]))),this._$EM()}updated(t){}firstUpdated(t){}}y.elementStyles=[],y.shadowRootOptions={mode:\"open\"},y[d(\"elementProperties\")]=new Map,y[d(\"finalized\")]=new Map,p?.({ReactiveElement:y}),(a.reactiveElementVersions??=[]).push(\"2.1.1\");export{y as ReactiveElement,s as adoptStyles,u as defaultConverter,t as getCompatibleStyle,f as notEqual};\n//# sourceMappingURL=reactive-element.js.map\n","import{defaultConverter as t,notEqual as e}from\"../reactive-element.js\";\n/**\n * @license\n * Copyright 2017 Google LLC\n * SPDX-License-Identifier: BSD-3-Clause\n */const o={attribute:!0,type:String,converter:t,reflect:!1,hasChanged:e},r=(t=o,e,r)=>{const{kind:n,metadata:i}=r;let s=globalThis.litPropertyMetadata.get(i);if(void 0===s&&globalThis.litPropertyMetadata.set(i,s=new Map),\"setter\"===n&&((t=Object.create(t)).wrapped=!0),s.set(r.name,t),\"accessor\"===n){const{name:o}=r;return{set(r){const n=e.get.call(this);e.set.call(this,r),this.requestUpdate(o,n,t)},init(e){return void 0!==e&&this.C(o,void 0,t,e),e}}}if(\"setter\"===n){const{name:o}=r;return function(r){const n=this[o];e.call(this,r),this.requestUpdate(o,n,t)}}throw Error(\"Unsupported decorator location: \"+n)};function n(t){return(e,o)=>\"object\"==typeof o?r(t,e,o):((t,e,o)=>{const r=e.hasOwnProperty(o);return e.constructor.createProperty(o,t),r?Object.getOwnPropertyDescriptor(e,o):void 0})(t,e,o)}export{n as property,r as standardProperty};\n//# sourceMappingURL=property.js.map\n","import{property as t}from\"./property.js\";\n/**\n * @license\n * Copyright 2017 Google LLC\n * SPDX-License-Identifier: BSD-3-Clause\n */function r(r){return t({...r,state:!0,attribute:!1})}export{r as state};\n//# sourceMappingURL=state.js.map\n","/**\n * @license\n * Copyright 2017 Google LLC\n * SPDX-License-Identifier: BSD-3-Clause\n */\nconst t=t=>(e,o)=>{void 0!==o?o.addInitializer((()=>{customElements.define(t,e)})):customElements.define(t,e)};export{t as customElement};\n//# sourceMappingURL=custom-element.js.map\n"],"names":["t","globalThis","e","ShadowRoot","ShadyCSS","nativeShadow","Document","prototype","CSSStyleSheet","s","Symbol","o","WeakMap","n$2","constructor","this","_$cssResult$","Error","cssText","styleSheet","length","get","replaceSync","set","toString","c","cssRules","n","r","is","i","defineProperty","getOwnPropertyDescriptor","h","getOwnPropertyNames","getOwnPropertySymbols","getPrototypeOf","Object","a","trustedTypes","l","emptyScript","p","reactiveElementPolyfillSupport","d","u","toAttribute","Boolean","Array","JSON","stringify","fromAttribute","Number","parse","f","b","attribute","type","String","converter","reflect","useDefault","hasChanged","metadata","litPropertyMetadata","y","HTMLElement","addInitializer","_$Ei","push","observedAttributes","finalize","_$Eh","keys","createProperty","state","hasOwnProperty","create","wrapped","elementProperties","noAccessor","getPropertyDescriptor","call","requestUpdate","configurable","enumerable","getPropertyOptions","Map","finalized","properties","_$Eu","elementStyles","finalizeStyles","styles","isArray","Set","flat","reverse","unshift","toLowerCase","super","_$Ep","isUpdatePending","hasUpdated","_$Em","_$Ev","_$ES","Promise","enableUpdating","_$AL","_$E_","forEach","addController","_$EO","add","renderRoot","isConnected","hostConnected","removeController","delete","size","createRenderRoot","shadowRoot","attachShadow","shadowRootOptions","adoptedStyleSheets","map","document","createElement","litNonce","setAttribute","textContent","appendChild","connectedCallback","disconnectedCallback","hostDisconnected","attributeChangedCallback","_$AK","_$ET","removeAttribute","_$Ej","hasAttribute","C","_$EP","has","_$Eq","reject","scheduleUpdate","performUpdate","shouldUpdate","willUpdate","hostUpdate","update","_$EM","_$AE","hostUpdated","firstUpdated","updated","updateComplete","getUpdateComplete","mode","ReactiveElement","reactiveElementVersions","kind","name","init","customElements","define"],"mappings":"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","x_google_ignoreList":[0,1,2,3,4]}
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"directive.js","sources":["../node_modules/lit-html/directive.js"],"sourcesContent":["/**\n * @license\n * Copyright 2017 Google LLC\n * SPDX-License-Identifier: BSD-3-Clause\n */\nconst t={ATTRIBUTE:1,CHILD:2,PROPERTY:3,BOOLEAN_ATTRIBUTE:4,EVENT:5,ELEMENT:6},e=t=>(...e)=>({_$litDirective$:t,values:e});class i{constructor(t){}get _$AU(){return this._$AM._$AU}_$AT(t,e,i){this._$Ct=t,this._$AM=e,this._$Ci=i}_$AS(t,e){return this.update(t,e)}update(t,e){return this.render(...e)}}export{i as Directive,t as PartType,e as directive};\n//# sourceMappingURL=directive.js.map\n"],"names":["t","ATTRIBUTE","CHILD","PROPERTY","BOOLEAN_ATTRIBUTE","EVENT","ELEMENT","e","_$litDirective$","values","i","constructor","_$AU","this","_$AM","_$AT","_$Ct","_$Ci","_$AS","update","render"],"mappings":";;;;;AAKK,MAACA,EAAE,CAACC,UAAU,EAAEC,MAAM,EAAEC,SAAS,EAAEC,kBAAkB,EAAEC,MAAM,EAAEC,QAAQ,GAAGC,EAAEP,GAAG,IAAIO,KAAC,CAAKC,gBAAgBR,EAAES,OAAOF,IAAI,MAAMG,EAAE,WAAAC,CAAYX,
|
1
|
+
{"version":3,"file":"directive.js","sources":["../node_modules/lit-html/directive.js"],"sourcesContent":["/**\n * @license\n * Copyright 2017 Google LLC\n * SPDX-License-Identifier: BSD-3-Clause\n */\nconst t={ATTRIBUTE:1,CHILD:2,PROPERTY:3,BOOLEAN_ATTRIBUTE:4,EVENT:5,ELEMENT:6},e=t=>(...e)=>({_$litDirective$:t,values:e});class i{constructor(t){}get _$AU(){return this._$AM._$AU}_$AT(t,e,i){this._$Ct=t,this._$AM=e,this._$Ci=i}_$AS(t,e){return this.update(t,e)}update(t,e){return this.render(...e)}}export{i as Directive,t as PartType,e as directive};\n//# sourceMappingURL=directive.js.map\n"],"names":["t","ATTRIBUTE","CHILD","PROPERTY","BOOLEAN_ATTRIBUTE","EVENT","ELEMENT","e","_$litDirective$","values","i","constructor","_$AU","this","_$AM","_$AT","_$Ct","_$Ci","_$AS","update","render"],"mappings":";;;;;AAKK,MAACA,EAAE,CAACC,UAAU,EAAEC,MAAM,EAAEC,SAAS,EAAEC,kBAAkB,EAAEC,MAAM,EAAEC,QAAQ,GAAGC,EAAEP,GAAG,IAAIO,KAAC,CAAKC,gBAAgBR,EAAES,OAAOF,IAAI,MAAMG,EAAE,WAAAC,CAAYX,GAAG,CAAC,QAAIY,GAAO,OAAOC,KAAKC,KAAKF,IAAI,CAAC,IAAAG,CAAKf,EAAEO,EAAEG,GAAGG,KAAKG,KAAKhB,EAAEa,KAAKC,KAAKP,EAAEM,KAAKI,KAAKP,CAAC,CAAC,IAAAQ,CAAKlB,EAAEO,GAAG,OAAOM,KAAKM,OAAOnB,EAAEO,EAAE,CAAC,MAAAY,CAAOnB,EAAEO,GAAG,OAAOM,KAAKO,UAAUb,EAAE","x_google_ignoreList":[0]}
|