jclib-ui 1.0.6 → 1.0.7

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.
@@ -2,3 +2,8 @@ export function ScrollContainer({ children, hasMaxWidth }: {
2
2
  children: any;
3
3
  hasMaxWidth: any;
4
4
  }): import("react/jsx-runtime").JSX.Element;
5
+ export namespace ScrollContainer {
6
+ namespace defaultProps {
7
+ const hasMaxWidth: boolean;
8
+ }
9
+ }
@@ -21521,6 +21521,9 @@ const MainContainer = styled.main`
21521
21521
  margin: 12px auto 20px;
21522
21522
  }
21523
21523
  `;
21524
+ ScrollContainer.defaultProps = {
21525
+ hasMaxWidth: true
21526
+ };
21524
21527
  function ScrollContainer({ children, hasMaxWidth }) {
21525
21528
  return /* @__PURE__ */ jsxRuntimeExports.jsx(MainContainer, { hasMaxWidth, children: /* @__PURE__ */ jsxRuntimeExports.jsx("div", { className: "scroll--content", children }) });
21526
21529
  }