FormItemLabel.d.ts 632 B

123456789101112131415161718
  1. import type { ColProps } from '../grid/Col';
  2. import type { FormLabelAlign } from './interface';
  3. import type { RequiredMark } from './Form';
  4. import type { VueNode } from '../_util/type';
  5. import type { FunctionalComponent, HTMLAttributes } from 'vue';
  6. export interface FormItemLabelProps {
  7. colon?: boolean;
  8. htmlFor?: string;
  9. label?: VueNode;
  10. labelAlign?: FormLabelAlign;
  11. labelCol?: ColProps & HTMLAttributes;
  12. requiredMark?: RequiredMark;
  13. required?: boolean;
  14. prefixCls: string;
  15. onClick: Function;
  16. }
  17. declare const FormItemLabel: FunctionalComponent<FormItemLabelProps>;
  18. export default FormItemLabel;