@murabei-data-science/pumpwood-ui 1.4.6 → 1.4.7

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.
@@ -757,16 +757,6 @@ declare const Sidebar: {
757
757
  Action: typeof Action;
758
758
  };
759
759
 
760
- type StackProps = HTMLAttributes<HTMLDivElement> & {
761
- children: ReactNode;
762
- /** The direction of the stack. Defaults to 'col'. */
763
- direction?: "row" | "col";
764
- /** The gap between elements. Maps to Tailwind gap utility (e.g. 4 -> gap-4). */
765
- gap?: number;
766
- /** Click handler. When set, the stack becomes keyboard-accessible (role="button"). */
767
- onClick?: () => void;
768
- className?: string;
769
- };
770
760
  /**
771
761
  * A layout component that arranges children in a stack (vertical or horizontal).
772
762
  *
@@ -782,7 +772,16 @@ type StackProps = HTMLAttributes<HTMLDivElement> & {
782
772
  * </Stack>
783
773
  * ```
784
774
  */
785
- declare function Stack({ children, onClick, direction, gap, className, ...props }: StackProps): react_jsx_runtime.JSX.Element;
775
+ declare const Stack: React$1.ForwardRefExoticComponent<HTMLAttributes<HTMLDivElement> & {
776
+ children: ReactNode;
777
+ /** The direction of the stack. Defaults to 'col'. */
778
+ direction?: "row" | "col";
779
+ /** The gap between elements. Maps to Tailwind gap utility (e.g. 4 -> gap-4). */
780
+ gap?: number;
781
+ /** Click handler. When set, the stack becomes keyboard-accessible (role="button"). */
782
+ onClick?: () => void;
783
+ className?: string;
784
+ } & React$1.RefAttributes<HTMLDivElement>>;
786
785
 
787
786
  /**
788
787
  * Column definition for Table.