erosolar-cli 1.7.341 → 1.7.342
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/README.md +24 -148
- package/dist/bin/erosolar.js +5 -21
- package/dist/bin/erosolar.js.map +1 -1
- package/dist/capabilities/agentSpawningCapability.d.ts.map +1 -1
- package/dist/capabilities/agentSpawningCapability.js +56 -31
- package/dist/capabilities/agentSpawningCapability.js.map +1 -1
- package/dist/contracts/agent-schemas.json +0 -15
- package/dist/contracts/tools.schema.json +0 -9
- package/dist/core/agent.d.ts +2 -2
- package/dist/core/agent.d.ts.map +1 -1
- package/dist/core/agent.js.map +1 -1
- package/dist/core/customCommands.d.ts +1 -0
- package/dist/core/customCommands.d.ts.map +1 -1
- package/dist/core/customCommands.js +3 -0
- package/dist/core/customCommands.js.map +1 -1
- package/dist/core/hooks.d.ts +113 -0
- package/dist/core/hooks.d.ts.map +1 -0
- package/dist/core/hooks.js +267 -0
- package/dist/core/hooks.js.map +1 -0
- package/dist/core/metricsTracker.d.ts +122 -0
- package/dist/core/metricsTracker.d.ts.map +1 -0
- package/dist/{alpha-zero → core}/metricsTracker.js +2 -5
- package/dist/core/metricsTracker.js.map +1 -0
- package/dist/core/securityAssessment.d.ts +91 -0
- package/dist/core/securityAssessment.d.ts.map +1 -0
- package/dist/core/securityAssessment.js +580 -0
- package/dist/core/securityAssessment.js.map +1 -0
- package/dist/core/sessionStore.d.ts +2 -0
- package/dist/core/sessionStore.d.ts.map +1 -1
- package/dist/core/sessionStore.js +1 -0
- package/dist/core/sessionStore.js.map +1 -1
- package/dist/core/toolPreconditions.d.ts.map +1 -1
- package/dist/core/toolPreconditions.js +0 -14
- package/dist/core/toolPreconditions.js.map +1 -1
- package/dist/core/toolRuntime.d.ts +22 -1
- package/dist/core/toolRuntime.d.ts.map +1 -1
- package/dist/core/toolRuntime.js +0 -5
- package/dist/core/toolRuntime.js.map +1 -1
- package/dist/core/toolValidation.d.ts.map +1 -1
- package/dist/core/toolValidation.js +14 -3
- package/dist/core/toolValidation.js.map +1 -1
- package/dist/core/validationRunner.d.ts +1 -3
- package/dist/core/validationRunner.d.ts.map +1 -1
- package/dist/core/validationRunner.js.map +1 -1
- package/dist/core/verification.d.ts +137 -0
- package/dist/core/verification.d.ts.map +1 -0
- package/dist/core/verification.js +323 -0
- package/dist/core/verification.js.map +1 -0
- package/dist/headless/headlessApp.d.ts.map +1 -1
- package/dist/headless/headlessApp.js +21 -0
- package/dist/headless/headlessApp.js.map +1 -1
- package/dist/mcp/sseClient.d.ts.map +1 -1
- package/dist/mcp/sseClient.js +9 -18
- package/dist/mcp/sseClient.js.map +1 -1
- package/dist/plugins/tools/build/buildPlugin.d.ts +0 -6
- package/dist/plugins/tools/build/buildPlugin.d.ts.map +1 -1
- package/dist/plugins/tools/build/buildPlugin.js +4 -10
- package/dist/plugins/tools/build/buildPlugin.js.map +1 -1
- package/dist/plugins/tools/nodeDefaults.d.ts.map +1 -1
- package/dist/plugins/tools/nodeDefaults.js +0 -2
- package/dist/plugins/tools/nodeDefaults.js.map +1 -1
- package/dist/runtime/agentSession.d.ts +2 -2
- package/dist/runtime/agentSession.d.ts.map +1 -1
- package/dist/runtime/agentSession.js +2 -2
- package/dist/runtime/agentSession.js.map +1 -1
- package/dist/shell/interactiveShell.d.ts +19 -7
- package/dist/shell/interactiveShell.d.ts.map +1 -1
- package/dist/shell/interactiveShell.js +271 -166
- package/dist/shell/interactiveShell.js.map +1 -1
- package/dist/shell/shellApp.d.ts +2 -0
- package/dist/shell/shellApp.d.ts.map +1 -1
- package/dist/shell/shellApp.js +82 -9
- package/dist/shell/shellApp.js.map +1 -1
- package/dist/shell/systemPrompt.d.ts.map +1 -1
- package/dist/shell/systemPrompt.js +1 -4
- package/dist/shell/systemPrompt.js.map +1 -1
- package/dist/shell/terminalInput.d.ts +215 -120
- package/dist/shell/terminalInput.d.ts.map +1 -1
- package/dist/shell/terminalInput.js +926 -537
- package/dist/shell/terminalInput.js.map +1 -1
- package/dist/shell/terminalInputAdapter.d.ts +99 -21
- package/dist/shell/terminalInputAdapter.d.ts.map +1 -1
- package/dist/shell/terminalInputAdapter.js +131 -30
- package/dist/shell/terminalInputAdapter.js.map +1 -1
- package/dist/subagents/agentConfig.d.ts +27 -0
- package/dist/subagents/agentConfig.d.ts.map +1 -0
- package/dist/subagents/agentConfig.js +89 -0
- package/dist/subagents/agentConfig.js.map +1 -0
- package/dist/subagents/agentRegistry.d.ts +33 -0
- package/dist/subagents/agentRegistry.d.ts.map +1 -0
- package/dist/subagents/agentRegistry.js +162 -0
- package/dist/subagents/agentRegistry.js.map +1 -0
- package/dist/subagents/taskRunner.d.ts +7 -1
- package/dist/subagents/taskRunner.d.ts.map +1 -1
- package/dist/subagents/taskRunner.js +180 -47
- package/dist/subagents/taskRunner.js.map +1 -1
- package/dist/ui/ShellUIAdapter.d.ts.map +1 -1
- package/dist/ui/ShellUIAdapter.js +13 -12
- package/dist/ui/ShellUIAdapter.js.map +1 -1
- package/dist/ui/display.d.ts +24 -45
- package/dist/ui/display.d.ts.map +1 -1
- package/dist/ui/display.js +140 -259
- package/dist/ui/display.js.map +1 -1
- package/dist/ui/theme.d.ts.map +1 -1
- package/dist/ui/theme.js +6 -8
- package/dist/ui/theme.js.map +1 -1
- package/dist/ui/toolDisplay.d.ts +0 -158
- package/dist/ui/toolDisplay.d.ts.map +1 -1
- package/dist/ui/toolDisplay.js +0 -348
- package/dist/ui/toolDisplay.js.map +1 -1
- package/dist/ui/unified/layout.d.ts +1 -0
- package/dist/ui/unified/layout.d.ts.map +1 -1
- package/dist/ui/unified/layout.js +25 -179
- package/dist/ui/unified/layout.js.map +1 -1
- package/dist/utils/frontmatter.d.ts +10 -0
- package/dist/utils/frontmatter.d.ts.map +1 -0
- package/dist/utils/frontmatter.js +78 -0
- package/dist/utils/frontmatter.js.map +1 -0
- package/package.json +4 -4
- package/dist/alpha-zero/agentWrapper.d.ts +0 -84
- package/dist/alpha-zero/agentWrapper.d.ts.map +0 -1
- package/dist/alpha-zero/agentWrapper.js +0 -171
- package/dist/alpha-zero/agentWrapper.js.map +0 -1
- package/dist/alpha-zero/codeEvaluator.d.ts +0 -25
- package/dist/alpha-zero/codeEvaluator.d.ts.map +0 -1
- package/dist/alpha-zero/codeEvaluator.js +0 -273
- package/dist/alpha-zero/codeEvaluator.js.map +0 -1
- package/dist/alpha-zero/competitiveRunner.d.ts +0 -66
- package/dist/alpha-zero/competitiveRunner.d.ts.map +0 -1
- package/dist/alpha-zero/competitiveRunner.js +0 -224
- package/dist/alpha-zero/competitiveRunner.js.map +0 -1
- package/dist/alpha-zero/index.d.ts +0 -67
- package/dist/alpha-zero/index.d.ts.map +0 -1
- package/dist/alpha-zero/index.js +0 -99
- package/dist/alpha-zero/index.js.map +0 -1
- package/dist/alpha-zero/introspection.d.ts +0 -128
- package/dist/alpha-zero/introspection.d.ts.map +0 -1
- package/dist/alpha-zero/introspection.js +0 -300
- package/dist/alpha-zero/introspection.js.map +0 -1
- package/dist/alpha-zero/metricsTracker.d.ts +0 -71
- package/dist/alpha-zero/metricsTracker.d.ts.map +0 -1
- package/dist/alpha-zero/metricsTracker.js.map +0 -1
- package/dist/alpha-zero/security/core.d.ts +0 -125
- package/dist/alpha-zero/security/core.d.ts.map +0 -1
- package/dist/alpha-zero/security/core.js +0 -271
- package/dist/alpha-zero/security/core.js.map +0 -1
- package/dist/alpha-zero/security/google.d.ts +0 -125
- package/dist/alpha-zero/security/google.d.ts.map +0 -1
- package/dist/alpha-zero/security/google.js +0 -311
- package/dist/alpha-zero/security/google.js.map +0 -1
- package/dist/alpha-zero/security/googleLoader.d.ts +0 -17
- package/dist/alpha-zero/security/googleLoader.d.ts.map +0 -1
- package/dist/alpha-zero/security/googleLoader.js +0 -41
- package/dist/alpha-zero/security/googleLoader.js.map +0 -1
- package/dist/alpha-zero/security/index.d.ts +0 -29
- package/dist/alpha-zero/security/index.d.ts.map +0 -1
- package/dist/alpha-zero/security/index.js +0 -32
- package/dist/alpha-zero/security/index.js.map +0 -1
- package/dist/alpha-zero/security/simulation.d.ts +0 -124
- package/dist/alpha-zero/security/simulation.d.ts.map +0 -1
- package/dist/alpha-zero/security/simulation.js +0 -277
- package/dist/alpha-zero/security/simulation.js.map +0 -1
- package/dist/alpha-zero/selfModification.d.ts +0 -109
- package/dist/alpha-zero/selfModification.d.ts.map +0 -1
- package/dist/alpha-zero/selfModification.js +0 -233
- package/dist/alpha-zero/selfModification.js.map +0 -1
- package/dist/alpha-zero/types.d.ts +0 -170
- package/dist/alpha-zero/types.d.ts.map +0 -1
- package/dist/alpha-zero/types.js +0 -31
- package/dist/alpha-zero/types.js.map +0 -1
- package/dist/capabilities/securityTestingCapability.d.ts +0 -13
- package/dist/capabilities/securityTestingCapability.d.ts.map +0 -1
- package/dist/capabilities/securityTestingCapability.js +0 -25
- package/dist/capabilities/securityTestingCapability.js.map +0 -1
- package/dist/core/aiFlowOptimizer.d.ts +0 -26
- package/dist/core/aiFlowOptimizer.d.ts.map +0 -1
- package/dist/core/aiFlowOptimizer.js +0 -31
- package/dist/core/aiFlowOptimizer.js.map +0 -1
- package/dist/core/aiOptimizationEngine.d.ts +0 -158
- package/dist/core/aiOptimizationEngine.d.ts.map +0 -1
- package/dist/core/aiOptimizationEngine.js +0 -428
- package/dist/core/aiOptimizationEngine.js.map +0 -1
- package/dist/core/aiOptimizationIntegration.d.ts +0 -93
- package/dist/core/aiOptimizationIntegration.d.ts.map +0 -1
- package/dist/core/aiOptimizationIntegration.js +0 -250
- package/dist/core/aiOptimizationIntegration.js.map +0 -1
- package/dist/core/enhancedErrorRecovery.d.ts +0 -100
- package/dist/core/enhancedErrorRecovery.d.ts.map +0 -1
- package/dist/core/enhancedErrorRecovery.js +0 -345
- package/dist/core/enhancedErrorRecovery.js.map +0 -1
- package/dist/core/hooksSystem.d.ts +0 -65
- package/dist/core/hooksSystem.d.ts.map +0 -1
- package/dist/core/hooksSystem.js +0 -273
- package/dist/core/hooksSystem.js.map +0 -1
- package/dist/core/memorySystem.d.ts +0 -48
- package/dist/core/memorySystem.d.ts.map +0 -1
- package/dist/core/memorySystem.js +0 -271
- package/dist/core/memorySystem.js.map +0 -1
- package/dist/core/unified/errors.d.ts +0 -189
- package/dist/core/unified/errors.d.ts.map +0 -1
- package/dist/core/unified/errors.js +0 -497
- package/dist/core/unified/errors.js.map +0 -1
- package/dist/core/unified/index.d.ts +0 -19
- package/dist/core/unified/index.d.ts.map +0 -1
- package/dist/core/unified/index.js +0 -68
- package/dist/core/unified/index.js.map +0 -1
- package/dist/core/unified/schema.d.ts +0 -101
- package/dist/core/unified/schema.d.ts.map +0 -1
- package/dist/core/unified/schema.js +0 -350
- package/dist/core/unified/schema.js.map +0 -1
- package/dist/core/unified/toolRuntime.d.ts +0 -179
- package/dist/core/unified/toolRuntime.d.ts.map +0 -1
- package/dist/core/unified/toolRuntime.js +0 -517
- package/dist/core/unified/toolRuntime.js.map +0 -1
- package/dist/core/unified/tools.d.ts +0 -127
- package/dist/core/unified/tools.d.ts.map +0 -1
- package/dist/core/unified/tools.js +0 -1333
- package/dist/core/unified/tools.js.map +0 -1
- package/dist/core/unified/types.d.ts +0 -352
- package/dist/core/unified/types.d.ts.map +0 -1
- package/dist/core/unified/types.js +0 -12
- package/dist/core/unified/types.js.map +0 -1
- package/dist/core/unified/version.d.ts +0 -209
- package/dist/core/unified/version.d.ts.map +0 -1
- package/dist/core/unified/version.js +0 -454
- package/dist/core/unified/version.js.map +0 -1
- package/dist/plugins/tools/security/securityPlugin.d.ts +0 -3
- package/dist/plugins/tools/security/securityPlugin.d.ts.map +0 -1
- package/dist/plugins/tools/security/securityPlugin.js +0 -12
- package/dist/plugins/tools/security/securityPlugin.js.map +0 -1
- package/dist/security/active-stack-security.d.ts +0 -112
- package/dist/security/active-stack-security.d.ts.map +0 -1
- package/dist/security/active-stack-security.js +0 -296
- package/dist/security/active-stack-security.js.map +0 -1
- package/dist/security/advanced-persistence-research.d.ts +0 -92
- package/dist/security/advanced-persistence-research.d.ts.map +0 -1
- package/dist/security/advanced-persistence-research.js +0 -195
- package/dist/security/advanced-persistence-research.js.map +0 -1
- package/dist/security/advanced-targeting.d.ts +0 -119
- package/dist/security/advanced-targeting.d.ts.map +0 -1
- package/dist/security/advanced-targeting.js +0 -233
- package/dist/security/advanced-targeting.js.map +0 -1
- package/dist/security/assessment/vulnerabilityAssessment.d.ts +0 -104
- package/dist/security/assessment/vulnerabilityAssessment.d.ts.map +0 -1
- package/dist/security/assessment/vulnerabilityAssessment.js +0 -315
- package/dist/security/assessment/vulnerabilityAssessment.js.map +0 -1
- package/dist/security/authorization/securityAuthorization.d.ts +0 -88
- package/dist/security/authorization/securityAuthorization.d.ts.map +0 -1
- package/dist/security/authorization/securityAuthorization.js +0 -172
- package/dist/security/authorization/securityAuthorization.js.map +0 -1
- package/dist/security/comprehensive-targeting.d.ts +0 -85
- package/dist/security/comprehensive-targeting.d.ts.map +0 -1
- package/dist/security/comprehensive-targeting.js +0 -438
- package/dist/security/comprehensive-targeting.js.map +0 -1
- package/dist/security/global-security-integration.d.ts +0 -91
- package/dist/security/global-security-integration.d.ts.map +0 -1
- package/dist/security/global-security-integration.js +0 -218
- package/dist/security/global-security-integration.js.map +0 -1
- package/dist/security/index.d.ts +0 -38
- package/dist/security/index.d.ts.map +0 -1
- package/dist/security/index.js +0 -47
- package/dist/security/index.js.map +0 -1
- package/dist/security/persistence-analyzer.d.ts +0 -56
- package/dist/security/persistence-analyzer.d.ts.map +0 -1
- package/dist/security/persistence-analyzer.js +0 -187
- package/dist/security/persistence-analyzer.js.map +0 -1
- package/dist/security/persistence-cli.d.ts +0 -36
- package/dist/security/persistence-cli.d.ts.map +0 -1
- package/dist/security/persistence-cli.js +0 -160
- package/dist/security/persistence-cli.js.map +0 -1
- package/dist/security/persistence-research.d.ts +0 -92
- package/dist/security/persistence-research.d.ts.map +0 -1
- package/dist/security/persistence-research.js +0 -364
- package/dist/security/persistence-research.js.map +0 -1
- package/dist/security/research/persistenceResearch.d.ts +0 -97
- package/dist/security/research/persistenceResearch.d.ts.map +0 -1
- package/dist/security/research/persistenceResearch.js +0 -282
- package/dist/security/research/persistenceResearch.js.map +0 -1
- package/dist/security/security-integration.d.ts +0 -74
- package/dist/security/security-integration.d.ts.map +0 -1
- package/dist/security/security-integration.js +0 -137
- package/dist/security/security-integration.js.map +0 -1
- package/dist/security/security-testing-framework.d.ts +0 -112
- package/dist/security/security-testing-framework.d.ts.map +0 -1
- package/dist/security/security-testing-framework.js +0 -364
- package/dist/security/security-testing-framework.js.map +0 -1
- package/dist/security/simulation/attackSimulation.d.ts +0 -93
- package/dist/security/simulation/attackSimulation.d.ts.map +0 -1
- package/dist/security/simulation/attackSimulation.js +0 -341
- package/dist/security/simulation/attackSimulation.js.map +0 -1
- package/dist/security/strategic-operations.d.ts +0 -100
- package/dist/security/strategic-operations.d.ts.map +0 -1
- package/dist/security/strategic-operations.js +0 -276
- package/dist/security/strategic-operations.js.map +0 -1
- package/dist/security/tool-security-wrapper.d.ts +0 -58
- package/dist/security/tool-security-wrapper.d.ts.map +0 -1
- package/dist/security/tool-security-wrapper.js +0 -156
- package/dist/security/tool-security-wrapper.js.map +0 -1
- package/dist/shell/claudeCodeStreamHandler.d.ts +0 -145
- package/dist/shell/claudeCodeStreamHandler.d.ts.map +0 -1
- package/dist/shell/claudeCodeStreamHandler.js +0 -322
- package/dist/shell/claudeCodeStreamHandler.js.map +0 -1
- package/dist/shell/inputQueueManager.d.ts +0 -144
- package/dist/shell/inputQueueManager.d.ts.map +0 -1
- package/dist/shell/inputQueueManager.js +0 -290
- package/dist/shell/inputQueueManager.js.map +0 -1
- package/dist/shell/metricsTracker.d.ts +0 -60
- package/dist/shell/metricsTracker.d.ts.map +0 -1
- package/dist/shell/metricsTracker.js +0 -119
- package/dist/shell/metricsTracker.js.map +0 -1
- package/dist/shell/streamingOutputManager.d.ts +0 -115
- package/dist/shell/streamingOutputManager.d.ts.map +0 -1
- package/dist/shell/streamingOutputManager.js +0 -225
- package/dist/shell/streamingOutputManager.js.map +0 -1
- package/dist/tools/securityTools.d.ts +0 -22
- package/dist/tools/securityTools.d.ts.map +0 -1
- package/dist/tools/securityTools.js +0 -448
- package/dist/tools/securityTools.js.map +0 -1
- package/dist/ui/persistentPrompt.d.ts +0 -50
- package/dist/ui/persistentPrompt.d.ts.map +0 -1
- package/dist/ui/persistentPrompt.js +0 -92
- package/dist/ui/persistentPrompt.js.map +0 -1
- package/dist/ui/terminalUISchema.d.ts +0 -195
- package/dist/ui/terminalUISchema.d.ts.map +0 -1
- package/dist/ui/terminalUISchema.js +0 -113
- package/dist/ui/terminalUISchema.js.map +0 -1
- package/scripts/deploy-security-capabilities.js +0 -178
|
@@ -3,14 +3,20 @@
|
|
|
3
3
|
*
|
|
4
4
|
* Design principles:
|
|
5
5
|
* - Single source of truth for input state
|
|
6
|
+
* - Hybrid floating/scroll approach:
|
|
7
|
+
* - Initially: chat box floats below content
|
|
8
|
+
* - When terminal fills: scroll region activates, chat box pins to bottom
|
|
6
9
|
* - Native bracketed paste support (no heuristics)
|
|
7
10
|
* - Clean cursor model with render-time wrapping
|
|
8
11
|
* - State machine for different input modes
|
|
9
12
|
* - No readline dependency for display
|
|
10
13
|
*/
|
|
11
14
|
import { EventEmitter } from 'node:events';
|
|
12
|
-
|
|
13
|
-
|
|
15
|
+
/**
|
|
16
|
+
* Input modes - determines how input is handled
|
|
17
|
+
*/
|
|
18
|
+
export type InputMode = 'idle' | 'streaming' | 'paste';
|
|
19
|
+
export type EditGuardMode = 'display-edits' | 'ask-permission';
|
|
14
20
|
/**
|
|
15
21
|
* Events emitted by TerminalInput
|
|
16
22
|
*/
|
|
@@ -62,32 +68,39 @@ export declare class TerminalInput extends EventEmitter {
|
|
|
62
68
|
private statusMessage;
|
|
63
69
|
private overrideStatusMessage;
|
|
64
70
|
private streamingLabel;
|
|
71
|
+
private metaElapsedSeconds;
|
|
72
|
+
private metaTokensUsed;
|
|
73
|
+
private metaTokenLimit;
|
|
74
|
+
private metaThinkingMs;
|
|
75
|
+
private metaThinkingHasContent;
|
|
65
76
|
private lastRenderContent;
|
|
66
77
|
private lastRenderCursor;
|
|
67
78
|
private renderDirty;
|
|
68
79
|
private isRendering;
|
|
69
|
-
private flowModeRenderedLines;
|
|
70
|
-
private inputAreaStartRow;
|
|
71
|
-
private contentEndRow;
|
|
72
|
-
private commandSuggestions;
|
|
73
|
-
private filteredSuggestions;
|
|
74
|
-
private selectedSuggestionIndex;
|
|
75
|
-
private showSuggestions;
|
|
76
80
|
private disposed;
|
|
77
81
|
private enabled;
|
|
78
82
|
private contextUsage;
|
|
83
|
+
private contextAutoCompactThreshold;
|
|
84
|
+
private contentRow;
|
|
85
|
+
private scrollRegionActive;
|
|
86
|
+
private thinkingModeLabel;
|
|
87
|
+
private scrollbackBuffer;
|
|
88
|
+
private readonly maxScrollbackLines;
|
|
89
|
+
private scrollbackOffset;
|
|
90
|
+
private isInScrollbackMode;
|
|
91
|
+
private scrollIndicatorFrame;
|
|
92
|
+
private alternateScreenActive;
|
|
79
93
|
private editMode;
|
|
80
94
|
private verificationEnabled;
|
|
81
95
|
private autoContinueEnabled;
|
|
82
96
|
private verificationHotkey;
|
|
83
97
|
private autoContinueHotkey;
|
|
84
|
-
private
|
|
85
|
-
private
|
|
86
|
-
private
|
|
87
|
-
private
|
|
98
|
+
private thinkingHotkey;
|
|
99
|
+
private modelLabel;
|
|
100
|
+
private providerLabel;
|
|
101
|
+
private lastStreamingRender;
|
|
102
|
+
private streamingRenderInterval;
|
|
88
103
|
private streamingRenderTimer;
|
|
89
|
-
private displayRef;
|
|
90
|
-
private unifiedUIInitialized;
|
|
91
104
|
constructor(writeStream?: NodeJS.WriteStream, config?: TerminalInputConfig);
|
|
92
105
|
/**
|
|
93
106
|
* Enable bracketed paste mode in terminal
|
|
@@ -98,7 +111,15 @@ export declare class TerminalInput extends EventEmitter {
|
|
|
98
111
|
*/
|
|
99
112
|
disableBracketedPaste(): void;
|
|
100
113
|
/**
|
|
101
|
-
*
|
|
114
|
+
* Enable mouse tracking in terminal
|
|
115
|
+
*/
|
|
116
|
+
enableMouseTracking(): void;
|
|
117
|
+
/**
|
|
118
|
+
* Disable mouse tracking
|
|
119
|
+
*/
|
|
120
|
+
disableMouseTracking(): void;
|
|
121
|
+
/**
|
|
122
|
+
* Process raw terminal data (handles bracketed paste sequences and mouse events)
|
|
102
123
|
* Returns true if the data was consumed (paste sequence)
|
|
103
124
|
*/
|
|
104
125
|
processRawData(data: string): {
|
|
@@ -106,91 +127,24 @@ export declare class TerminalInput extends EventEmitter {
|
|
|
106
127
|
passthrough: string;
|
|
107
128
|
};
|
|
108
129
|
/**
|
|
109
|
-
* Handle
|
|
110
|
-
*/
|
|
111
|
-
handleKeypress(str: string | undefined, key: KeyInfo): void;
|
|
112
|
-
private bannerContent;
|
|
113
|
-
/**
|
|
114
|
-
* Set banner content to be written when unified UI initializes.
|
|
115
|
-
*/
|
|
116
|
-
setBannerContent(content: string | null): void;
|
|
117
|
-
/**
|
|
118
|
-
* Initialize the unified UI system with BOTTOM PINNED chat box.
|
|
119
|
-
*
|
|
120
|
-
* Layout:
|
|
121
|
-
* 1. Clear screen
|
|
122
|
-
* 2. Write banner at top
|
|
123
|
-
* 3. Set content cursor row after banner
|
|
124
|
-
* 4. Render chat box at bottom (sets up scroll region)
|
|
125
|
-
*/
|
|
126
|
-
initializeUnifiedUI(): void;
|
|
127
|
-
/**
|
|
128
|
-
* Clear the input area at its tracked position.
|
|
129
|
-
* Returns true if something was cleared.
|
|
130
|
-
*/
|
|
131
|
-
private clearInputArea;
|
|
132
|
-
/**
|
|
133
|
-
* Reset input area tracking state.
|
|
130
|
+
* Handle mouse events (button, x, y coordinates, action)
|
|
134
131
|
*/
|
|
135
|
-
private
|
|
132
|
+
private handleMouseEvent;
|
|
136
133
|
/**
|
|
137
|
-
*
|
|
138
|
-
* Chat box appears right after content and moves down as content grows.
|
|
139
|
-
* Content and banner scroll naturally off the top of the screen.
|
|
140
|
-
*/
|
|
141
|
-
private renderFloatingInputArea;
|
|
142
|
-
/**
|
|
143
|
-
* Build Claude Code style controls line.
|
|
144
|
-
* Shows: edit mode indicator (shift+tab to cycle)
|
|
134
|
+
* Handle a keypress event
|
|
145
135
|
*/
|
|
146
|
-
|
|
136
|
+
handleKeypress(str: string | undefined, key: KeyInfo): void;
|
|
147
137
|
/**
|
|
148
138
|
* Set the input mode
|
|
149
139
|
*
|
|
150
|
-
*
|
|
151
|
-
* Scroll region protects chat box, content scrolls above it.
|
|
140
|
+
* Content flows naturally - no scroll region pinning.
|
|
152
141
|
*/
|
|
153
142
|
setMode(mode: InputMode): void;
|
|
154
143
|
/**
|
|
155
|
-
*
|
|
156
|
-
*
|
|
157
|
-
*/
|
|
158
|
-
setContentEndRow(row: number): void;
|
|
159
|
-
/**
|
|
160
|
-
* Set available slash commands for auto-complete suggestions.
|
|
161
|
-
*/
|
|
162
|
-
setCommands(commands: Array<{
|
|
163
|
-
command: string;
|
|
164
|
-
description: string;
|
|
165
|
-
}>): void;
|
|
166
|
-
/**
|
|
167
|
-
* Update filtered suggestions based on current input.
|
|
168
|
-
*/
|
|
169
|
-
private updateSuggestions;
|
|
170
|
-
/**
|
|
171
|
-
* Select next suggestion (arrow down / tab).
|
|
172
|
-
*/
|
|
173
|
-
selectNextSuggestion(): void;
|
|
174
|
-
/**
|
|
175
|
-
* Select previous suggestion (arrow up / shift+tab).
|
|
176
|
-
*/
|
|
177
|
-
selectPrevSuggestion(): void;
|
|
178
|
-
/**
|
|
179
|
-
* Accept current suggestion and insert into buffer.
|
|
180
|
-
*/
|
|
181
|
-
acceptSuggestion(): boolean;
|
|
182
|
-
/**
|
|
183
|
-
* Check if suggestions are visible.
|
|
144
|
+
* Legacy method - no longer used (content flows naturally).
|
|
145
|
+
* @deprecated Use setContentRow instead
|
|
184
146
|
*/
|
|
185
|
-
|
|
186
|
-
/**
|
|
187
|
-
* Toggle thinking/reasoning mode
|
|
188
|
-
*/
|
|
189
|
-
toggleThinking(): void;
|
|
190
|
-
/**
|
|
191
|
-
* Get thinking enabled state
|
|
192
|
-
*/
|
|
193
|
-
isThinkingEnabled(): boolean;
|
|
147
|
+
setPinnedHeaderLines(_count: number): void;
|
|
194
148
|
/**
|
|
195
149
|
* Get current mode
|
|
196
150
|
*/
|
|
@@ -209,9 +163,8 @@ export declare class TerminalInput extends EventEmitter {
|
|
|
209
163
|
setBuffer(text: string, cursorPos?: number): void;
|
|
210
164
|
/**
|
|
211
165
|
* Clear the buffer
|
|
212
|
-
* @param skipRender - If true, don't trigger a re-render (used during submit flow)
|
|
213
166
|
*/
|
|
214
|
-
clear(
|
|
167
|
+
clear(): void;
|
|
215
168
|
/**
|
|
216
169
|
* Get queued inputs
|
|
217
170
|
*/
|
|
@@ -238,6 +191,16 @@ export declare class TerminalInput extends EventEmitter {
|
|
|
238
191
|
* Can be shown alongside override status messages.
|
|
239
192
|
*/
|
|
240
193
|
setStreamingLabel(label: string | null): void;
|
|
194
|
+
/**
|
|
195
|
+
* Surface meta status just above the divider (e.g., elapsed time or token usage).
|
|
196
|
+
*/
|
|
197
|
+
setMetaStatus(meta: {
|
|
198
|
+
elapsedSeconds?: number | null;
|
|
199
|
+
tokensUsed?: number | null;
|
|
200
|
+
tokenLimit?: number | null;
|
|
201
|
+
thinkingMs?: number | null;
|
|
202
|
+
thinkingHasContent?: boolean;
|
|
203
|
+
}): void;
|
|
241
204
|
/**
|
|
242
205
|
* Keep mode toggles (verification/auto-continue) visible in the control bar.
|
|
243
206
|
* Hotkey labels remain stable so the bar looks the same before/during streaming.
|
|
@@ -247,34 +210,58 @@ export declare class TerminalInput extends EventEmitter {
|
|
|
247
210
|
autoContinueEnabled: boolean;
|
|
248
211
|
verificationHotkey?: string;
|
|
249
212
|
autoContinueHotkey?: string;
|
|
213
|
+
thinkingModeLabel?: string | null;
|
|
214
|
+
thinkingHotkey?: string;
|
|
250
215
|
}): void;
|
|
251
|
-
/**
|
|
252
|
-
* Set the model info string (e.g., "OpenAI · gpt-4")
|
|
253
|
-
* This is displayed persistently above the input area.
|
|
254
|
-
*/
|
|
255
|
-
setModelInfo(info: string | null): void;
|
|
256
216
|
/**
|
|
257
217
|
* Clear all status messages at once (convenience method).
|
|
258
218
|
*/
|
|
259
219
|
clearAllStatus(): void;
|
|
260
220
|
/**
|
|
261
|
-
*
|
|
262
|
-
|
|
263
|
-
|
|
221
|
+
* Surface model/provider context in the controls bar.
|
|
222
|
+
*/
|
|
223
|
+
setModelContext(options: {
|
|
224
|
+
model?: string | null;
|
|
225
|
+
provider?: string | null;
|
|
226
|
+
}): void;
|
|
227
|
+
/**
|
|
228
|
+
* Render the floating input area at contentRow.
|
|
229
|
+
*
|
|
230
|
+
* The chat box "floats" - it renders right below the last streamed content.
|
|
231
|
+
* As content is added, contentRow advances, and the chat box moves down.
|
|
232
|
+
* No scroll regions - pure floating behavior.
|
|
264
233
|
*/
|
|
265
234
|
render(): void;
|
|
266
235
|
/**
|
|
267
|
-
*
|
|
268
|
-
*
|
|
236
|
+
* Unified scroll region renderer.
|
|
237
|
+
* Chat box is ALWAYS pinned at the bottom of the terminal.
|
|
238
|
+
* Content scrolls in the region above the chat box.
|
|
269
239
|
*/
|
|
270
|
-
private
|
|
240
|
+
private renderPinnedChatBox;
|
|
271
241
|
/**
|
|
272
|
-
* Build
|
|
273
|
-
*
|
|
274
|
-
|
|
275
|
-
|
|
242
|
+
* Build compact meta line above the divider.
|
|
243
|
+
* Shows model/provider and key metrics in a single line.
|
|
244
|
+
*/
|
|
245
|
+
private buildMetaLines;
|
|
246
|
+
/**
|
|
247
|
+
* Build mode controls line with all keyboard shortcuts.
|
|
248
|
+
* Shows status, all toggles, and contextual information.
|
|
276
249
|
*/
|
|
277
250
|
private buildModeControls;
|
|
251
|
+
private formatHotkey;
|
|
252
|
+
private computeContextRemaining;
|
|
253
|
+
private computeTokensRemaining;
|
|
254
|
+
private formatElapsedLabel;
|
|
255
|
+
private formatTokenCount;
|
|
256
|
+
private visibleLength;
|
|
257
|
+
/**
|
|
258
|
+
* Debug-only snapshot used by tests to assert rendered strings without
|
|
259
|
+
* needing a TTY. Not used by production code.
|
|
260
|
+
*/
|
|
261
|
+
getDebugUiSnapshot(width?: number): {
|
|
262
|
+
meta: string[];
|
|
263
|
+
controls: string;
|
|
264
|
+
};
|
|
278
265
|
/**
|
|
279
266
|
* Force a re-render
|
|
280
267
|
*/
|
|
@@ -287,18 +274,89 @@ export declare class TerminalInput extends EventEmitter {
|
|
|
287
274
|
* Handle terminal resize
|
|
288
275
|
*/
|
|
289
276
|
handleResize(): void;
|
|
290
|
-
private contentCursorRow;
|
|
291
277
|
/**
|
|
292
|
-
*
|
|
293
|
-
*
|
|
278
|
+
* Enter streaming mode with scroll region.
|
|
279
|
+
* Sets up terminal scroll region to exclude chat box.
|
|
280
|
+
*/
|
|
281
|
+
enterStreamingScrollRegion(): void;
|
|
282
|
+
/**
|
|
283
|
+
* Exit streaming mode and restore normal operation.
|
|
294
284
|
*/
|
|
295
|
-
|
|
285
|
+
exitStreamingScrollRegion(): void;
|
|
286
|
+
/**
|
|
287
|
+
* Render chat box at bottom - now uses unified renderer.
|
|
288
|
+
* @deprecated Use renderPinnedChatBox() directly via render()/forceRender()
|
|
289
|
+
*/
|
|
290
|
+
private renderChatBoxAtBottom;
|
|
291
|
+
/**
|
|
292
|
+
* Stream content within the scroll region.
|
|
293
|
+
* Content is written directly and scrolls naturally.
|
|
294
|
+
*/
|
|
295
|
+
streamContent(content: string): void;
|
|
296
|
+
/**
|
|
297
|
+
* Enable scroll region (no-op in floating mode).
|
|
298
|
+
*/
|
|
299
|
+
enableScrollRegion(): void;
|
|
300
|
+
/**
|
|
301
|
+
* Disable scroll region (no-op in floating mode).
|
|
302
|
+
*/
|
|
303
|
+
disableScrollRegion(): void;
|
|
304
|
+
/**
|
|
305
|
+
* Calculate chat box height.
|
|
306
|
+
*/
|
|
307
|
+
private getChatBoxHeight;
|
|
308
|
+
/**
|
|
309
|
+
* @deprecated Use streamContent() instead
|
|
310
|
+
* Register with display's output interceptor - kept for backwards compatibility
|
|
311
|
+
*/
|
|
312
|
+
registerOutputInterceptor(_display: {
|
|
296
313
|
registerOutputInterceptor: (i: {
|
|
297
314
|
beforeWrite?: () => void;
|
|
298
315
|
afterWrite?: () => void;
|
|
299
316
|
}) => () => void;
|
|
300
|
-
getTotalWrittenLines?: () => number;
|
|
301
317
|
}): void;
|
|
318
|
+
/**
|
|
319
|
+
* Write content above the floating chat box.
|
|
320
|
+
* Works both during streaming and when idle.
|
|
321
|
+
*/
|
|
322
|
+
writeToScrollRegion(content: string): void;
|
|
323
|
+
/**
|
|
324
|
+
* Enter alternate screen buffer and clear it.
|
|
325
|
+
* This gives us full control over the terminal without affecting user's history.
|
|
326
|
+
*/
|
|
327
|
+
enterAlternateScreen(): void;
|
|
328
|
+
/**
|
|
329
|
+
* Exit alternate screen buffer.
|
|
330
|
+
* Restores the user's previous terminal content.
|
|
331
|
+
*/
|
|
332
|
+
exitAlternateScreen(): void;
|
|
333
|
+
/**
|
|
334
|
+
* Check if alternate screen buffer is currently active.
|
|
335
|
+
*/
|
|
336
|
+
isAlternateScreenActive(): boolean;
|
|
337
|
+
/**
|
|
338
|
+
* Get a snapshot of the scrollback buffer (for display on exit).
|
|
339
|
+
*/
|
|
340
|
+
getScrollbackSnapshot(): string[];
|
|
341
|
+
/**
|
|
342
|
+
* Clear the entire terminal screen and reset content position.
|
|
343
|
+
* This removes all content including the launching command.
|
|
344
|
+
*/
|
|
345
|
+
clearScreen(): void;
|
|
346
|
+
/**
|
|
347
|
+
* Reset content position to row 1.
|
|
348
|
+
* Does NOT clear the terminal - content starts from current position.
|
|
349
|
+
*/
|
|
350
|
+
resetContentPosition(): void;
|
|
351
|
+
/**
|
|
352
|
+
* Set the content row explicitly (used after banner is written).
|
|
353
|
+
* This tells the input where content should start flowing from.
|
|
354
|
+
*/
|
|
355
|
+
setContentRow(row: number): void;
|
|
356
|
+
/**
|
|
357
|
+
* Get the current content row position.
|
|
358
|
+
*/
|
|
359
|
+
getContentRow(): number;
|
|
302
360
|
/**
|
|
303
361
|
* Dispose and clean up
|
|
304
362
|
*/
|
|
@@ -327,26 +385,63 @@ export declare class TerminalInput extends EventEmitter {
|
|
|
327
385
|
private submit;
|
|
328
386
|
private finishPaste;
|
|
329
387
|
private wrapBuffer;
|
|
388
|
+
/**
|
|
389
|
+
* Add content to the scrollback buffer for history retention
|
|
390
|
+
*/
|
|
391
|
+
private addToScrollback;
|
|
392
|
+
/**
|
|
393
|
+
* Scroll up by a number of lines (PageUp)
|
|
394
|
+
*/
|
|
395
|
+
private scrollUp;
|
|
396
|
+
/**
|
|
397
|
+
* Scroll down by a number of lines (PageDown)
|
|
398
|
+
*/
|
|
399
|
+
private scrollDown;
|
|
400
|
+
/**
|
|
401
|
+
* Jump to the top of scrollback buffer
|
|
402
|
+
*/
|
|
403
|
+
private scrollToTop;
|
|
404
|
+
/**
|
|
405
|
+
* Jump to the bottom (live mode)
|
|
406
|
+
*/
|
|
407
|
+
private scrollToBottom;
|
|
408
|
+
/**
|
|
409
|
+
* Render the scrollback buffer view with enhanced visuals
|
|
410
|
+
*/
|
|
411
|
+
private renderScrollbackView;
|
|
412
|
+
/**
|
|
413
|
+
* Build a visual progress bar
|
|
414
|
+
*/
|
|
415
|
+
private buildProgressBar;
|
|
416
|
+
/**
|
|
417
|
+
* Get scrollback buffer content (for persistence)
|
|
418
|
+
*/
|
|
419
|
+
getScrollbackBuffer(): string[];
|
|
420
|
+
/**
|
|
421
|
+
* Load scrollback buffer (for restoration)
|
|
422
|
+
*/
|
|
423
|
+
loadScrollbackBuffer(lines: string[]): void;
|
|
424
|
+
/**
|
|
425
|
+
* Clear scrollback buffer
|
|
426
|
+
*/
|
|
427
|
+
clearScrollbackBuffer(): void;
|
|
330
428
|
private getComposedLength;
|
|
331
429
|
private assembleText;
|
|
332
430
|
private shiftPlaceholders;
|
|
333
431
|
private removeRange;
|
|
334
432
|
private insertPlainText;
|
|
433
|
+
private shouldInlineMultiline;
|
|
335
434
|
private findPlaceholderAt;
|
|
336
435
|
private buildPlaceholder;
|
|
337
436
|
private insertPastePlaceholder;
|
|
338
|
-
/**
|
|
339
|
-
* Toggle expansion of a paste placeholder at the current cursor position.
|
|
340
|
-
* When expanded, shows first 3 and last 2 lines of the content.
|
|
341
|
-
*/
|
|
342
|
-
togglePasteExpansion(): boolean;
|
|
343
|
-
private buildExpandedPlaceholder;
|
|
344
437
|
private deletePlaceholder;
|
|
345
|
-
updateContextUsage(value: number | null): void;
|
|
438
|
+
updateContextUsage(value: number | null, autoCompactThreshold?: number): void;
|
|
346
439
|
getEditMode(): EditGuardMode;
|
|
347
440
|
applyEditMode(mode: EditGuardMode): void;
|
|
348
441
|
private setEditMode;
|
|
349
442
|
toggleEditMode(): void;
|
|
443
|
+
private scheduleStreamingRender;
|
|
444
|
+
private resetStreamingRenderThrottle;
|
|
350
445
|
private scheduleRender;
|
|
351
446
|
private canRender;
|
|
352
447
|
private isTTY;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"terminalInput.d.ts","sourceRoot":"","sources":["../../src/shell/terminalInput.ts"],"names":[],"mappings":"AAAA
|
|
1
|
+
{"version":3,"file":"terminalInput.d.ts","sourceRoot":"","sources":["../../src/shell/terminalInput.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;GAYG;AAEH,OAAO,EAAE,YAAY,EAAE,MAAM,aAAa,CAAC;AAoD3C;;GAEG;AACH,MAAM,MAAM,SAAS,GAAG,MAAM,GAAG,WAAW,GAAG,OAAO,CAAC;AACvD,MAAM,MAAM,aAAa,GAAG,eAAe,GAAG,gBAAgB,CAAC;AAE/D;;GAEG;AACH,MAAM,WAAW,mBAAmB;IAClC,MAAM,EAAE,CAAC,IAAI,EAAE,MAAM,KAAK,IAAI,CAAC;IAC/B,MAAM,EAAE,CAAC,IAAI,EAAE,MAAM,KAAK,IAAI,CAAC;IAC/B,SAAS,EAAE,MAAM,IAAI,CAAC;IACtB,KAAK,EAAE,CAAC,IAAI,EAAE,MAAM,KAAK,IAAI,CAAC;IAC9B,YAAY,CAAC,EAAE,MAAM,IAAI,CAAC;IAC1B,kBAAkB,CAAC,EAAE,MAAM,IAAI,CAAC;CACjC;AAED;;GAEG;AACH,MAAM,WAAW,WAAW;IAC1B,EAAE,EAAE,MAAM,CAAC;IACX,IAAI,EAAE,MAAM,CAAC;IACb,SAAS,EAAE,MAAM,CAAC;CACnB;AAED;;GAEG;AACH,MAAM,WAAW,mBAAmB;IAClC,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,gBAAgB,CAAC,EAAE,MAAM,CAAC;CAC3B;AAWD;;GAEG;AACH,qBAAa,aAAc,SAAQ,YAAY;IAC7C,OAAO,CAAC,QAAQ,CAAC,GAAG,CAAqB;IACzC,OAAO,CAAC,QAAQ,CAAC,MAAM,CAAgC;IAGvD,OAAO,CAAC,MAAM,CAAc;IAC5B,OAAO,CAAC,MAAM,CAAa;IAC3B,OAAO,CAAC,IAAI,CAAqB;IAGjC,OAAO,CAAC,WAAW,CAAc;IACjC,OAAO,CAAC,SAAS,CAAkB;IACnC,OAAO,CAAC,iBAAiB,CAA0B;IACnD,OAAO,CAAC,YAAY,CAAK;IAGzB,OAAO,CAAC,OAAO,CAAgB;IAC/B,OAAO,CAAC,YAAY,CAAc;IAClC,OAAO,CAAC,SAAS,CAAc;IAC/B,OAAO,CAAC,QAAQ,CAAC,UAAU,CAAe;IAG1C,OAAO,CAAC,KAAK,CAAqB;IAClC,OAAO,CAAC,cAAc,CAAa;IAGnC,OAAO,CAAC,aAAa,CAAuB;IAC5C,OAAO,CAAC,qBAAqB,CAAuB;IACpD,OAAO,CAAC,cAAc,CAAuB;IAC7C,OAAO,CAAC,kBAAkB,CAAuB;IACjD,OAAO,CAAC,cAAc,CAAuB;IAC7C,OAAO,CAAC,cAAc,CAAuB;IAC7C,OAAO,CAAC,cAAc,CAAuB;IAC7C,OAAO,CAAC,sBAAsB,CAAkB;IAChD,OAAO,CAAC,iBAAiB,CAAc;IACvC,OAAO,CAAC,gBAAgB,CAAc;IACtC,OAAO,CAAC,WAAW,CAAkB;IACrC,OAAO,CAAC,WAAW,CAAkB;IAGrC,OAAO,CAAC,QAAQ,CAAkB;IAClC,OAAO,CAAC,OAAO,CAAiB;IAChC,OAAO,CAAC,YAAY,CAAuB;IAC3C,OAAO,CAAC,2BAA2B,CAAc;IAGjD,OAAO,CAAC,UAAU,CAAa;IAE/B,OAAO,CAAC,kBAAkB,CAAkB;IAC5C,OAAO,CAAC,iBAAiB,CAAuB;IAGhD,OAAO,CAAC,gBAAgB,CAAgB;IACxC,OAAO,CAAC,QAAQ,CAAC,kBAAkB,CAAiB;IACpD,OAAO,CAAC,gBAAgB,CAAa;IACrC,OAAO,CAAC,kBAAkB,CAAkB;IAC5C,OAAO,CAAC,oBAAoB,CAAa;IAGzC,OAAO,CAAC,qBAAqB,CAAkB;IAC/C,OAAO,CAAC,QAAQ,CAAkC;IAClD,OAAO,CAAC,mBAAmB,CAAiB;IAC5C,OAAO,CAAC,mBAAmB,CAAkB;IAC7C,OAAO,CAAC,kBAAkB,CAAmB;IAC7C,OAAO,CAAC,kBAAkB,CAAmB;IAC7C,OAAO,CAAC,cAAc,CAAuB;IAC7C,OAAO,CAAC,UAAU,CAAuB;IACzC,OAAO,CAAC,aAAa,CAAuB;IAG5C,OAAO,CAAC,mBAAmB,CAAa;IACxC,OAAO,CAAC,uBAAuB,CAAe;IAC9C,OAAO,CAAC,oBAAoB,CAA8C;gBAGxE,WAAW,GAAE,MAAM,CAAC,WAA4B,EAChD,MAAM,GAAE,mBAAwB;IAiBlC;;OAEG;IACH,oBAAoB,IAAI,IAAI;IAM5B;;OAEG;IACH,qBAAqB,IAAI,IAAI;IAM7B;;OAEG;IACH,mBAAmB,IAAI,IAAI;IAM3B;;OAEG;IACH,oBAAoB,IAAI,IAAI;IAM5B;;;OAGG;IACH,cAAc,CAAC,IAAI,EAAE,MAAM,GAAG;QAAE,QAAQ,EAAE,OAAO,CAAC;QAAC,WAAW,EAAE,MAAM,CAAA;KAAE;IAsDxE;;OAEG;IACH,OAAO,CAAC,gBAAgB;IAYxB;;OAEG;IACH,cAAc,CAAC,GAAG,EAAE,MAAM,GAAG,SAAS,EAAE,GAAG,EAAE,OAAO,GAAG,IAAI;IA2B3D;;;;OAIG;IACH,OAAO,CAAC,IAAI,EAAE,SAAS,GAAG,IAAI;IAe9B;;;OAGG;IACH,oBAAoB,CAAC,MAAM,EAAE,MAAM,GAAG,IAAI;IAI1C;;OAEG;IACH,OAAO,IAAI,SAAS;IAIpB;;OAEG;IACH,SAAS,IAAI,MAAM;IAInB;;OAEG;IACH,OAAO,IAAI,MAAM;IAIjB;;OAEG;IACH,SAAS,CAAC,IAAI,EAAE,MAAM,EAAE,SAAS,CAAC,EAAE,MAAM,GAAG,IAAI;IASjD;;OAEG;IACH,KAAK,IAAI,IAAI;IASb;;OAEG;IACH,QAAQ,IAAI,WAAW,EAAE;IAIzB;;OAEG;IACH,OAAO,IAAI,WAAW,GAAG,SAAS;IAMlC;;OAEG;IACH,UAAU,IAAI,IAAI;IAKlB;;OAEG;IACH,gBAAgB,CAAC,OAAO,EAAE,MAAM,GAAG,IAAI,GAAG,IAAI;IAiB9C;;;OAGG;IACH,iBAAiB,CAAC,OAAO,EAAE,MAAM,GAAG,IAAI,GAAG,IAAI;IAgB/C;;;OAGG;IACH,iBAAiB,CAAC,KAAK,EAAE,MAAM,GAAG,IAAI,GAAG,IAAI;IAgB7C;;OAEG;IACH,aAAa,CAAC,IAAI,EAAE;QAClB,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;QAC/B,UAAU,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;QAC3B,UAAU,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;QAC3B,UAAU,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;QAC3B,kBAAkB,CAAC,EAAE,OAAO,CAAC;KAC9B,GAAG,IAAI;IAyCR;;;OAGG;IACH,cAAc,CAAC,OAAO,EAAE;QACtB,mBAAmB,EAAE,OAAO,CAAC;QAC7B,mBAAmB,EAAE,OAAO,CAAC;QAC7B,kBAAkB,CAAC,EAAE,MAAM,CAAC;QAC5B,kBAAkB,CAAC,EAAE,MAAM,CAAC;QAC5B,iBAAiB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;QAClC,cAAc,CAAC,EAAE,MAAM,CAAC;KACzB,GAAG,IAAI;IA6BR;;OAEG;IACH,cAAc,IAAI,IAAI;IAOtB;;OAEG;IACH,eAAe,CAAC,OAAO,EAAE;QAAE,KAAK,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;QAAC,QAAQ,CAAC,EAAE,MAAM,GAAG,IAAI,CAAA;KAAE,GAAG,IAAI;IAWnF;;;;;;OAMG;IACH,MAAM,IAAI,IAAI;IAoCd;;;;OAIG;IACH,OAAO,CAAC,mBAAmB;IA4I3B;;;OAGG;IACH,OAAO,CAAC,cAAc;IAuDtB;;;OAGG;IACH,OAAO,CAAC,iBAAiB;IAwGzB,OAAO,CAAC,YAAY;IAyBpB,OAAO,CAAC,uBAAuB;IAO/B,OAAO,CAAC,sBAAsB;IAQ9B,OAAO,CAAC,kBAAkB;IAS1B,OAAO,CAAC,gBAAgB;IAaxB,OAAO,CAAC,aAAa;IAKrB;;;OAGG;IACH,kBAAkB,CAAC,KAAK,CAAC,EAAE,MAAM,GAAG;QAAE,IAAI,EAAE,MAAM,EAAE,CAAC;QAAC,QAAQ,EAAE,MAAM,CAAA;KAAE;IAQxE;;OAEG;IACH,WAAW,IAAI,IAAI;IAOnB;;OAEG;IACH,UAAU,CAAC,OAAO,EAAE,OAAO,GAAG,IAAI;IAIlC;;OAEG;IACH,YAAY,IAAI,IAAI;IAapB;;;OAGG;IACH,0BAA0B,IAAI,IAAI;IAqBlC;;OAEG;IACH,yBAAyB,IAAI,IAAI;IAejC;;;OAGG;IACH,OAAO,CAAC,qBAAqB;IAI7B;;;OAGG;IACH,aAAa,CAAC,OAAO,EAAE,MAAM,GAAG,IAAI;IAuBpC;;OAEG;IACH,kBAAkB,IAAI,IAAI;IAI1B;;OAEG;IACH,mBAAmB,IAAI,IAAI;IAI3B;;OAEG;IACH,OAAO,CAAC,gBAAgB;IAIxB;;;OAGG;IACH,yBAAyB,CAAC,QAAQ,EAAE;QAClC,yBAAyB,EAAE,CAAC,CAAC,EAAE;YAAE,WAAW,CAAC,EAAE,MAAM,IAAI,CAAC;YAAC,UAAU,CAAC,EAAE,MAAM,IAAI,CAAA;SAAE,KAAK,MAAM,IAAI,CAAC;KACrG,GAAG,IAAI;IAIR;;;OAGG;IACH,mBAAmB,CAAC,OAAO,EAAE,MAAM,GAAG,IAAI;IAyB1C;;;OAGG;IACH,oBAAoB,IAAI,IAAI;IAa5B;;;OAGG;IACH,mBAAmB,IAAI,IAAI;IAU3B;;OAEG;IACH,uBAAuB,IAAI,OAAO;IAIlC;;OAEG;IACH,qBAAqB,IAAI,MAAM,EAAE;IAIjC;;;OAGG;IACH,WAAW,IAAI,IAAI;IAWnB;;;OAGG;IACH,oBAAoB,IAAI,IAAI;IAI5B;;;OAGG;IACH,aAAa,CAAC,GAAG,EAAE,MAAM,GAAG,IAAI;IAIhC;;OAEG;IACH,aAAa,IAAI,MAAM;IAIvB;;OAEG;IACH,OAAO,IAAI,IAAI;IAgBf,OAAO,CAAC,aAAa;IAwCrB,OAAO,CAAC,aAAa;IA8BrB,OAAO,CAAC,gBAAgB;IAwExB,OAAO,CAAC,UAAU;IAiBlB,OAAO,CAAC,aAAa;IAWrB,OAAO,CAAC,cAAc;IActB,OAAO,CAAC,aAAa;IAarB,OAAO,CAAC,aAAa;IASrB,OAAO,CAAC,WAAW;IAQnB,OAAO,CAAC,UAAU;IAuBlB,OAAO,CAAC,cAAc;IAOtB,OAAO,CAAC,eAAe;IAOvB,OAAO,CAAC,kBAAkB;IAQ1B,OAAO,CAAC,mBAAmB;IAQ3B,OAAO,CAAC,qBAAqB;IAQ7B,OAAO,CAAC,mBAAmB;IAQ3B,OAAO,CAAC,QAAQ;IAuBhB,OAAO,CAAC,UAAU;IAsBlB,OAAO,CAAC,YAAY;IA2BpB,OAAO,CAAC,cAAc;IAwBtB,OAAO,CAAC,iBAAiB;IAuBzB,OAAO,CAAC,MAAM;IAoCd,OAAO,CAAC,WAAW;IAkCnB,OAAO,CAAC,UAAU;IAkElB;;OAEG;IACH,OAAO,CAAC,eAAe;IA0BvB;;OAEG;IACH,OAAO,CAAC,QAAQ;IAgBhB;;OAEG;IACH,OAAO,CAAC,UAAU;IAYlB;;OAEG;IACH,OAAO,CAAC,WAAW;IAWnB;;OAEG;IACH,OAAO,CAAC,cAAc;IAMtB;;OAEG;IACH,OAAO,CAAC,oBAAoB;IAwE5B;;OAEG;IACH,OAAO,CAAC,gBAAgB;IASxB;;OAEG;IACH,mBAAmB,IAAI,MAAM,EAAE;IAI/B;;OAEG;IACH,oBAAoB,CAAC,KAAK,EAAE,MAAM,EAAE,GAAG,IAAI;IAQ3C;;OAEG;IACH,qBAAqB,IAAI,IAAI;IAU7B,OAAO,CAAC,iBAAiB;IAmBzB,OAAO,CAAC,YAAY;IAmBpB,OAAO,CAAC,iBAAiB;IAYzB,OAAO,CAAC,WAAW;IA0BnB,OAAO,CAAC,eAAe;IAMvB,OAAO,CAAC,qBAAqB;IAO7B,OAAO,CAAC,iBAAiB;IAIzB,OAAO,CAAC,gBAAgB;IAOxB,OAAO,CAAC,sBAAsB;IAuB9B,OAAO,CAAC,iBAAiB;IAQzB,kBAAkB,CAAC,KAAK,EAAE,MAAM,GAAG,IAAI,EAAE,oBAAoB,CAAC,EAAE,MAAM,GAAG,IAAI;IAe7E,WAAW,IAAI,aAAa;IAI5B,aAAa,CAAC,IAAI,EAAE,aAAa,GAAG,IAAI;IAIxC,OAAO,CAAC,WAAW;IAOnB,cAAc,IAAI,IAAI;IAKtB,OAAO,CAAC,uBAAuB;IAc/B,OAAO,CAAC,4BAA4B;IAQpC,OAAO,CAAC,cAAc;IAMtB,OAAO,CAAC,SAAS;IAIjB,OAAO,CAAC,KAAK;IAIb,OAAO,CAAC,OAAO;IAOf,OAAO,CAAC,KAAK;IAUb,OAAO,CAAC,QAAQ;IAUhB,OAAO,CAAC,YAAY;IAIpB,OAAO,CAAC,WAAW;CAIpB;AAED;;GAEG;AACH,MAAM,WAAW,OAAO;IACtB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,IAAI,CAAC,EAAE,OAAO,CAAC;IACf,IAAI,CAAC,EAAE,OAAO,CAAC;IACf,KAAK,CAAC,EAAE,OAAO,CAAC;IAChB,QAAQ,CAAC,EAAE,MAAM,CAAC;CACnB"}
|