@texturehq/edges 1.5.2 → 1.5.3

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.
@@ -1,6 +1,6 @@
1
1
  {
2
- "version": "1.5.2",
3
- "generatedAt": "2025-10-11T01:32:19.252Z",
2
+ "version": "1.5.3",
3
+ "generatedAt": "2025-10-12T13:19:01.215Z",
4
4
  "components": [
5
5
  {
6
6
  "name": "ActionCell",
@@ -78,6 +78,10 @@
78
78
  {
79
79
  "name": "maxWidth",
80
80
  "type": "string"
81
+ },
82
+ {
83
+ "name": "minWidth",
84
+ "type": "string"
81
85
  }
82
86
  ]
83
87
  },
@@ -687,6 +691,10 @@
687
691
  {
688
692
  "name": "maxWidth",
689
693
  "type": "string"
694
+ },
695
+ {
696
+ "name": "minWidth",
697
+ "type": "string"
690
698
  }
691
699
  ]
692
700
  },
@@ -746,7 +754,7 @@
746
754
  "name": "Dialog",
747
755
  "importRoot": "@texturehq/edges",
748
756
  "importPath": "@texturehq/edges/components/Dialog",
749
- "description": "Dialog Responsive modal dialog component with backdrop. **Desktop (≥768px):** Centered modal with scale and fade animation **Mobile (<768px):** Bottom sheet that slides up from bottom Includes optional header with title/back button and footer with action buttons.",
757
+ "description": "Dialog Responsive modal dialog component with backdrop. **Desktop (≥768px):** Centered modal with scale and fade animation **Mobile (<768px):** Bottom sheet that slides up from bottom Includes optional header with title/back button and footer with action buttons. ## Usage Patterns ### Uncontrolled with DialogTrigger (Recommended) ```tsx import { DialogTrigger, Dialog, Button } from \"@texturehq/edges\"; <DialogTrigger> <Button>Open Dialog</Button> <Dialog title=\"My Dialog\"> <p>Dialog content</p> </Dialog> </DialogTrigger> ``` ### Controlled (Advanced) ```tsx const [isOpen, setIsOpen] = useState(false); <Dialog isOpen={isOpen} onClose={() => setIsOpen(false)} title=\"My Dialog\"> <p>Dialog content</p> </Dialog> ```",
750
758
  "props": [
751
759
  {
752
760
  "name": "isOpen",
@@ -768,6 +776,10 @@
768
776
  "name": "maxWidth",
769
777
  "type": "string"
770
778
  },
779
+ {
780
+ "name": "minWidth",
781
+ "type": "string"
782
+ },
771
783
  {
772
784
  "name": "contentPadding",
773
785
  "type": "boolean"
@@ -778,6 +790,13 @@
778
790
  }
779
791
  ]
780
792
  },
793
+ {
794
+ "name": "DialogHeader",
795
+ "importRoot": "@texturehq/edges",
796
+ "importPath": "@texturehq/edges/components/DialogHeader",
797
+ "description": "DialogHeader Header area for dialogs with optional back arrow.",
798
+ "props": []
799
+ },
781
800
  {
782
801
  "name": "Drawer",
783
802
  "importRoot": "@texturehq/edges",
@@ -1765,6 +1784,10 @@
1765
1784
  "name": "bottomItems",
1766
1785
  "type": "SideNavItem[]"
1767
1786
  },
1787
+ {
1788
+ "name": "bottomContent",
1789
+ "type": "React.ReactNode"
1790
+ },
1768
1791
  {
1769
1792
  "name": "logo",
1770
1793
  "type": "React.ReactNode"