UNPKG

adui

Version:

<div> <img src="https://wxa.wxs.qq.com/mpweb/delivery/legacy/wxadtouch/upload/t1/od834zef_52939fc6.png" style="margin:40px 0 0 -8px; background-color: #fcfcfc; box-shadow: none;" /> </div>

22 lines (21 loc) 489 B
import * as React from "react"; type ContextProps = { /** * item style */ itemStyle?: React.CSSProperties; /** * label 字符对齐方式 */ labelAlign?: "left" | "center" | "right" | null; /** * label 字符数,Form 会以 em 单位设置 label 宽度 */ labelSize?: number | null; /** * label style */ labelStyle?: React.CSSProperties; }; export declare const FormContext: React.Context<ContextProps>; export {};