@dialpad/dialtone
Version:
Dialpad's Dialtone design system monorepo
39 lines • 1.36 kB
TypeScript
export const BASE_TIPPY_DIRECTIONS: string[];
export const TIPPY_STICKY_VALUES: (string | boolean)[];
export function createTippyPopover(anchorElement: any, options: any): import('tippy.js').Instance<import('tippy.js').Props>[];
export function createTippy(anchorElement: any, options: any): import('tippy.js').Instance<import('tippy.js').Props>[];
export function getPopperOptions({ boundary, fallbackPlacements, hasHideModifierEnabled, tether, }?: {
boundary?: string | undefined;
fallbackPlacements?: never[] | undefined;
hasHideModifierEnabled?: boolean | undefined;
tether?: boolean | undefined;
}): {
modifiers: ({
name: string;
options: {
fallbackPlacements: any[];
boundary: string;
altAxis?: undefined;
tether?: undefined;
};
enabled?: undefined;
} | {
name: string;
enabled: boolean;
options?: undefined;
} | {
name: string;
options: {
altAxis: boolean;
tether: boolean;
fallbackPlacements?: undefined;
boundary?: undefined;
};
enabled?: undefined;
})[];
};
export function getAnchor(anchorWrapper: any): any;
export function getContentWrapper(content: any): {
popper: HTMLDivElement;
};
//# sourceMappingURL=tippy_utils.d.ts.map