@vnmfify/core
Version:
```shell npm i @vnmfify/core -S ```
13 lines (12 loc) • 1.03 kB
TypeScript
import { ViewProps } from "@vnxjs/components/types/View";
import * as React from "react";
import { PickerColumnInstance, PickerOptionObject } from "./picker.shared";
export interface PickerColumnProps extends ViewProps {
value: any;
className?: string;
readonly?: boolean;
children?: PickerOptionObject[];
onChange?(option: PickerOptionObject, emitChange?: boolean): void;
}
declare const PickerColumn: React.ForwardRefExoticComponent<Pick<PickerColumnProps, "className" | "hoverClass" | "hoverStyle" | "hoverStopPropagation" | "hoverStartTime" | "hoverStayTime" | "id" | "style" | "key" | "hidden" | "animation" | "dangerouslySetInnerHTML" | "onTouchStart" | "onTouchMove" | "onTouchCancel" | "onTouchEnd" | "onClick" | "onLongPress" | "onLongClick" | "onTransitionEnd" | "onAnimationStart" | "onAnimationIteration" | "onAnimationEnd" | "onTouchForceChange" | "children" | "catchMove" | "value" | "readonly" | "onChange"> & React.RefAttributes<PickerColumnInstance>>;
export default PickerColumn;