Rocky_Mountain_Vending/.pnpm-store/v10/files/9a/31fbc1f46323c26aa658043613a83249ceb597def201a51161709e6fff1f5062044815722eb4ab9d156bb79a8828cfb597b8b9cd48d69441954dee588ed805
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
Next.js website for Rocky Mountain Vending company featuring:
- Product catalog with Stripe integration
- Service areas and parts pages
- Admin dashboard with Clerk authentication
- SEO optimized pages with JSON-LD structured data

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-12 16:22:15 -07:00

40 lines
1.6 KiB
Text

import { CSSProperties } from 'react';
import { Coordinate, CartesianViewBox, AllowInDimension } from '../types';
export type Dimension2D = 'x' | 'y';
export declare function getTooltipCSSClassName({ coordinate, translateX, translateY, }: {
translateX: number | undefined;
translateY: number | undefined;
coordinate: Partial<Coordinate> | undefined;
}): string;
export declare function getTooltipTranslateXY({ allowEscapeViewBox, coordinate, key, offsetTopLeft, position, reverseDirection, tooltipDimension, viewBox, viewBoxDimension, }: {
allowEscapeViewBox: AllowInDimension;
coordinate: Partial<Coordinate>;
key: Dimension2D;
offsetTopLeft: number;
position: Partial<Coordinate>;
reverseDirection: AllowInDimension;
tooltipDimension: number;
viewBox: CartesianViewBox;
viewBoxDimension: number;
}): number;
export declare function getTransformStyle({ translateX, translateY, useTranslate3d, }: {
useTranslate3d: boolean;
translateX: number;
translateY: number;
}): CSSProperties;
export declare function getTooltipTranslate({ allowEscapeViewBox, coordinate, offsetTopLeft, position, reverseDirection, tooltipBox, useTranslate3d, viewBox, }: {
allowEscapeViewBox: AllowInDimension;
coordinate: Partial<Coordinate> | undefined;
offsetTopLeft: number;
position: Partial<Coordinate>;
reverseDirection: AllowInDimension;
tooltipBox: {
width: number;
height: number;
};
useTranslate3d: boolean;
viewBox: CartesianViewBox;
}): {
cssProperties: CSSProperties;
cssClasses: string;
};