You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Add cell visibility toggle schema fields and events
- Add sourceVisible and outputVisible boolean fields to cells table
- Add cellSourceVisibilityToggled and cellOutputVisibilityToggled events
- Add corresponding materializers for visibility state updates
- Default both visibility fields to true for backward compatibility
* Implement visibility toggles for code and markdown cells
- Add Eye and EyeOff icons to cell controls on hover
- Add toggle handlers for source and output visibility
- Wrap source textarea in sourceVisible conditional
- Wrap output area in outputVisible conditional
- Add visual separator between visibility toggles and other controls
- Use muted styling when content is hidden
* Implement visibility toggles for SQL cells
- Add visibility toggle handlers and buttons to SQL cell controls
- Wrap query textarea in sourceVisible conditional
- Wrap query results in outputVisible conditional
- Output toggle only shows when results are available
- Maintain consistent styling with other cell types
* Implement visibility toggles for AI cells
- Add visibility toggle handlers and buttons to AI cell controls
- Wrap prompt textarea in sourceVisible conditional
- Wrap AI responses in outputVisible conditional
- Output toggle only shows when responses are available
- Consistent behavior across all cell types
* Fix kernel status display inconsistency
- Replace hasActiveKernel with activeKernel in status text logic
- Add proper handling for stale kernel connections
- Update color indicators to include stale state with amber color
- Resolve inconsistency between main status and detailed panel
- Stale kernels now show 'Connected (Stale)' instead of 'Disconnected'
* Move output visibility toggle to execution summary bar
- Remove output toggle from cell controls for all cell types
- Add output toggle to right side of execution summary bar
- Position toggle next to execution time for better context
- Use smaller button size (h-5 w-5) to fit in summary bar
- Only show toggle when output exists to hide
- Improves UX by placing control near the content it affects
* Replace eye icons with chevron icons for visibility toggles
- Replace Eye/EyeOff icons with ChevronUp/ChevronDown for less creepy UI
- Add hover/focus visibility to output toggles (fade when not active)
- Update tooltip text to be more descriptive (Hide/Show instead of Toggle)
- ChevronUp = visible content, ChevronDown = hidden content
- Output toggle only appears on hover or when cell is focused
* Use arrow icons for cell movement to avoid chevron conflict
- Replace ChevronUp/ChevronDown with ArrowUp/ArrowDown for move controls
- Resolves icon conflict with visibility toggles using chevrons
- ArrowUp/ArrowDown more clearly indicate directional movement
- ChevronUp/ChevronDown reserved for show/hide content actions
* Adjust play button position when source is collapsed
- Move play button up when source is hidden to align with cell header
- Conditional positioning: 0.375rem when visible, -1.5rem when hidden
- Prevents disconnected play button appearance in collapsed state
- Applied to all cell types: Code, SQL, and AI cells
* Update HANDOFF.md to reflect Task 4 completion
- Mark Source/Output Display Toggles as completed
- Document implemented features and modified files
- Add branch reference for review
- Update current session status
0 commit comments