first commit

This commit is contained in:
root
2025-12-28 20:50:08 +00:00
commit b1cd61c7b1
16845 changed files with 1594292 additions and 0 deletions

14
node_modules/@floating-ui/react-dom/src/arrow.d.ts generated vendored Normal file
View File

@@ -0,0 +1,14 @@
import type { Middleware, SideObject } from '@floating-ui/core';
import * as React from 'react';
export interface Options {
element: React.MutableRefObject<Element | null> | Element;
padding?: number | SideObject;
}
/**
* A data provider that provides data to position an inner element of the
* floating element (usually a triangle or caret) so that it is centered to the
* reference element.
* This wraps the core `arrow` middleware to allow React refs as the element.
* @see https://floating-ui.com/docs/arrow
*/
export declare const arrow: (options: Options) => Middleware;