@optilogic/chat 1.0.0-beta.13 → 1.0.0-beta.14

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@optilogic/chat",
3
- "version": "1.0.0-beta.13",
3
+ "version": "1.0.0-beta.14",
4
4
  "description": "Chat UI components for Optilogic - AgentResponse and related components for LLM interactions",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",
@@ -24,8 +24,8 @@
24
24
  "README.md"
25
25
  ],
26
26
  "dependencies": {
27
- "@optilogic/editor": "1.0.0-beta.13",
28
- "@optilogic/core": "1.0.0-beta.13"
27
+ "@optilogic/core": "1.0.0-beta.14",
28
+ "@optilogic/editor": "1.0.0-beta.14"
29
29
  },
30
30
  "peerDependencies": {
31
31
  "react": "^18.0.0 || ^19.0.0",
@@ -261,7 +261,7 @@ const AgentResponse = React.forwardRef<HTMLDivElement, AgentResponseProps>(
261
261
  {/* Thinking Content - AgentTimeline when timeline entries exist, ThinkingSection otherwise */}
262
262
  {hasTimelineEntries ? (
263
263
  thinkingExpanded && (
264
- <div className="pl-3 pb-3 border-t border-border">
264
+ <div className="pb-3 border-t border-border">
265
265
  <AgentTimeline
266
266
  entries={state.timelineEntries!}
267
267
  renderMarkdown={renderThinkingMarkdown}
@@ -155,7 +155,7 @@ export function AgentTimeline({ entries, renderMarkdown, uiState, maxHeight = "3
155
155
  style={scrollStyle}
156
156
  >
157
157
  {/* Filter + controls bar (sticky within scroll container) */}
158
- <div className="sticky top-0 z-10 bg-background flex items-center gap-1 py-1.5 mb-1 border-b border-border/50 flex-wrap">
158
+ <div className="sticky top-0 z-10 bg-background flex items-center gap-1 py-1.5 mb-1 border-b border-border/50 flex-wrap pl-2">
159
159
  {/* Type filter chips */}
160
160
  {TYPE_CONFIG.filter((tc) => availableTypes.has(tc.type)).map((tc) => {
161
161
  const isActive = activeFilters.has(tc.type);