feat(apollo-vertex): ai-chat templates and documentation pages [6/6]#549
Draft
petervachon wants to merge 20 commits intopr/1e-aichat-chatfrom
Draft
feat(apollo-vertex): ai-chat templates and documentation pages [6/6]#549petervachon wants to merge 20 commits intopr/1e-aichat-chatfrom
petervachon wants to merge 20 commits intopr/1e-aichat-chatfrom
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
e02123a to
5f4fa6c
Compare
333bcbe to
e4736d6
Compare
5f4fa6c to
c85b43b
Compare
Dependency License Review
License distribution
Excluded packages
|
c85b43b to
ee6812c
Compare
e4736d6 to
c88071b
Compare
…ht themes
`@layer base { * { border-color: var(--color-border-de-emp); } }` relies on
`--color-border-de-emp` being a live CSS custom property. For apollo-core
themes (dark, light, etc.) this works because apollo-core sets
`--color-border-de-emp` directly on `body.dark` / `body.light` as unlayered
CSS. Future themes have no such declaration — the variable was only registered
via `@theme inline` into `@layer theme { :root }`, which Tailwind CSS 4.2.x
(bundled in @tailwindcss/vite@4.2.2) does not reliably expose as a runtime
CSS variable. The result: `var(--color-border-de-emp)` fell back to
`currentColor` (near-white in dark themes), producing incorrect white outlines
on components that rely on the default border color — Data Table, Popover,
and Accordion.
Fix: add `--color-border-de-emp: var(--border-de-emp)` to the bridge section
(.future-light, .future-dark, .wireframe, .vertex, .canvas) so the variable
is set as unlayered CSS directly on the theme element, exactly mirroring the
pattern apollo-core uses for its own themes. The variable chain resolves as:
future-dark → --border-de-emp → --border-subtle → --color-zinc-800 (dark zinc)
future-light → --border-de-emp → --border-subtle → --color-zinc-200 (light zinc)
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
- Remove brand-motion.stories.tsx from Wind > Experiments - Rename "Ideas" story to "Layout Generator" (title + export name) - Split into Visual (live generator) and Setup (documentation) tabs - Add "Before you start" callout with Claude API key setup instructions Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Packages: apollo-wind
Packages: apollo-react,apollo-wind
Packages: apollo-react
Packages: apollo-react
…lent image error handlers
Replaces the generic 'file-text' CanvasIcon for context resource nodes with a dedicated ContextIcon component, following the custom-icon pattern already used by MemoryIcon, McpIcon, and A2aIcon. The icon is a schema/indexes glyph (three horizontal lines + a small bolt indicator) aligned with the updated Data Fabric Agent Integration designs. Ref: UiPath/Agents DS-7658
Packages: apollo-react
Adds AiChatTemplate, AiChatAgentHubMode, AiChatConversationalAgentMode, AiChatLoginGate, interactive preview page with mock data and thinking demo, patterns/ai-chat doc page, and vertex-components nav entry. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
ee6812c to
6806c21
Compare
c88071b to
49f80fa
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
AiChatTemplate,AiChatAgentHubMode,AiChatConversationalAgentMode,AiChatLoginGatepage templates/vertex-components/ai-chat/previewwith mock data and thinking demo/patterns/ai-chatdocumentation pageapp/_meta.tsnavStack
Manual stack — do not review until #548 merges.
🤖 Generated with Claude Code