@lobehub/chat 1.87.8 → 1.87.9

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.
package/CHANGELOG.md CHANGED
@@ -2,6 +2,31 @@
2
2
 
3
3
  # Changelog
4
4
 
5
+ ### [Version 1.87.9](https://github.com/lobehub/lobe-chat/compare/v1.87.8...v1.87.9)
6
+
7
+ <sup>Released on **2025-05-23**</sup>
8
+
9
+ #### 💄 Styles
10
+
11
+ - **misc**: Resolve InputNumber display overlap issue.
12
+
13
+ <br/>
14
+
15
+ <details>
16
+ <summary><kbd>Improvements and Fixes</kbd></summary>
17
+
18
+ #### Styles
19
+
20
+ - **misc**: Resolve InputNumber display overlap issue, closes [#7892](https://github.com/lobehub/lobe-chat/issues/7892) ([5486663](https://github.com/lobehub/lobe-chat/commit/5486663))
21
+
22
+ </details>
23
+
24
+ <div align="right">
25
+
26
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
27
+
28
+ </div>
29
+
5
30
  ### [Version 1.87.8](https://github.com/lobehub/lobe-chat/compare/v1.87.7...v1.87.8)
6
31
 
7
32
  <sup>Released on **2025-05-22**</sup>
package/changelog/v1.json CHANGED
@@ -1,4 +1,13 @@
1
1
  [
2
+ {
3
+ "children": {
4
+ "improvements": [
5
+ "Resolve InputNumber display overlap issue."
6
+ ]
7
+ },
8
+ "date": "2025-05-23",
9
+ "version": "1.87.9"
10
+ },
2
11
  {
3
12
  "children": {
4
13
  "fixes": [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lobehub/chat",
3
- "version": "1.87.8",
3
+ "version": "1.87.9",
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",
@@ -40,6 +40,11 @@ const Controls = memo<ControlsProps>(({ updating, setUpdating }) => {
40
40
  size={'small'}
41
41
  step={1}
42
42
  style={{ marginBlock: 8, paddingLeft: 4 }}
43
+ styles={{
44
+ input: {
45
+ maxWidth: 64,
46
+ },
47
+ }}
43
48
  />
44
49
  ),
45
50
  name: 'historyCount',
@@ -29,6 +29,11 @@ const FrequencyPenalty = memo<FrequencyPenaltyProps>(({ value, onChange }) => {
29
29
  onChange={onChange}
30
30
  size={'small'}
31
31
  step={0.1}
32
+ styles={{
33
+ input: {
34
+ maxWidth: 64,
35
+ },
36
+ }}
32
37
  value={value}
33
38
  />
34
39
  </Flexbox>
@@ -27,6 +27,11 @@ const PresencePenalty = memo<PresencePenaltyProps>(({ value, onChange }) => {
27
27
  onChange={onChange}
28
28
  size={'small'}
29
29
  step={0.1}
30
+ styles={{
31
+ input: {
32
+ maxWidth: 64,
33
+ },
34
+ }}
30
35
  value={value}
31
36
  />
32
37
  </Flexbox>
@@ -61,6 +61,11 @@ const Temperature = memo<TemperatureProps>(({ value, onChange }) => {
61
61
  size={'small'}
62
62
  step={0.1}
63
63
  style={{ height: 48 }}
64
+ styles={{
65
+ input: {
66
+ maxWidth: 64,
67
+ },
68
+ }}
64
69
  value={value}
65
70
  />
66
71
  <Warning />
@@ -31,6 +31,11 @@ const TopP = memo<TopPProps>(({ value, onChange }) => {
31
31
  onChange={onChange}
32
32
  size={'small'}
33
33
  step={0.1}
34
+ styles={{
35
+ input: {
36
+ maxWidth: 64,
37
+ },
38
+ }}
34
39
  value={value}
35
40
  />
36
41
  </Flexbox>