add all frontend files

This commit is contained in:
2026-01-17 15:16:36 -05:00
parent ff16ae7858
commit e40287e4aa
25704 changed files with 1935289 additions and 0 deletions

19
node_modules/rc-picker/es/PickerTrigger/index.d.ts generated vendored Normal file
View File

@@ -0,0 +1,19 @@
import type { AlignType, BuildInPlacements } from '@rc-component/trigger/lib/interface';
import * as React from 'react';
export type PickerTriggerProps = {
popupElement: React.ReactElement;
popupStyle?: React.CSSProperties;
children: React.ReactElement;
transitionName?: string;
getPopupContainer?: (node: HTMLElement) => HTMLElement;
popupAlign?: AlignType;
range?: boolean;
popupClassName?: string;
placement?: string;
builtinPlacements?: BuildInPlacements;
direction?: 'ltr' | 'rtl';
visible: boolean;
onClose: () => void;
};
declare function PickerTrigger({ popupElement, popupStyle, popupClassName, popupAlign, transitionName, getPopupContainer, children, range, placement, builtinPlacements, direction, visible, onClose, }: PickerTriggerProps): React.JSX.Element;
export default PickerTrigger;