fineui是帆软报表和BI产品线所使用的前端框架。
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
declare const React: any;
|
|
|
|
interface UIProps {
|
|
|
|
width: number | string;
|
|
|
|
height: number | string;
|
|
|
|
top: number;
|
|
|
|
left: number;
|
|
|
|
bottom: number;
|
|
|
|
right: number;
|
|
|
|
rgap: number;
|
|
|
|
lgap: number;
|
|
|
|
tgap: number;
|
|
|
|
bgap: number;
|
|
|
|
vgap: number;
|
|
|
|
hgap: number;
|
|
|
|
}
|
|
|
|
interface ElementClassProps<T> extends UIProps {
|
|
|
|
cls: string;
|
|
|
|
extraCls: string;
|
|
|
|
ref: (ref: T) => void;
|
|
|
|
listeners: {
|
|
|
|
eventName: string;
|
|
|
|
action: (...args: any[]) => any;
|
|
|
|
once?: boolean;
|
|
|
|
}[];
|
|
|
|
disabled: boolean;
|
|
|
|
invisible: boolean;
|
|
|
|
invalid: boolean;
|
|
|
|
attributes: {
|
|
|
|
[key: string]: any;
|
|
|
|
};
|
|
|
|
css: {
|
|
|
|
[key: string]: any;
|
|
|
|
};
|
|
|
|
tagName: string;
|
|
|
|
element: any;
|
|
|
|
$testId: string;
|
|
|
|
$point: any;
|
|
|
|
$value: any;
|
|
|
|
$scope: () => any;
|
|
|
|
beforeRender(callback: () => void): void;
|
|
|
|
beforeInit(callback: () => void): void;
|
|
|
|
render(): any;
|
|
|
|
}
|
|
|
|
declare namespace JSX {
|
|
|
|
interface IntrinsicElements {
|
|
|
|
[elemName: string]: Partial<UIProps>;
|
|
|
|
}
|
|
|
|
interface ElementAttributesProperty {
|
|
|
|
/**
|
|
|
|
* specify the property name to use
|
|
|
|
*/
|
|
|
|
__props: any;
|
|
|
|
}
|
|
|
|
interface IntrinsicClassAttributes<T> extends Partial<ElementClassProps<T>> {
|
|
|
|
}
|
|
|
|
}
|