@papernote/ui 1.11.0 → 1.11.1

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/dist/styles.css CHANGED
@@ -6521,10 +6521,6 @@ input:checked + .slider:before{
6521
6521
  margin-bottom: 1.5rem;
6522
6522
  }
6523
6523
 
6524
- .sm\:mr-6{
6525
- margin-right: 1.5rem;
6526
- }
6527
-
6528
6524
  .sm\:block{
6529
6525
  display: block;
6530
6526
  }
@@ -6650,10 +6646,6 @@ input:checked + .slider:before{
6650
6646
  margin-bottom: 2rem;
6651
6647
  }
6652
6648
 
6653
- .md\:mr-8{
6654
- margin-right: 2rem;
6655
- }
6656
-
6657
6649
  .md\:block{
6658
6650
  display: block;
6659
6651
  }
@@ -6755,10 +6747,6 @@ input:checked + .slider:before{
6755
6747
  grid-column: span 3 / span 3;
6756
6748
  }
6757
6749
 
6758
- .lg\:mr-auto{
6759
- margin-right: auto;
6760
- }
6761
-
6762
6750
  .lg\:block{
6763
6751
  display: block;
6764
6752
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@papernote/ui",
3
- "version": "1.11.0",
3
+ "version": "1.11.1",
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",
@@ -49,7 +49,7 @@ export interface PageProps {
49
49
  */
50
50
  export const Page: React.FC<PageProps> = ({
51
51
  children,
52
- maxWidth = '7xl',
52
+ maxWidth = 'full',
53
53
  className = '',
54
54
  padding = 'normal',
55
55
  fixed = false
@@ -74,7 +74,7 @@ export const Page: React.FC<PageProps> = ({
74
74
  // Margin classes - responsive (fixed left/top, responsive right/bottom) vs all fixed
75
75
  const marginClasses = fixed
76
76
  ? 'mt-4 ml-4 mr-4 mb-4'
77
- : 'mt-4 ml-4 mr-4 mb-4 sm:mr-6 md:mr-8 lg:mr-auto sm:mb-6 md:mb-8';
77
+ : 'mt-4 ml-4 mr-4 mb-4 sm:mb-6 md:mb-8';
78
78
 
79
79
  return (
80
80
  <div className="min-h-screen bg-paper-100">
@@ -84,7 +84,7 @@ export function PageLayout({
84
84
  children,
85
85
  className = '',
86
86
  headerContent,
87
- maxWidth = '7xl',
87
+ maxWidth = 'full',
88
88
  fixed = false,
89
89
  actions,
90
90
  rightContent,