Skip to content

Commit 1eb3120

Browse files
xuyushun441-sysos-zhuangclaude
authored
fix(showcase): use supported ai:input block + bump objectui console pin (#1464)
- examples/app-showcase: the component-gallery page referenced `ai:chat_window`, which the Console intentionally does not register as an inline page component (the floating chatbot overlay is the canonical entry point), so it surfaced a loud "Unknown component type". Switch to the supported `ai:input` inline AI block. - Bump .objectui-sha to pick up objectstack-ai/objectui#1431, which fills the Console field-widget and dashboard chart-type renderer registry gaps (toggle/multiselect/radio/checkboxes/tags/color/slider/rating/code/… fields and column/spline/pyramid/radar/kpi/bullet/… charts). Co-authored-by: Jack Zhuang <277994282+os-zhuang@users.noreply.github.com> Co-authored-by: Claude Opus 4.8 <noreply@anthropic.com>
1 parent aec0e8a commit 1eb3120

2 files changed

Lines changed: 6 additions & 2 deletions

File tree

.objectui-sha

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
97468a164ab4efd64558e40ac0268fbe5a49e2bb
1+
0af951fc15e335fc9ccf840cd8dd6587b0d0aded

examples/app-showcase/src/pages/index.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,11 @@ export const ComponentGalleryPage: Page = {
4545
name: 'sidebar',
4646
width: 'small',
4747
components: [
48-
{ type: 'ai:chat_window', properties: { agentName: 'showcase_assistant' } },
48+
// NOTE: `ai:chat_window` is intentionally NOT a supported inline page
49+
// component — the canonical chat entry point is the floating chatbot
50+
// overlay (plugin-chatbot), so referencing it here surfaces a loud
51+
// "Unknown component type". Use a supported inline AI block instead.
52+
{ type: 'ai:input', properties: { agentName: 'showcase_assistant', placeholder: 'Ask the showcase assistant…' } },
4953
],
5054
},
5155
],

0 commit comments

Comments
 (0)