jamis
Version:
一种支持通过JSON配置方式生成页面的组件库
19 lines (18 loc) • 575 B
TypeScript
import React from 'react';
import type { LocaleProps, ThemeProps } from 'jamis-core';
import type { FieldSimple, FormulaPickerProps, OperatorType } from '../../types';
export interface ValueProps extends ThemeProps, LocaleProps {
value: any;
data?: any;
onChange: (value: any) => void;
field: FieldSimple;
op?: OperatorType;
disabled?: boolean;
formula?: FormulaPickerProps;
popOverContainer?: any;
renderEtrValue?: any;
}
export declare class Value extends React.Component<ValueProps> {
render(): JSX.Element;
}
export default Value;