listpage-next 0.0.256 → 0.0.259

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.
@@ -33,7 +33,7 @@ const PageSider = (props)=>{
33
33
  };
34
34
  const SiderStyled = styled(Layout.Sider)`
35
35
  background-color: #fff;
36
- border-right: 1px solid #e5e5e5;
36
+ // border-right: 1px solid #e5e5e5;
37
37
  display: flex;
38
38
  flex-direction: column;
39
39
 
@@ -52,7 +52,7 @@ const SiderContentWrapper = styled.div`
52
52
  const CollapseButton = styled.div`
53
53
  position: absolute;
54
54
  inset-block-start: 18px;
55
- z-index: 101;
55
+ z-index: 1;
56
56
  width: 24px;
57
57
  height: 24px;
58
58
  text-align: center;
@@ -3,7 +3,7 @@ import { JSX, ReactNode } from 'react';
3
3
  export interface AppProps {
4
4
  menus: MenuItem[];
5
5
  basename?: string;
6
- title?: string;
6
+ title?: ReactNode;
7
7
  icon?: ReactNode;
8
8
  hasAuth?: () => boolean;
9
9
  loginElement?: JSX.Element;
@@ -18,7 +18,7 @@ const Menu = (props)=>{
18
18
  ]);
19
19
  };
20
20
  return /*#__PURE__*/ jsxs("div", {
21
- className: `h-full overflow-y-auto overflow-x-hidden scrollbar-hide bg-[#000c17] ${isCollapsed ? 'w-[47px]' : 'flex-1 py-2 px-2'}`,
21
+ className: `h-full overflow-y-auto overflow-x-hidden scrollbar-hide bg-[#000c17] ${isCollapsed ? 'w-[48px]' : 'flex-1 py-2 px-2'}`,
22
22
  children: [
23
23
  !isCollapsed && title && /*#__PURE__*/ jsx("div", {
24
24
  className: "px-3 mb-2 mt-2 text-[11px] font-medium text-neutral-500 uppercase tracking-widest",
package/dist/ui.css CHANGED
@@ -492,8 +492,8 @@
492
492
  .w-80 {
493
493
  width: calc(var(--spacing) * 80);
494
494
  }
495
- .w-\[47px\] {
496
- width: 47px;
495
+ .w-\[48px\] {
496
+ width: 48px;
497
497
  }
498
498
  .w-\[200px\] {
499
499
  width: 200px;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "listpage-next",
3
- "version": "0.0.256",
3
+ "version": "0.0.259",
4
4
  "description": "A React component library for creating filter forms with Ant Design",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",