artwork-react-native
Version:
artwork design master for react-native
31 lines (30 loc) • 925 B
TypeScript
/// <reference types="react" />
import React from 'react';
export declare type IPopupPickerProps = {
picker?: any;
value?: any;
triggerType?: string;
WrapComponent?: any;
dismissText?: string | React.ReactElement<any>;
okText?: string | React.ReactElement<any>;
title?: string | React.ReactElement<any>;
visible?: boolean;
disabled?: boolean;
onOk?: (value?: any) => void;
style?: any;
onVisibleChange?: (visible: boolean) => void;
content?: React.ReactElement<any> | string;
onDismiss?: () => void;
/** react-native only */
styles?: any;
actionTextUnderlayColor?: string;
actionTextActiveOpacity?: number;
/** web only */
wrapStyle?: React.CSSProperties;
className?: string;
pickerValueProp?: string;
pickerValueChangeProp?: string;
transitionName?: string;
popupTransitionName?: string;
maskTransitionName?: string;
};