UNPKG

rsuite

Version:

A suite of react components

163 lines (121 loc) 4.34 kB
export interface StandardProps { /** The prefix of the component CSS class */ classPrefix?: string; /** Additional classes */ className?: string; /** Additional style */ style?: React.CSSProperties; [key: string]: any; } export interface AnimationEventProps { /** Callback fired before the Modal transitions in */ onEnter?: (node: null | Element | Text) => void; /** Callback fired as the Modal begins to transition in */ onEntering?: (node: null | Element | Text) => void; /** Callback fired after the Modal finishes transitioning in */ onEntered?: (node: null | Element | Text) => void; /** Callback fired right before the Modal transitions out */ onExit?: (node: null | Element | Text) => void; /** Callback fired as the Modal begins to transition out */ onExiting?: (node: null | Element | Text) => void; /** Callback fired after the Modal finishes transitioning out */ onExited?: (node: null | Element | Text) => void; } export interface PickerBaseProps extends StandardProps, AnimationEventProps { /** A picker can have different appearances. */ appearance?: 'default' | 'subtle'; /** Format picker to appear inside a content block */ block?: boolean; /** Set the padding of the container. */ containerPadding?: number; /** Sets the rendering container */ container?: HTMLElement | (() => HTMLElement); /** A picker can show it is currently unable to be interacted with */ disabled?: boolean; /** You can use a custom element for this component */ toggleComponentClass?: React.ElementType; /** A CSS class to apply to the Menu DOM node. */ menuClassName?: string; /** A style to apply to the Menu DOM node. */ menuStyle?: object; /** Placeholder text */ placeholder?: string; /** The placement of picker */ placement?: TypeAttributes.Placement; /** Prevent floating element overflow */ preventOverflow?: boolean; /** Open the menu and control it */ open?: boolean; /** Initial open menu */ defaultOpen?: boolean; /** A picker that can clear values */ cleanable?: boolean; /** Called when Modal is displayed */ onOpen?: () => void; /** Called when Modal is closed */ onClose?: () => void; /** Custom render extra footer */ renderExtraFooter?: () => React.ReactNode; } export interface FormControlBaseProps<ValueType = any> { /** Initial value */ defaultValue?: ValueType; /** Current value of the component. Creates a controlled component */ value?: ValueType; /** Called after the value has been changed */ onChange?: (value: ValueType, event: React.SyntheticEvent<HTMLElement>) => void; } export interface FormControlPickerProps<ValueType = any, DataType = Record<string, any>> extends PickerBaseProps { /** The data of component */ data: DataType[]; /** Set option value 'key' in 'data' */ valueKey?: keyof DataType; /** Set options to display the 'key' in 'data' */ labelKey?: keyof DataType; /** Set children key in data */ childrenKey?: keyof DataType; /** Disabled items */ disabledItemValues?: ValueType[]; /** Initial value */ defaultValue?: ValueType; /** Current value of the component. Creates a controlled component */ value?: ValueType; /** Called after the value has been changed */ onChange?: (value: ValueType, event: React.SyntheticEvent<HTMLElement>) => void; } export declare namespace TypeAttributes { type Size = 'lg' | 'md' | 'sm' | 'xs'; type Status = 'success' | 'warning' | 'error' | 'info'; type Color = 'red' | 'orange' | 'yellow' | 'green' | 'cyan' | 'blue' | 'violet'; type Appearance = 'default' | 'primary' | 'link' | 'subtle' | 'ghost'; type Placement4 = 'top' | 'bottom' | 'right' | 'left'; type Placement8 = | 'bottomStart' | 'bottomEnd' | 'topStart' | 'topEnd' | 'leftStart' | 'rightStart' | 'leftEnd' | 'rightEnd'; type PlacementAuto = | 'auto' | 'autoVerticalStart' | 'autoVerticalEnd' | 'autoHorizontalStart' | 'autoHorizontalEnd'; type Placement = Placement4 | Placement8 | PlacementAuto; type CheckTrigger = 'change' | 'blur' | 'none'; } export interface SVGIcon { viewBox: string; id: string; } export interface ItemDataType { label: any; value: any; groupBy?: string; parent?: ItemDataType; children?: ItemDataType[]; }