FormItemInput.d.ts 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. import type { ColProps } from '../grid/Col';
  2. import type { ValidateStatus } from './FormItem';
  3. import type { CustomSlotsType, VueNode } from '../_util/type';
  4. export interface FormItemInputMiscProps {
  5. prefixCls: string;
  6. errors: VueNode[];
  7. hasFeedback?: boolean;
  8. validateStatus?: ValidateStatus;
  9. }
  10. export interface FormItemInputProps {
  11. wrapperCol?: ColProps;
  12. help?: VueNode;
  13. extra?: VueNode;
  14. status?: ValidateStatus;
  15. }
  16. declare const FormItemInput: import("vue").DefineComponent<{
  17. marginBottom?: any;
  18. help?: any;
  19. errors?: any;
  20. prefixCls?: any;
  21. status?: any;
  22. hasFeedback?: any;
  23. onErrorVisibleChanged?: any;
  24. onDomErrorVisibleChange?: any;
  25. wrapperCol?: any;
  26. extra?: any;
  27. }, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{
  28. marginBottom?: any;
  29. help?: any;
  30. errors?: any;
  31. prefixCls?: any;
  32. status?: any;
  33. hasFeedback?: any;
  34. onErrorVisibleChanged?: any;
  35. onDomErrorVisibleChange?: any;
  36. wrapperCol?: any;
  37. extra?: any;
  38. }> & Readonly<{}>, {}, CustomSlotsType<{
  39. help: any;
  40. errors: any;
  41. extra: any;
  42. default: any;
  43. }>, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
  44. export default FormItemInput;