FormItemLabel.d.ts 653 B

12345678910111213141516171819
  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. tooltip: string;
  17. }
  18. declare const FormItemLabel: FunctionalComponent<FormItemLabelProps>;
  19. export default FormItemLabel;