@papernote/ui 1.8.1 → 1.8.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@papernote/ui",
3
- "version": "1.8.1",
3
+ "version": "1.8.2",
4
4
  "type": "module",
5
5
  "description": "A modern React component library with a paper notebook aesthetic - minimal, professional, and expressive",
6
6
  "main": "dist/index.js",
@@ -104,10 +104,10 @@ export function PageLayout({
104
104
 
105
105
  return (
106
106
  <Page padding="none" maxWidth={maxWidth} fixed={fixed}>
107
- {/* Content before title (e.g., ControlBar) */}
108
- {headerContent}
109
-
110
107
  <div className={`${paddingClasses} ${maxWidthClasses[maxWidth]} mx-auto ${className}`}>
108
+ {/* Content before title (e.g., Breadcrumbs) */}
109
+ {headerContent && <div className="mb-4">{headerContent}</div>}
110
+
111
111
  {/* Header */}
112
112
  <div className="mb-8">
113
113
  <Stack direction="horizontal" justify="between" align="start" gap="md">