@camox/ui 0.29.0 → 0.31.0

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": "@camox/ui",
3
- "version": "0.29.0",
3
+ "version": "0.31.0",
4
4
  "files": [
5
5
  "src"
6
6
  ],
@@ -40,14 +40,16 @@ function SheetContent({
40
40
  side = "right",
41
41
  showCloseButton = true,
42
42
  showOverlay = true,
43
+ keepMounted = false,
43
44
  ...props
44
45
  }: SheetPrimitive.Popup.Props & {
45
46
  side?: "top" | "right" | "bottom" | "left";
46
47
  showCloseButton?: boolean;
47
48
  showOverlay?: boolean;
49
+ keepMounted?: boolean;
48
50
  }) {
49
51
  return (
50
- <SheetPortal>
52
+ <SheetPortal keepMounted={keepMounted}>
51
53
  {showOverlay && <SheetOverlay />}
52
54
  <SheetPrimitive.Popup
53
55
  data-slot="sheet-content"