Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/content/docs/chat/copilot.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export function App() {
}
```

![Copilot sidebar layout example](/docs/images/chat/copilot.png)
![Copilot sidebar layout example](/docs/images/chat/video2.gif)

## Common configuration

Expand Down
2 changes: 1 addition & 1 deletion docs/content/docs/chat/fullscreen.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export function App() {
}
```

![FullScreen layout example](/docs/images/chat/fullscreen.png)
![FullScreen layout example](/docs/images/chat/video1.gif)

## Common configuration

Expand Down
Binary file added docs/public/docs/images/chat/video1.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/public/docs/images/chat/video2.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion eslint.config.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ const reactHooks = require("eslint-plugin-react-hooks");

module.exports = [
{
ignores: ["**/src/templates/**"],
ignores: ["**/src/templates/**", "**/.storybook/**"],
},
{
files: ["**/__tests__/**/*.{ts,tsx}", "**/*.test.{ts,tsx}", "**/*.spec.{ts,tsx}"],
Expand Down
4 changes: 2 additions & 2 deletions packages/react-ui/.storybook/theme.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { create } from "@storybook/theming";
export default create({
base: "dark",
brandTitle: "OpenUI Components",
brandUrl: "https://crayonai.org/docs/ui",
brandImage: "https://crayonai.org/img/logo.png",
brandUrl: "https://www.openui.com/docs/ui",
brandImage: "https://www.openui.com/favicon.svg",
brandTarget: "_self",
});
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ const ConversationStartersRenderer = ({
};

const BottomTrayInner = ({
logoUrl = "https://crayonai.org/img/logo.png",
logoUrl = "https://www.openui.com/favicon.svg",
agentName = "My Agent",
messageLoading: MessageLoadingComponent = MessageLoading,
scrollVariant = "user-message-anchor",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ const ConversationStartersRenderer = ({
};

const CopilotInner = ({
logoUrl = "https://crayonai.org/img/logo.png",
logoUrl = "https://www.openui.com/favicon.svg",
agentName = "My Agent",
messageLoading: MessageLoadingComponent = MessageLoading,
scrollVariant = "user-message-anchor",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ const ConversationStartersRenderer = ({
};

const FullScreenInner = ({
logoUrl = "https://crayonai.org/img/logo.png",
logoUrl = "https://www.openui.com/favicon.svg",
agentName = "My Agent",
messageLoading: MessageLoadingComponent = MessageLoading,
scrollVariant = "user-message-anchor",
Expand Down
Loading