@qn-pandora/pandora-visualization
Version:
Pandora 通用可视化库
19 lines (18 loc) • 702 B
TypeScript
/// <reference types="hoist-non-react-statics" />
import React from 'react';
export interface IPxItemProps {
/**标签名字 */
label?: string;
/**当前值 */
value: any;
/**设置当前值 */
onChange: (value: any) => void;
/** placeholder */
placeholder?: string;
formItemCol?: IKeyValues;
}
export declare class PxItem extends React.Component<IPxItemProps, any> {
render(): React.JSX.Element;
}
declare const _default: React.ComponentClass<IPxItemProps, any> & import("hoist-non-react-statics").NonReactStatics<(React.ComponentClass<IPxItemProps, any> & typeof PxItem) | (React.FunctionComponent<IPxItemProps> & typeof PxItem), {}>;
export default _default;