@parhelia/core 0.1.12560 → 0.1.12565
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/dist/agents-view/AgentCard.js +4 -4
- package/dist/agents-view/AgentCard.js.map +1 -1
- package/dist/agents-view/AgentsView.js +5 -2
- package/dist/agents-view/AgentsView.js.map +1 -1
- package/dist/editor/ai/AgentStatusBadge.js +3 -3
- package/dist/editor/ai/AgentStatusBadge.js.map +1 -1
- package/dist/editor/ai/AgentTerminal.js +98 -82
- package/dist/editor/ai/AgentTerminal.js.map +1 -1
- package/dist/editor/ai/AgentTerminalStatusBar.js +21 -0
- package/dist/editor/ai/AgentTerminalStatusBar.js.map +1 -1
- package/dist/editor/ai/Agents.js +14 -3
- package/dist/editor/ai/Agents.js.map +1 -1
- package/dist/editor/ai/AiResponseMessage.js +29 -3
- package/dist/editor/ai/AiResponseMessage.js.map +1 -1
- package/dist/editor/ai/ToolCallDisplay.js +83 -62
- package/dist/editor/ai/ToolCallDisplay.js.map +1 -1
- package/dist/editor/ai/agentDiagnostics.d.ts +7 -0
- package/dist/editor/ai/agentDiagnostics.js.map +1 -1
- package/dist/editor/ai/useAgentStatus.js +5 -2
- package/dist/editor/ai/useAgentStatus.js.map +1 -1
- package/dist/editor/client/hooks/useSocketMessageHandler.js +5 -8
- package/dist/editor/client/hooks/useSocketMessageHandler.js.map +1 -1
- package/dist/editor/services/agentErrorMessage.d.ts +1 -0
- package/dist/editor/services/agentErrorMessage.js +91 -0
- package/dist/editor/services/agentErrorMessage.js.map +1 -0
- package/dist/editor/services/agentStatus.d.ts +1 -0
- package/dist/editor/services/agentStatus.js +19 -0
- package/dist/editor/services/agentStatus.js.map +1 -1
- package/dist/editor/sidebar/Validation.js +3 -1
- package/dist/editor/sidebar/Validation.js.map +1 -1
- package/dist/revision.d.ts +2 -2
- package/dist/revision.js +2 -2
- package/package.json +1 -1
- package/styles.css +25 -0
package/styles.css
CHANGED
|
@@ -661,6 +661,31 @@ body {
|
|
|
661
661
|
}
|
|
662
662
|
}
|
|
663
663
|
|
|
664
|
+
@keyframes text-shimmer {
|
|
665
|
+
0% {
|
|
666
|
+
background-position: 200% center;
|
|
667
|
+
}
|
|
668
|
+
100% {
|
|
669
|
+
background-position: -200% center;
|
|
670
|
+
}
|
|
671
|
+
}
|
|
672
|
+
|
|
673
|
+
.animate-text-shimmer {
|
|
674
|
+
background: linear-gradient(
|
|
675
|
+
90deg,
|
|
676
|
+
currentColor 0%,
|
|
677
|
+
currentColor 40%,
|
|
678
|
+
rgba(147, 157, 184, 0.5) 50%,
|
|
679
|
+
currentColor 60%,
|
|
680
|
+
currentColor 100%
|
|
681
|
+
);
|
|
682
|
+
background-size: 200% 100%;
|
|
683
|
+
background-clip: text;
|
|
684
|
+
-webkit-background-clip: text;
|
|
685
|
+
-webkit-text-fill-color: transparent;
|
|
686
|
+
animation: text-shimmer 2s ease-in-out infinite;
|
|
687
|
+
}
|
|
688
|
+
|
|
664
689
|
.p-tooltip-text {
|
|
665
690
|
padding: 5px;
|
|
666
691
|
font-size: 12px;
|