@lobehub/chat 1.17.5 → 1.17.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of @lobehub/chat might be problematic. Click here for more details.
- package/CHANGELOG.md +25 -0
- package/package.json +1 -1
- package/src/app/(main)/chat/(workspace)/@portal/{Artifacts → Plugins}/index.ts +1 -1
- package/src/app/(main)/chat/(workspace)/@portal/router.tsx +2 -2
- package/src/features/Conversation/Messages/Tool/Inspector/index.tsx +2 -2
- /package/src/app/(main)/chat/(workspace)/@portal/{Artifacts → Plugins}/Body/ToolRender.tsx +0 -0
- /package/src/app/(main)/chat/(workspace)/@portal/{Artifacts → Plugins}/Body/index.tsx +0 -0
- /package/src/app/(main)/chat/(workspace)/@portal/{Artifacts → Plugins}/Footer.tsx +0 -0
- /package/src/app/(main)/chat/(workspace)/@portal/{Artifacts → Plugins}/Header.tsx +0 -0
- /package/src/app/(main)/chat/(workspace)/@portal/{Artifacts → Plugins}/useEnable.ts +0 -0
package/CHANGELOG.md
CHANGED
@@ -2,6 +2,31 @@
|
|
2
2
|
|
3
3
|
# Changelog
|
4
4
|
|
5
|
+
### [Version 1.17.6](https://github.com/lobehub/lobe-chat/compare/v1.17.5...v1.17.6)
|
6
|
+
|
7
|
+
<sup>Released on **2024-09-15**</sup>
|
8
|
+
|
9
|
+
#### ♻ Code Refactoring
|
10
|
+
|
11
|
+
- **misc**: Rename artifacts to plugins in portal.
|
12
|
+
|
13
|
+
<br/>
|
14
|
+
|
15
|
+
<details>
|
16
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
17
|
+
|
18
|
+
#### Code refactoring
|
19
|
+
|
20
|
+
- **misc**: Rename artifacts to plugins in portal, closes [#3986](https://github.com/lobehub/lobe-chat/issues/3986) ([073b936](https://github.com/lobehub/lobe-chat/commit/073b936))
|
21
|
+
|
22
|
+
</details>
|
23
|
+
|
24
|
+
<div align="right">
|
25
|
+
|
26
|
+
[](#readme-top)
|
27
|
+
|
28
|
+
</div>
|
29
|
+
|
5
30
|
### [Version 1.17.5](https://github.com/lobehub/lobe-chat/compare/v1.17.4...v1.17.5)
|
6
31
|
|
7
32
|
<sup>Released on **2024-09-15**</sup>
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@lobehub/chat",
|
3
|
-
"version": "1.17.
|
3
|
+
"version": "1.17.6",
|
4
4
|
"description": "Lobe Chat - an open-source, high-performance chatbot framework that supports speech synthesis, multimodal, and extensible Function Call plugin system. Supports one-click free deployment of your private ChatGPT/LLM web application.",
|
5
5
|
"keywords": [
|
6
6
|
"framework",
|
@@ -2,12 +2,12 @@
|
|
2
2
|
|
3
3
|
import { memo } from 'react';
|
4
4
|
|
5
|
-
import { Artifacts } from './Artifacts';
|
6
5
|
import { FilePreview } from './FilePreview';
|
7
6
|
import { HomeBody, HomeHeader } from './Home';
|
8
7
|
import { MessageDetail } from './MessageDetail';
|
8
|
+
import { Plugins } from './Plugins';
|
9
9
|
|
10
|
-
const items = [MessageDetail,
|
10
|
+
const items = [MessageDetail, Plugins, FilePreview];
|
11
11
|
|
12
12
|
export const PortalHeader = memo(() => {
|
13
13
|
const enabledList: boolean[] = [];
|
@@ -3,7 +3,7 @@ import { ActionIcon, Highlighter, Icon, Tag } from '@lobehub/ui';
|
|
3
3
|
import { Tabs, Typography } from 'antd';
|
4
4
|
import isEqual from 'fast-deep-equal';
|
5
5
|
import {
|
6
|
-
|
6
|
+
BetweenVerticalStart,
|
7
7
|
LucideBug,
|
8
8
|
LucideBugOff,
|
9
9
|
LucideChevronDown,
|
@@ -113,7 +113,7 @@ const Inspector = memo<InspectorProps>(
|
|
113
113
|
<Flexbox horizontal>
|
114
114
|
{!isMobile && showRightAction && (
|
115
115
|
<ActionIcon
|
116
|
-
icon={
|
116
|
+
icon={BetweenVerticalStart}
|
117
117
|
onClick={() => {
|
118
118
|
if (!isMessageToolUIOpen) openToolUI(id, identifier);
|
119
119
|
else {
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|