mirror of
https://github.com/agent0ai/agent-zero.git
synced 2026-05-05 15:31:08 +00:00
add extension points for chat, sidebar, and modal shell
- Introduced new extension points in various chat components: `chat-input`, `chat-top`, and `chat-bar`. - Added extension points for sidebar components: `sidebar-start`, `sidebar-end`, and others. - Updated modal structure with extension points for better integration. - Updated documentation in README.md to reflect current sidebar, input, chat, welcome, and modal surfaces. - Added tests for web UI extension surfaces to ensure proper integration and functionality.
This commit is contained in:
parent
57b18336e3
commit
d65fada385
14 changed files with 207 additions and 6 deletions
|
|
@ -7,6 +7,7 @@
|
|||
</head>
|
||||
<body>
|
||||
<div id="input-section" x-data>
|
||||
<x-extension id="chat-input-start"></x-extension>
|
||||
<template x-if="$store.chatInput">
|
||||
<div style="width: 100%; display: contents;">
|
||||
<!-- Message Queue section -->
|
||||
|
|
@ -21,6 +22,7 @@
|
|||
<x-component path="chat/input/bottom-actions.html"></x-component>
|
||||
</div>
|
||||
</template>
|
||||
<x-extension id="chat-input-end"></x-extension>
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue