@epilot/volt-ui 1.1.4 → 1.1.6

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.
@@ -9,7 +9,10 @@ declare const SelectTriggerClear: {
9
9
  ({ className, onClick, ...props }: React.ComponentProps<typeof Button>): import("react/jsx-runtime").JSX.Element;
10
10
  displayName: string;
11
11
  };
12
- declare const SelectContent: ({ className, children, position, align, ...props }: React.ComponentProps<typeof SelectPrimitive.Content>) => import("react/jsx-runtime").JSX.Element;
12
+ type SelectContentProps = React.ComponentProps<typeof SelectPrimitive.Content> & {
13
+ container?: React.ComponentProps<typeof SelectPrimitive.Portal>["container"];
14
+ };
15
+ declare const SelectContent: ({ className, children, position, align, container, ...props }: SelectContentProps) => import("react/jsx-runtime").JSX.Element;
13
16
  declare const SelectLabel: ({ className, ...props }: React.ComponentProps<typeof SelectPrimitive.Label>) => import("react/jsx-runtime").JSX.Element;
14
17
  declare const SelectItem: ({ className, children, ...props }: React.ComponentProps<typeof SelectPrimitive.Item>) => import("react/jsx-runtime").JSX.Element;
15
18
  declare const SelectSeparator: ({ className, ...props }: React.ComponentProps<typeof SelectPrimitive.Separator>) => import("react/jsx-runtime").JSX.Element;
@@ -2,10 +2,12 @@ import * as React from "react";
2
2
  import * as TooltipPrimitive from "@radix-ui/react-tooltip";
3
3
  declare const TooltipProvider: ({ delayDuration, ...props }: React.ComponentProps<typeof TooltipPrimitive.Provider>) => import("react/jsx-runtime").JSX.Element;
4
4
  declare const TooltipPortal: ({ ...props }: React.ComponentProps<typeof TooltipPrimitive.Portal>) => import("react/jsx-runtime").JSX.Element;
5
- declare const Tooltip: ({ ...props }: React.ComponentProps<typeof TooltipPrimitive.Root>) => import("react/jsx-runtime").JSX.Element;
5
+ type TooltipProps = React.ComponentProps<typeof TooltipPrimitive.Root>;
6
+ declare const Tooltip: ({ ...props }: TooltipProps) => import("react/jsx-runtime").JSX.Element;
6
7
  declare const TooltipTrigger: ({ ...props }: React.ComponentProps<typeof TooltipPrimitive.Trigger>) => import("react/jsx-runtime").JSX.Element;
7
8
  type TooltipContentProps = React.ComponentProps<typeof TooltipPrimitive.Content> & {
8
9
  hideArrow?: boolean;
10
+ variant?: "default" | "destructive";
9
11
  };
10
- declare const TooltipContent: ({ className, hideArrow, children, ...props }: TooltipContentProps) => import("react/jsx-runtime").JSX.Element;
12
+ declare const TooltipContent: ({ className, hideArrow, variant, children, ...props }: TooltipContentProps) => import("react/jsx-runtime").JSX.Element;
11
13
  export { Tooltip, TooltipTrigger, TooltipContent, TooltipProvider, TooltipPortal, };