listpage-next 0.0.205 → 0.0.207

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.
@@ -1,2 +1,3 @@
1
1
  import { MenuProps } from './types';
2
2
  export declare const Menu: (props: MenuProps) => import("react/jsx-runtime").JSX.Element;
3
+ export type { MenuProps, MenuItem } from './types';
@@ -12,7 +12,10 @@ const Reasoning = ({ thinking, children })=>{
12
12
  return /*#__PURE__*/ jsxs(ReasoningContainer, {
13
13
  style: {
14
14
  padding: collapsed ? '6px 12px' : '0px 12px 13px 12px',
15
- backgroundColor: collapsed ? void 0 : '#fff'
15
+ backgroundColor: collapsed ? void 0 : '#fff',
16
+ ...collapsed && {
17
+ maxWidth: 240
18
+ }
16
19
  },
17
20
  children: [
18
21
  /*#__PURE__*/ jsxs(ReasoningHeader, {
@@ -47,7 +50,7 @@ const ReasoningContainer = styled.div`
47
50
  &:hover {
48
51
  background-color: #0000000a;
49
52
  }
50
- min-width: 240px;
53
+ width: 100%;
51
54
 
52
55
  & > * {
53
56
  box-sizing: border-box;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "listpage-next",
3
- "version": "0.0.205",
3
+ "version": "0.0.207",
4
4
  "description": "A React component library for creating filter forms with Ant Design",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",