bsm-design-system 1.22.10 → 1.22.12

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/index.d.ts CHANGED
@@ -555,15 +555,10 @@ type SmartDialogProps = {
555
555
 
556
556
  declare function DialogFooter({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
557
557
  declare function DialogHeaderBar({ title, hideClose, children }: DialogHeaderBarProps): react_jsx_runtime.JSX.Element;
558
- declare function ContentWrapper$1({ children, className, }: {
559
- children: React$1.ReactNode;
560
- className?: string;
561
- }): react_jsx_runtime.JSX.Element;
562
558
  declare function SmartDialog({ open, onClose, disableCloseOutside, onInteractOutside, trigger, children, size, ...props }: SmartDialogProps): react_jsx_runtime.JSX.Element;
563
559
  declare namespace SmartDialog {
564
560
  var Header: typeof DialogHeaderBar;
565
561
  var Footer: typeof DialogFooter;
566
- var Content: typeof ContentWrapper$1;
567
562
  }
568
563
 
569
564
  type DrawerSide = "top" | "bottom" | "left" | "right";
@@ -588,16 +583,11 @@ type DrawerProps = {
588
583
  };
589
584
 
590
585
  declare function SheetFooter({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
591
- declare function ContentWrapper({ children, className, }: {
592
- children: React$1.ReactNode;
593
- className?: string;
594
- }): react_jsx_runtime.JSX.Element;
595
586
  declare function SheetHeaderBar({ title, hideClose, children, extraAction, }: DrawerHeader): react_jsx_runtime.JSX.Element;
596
587
  declare function SmartSheet({ open, onClose, trigger, disableCloseOutside, onInteractOutside, side, children, }: DrawerProps): react_jsx_runtime.JSX.Element;
597
588
  declare namespace SmartSheet {
598
589
  var Header: typeof SheetHeaderBar;
599
590
  var Footer: typeof SheetFooter;
600
- var Content: typeof ContentWrapper;
601
591
  }
602
592
 
603
593
  declare const AccordionTriggerVariants: tailwind_variants.TVReturnType<{