@serendie/ui
Version:
Adaptive UI component library as part of Serendie Design System by Mitsubishi Electric
22 lines (21 loc) • 856 B
TypeScript
import { DatePicker as ArkDatePicker } from '@ark-ui/react';
export declare const DatePicker: import('react').ForwardRefExoticComponent<ArkDatePicker.RootProps & {
fullWidth?: boolean | undefined;
} & {
placeholder?: string;
label?: string;
required?: boolean;
requiredLabel?: string;
invalid?: boolean;
invalidMessage?: string;
startPlaceholder?: string;
endPlaceholder?: string;
isCalendarOnly?: boolean;
/**
* Portalを使用するかどうか
* - `true` (デフォルト): body直下にポータルする。ModalDialog/Drawer内にある場合は自動的にそのコンテンツ内にポータルされる
* - `false`: ポータルを使用せず、その場にレンダリングする
* @default true
*/
portalled?: boolean;
} & import('react').RefAttributes<HTMLDivElement>>;