@sunggang/ui-lib 0.1.0 → 0.1.2

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/index.esm.js CHANGED
@@ -15130,7 +15130,7 @@ var Sidebar = function(param) {
15130
15130
  var _useState = _sliced_to_array(useState(true), 1), isClient = _useState[0];
15131
15131
  return isClient && /*#__PURE__*/ jsx("aside", {
15132
15132
  className: [
15133
- "h-screen justify-center hidden lg:flex",
15133
+ "w-64 h-screen justify-center hidden lg:flex",
15134
15134
  className
15135
15135
  ].join(" "),
15136
15136
  children: /*#__PURE__*/ jsx("div", {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sunggang/ui-lib",
3
- "version": "0.1.0",
3
+ "version": "0.1.2",
4
4
  "dependencies": {
5
5
  "@radix-ui/react-switch": "^1.0.3",
6
6
  "class-variance-authority": "^0.7.0",
@@ -15,7 +15,7 @@ interface SidebarItem {
15
15
  subNav?: SubNavItem[];
16
16
  }
17
17
  interface SidebarProps {
18
- className: string;
18
+ className?: string;
19
19
  items?: SidebarItem[];
20
20
  }
21
21
  export declare const Sidebar: React.FC<SidebarProps>;