UNPKG

fastlion-amis

Version:

一种MIS页面生成工具

124 lines (123 loc) 7.23 kB
/// <reference types="hoist-non-react-statics" /> import React from 'react'; import { RendererProps } from '../factory'; import { TooltipObject } from '../components/TooltipWrapper'; import { ClassNamesFn } from '../theme'; import { BaseSchema, SchemaClassName, SchemaIcon, SchemaTpl } from '../Schema'; /** * 提示渲染器,默认会显示个小图标,鼠标放上来的时候显示配置的内容。 */ export interface RemarkSchema extends BaseSchema { /** * 指定为提示类型 */ type: 'remark'; label?: string; icon?: SchemaIcon; tooltipClassName?: SchemaClassName; /** * 触发规则 */ trigger?: Array<'click' | 'hover' | 'focus'>; /** * 提示标题 */ title?: string; /** * 提示内容 */ content: SchemaTpl; /** * 显示位置 */ placement?: 'top' | 'right' | 'bottom' | 'left'; /** * 点击其他内容时是否关闭弹框信息 */ rootClose?: boolean; } export declare type SchemaRemark = string | Omit<RemarkSchema, 'type'>; export declare function filterContents(tooltip: string | undefined | { title?: string; render?: any; content?: string; body?: string; }, data: any): string | { render: (() => any) | undefined; title: string; content: string | undefined; } | undefined; export interface RemarkProps extends RendererProps, Omit<RemarkSchema, 'type' | 'className'> { icon: string; trigger: Array<'hover' | 'click' | 'focus'>; } declare class Remark extends React.Component<RemarkProps> { static propsList: Array<string>; static defaultProps: { icon: string; trigger: ("click" | "focus" | "hover")[]; }; showModalTip(tooltip?: string | TooltipObject): (e: React.MouseEvent) => void; renderLabel(finalIcon: any, finalLabel: string, cx: ClassNamesFn): JSX.Element; render(): JSX.Element; } declare const _default: { new (props: (Omit<RemarkProps, keyof import("../theme").ThemeProps> & import("../theme").ThemeOutterProps) | Readonly<Omit<RemarkProps, keyof import("../theme").ThemeProps> & import("../theme").ThemeOutterProps>): { render(): JSX.Element; context: any; setState<K extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Omit<RemarkProps, keyof import("../theme").ThemeProps> & import("../theme").ThemeOutterProps>) => {} | Pick<{}, K> | null) | Pick<{}, K> | null, callback?: (() => void) | undefined): void; forceUpdate(callback?: (() => void) | undefined): void; readonly props: Readonly<Omit<RemarkProps, keyof import("../theme").ThemeProps> & import("../theme").ThemeOutterProps> & Readonly<{ children?: React.ReactNode; }>; state: Readonly<{}>; refs: { [key: string]: React.ReactInstance; }; componentDidMount?(): void; shouldComponentUpdate?(nextProps: Readonly<Omit<RemarkProps, keyof import("../theme").ThemeProps> & import("../theme").ThemeOutterProps>, nextState: Readonly<{}>, nextContext: any): boolean; componentWillUnmount?(): void; componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void; getSnapshotBeforeUpdate?(prevProps: Readonly<Omit<RemarkProps, keyof import("../theme").ThemeProps> & import("../theme").ThemeOutterProps>, prevState: Readonly<{}>): any; componentDidUpdate?(prevProps: Readonly<Omit<RemarkProps, keyof import("../theme").ThemeProps> & import("../theme").ThemeOutterProps>, prevState: Readonly<{}>, snapshot?: any): void; componentWillMount?(): void; UNSAFE_componentWillMount?(): void; componentWillReceiveProps?(nextProps: Readonly<Omit<RemarkProps, keyof import("../theme").ThemeProps> & import("../theme").ThemeOutterProps>, nextContext: any): void; UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Omit<RemarkProps, keyof import("../theme").ThemeProps> & import("../theme").ThemeOutterProps>, nextContext: any): void; componentWillUpdate?(nextProps: Readonly<Omit<RemarkProps, keyof import("../theme").ThemeProps> & import("../theme").ThemeOutterProps>, nextState: Readonly<{}>, nextContext: any): void; UNSAFE_componentWillUpdate?(nextProps: Readonly<Omit<RemarkProps, keyof import("../theme").ThemeProps> & import("../theme").ThemeOutterProps>, nextState: Readonly<{}>, nextContext: any): void; }; new (props: Omit<RemarkProps, keyof import("../theme").ThemeProps> & import("../theme").ThemeOutterProps, context: any): { render(): JSX.Element; context: any; setState<K extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Omit<RemarkProps, keyof import("../theme").ThemeProps> & import("../theme").ThemeOutterProps>) => {} | Pick<{}, K> | null) | Pick<{}, K> | null, callback?: (() => void) | undefined): void; forceUpdate(callback?: (() => void) | undefined): void; readonly props: Readonly<Omit<RemarkProps, keyof import("../theme").ThemeProps> & import("../theme").ThemeOutterProps> & Readonly<{ children?: React.ReactNode; }>; state: Readonly<{}>; refs: { [key: string]: React.ReactInstance; }; componentDidMount?(): void; shouldComponentUpdate?(nextProps: Readonly<Omit<RemarkProps, keyof import("../theme").ThemeProps> & import("../theme").ThemeOutterProps>, nextState: Readonly<{}>, nextContext: any): boolean; componentWillUnmount?(): void; componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void; getSnapshotBeforeUpdate?(prevProps: Readonly<Omit<RemarkProps, keyof import("../theme").ThemeProps> & import("../theme").ThemeOutterProps>, prevState: Readonly<{}>): any; componentDidUpdate?(prevProps: Readonly<Omit<RemarkProps, keyof import("../theme").ThemeProps> & import("../theme").ThemeOutterProps>, prevState: Readonly<{}>, snapshot?: any): void; componentWillMount?(): void; UNSAFE_componentWillMount?(): void; componentWillReceiveProps?(nextProps: Readonly<Omit<RemarkProps, keyof import("../theme").ThemeProps> & import("../theme").ThemeOutterProps>, nextContext: any): void; UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Omit<RemarkProps, keyof import("../theme").ThemeProps> & import("../theme").ThemeOutterProps>, nextContext: any): void; componentWillUpdate?(nextProps: Readonly<Omit<RemarkProps, keyof import("../theme").ThemeProps> & import("../theme").ThemeOutterProps>, nextState: Readonly<{}>, nextContext: any): void; UNSAFE_componentWillUpdate?(nextProps: Readonly<Omit<RemarkProps, keyof import("../theme").ThemeProps> & import("../theme").ThemeOutterProps>, nextState: Readonly<{}>, nextContext: any): void; }; displayName: string; contextType: React.Context<string>; ComposedComponent: React.ComponentType<typeof Remark>; } & import("hoist-non-react-statics").NonReactStatics<typeof Remark, {}> & { ComposedComponent: typeof Remark; }; export default _default; export declare class RemarkRenderer extends Remark { }