listpage-next 0.0.76 → 0.0.78

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.
@@ -8,4 +8,3 @@ export interface ContentProps {
8
8
  };
9
9
  }
10
10
  export declare const Content: (props: ContentProps) => import("react/jsx-runtime").JSX.Element;
11
- export declare const ContentContainer: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
@@ -25,9 +25,9 @@ const Content = (props)=>{
25
25
  };
26
26
  const ContentContainer = styled.div`
27
27
  min-height: 100px;
28
- flex-grow: 1;
28
+ flex-grow: 1;
29
+ flex-shrink: 1;
29
30
  overflow: auto;
30
-
31
31
  position: relative;
32
32
  `;
33
- export { Content, ContentContainer };
33
+ export { Content };
@@ -4,7 +4,7 @@ export interface HeaderProps extends HeaderLeftProps {
4
4
  export declare const Header: (props: HeaderProps) => import("react/jsx-runtime").JSX.Element;
5
5
  interface HeaderLeftProps {
6
6
  onClickNewConversation?: () => void;
7
- defaultTitle: string;
7
+ defaultTitle?: string;
8
8
  onTitleChange?: (title: string) => any;
9
9
  }
10
10
  export {};
@@ -139,7 +139,8 @@ const Right = styled.div`
139
139
  `;
140
140
  const HeaderContainer = styled.div`
141
141
  height: 60px;
142
- flex: 0;
142
+ flex-shrink: 0;
143
+ flex-grow: 0;
143
144
  display: flex;
144
145
  padding: 12.5px 0px;
145
146
  box-sizing: border-box;
@@ -43,5 +43,6 @@ const SiderContainer = styled.div`
43
43
 
44
44
  display: flex;
45
45
  flex-direction: column;
46
+ flex-shrink: 0;
46
47
  `;
47
48
  export { Sider };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "listpage-next",
3
- "version": "0.0.76",
3
+ "version": "0.0.78",
4
4
  "description": "A React component library for creating filter forms with Ant Design",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",