chore: update ant-design dependencies and add new icon types

This commit is contained in:
Luiz Costa
2025-11-18 09:39:51 -03:00
parent 775e562fe9
commit 5c0094d74e
22648 changed files with 2140248 additions and 29 deletions
+19
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;