listpage-next 0.0.70 → 0.0.71

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.
@@ -25,8 +25,6 @@ const Content = (props)=>{
25
25
  };
26
26
  const ContentContainer = styled.div`
27
27
  min-height: 100px;
28
- flex-grow: 1;
29
-
30
- overflow: auto;
28
+ flex-grow: 1; overflow: auto;
31
29
  `;
32
30
  export { Content, ContentContainer };
@@ -2,5 +2,7 @@ import styled_components from "styled-components";
2
2
  const Container = styled_components.div`
3
3
  display: flex;
4
4
  flex-direction: column;
5
+
6
+ height: 100%;
5
7
  `;
6
8
  export { Container };
@@ -14,7 +14,7 @@ const ChatPage = (props)=>{
14
14
  /*#__PURE__*/ jsxs(Sider, {
15
15
  children: [
16
16
  /*#__PURE__*/ jsx(Logo, {
17
- icon: logo || 'AI',
17
+ icon: logo,
18
18
  title: title || '智能对话'
19
19
  }),
20
20
  /*#__PURE__*/ jsx(NewConversation, {
@@ -8,7 +8,8 @@ const Logo = (props)=>{
8
8
  /*#__PURE__*/ jsx(Avatar, {
9
9
  size: 36,
10
10
  shape: "circle",
11
- icon: icon
11
+ src: icon,
12
+ icon: "AI"
12
13
  }),
13
14
  /*#__PURE__*/ jsx(LogoTitle, {
14
15
  children: title
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "listpage-next",
3
- "version": "0.0.70",
3
+ "version": "0.0.71",
4
4
  "description": "A React component library for creating filter forms with Ant Design",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",