@lobehub/chat 1.17.3 → 1.17.4
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
CHANGED
@@ -2,6 +2,31 @@
|
|
2
2
|
|
3
3
|
# Changelog
|
4
4
|
|
5
|
+
### [Version 1.17.4](https://github.com/lobehub/lobe-chat/compare/v1.17.3...v1.17.4)
|
6
|
+
|
7
|
+
<sup>Released on **2024-09-15**</sup>
|
8
|
+
|
9
|
+
#### 💄 Styles
|
10
|
+
|
11
|
+
- **misc**: Update fullscreen loading style.
|
12
|
+
|
13
|
+
<br/>
|
14
|
+
|
15
|
+
<details>
|
16
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
17
|
+
|
18
|
+
#### Styles
|
19
|
+
|
20
|
+
- **misc**: Update fullscreen loading style, closes [#3948](https://github.com/lobehub/lobe-chat/issues/3948) ([aec21d2](https://github.com/lobehub/lobe-chat/commit/aec21d2))
|
21
|
+
|
22
|
+
</details>
|
23
|
+
|
24
|
+
<div align="right">
|
25
|
+
|
26
|
+
[](#readme-top)
|
27
|
+
|
28
|
+
</div>
|
29
|
+
|
5
30
|
### [Version 1.17.3](https://github.com/lobehub/lobe-chat/compare/v1.17.2...v1.17.3)
|
6
31
|
|
7
32
|
<sup>Released on **2024-09-14**</sup>
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@lobehub/chat",
|
3
|
-
"version": "1.17.
|
3
|
+
"version": "1.17.4",
|
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",
|
@@ -7,15 +7,11 @@ import { ProductLogo } from '@/components/Branding';
|
|
7
7
|
|
8
8
|
const FullscreenLoading = memo<{ title?: string }>(({ title }) => {
|
9
9
|
return (
|
10
|
-
<Flexbox height={'100%'} style={{ userSelect: 'none' }} width={'100%'}>
|
11
|
-
<Center flex={1} gap={
|
10
|
+
<Flexbox height={'100%'} style={{ position: 'relative', userSelect: 'none' }} width={'100%'}>
|
11
|
+
<Center flex={1} gap={16} width={'100%'}>
|
12
12
|
<ProductLogo size={48} type={'combine'} />
|
13
|
-
<Center
|
14
|
-
|
15
|
-
horizontal
|
16
|
-
style={{ fontSize: '16px', lineHeight: '1.5', marginTop: '2%' }}
|
17
|
-
>
|
18
|
-
<Icon icon={Loader2} spin style={{ fontSize: '16px' }} />
|
13
|
+
<Center gap={12} horizontal style={{ fontSize: 15, lineHeight: 1.5, opacity: 0.66 }}>
|
14
|
+
<Icon icon={Loader2} size={{ fontSize: 16 }} spin />
|
19
15
|
{title}
|
20
16
|
</Center>
|
21
17
|
</Center>
|